From 10f526f964bdf212f24a88b71c642f68f01dabb5 Mon Sep 17 00:00:00 2001 From: Filebrowser Bot Date: Wed, 9 Jan 2019 23:32:32 +0000 Subject: [PATCH] update rice-box 0d0d9ef5 --- rice-box.go | 866 ++++++++++++++++++++++++++-------------------------- 1 file changed, 433 insertions(+), 433 deletions(-) diff --git a/rice-box.go b/rice-box.go index 2edcd2a..1509a0b 100644 --- a/rice-box.go +++ b/rice-box.go @@ -11,2503 +11,2503 @@ func init() { // define files file2 := &embedded.EmbeddedFile{ Filename: "02b796b016e850565073adf16d050f8c.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/csound_preprocessor_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\n\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar CsoundPreprocessorHighlightRules = function() {\n\n this.semicolonComments = {\n token : \"comment.line.semicolon.csound\",\n regex : \";.*$\"\n };\n\n this.comments = [\n {\n token : \"punctuation.definition.comment.begin.csound\",\n regex : \"/\\\\*\",\n push : [\n {\n token : \"punctuation.definition.comment.end.csound\",\n regex : \"\\\\*/\",\n next : \"pop\"\n }, {\n defaultToken: \"comment.block.csound\"\n }\n ]\n }, {\n token : \"comment.line.double-slash.csound\",\n regex : \"//.*$\"\n },\n this.semicolonComments\n ];\n\n this.macroUses = [\n {\n token : [\"entity.name.function.preprocessor.csound\", \"punctuation.definition.macro-parameter-value-list.begin.csound\"],\n regex : /(\\$[A-Z_a-z]\\w*\\.?)(\\()/,\n next : \"macro parameter value list\"\n }, {\n token : \"entity.name.function.preprocessor.csound\",\n regex : /\\$[A-Z_a-z]\\w*(?:\\.|\\b)/\n }\n ];\n\n this.numbers = [\n {\n token : \"constant.numeric.float.csound\",\n regex : /(?:\\d+[Ee][+-]?\\d+)|(?:\\d+\\.\\d*|\\d*\\.\\d+)(?:[Ee][+-]?\\d+)?/\n }, {\n token : [\"storage.type.number.csound\", \"constant.numeric.integer.hexadecimal.csound\"],\n regex : /(0[Xx])([0-9A-Fa-f]+)/\n }, {\n token : \"constant.numeric.integer.decimal.csound\",\n regex : /\\d+/\n }\n ];\n\n this.bracedStringContents = [\n {\n token : \"constant.character.escape.csound\",\n regex : /\\\\(?:[\\\\abnrt\"]|[0-7]{1,3})/\n },\n {\n token : \"constant.character.placeholder.csound\",\n regex : /%[#0\\- +]*\\d*(?:\\.\\d+)?[diuoxXfFeEgGaAcs]/\n }, {\n token : \"constant.character.escape.csound\",\n regex : /%%/\n }\n ];\n\n this.quotedStringContents = [\n this.macroUses,\n this.bracedStringContents\n ];\n\n var start = [\n this.comments,\n\n {\n token : \"keyword.preprocessor.csound\",\n regex : /#(?:e(?:nd(?:if)?|lse)\\b|##)|@@?[ \\t]*\\d+/\n }, {\n token : \"keyword.preprocessor.csound\",\n regex : /#include/,\n push : [\n this.comments,\n {\n token : \"string.csound\",\n regex : /([^ \\t])(?:.*?\\1)/,\n next : \"pop\"\n }\n ]\n }, {\n token : \"keyword.preprocessor.csound\",\n regex : /#[ \\t]*define/,\n next : \"define directive\"\n }, {\n token : \"keyword.preprocessor.csound\",\n regex : /#(?:ifn?def|undef)\\b/,\n next : \"macro directive\"\n },\n\n this.macroUses\n ];\n\n this.$rules = {\n \"start\": start,\n\n \"define directive\": [\n this.comments,\n {\n token : \"entity.name.function.preprocessor.csound\",\n regex : /[A-Z_a-z]\\w*/\n }, {\n token : \"punctuation.definition.macro-parameter-name-list.begin.csound\",\n regex : /\\(/,\n next : \"macro parameter name list\"\n }, {\n token : \"punctuation.definition.macro.begin.csound\",\n regex : /#/,\n next : \"macro body\"\n }\n ],\n \"macro parameter name list\": [\n {\n token : \"variable.parameter.preprocessor.csound\",\n regex : /[A-Z_a-z]\\w*/\n }, {\n token : \"punctuation.definition.macro-parameter-name-list.end.csound\",\n regex : /\\)/,\n next : \"define directive\"\n }\n ],\n \"macro body\": [\n {\n token : \"constant.character.escape.csound\",\n regex : /\\\\#/\n }, {\n token : \"punctuation.definition.macro.end.csound\",\n regex : /#/,\n next : \"start\"\n },\n start\n ],\n\n \"macro directive\": [\n this.comments,\n {\n token : \"entity.name.function.preprocessor.csound\",\n regex : /[A-Z_a-z]\\w*/,\n next : \"start\"\n }\n ],\n\n \"macro parameter value list\": [\n {\n token : \"punctuation.definition.macro-parameter-value-list.end.csound\",\n regex : /\\)/,\n next : \"start\"\n }, {\n token : \"punctuation.definition.string.begin.csound\",\n regex : /\"/,\n next : \"macro parameter value quoted string\"\n }, this.pushRule({\n token : \"punctuation.macro-parameter-value-parenthetical.begin.csound\",\n regex : /\\(/,\n next : \"macro parameter value parenthetical\"\n }), {\n token : \"punctuation.macro-parameter-value-separator.csound\",\n regex : \"[#']\"\n }\n ],\n \"macro parameter value quoted string\": [\n {\n token : \"constant.character.escape.csound\",\n regex : /\\\\[#'()]/\n }, {\n token : \"invalid.illegal.csound\",\n regex : /[#'()]/\n }, {\n token : \"punctuation.definition.string.end.csound\",\n regex : /\"/,\n next : \"macro parameter value list\"\n },\n this.quotedStringContents,\n {\n defaultToken: \"string.quoted.csound\"\n }\n ],\n \"macro parameter value parenthetical\": [\n {\n token : \"constant.character.escape.csound\",\n regex : /\\\\\\)/\n }, this.popRule({\n token : \"punctuation.macro-parameter-value-parenthetical.end.csound\",\n regex : /\\)/\n }), this.pushRule({\n token : \"punctuation.macro-parameter-value-parenthetical.begin.csound\",\n regex : /\\(/,\n next : \"macro parameter value parenthetical\"\n }),\n start\n ]\n };\n};\n\noop.inherits(CsoundPreprocessorHighlightRules, TextHighlightRules);\n\n(function() {\n\n this.pushRule = function(params) {\n return {\n regex : params.regex, onMatch: function(value, currentState, stack, line) {\n if (stack.length === 0)\n stack.push(currentState);\n if (Array.isArray(params.next)) {\n for (var i = 0; i < params.next.length; i++) {\n stack.push(params.next[i]);\n }\n } else {\n stack.push(params.next);\n }\n this.next = stack[stack.length - 1];\n return params.token;\n },\n get next() { return Array.isArray(params.next) ? params.next[params.next.length - 1] : params.next; },\n set next(next) {\n if (Array.isArray(params.next)) {\n var oldNext = params.next[params.next.length - 1];\n var oldNextIndex = oldNext.length - 1;\n var newNextIndex = next.length - 1;\n if (newNextIndex > oldNextIndex) {\n while (oldNextIndex >= 0 && newNextIndex >= 0) {\n if (oldNext.charAt(oldNextIndex) !== next.charAt(newNextIndex)) {\n var prefix = next.substr(0, newNextIndex);\n for (var i = 0; i < params.next.length; i++) {\n params.next[i] = prefix + params.next[i];\n }\n break;\n }\n oldNextIndex--;\n newNextIndex--;\n }\n }\n } else {\n params.next = next;\n }\n },\n get token() { return params.token; }\n };\n };\n\n this.popRule = function(params) {\n return {\n regex : params.regex, onMatch: function(value, currentState, stack, line) {\n stack.pop();\n if (params.next) {\n stack.push(params.next);\n this.next = stack[stack.length - 1];\n } else {\n this.next = stack.length > 1 ? stack[stack.length - 1] : stack.pop();\n }\n return params.token;\n }\n };\n };\n\n}).call(CsoundPreprocessorHighlightRules.prototype);\n\nexports.CsoundPreprocessorHighlightRules = CsoundPreprocessorHighlightRules;\n});\n\nace.define(\"ace/mode/csound_score_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/csound_preprocessor_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\n\nvar CsoundPreprocessorHighlightRules = require(\"./csound_preprocessor_highlight_rules\").CsoundPreprocessorHighlightRules;\n\nvar CsoundScoreHighlightRules = function() {\n\n CsoundPreprocessorHighlightRules.call(this);\n\n this.quotedStringContents.push({\n token : \"invalid.illegal.csound-score\",\n regex : /[^\"]*$/\n });\n\n var start = this.$rules.start;\n start.push(\n {\n token : \"keyword.control.csound-score\",\n regex : /[abCdefiqstvxy]/\n }, {\n token : \"invalid.illegal.csound-score\",\n regex : /w/\n }, {\n token : \"constant.numeric.language.csound-score\",\n regex : /z/\n }, {\n token : [\"keyword.control.csound-score\", \"constant.numeric.integer.decimal.csound-score\"],\n regex : /([nNpP][pP])(\\d+)/\n }, {\n token : \"keyword.other.csound-score\",\n regex : /[mn]/,\n push : [\n {\n token : \"empty\",\n regex : /$/,\n next : \"pop\"\n },\n this.comments,\n {\n token : \"entity.name.label.csound-score\",\n regex : /[A-Z_a-z]\\w*/\n }\n ]\n }, {\n token : \"keyword.preprocessor.csound-score\",\n regex : /r\\b/,\n next : \"repeat section\"\n },\n\n this.numbers,\n\n {\n token : \"keyword.operator.csound-score\",\n regex : \"[!+\\\\-*/^%&|<>#~.]\"\n },\n\n this.pushRule({\n token : \"punctuation.definition.string.begin.csound-score\",\n regex : /\"/,\n next : \"quoted string\"\n }),\n\n this.pushRule({\n token : \"punctuation.braced-loop.begin.csound-score\",\n regex : /{/,\n next : \"loop after left brace\"\n })\n );\n\n this.addRules({\n \"repeat section\": [\n {\n token : \"empty\",\n regex : /$/,\n next : \"start\"\n },\n this.comments,\n {\n token : \"constant.numeric.integer.decimal.csound-score\",\n regex : /\\d+/,\n next : \"repeat section before label\"\n }\n ],\n \"repeat section before label\": [\n {\n token : \"empty\",\n regex : /$/,\n next : \"start\"\n },\n this.comments,\n {\n token : \"entity.name.label.csound-score\",\n regex : /[A-Z_a-z]\\w*/,\n next : \"start\"\n }\n ],\n\n \"quoted string\": [\n this.popRule({\n token : \"punctuation.definition.string.end.csound-score\",\n regex : /\"/\n }),\n this.quotedStringContents,\n {\n defaultToken: \"string.quoted.csound-score\"\n }\n ],\n\n \"loop after left brace\": [\n this.popRule({\n token : \"constant.numeric.integer.decimal.csound-score\",\n regex : /\\d+/,\n next : \"loop after repeat count\"\n }),\n this.comments,\n {\n token : \"invalid.illegal.csound\",\n regex : /\\S.*/\n }\n ],\n \"loop after repeat count\": [\n this.popRule({\n token : \"entity.name.function.preprocessor.csound-score\",\n regex : /[A-Z_a-z]\\w*\\b/,\n next : \"loop after macro name\"\n }),\n this.comments,\n {\n token : \"invalid.illegal.csound\",\n regex : /\\S.*/\n }\n ],\n \"loop after macro name\": [\n start,\n this.popRule({\n token : \"punctuation.braced-loop.end.csound-score\",\n regex : /}/\n })\n ]\n });\n\n this.normalizeRules();\n};\n\noop.inherits(CsoundScoreHighlightRules, CsoundPreprocessorHighlightRules);\n\nexports.CsoundScoreHighlightRules = CsoundScoreHighlightRules;\n});\n\nace.define(\"ace/mode/lua_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar LuaHighlightRules = function() {\n\n var keywords = (\n \"break|do|else|elseif|end|for|function|if|in|local|repeat|\"+\n \"return|then|until|while|or|and|not\"\n );\n\n var builtinConstants = (\"true|false|nil|_G|_VERSION\");\n\n var functions = (\n \"string|xpcall|package|tostring|print|os|unpack|require|\"+\n \"getfenv|setmetatable|next|assert|tonumber|io|rawequal|\"+\n \"collectgarbage|getmetatable|module|rawset|math|debug|\"+\n \"pcall|table|newproxy|type|coroutine|_G|select|gcinfo|\"+\n \"pairs|rawget|loadstring|ipairs|_VERSION|dofile|setfenv|\"+\n \"load|error|loadfile|\"+\n\n \"sub|upper|len|gfind|rep|find|match|char|dump|gmatch|\"+\n \"reverse|byte|format|gsub|lower|preload|loadlib|loaded|\"+\n \"loaders|cpath|config|path|seeall|exit|setlocale|date|\"+\n \"getenv|difftime|remove|time|clock|tmpname|rename|execute|\"+\n \"lines|write|close|flush|open|output|type|read|stderr|\"+\n \"stdin|input|stdout|popen|tmpfile|log|max|acos|huge|\"+\n \"ldexp|pi|cos|tanh|pow|deg|tan|cosh|sinh|random|randomseed|\"+\n \"frexp|ceil|floor|rad|abs|sqrt|modf|asin|min|mod|fmod|log10|\"+\n \"atan2|exp|sin|atan|getupvalue|debug|sethook|getmetatable|\"+\n \"gethook|setmetatable|setlocal|traceback|setfenv|getinfo|\"+\n \"setupvalue|getlocal|getregistry|getfenv|setn|insert|getn|\"+\n \"foreachi|maxn|foreach|concat|sort|remove|resume|yield|\"+\n \"status|wrap|create|running|\"+\n \"__add|__sub|__mod|__unm|__concat|__lt|__index|__call|__gc|__metatable|\"+\n \"__mul|__div|__pow|__len|__eq|__le|__newindex|__tostring|__mode|__tonumber\"\n );\n\n var stdLibaries = (\"string|package|os|io|math|debug|table|coroutine\");\n\n var deprecatedIn5152 = (\"setn|foreach|foreachi|gcinfo|log10|maxn\");\n\n var keywordMapper = this.createKeywordMapper({\n \"keyword\": keywords,\n \"support.function\": functions,\n \"keyword.deprecated\": deprecatedIn5152,\n \"constant.library\": stdLibaries,\n \"constant.language\": builtinConstants,\n \"variable.language\": \"self\"\n }, \"identifier\");\n\n var decimalInteger = \"(?:(?:[1-9]\\\\d*)|(?:0))\";\n var hexInteger = \"(?:0[xX][\\\\dA-Fa-f]+)\";\n var integer = \"(?:\" + decimalInteger + \"|\" + hexInteger + \")\";\n\n var fraction = \"(?:\\\\.\\\\d+)\";\n var intPart = \"(?:\\\\d+)\";\n var pointFloat = \"(?:(?:\" + intPart + \"?\" + fraction + \")|(?:\" + intPart + \"\\\\.))\";\n var floatNumber = \"(?:\" + pointFloat + \")\";\n\n this.$rules = {\n \"start\" : [{\n stateName: \"bracketedComment\",\n onMatch : function(value, currentState, stack){\n stack.unshift(this.next, value.length - 2, currentState);\n return \"comment\";\n },\n regex : /\\-\\-\\[=*\\[/,\n next : [\n {\n onMatch : function(value, currentState, stack) {\n if (value.length == stack[1]) {\n stack.shift();\n stack.shift();\n this.next = stack.shift();\n } else {\n this.next = \"\";\n }\n return \"comment\";\n },\n regex : /\\]=*\\]/,\n next : \"start\"\n }, {\n defaultToken : \"comment\"\n }\n ]\n },\n\n {\n token : \"comment\",\n regex : \"\\\\-\\\\-.*$\"\n },\n {\n stateName: \"bracketedString\",\n onMatch : function(value, currentState, stack){\n stack.unshift(this.next, value.length, currentState);\n return \"string.start\";\n },\n regex : /\\[=*\\[/,\n next : [\n {\n onMatch : function(value, currentState, stack) {\n if (value.length == stack[1]) {\n stack.shift();\n stack.shift();\n this.next = stack.shift();\n } else {\n this.next = \"\";\n }\n return \"string.end\";\n },\n \n regex : /\\]=*\\]/,\n next : \"start\"\n }, {\n defaultToken : \"string\"\n }\n ]\n },\n {\n token : \"string\", // \" string\n regex : '\"(?:[^\\\\\\\\]|\\\\\\\\.)*?\"'\n }, {\n token : \"string\", // ' string\n regex : \"'(?:[^\\\\\\\\]|\\\\\\\\.)*?'\"\n }, {\n token : \"constant.numeric\", // float\n regex : floatNumber\n }, {\n token : \"constant.numeric\", // integer\n regex : integer + \"\\\\b\"\n }, {\n token : keywordMapper,\n regex : \"[a-zA-Z_$][a-zA-Z0-9_$]*\\\\b\"\n }, {\n token : \"keyword.operator\",\n regex : \"\\\\+|\\\\-|\\\\*|\\\\/|%|\\\\#|\\\\^|~|<|>|<=|=>|==|~=|=|\\\\:|\\\\.\\\\.\\\\.|\\\\.\\\\.\"\n }, {\n token : \"paren.lparen\",\n regex : \"[\\\\[\\\\(\\\\{]\"\n }, {\n token : \"paren.rparen\",\n regex : \"[\\\\]\\\\)\\\\}]\"\n }, {\n token : \"text\",\n regex : \"\\\\s+|\\\\w+\"\n } ]\n };\n \n this.normalizeRules();\n};\n\noop.inherits(LuaHighlightRules, TextHighlightRules);\n\nexports.LuaHighlightRules = LuaHighlightRules;\n});\n\nace.define(\"ace/mode/python_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar PythonHighlightRules = function() {\n\n var keywords = (\n \"and|as|assert|break|class|continue|def|del|elif|else|except|exec|\" +\n \"finally|for|from|global|if|import|in|is|lambda|not|or|pass|print|\" +\n \"raise|return|try|while|with|yield|async|await|nonlocal\"\n );\n\n var builtinConstants = (\n \"True|False|None|NotImplemented|Ellipsis|__debug__\"\n );\n\n var builtinFunctions = (\n \"abs|divmod|input|open|staticmethod|all|enumerate|int|ord|str|any|\" +\n \"eval|isinstance|pow|sum|basestring|execfile|issubclass|print|super|\" +\n \"binfile|bin|iter|property|tuple|bool|filter|len|range|type|bytearray|\" +\n \"float|list|raw_input|unichr|callable|format|locals|reduce|unicode|\" +\n \"chr|frozenset|long|reload|vars|classmethod|getattr|map|repr|xrange|\" +\n \"cmp|globals|max|reversed|zip|compile|hasattr|memoryview|round|\" +\n \"__import__|complex|hash|min|apply|delattr|help|next|setattr|set|\" +\n \"buffer|dict|hex|object|slice|coerce|dir|id|oct|sorted|intern|\" +\n \"ascii|breakpoint|bytes\"\n );\n var keywordMapper = this.createKeywordMapper({\n \"invalid.deprecated\": \"debugger\",\n \"support.function\": builtinFunctions,\n \"variable.language\": \"self|cls\",\n \"constant.language\": builtinConstants,\n \"keyword\": keywords\n }, \"identifier\");\n\n var strPre = \"[uU]?\";\n var strRawPre = \"[rR]\";\n var strFormatPre = \"[fF]\";\n var strRawFormatPre = \"(?:[rR][fF]|[fF][rR])\";\n var decimalInteger = \"(?:(?:[1-9]\\\\d*)|(?:0))\";\n var octInteger = \"(?:0[oO]?[0-7]+)\";\n var hexInteger = \"(?:0[xX][\\\\dA-Fa-f]+)\";\n var binInteger = \"(?:0[bB][01]+)\";\n var integer = \"(?:\" + decimalInteger + \"|\" + octInteger + \"|\" + hexInteger + \"|\" + binInteger + \")\";\n\n var exponent = \"(?:[eE][+-]?\\\\d+)\";\n var fraction = \"(?:\\\\.\\\\d+)\";\n var intPart = \"(?:\\\\d+)\";\n var pointFloat = \"(?:(?:\" + intPart + \"?\" + fraction + \")|(?:\" + intPart + \"\\\\.))\";\n var exponentFloat = \"(?:(?:\" + pointFloat + \"|\" + intPart + \")\" + exponent + \")\";\n var floatNumber = \"(?:\" + exponentFloat + \"|\" + pointFloat + \")\";\n\n var stringEscape = \"\\\\\\\\(x[0-9A-Fa-f]{2}|[0-7]{3}|[\\\\\\\\abfnrtv'\\\"]|U[0-9A-Fa-f]{8}|u[0-9A-Fa-f]{4})\";\n\n this.$rules = {\n \"start\" : [ {\n token : \"comment\",\n regex : \"#.*$\"\n }, {\n token : \"string\", // multi line \"\"\" string start\n regex : strPre + '\"{3}',\n next : \"qqstring3\"\n }, {\n token : \"string\", // \" string\n regex : strPre + '\"(?=.)',\n next : \"qqstring\"\n }, {\n token : \"string\", // multi line ''' string start\n regex : strPre + \"'{3}\",\n next : \"qstring3\"\n }, {\n token : \"string\", // ' string\n regex : strPre + \"'(?=.)\",\n next : \"qstring\"\n }, {\n token: \"string\",\n regex: strRawPre + '\"{3}',\n next: \"rawqqstring3\"\n }, {\n token: \"string\", \n regex: strRawPre + '\"(?=.)',\n next: \"rawqqstring\"\n }, {\n token: \"string\",\n regex: strRawPre + \"'{3}\",\n next: \"rawqstring3\"\n }, {\n token: \"string\",\n regex: strRawPre + \"'(?=.)\",\n next: \"rawqstring\"\n }, {\n token: \"string\",\n regex: strFormatPre + '\"{3}',\n next: \"fqqstring3\"\n }, {\n token: \"string\",\n regex: strFormatPre + '\"(?=.)',\n next: \"fqqstring\"\n }, {\n token: \"string\",\n regex: strFormatPre + \"'{3}\",\n next: \"fqstring3\"\n }, {\n token: \"string\",\n regex: strFormatPre + \"'(?=.)\",\n next: \"fqstring\"\n },{\n token: \"string\",\n regex: strRawFormatPre + '\"{3}',\n next: \"rfqqstring3\"\n }, {\n token: \"string\",\n regex: strRawFormatPre + '\"(?=.)',\n next: \"rfqqstring\"\n }, {\n token: \"string\",\n regex: strRawFormatPre + \"'{3}\",\n next: \"rfqstring3\"\n }, {\n token: \"string\",\n regex: strRawFormatPre + \"'(?=.)\",\n next: \"rfqstring\"\n }, {\n token: \"keyword.operator\",\n regex: \"\\\\+|\\\\-|\\\\*|\\\\*\\\\*|\\\\/|\\\\/\\\\/|%|@|<<|>>|&|\\\\||\\\\^|~|<|>|<=|=>|==|!=|<>|=\"\n }, {\n token: \"punctuation\",\n regex: \",|:|;|\\\\->|\\\\+=|\\\\-=|\\\\*=|\\\\/=|\\\\/\\\\/=|%=|@=|&=|\\\\|=|^=|>>=|<<=|\\\\*\\\\*=\"\n }, {\n token: \"paren.lparen\",\n regex: \"[\\\\[\\\\(\\\\{]\"\n }, {\n token: \"paren.rparen\",\n regex: \"[\\\\]\\\\)\\\\}]\"\n }, {\n token: \"text\",\n regex: \"\\\\s+\"\n }, {\n include: \"constants\"\n }],\n \"qqstring3\": [{\n token: \"constant.language.escape\",\n regex: stringEscape\n }, {\n token: \"string\", // multi line \"\"\" string end\n regex: '\"{3}',\n next: \"start\"\n }, {\n defaultToken: \"string\"\n }],\n \"qstring3\": [{\n token: \"constant.language.escape\",\n regex: stringEscape\n }, {\n token: \"string\", // multi line ''' string end\n regex: \"'{3}\",\n next: \"start\"\n }, {\n defaultToken: \"string\"\n }],\n \"qqstring\": [{\n token: \"constant.language.escape\",\n regex: stringEscape\n }, {\n token: \"string\",\n regex: \"\\\\\\\\$\",\n next: \"qqstring\"\n }, {\n token: \"string\",\n regex: '\"|$',\n next: \"start\"\n }, {\n defaultToken: \"string\"\n }],\n \"qstring\": [{\n token: \"constant.language.escape\",\n regex: stringEscape\n }, {\n token: \"string\",\n regex: \"\\\\\\\\$\",\n next: \"qstring\"\n }, {\n token: \"string\",\n regex: \"'|$\",\n next: \"start\"\n }, {\n defaultToken: \"string\"\n }],\n \"rawqqstring3\": [{\n token: \"string\", // multi line \"\"\" string end\n regex: '\"{3}',\n next: \"start\"\n }, {\n defaultToken: \"string\"\n }],\n \"rawqstring3\": [{\n token: \"string\", // multi line ''' string end\n regex: \"'{3}\",\n next: \"start\"\n }, {\n defaultToken: \"string\"\n }],\n \"rawqqstring\": [{\n token: \"string\",\n regex: \"\\\\\\\\$\",\n next: \"rawqqstring\"\n }, {\n token: \"string\",\n regex: '\"|$',\n next: \"start\"\n }, {\n defaultToken: \"string\"\n }],\n \"rawqstring\": [{\n token: \"string\",\n regex: \"\\\\\\\\$\",\n next: \"rawqstring\"\n }, {\n token: \"string\",\n regex: \"'|$\",\n next: \"start\"\n }, {\n defaultToken: \"string\"\n }],\n \"fqqstring3\": [{\n token: \"constant.language.escape\",\n regex: stringEscape\n }, {\n token: \"string\", // multi line \"\"\" string end\n regex: '\"{3}',\n next: \"start\"\n }, {\n token: \"paren.lparen\",\n regex: \"{\",\n push: \"fqstringParRules\"\n }, {\n defaultToken: \"string\"\n }],\n \"fqstring3\": [{\n token: \"constant.language.escape\",\n regex: stringEscape\n }, {\n token: \"string\", // multi line ''' string end\n regex: \"'{3}\",\n next: \"start\"\n }, {\n token: \"paren.lparen\",\n regex: \"{\",\n push: \"fqstringParRules\"\n }, {\n defaultToken: \"string\"\n }],\n \"fqqstring\": [{\n token: \"constant.language.escape\",\n regex: stringEscape\n }, {\n token: \"string\",\n regex: \"\\\\\\\\$\",\n next: \"fqqstring\"\n }, {\n token: \"string\",\n regex: '\"|$',\n next: \"start\"\n }, {\n token: \"paren.lparen\",\n regex: \"{\",\n push: \"fqstringParRules\"\n }, {\n defaultToken: \"string\"\n }],\n \"fqstring\": [{\n token: \"constant.language.escape\",\n regex: stringEscape\n }, {\n token: \"string\",\n regex: \"'|$\",\n next: \"start\"\n }, {\n token: \"paren.lparen\",\n regex: \"{\",\n push: \"fqstringParRules\"\n }, {\n defaultToken: \"string\"\n }],\n \"rfqqstring3\": [{\n token: \"string\", // multi line \"\"\" string end\n regex: '\"{3}',\n next: \"start\"\n }, {\n token: \"paren.lparen\",\n regex: \"{\",\n push: \"fqstringParRules\"\n }, {\n defaultToken: \"string\"\n }],\n \"rfqstring3\": [{\n token: \"string\", // multi line ''' string end\n regex: \"'{3}\",\n next: \"start\"\n }, {\n token: \"paren.lparen\",\n regex: \"{\",\n push: \"fqstringParRules\"\n }, {\n defaultToken: \"string\"\n }],\n \"rfqqstring\": [{\n token: \"string\",\n regex: \"\\\\\\\\$\",\n next: \"rfqqstring\"\n }, {\n token: \"string\",\n regex: '\"|$',\n next: \"start\"\n }, {\n token: \"paren.lparen\",\n regex: \"{\",\n push: \"fqstringParRules\"\n }, {\n defaultToken: \"string\"\n }],\n \"rfqstring\": [{\n token: \"string\",\n regex: \"'|$\",\n next: \"start\"\n }, {\n token: \"paren.lparen\",\n regex: \"{\",\n push: \"fqstringParRules\"\n }, {\n defaultToken: \"string\"\n }],\n \"fqstringParRules\": [{//TODO: nested {}\n token: \"paren.lparen\",\n regex: \"[\\\\[\\\\(]\"\n }, {\n token: \"paren.rparen\",\n regex: \"[\\\\]\\\\)]\"\n }, {\n token: \"string\",\n regex: \"\\\\s+\"\n }, {\n token: \"string\",\n regex: \"'(.)*'\"\n }, {\n token: \"string\",\n regex: '\"(.)*\"'\n }, {\n token: \"function.support\",\n regex: \"(!s|!r|!a)\"\n }, {\n include: \"constants\"\n },{\n token: 'paren.rparen',\n regex: \"}\",\n next: 'pop'\n },{\n token: 'paren.lparen',\n regex: \"{\",\n push: \"fqstringParRules\"\n }],\n \"constants\": [{\n token: \"constant.numeric\", // imaginary\n regex: \"(?:\" + floatNumber + \"|\\\\d+)[jJ]\\\\b\"\n }, {\n token: \"constant.numeric\", // float\n regex: floatNumber\n }, {\n token: \"constant.numeric\", // long integer\n regex: integer + \"[lL]\\\\b\"\n }, {\n token: \"constant.numeric\", // integer\n regex: integer + \"\\\\b\"\n }, {\n token: [\"punctuation\", \"function.support\"],// method\n regex: \"(\\\\.)([a-zA-Z_]+)\\\\b\"\n }, {\n token: keywordMapper,\n regex: \"[a-zA-Z_$][a-zA-Z0-9_$]*\\\\b\"\n }]\n };\n this.normalizeRules();\n};\n\noop.inherits(PythonHighlightRules, TextHighlightRules);\n\nexports.PythonHighlightRules = PythonHighlightRules;\n});\n\nace.define(\"ace/mode/csound_orchestra_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/lang\",\"ace/lib/oop\",\"ace/mode/csound_preprocessor_highlight_rules\",\"ace/mode/csound_score_highlight_rules\",\"ace/mode/lua_highlight_rules\",\"ace/mode/python_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar lang = require(\"../lib/lang\");\nvar oop = require(\"../lib/oop\");\n\nvar CsoundPreprocessorHighlightRules = require(\"./csound_preprocessor_highlight_rules\").CsoundPreprocessorHighlightRules;\nvar CsoundScoreHighlightRules = require(\"./csound_score_highlight_rules\").CsoundScoreHighlightRules;\nvar LuaHighlightRules = require(\"./lua_highlight_rules\").LuaHighlightRules;\nvar PythonHighlightRules = require(\"./python_highlight_rules\").PythonHighlightRules;\n\nvar CsoundOrchestraHighlightRules = function() {\n\n CsoundPreprocessorHighlightRules.call(this);\n var opcodes = [\n \"ATSadd\",\n \"ATSaddnz\",\n \"ATSbufread\",\n \"ATScross\",\n \"ATSinfo\",\n \"ATSinterpread\",\n \"ATSpartialtap\",\n \"ATSread\",\n \"ATSreadnz\",\n \"ATSsinnoi\",\n \"FLbox\",\n \"FLbutBank\",\n \"FLbutton\",\n \"FLcloseButton\",\n \"FLcolor\",\n \"FLcolor2\",\n \"FLcount\",\n \"FLexecButton\",\n \"FLgetsnap\",\n \"FLgroup\",\n \"FLgroupEnd\",\n \"FLgroup_end\",\n \"FLhide\",\n \"FLhvsBox\",\n \"FLhvsBoxSetValue\",\n \"FLjoy\",\n \"FLkeyIn\",\n \"FLknob\",\n \"FLlabel\",\n \"FLloadsnap\",\n \"FLmouse\",\n \"FLpack\",\n \"FLpackEnd\",\n \"FLpack_end\",\n \"FLpanel\",\n \"FLpanelEnd\",\n \"FLpanel_end\",\n \"FLprintk\",\n \"FLprintk2\",\n \"FLroller\",\n \"FLrun\",\n \"FLsavesnap\",\n \"FLscroll\",\n \"FLscrollEnd\",\n \"FLscroll_end\",\n \"FLsetAlign\",\n \"FLsetBox\",\n \"FLsetColor\",\n \"FLsetColor2\",\n \"FLsetFont\",\n \"FLsetPosition\",\n \"FLsetSize\",\n \"FLsetSnapGroup\",\n \"FLsetText\",\n \"FLsetTextColor\",\n \"FLsetTextSize\",\n \"FLsetTextType\",\n \"FLsetVal\",\n \"FLsetVal_i\",\n \"FLsetVali\",\n \"FLsetsnap\",\n \"FLshow\",\n \"FLslidBnk\",\n \"FLslidBnk2\",\n \"FLslidBnk2Set\",\n \"FLslidBnk2Setk\",\n \"FLslidBnkGetHandle\",\n \"FLslidBnkSet\",\n \"FLslidBnkSetk\",\n \"FLslider\",\n \"FLtabs\",\n \"FLtabsEnd\",\n \"FLtabs_end\",\n \"FLtext\",\n \"FLupdate\",\n \"FLvalue\",\n \"FLvkeybd\",\n \"FLvslidBnk\",\n \"FLvslidBnk2\",\n \"FLxyin\",\n \"JackoAudioIn\",\n \"JackoAudioInConnect\",\n \"JackoAudioOut\",\n \"JackoAudioOutConnect\",\n \"JackoFreewheel\",\n \"JackoInfo\",\n \"JackoInit\",\n \"JackoMidiInConnect\",\n \"JackoMidiOut\",\n \"JackoMidiOutConnect\",\n \"JackoNoteOut\",\n \"JackoOn\",\n \"JackoTransport\",\n \"K35_hpf\",\n \"K35_lpf\",\n \"MixerClear\",\n \"MixerGetLevel\",\n \"MixerReceive\",\n \"MixerSend\",\n \"MixerSetLevel\",\n \"MixerSetLevel_i\",\n \"OSCbundle\",\n \"OSCcount\",\n \"OSCinit\",\n \"OSCinitM\",\n \"OSClisten\",\n \"OSCraw\",\n \"OSCsend\",\n \"OSCsend_lo\",\n \"S\",\n \"STKBandedWG\",\n \"STKBeeThree\",\n \"STKBlowBotl\",\n \"STKBlowHole\",\n \"STKBowed\",\n \"STKBrass\",\n \"STKClarinet\",\n \"STKDrummer\",\n \"STKFMVoices\",\n \"STKFlute\",\n \"STKHevyMetl\",\n \"STKMandolin\",\n \"STKModalBar\",\n \"STKMoog\",\n \"STKPercFlut\",\n \"STKPlucked\",\n \"STKResonate\",\n \"STKRhodey\",\n \"STKSaxofony\",\n \"STKShakers\",\n \"STKSimple\",\n \"STKSitar\",\n \"STKStifKarp\",\n \"STKTubeBell\",\n \"STKVoicForm\",\n \"STKWhistle\",\n \"STKWurley\",\n \"a\",\n \"abs\",\n \"active\",\n \"adsr\",\n \"adsyn\",\n \"adsynt\",\n \"adsynt2\",\n \"aftouch\",\n \"alpass\",\n \"alwayson\",\n \"ampdb\",\n \"ampdbfs\",\n \"ampmidi\",\n \"ampmidid\",\n \"areson\",\n \"aresonk\",\n \"atone\",\n \"atonek\",\n \"atonex\",\n \"babo\",\n \"balance\",\n \"balance2\",\n \"bamboo\",\n \"barmodel\",\n \"bbcutm\",\n \"bbcuts\",\n \"beadsynt\",\n \"beosc\",\n \"betarand\",\n \"bexprnd\",\n \"bformdec1\",\n \"bformenc1\",\n \"binit\",\n \"biquad\",\n \"biquada\",\n \"birnd\",\n \"bpf\",\n \"bpfcos\",\n \"bqrez\",\n \"butbp\",\n \"butbr\",\n \"buthp\",\n \"butlp\",\n \"butterbp\",\n \"butterbr\",\n \"butterhp\",\n \"butterlp\",\n \"button\",\n \"buzz\",\n \"c2r\",\n \"cabasa\",\n \"cauchy\",\n \"cauchyi\",\n \"cbrt\",\n \"ceil\",\n \"cell\",\n \"cent\",\n \"centroid\",\n \"ceps\",\n \"cepsinv\",\n \"chanctrl\",\n \"changed\",\n \"changed2\",\n \"chani\",\n \"chano\",\n \"chebyshevpoly\",\n \"checkbox\",\n \"chn_S\",\n \"chn_a\",\n \"chn_k\",\n \"chnclear\",\n \"chnexport\",\n \"chnget\",\n \"chngetks\",\n \"chnmix\",\n \"chnparams\",\n \"chnset\",\n \"chnsetks\",\n \"chuap\",\n \"clear\",\n \"clfilt\",\n \"clip\",\n \"clockoff\",\n \"clockon\",\n \"cmp\",\n \"cmplxprod\",\n \"comb\",\n \"combinv\",\n \"compilecsd\",\n \"compileorc\",\n \"compilestr\",\n \"compress\",\n \"compress2\",\n \"connect\",\n \"control\",\n \"convle\",\n \"convolve\",\n \"copya2ftab\",\n \"copyf2array\",\n \"cos\",\n \"cosh\",\n \"cosinv\",\n \"cosseg\",\n \"cossegb\",\n \"cossegr\",\n \"cps2pch\",\n \"cpsmidi\",\n \"cpsmidib\",\n \"cpsmidinn\",\n \"cpsoct\",\n \"cpspch\",\n \"cpstmid\",\n \"cpstun\",\n \"cpstuni\",\n \"cpsxpch\",\n \"cpumeter\",\n \"cpuprc\",\n \"cross2\",\n \"crossfm\",\n \"crossfmi\",\n \"crossfmpm\",\n \"crossfmpmi\",\n \"crosspm\",\n \"crosspmi\",\n \"crunch\",\n \"ctlchn\",\n \"ctrl14\",\n \"ctrl21\",\n \"ctrl7\",\n \"ctrlinit\",\n \"cuserrnd\",\n \"dam\",\n \"date\",\n \"dates\",\n \"db\",\n \"dbamp\",\n \"dbfsamp\",\n \"dcblock\",\n \"dcblock2\",\n \"dconv\",\n \"dct\",\n \"dctinv\",\n \"deinterleave\",\n \"delay\",\n \"delay1\",\n \"delayk\",\n \"delayr\",\n \"delayw\",\n \"deltap\",\n \"deltap3\",\n \"deltapi\",\n \"deltapn\",\n \"deltapx\",\n \"deltapxw\",\n \"denorm\",\n \"diff\",\n \"diode_ladder\",\n \"directory\",\n \"diskgrain\",\n \"diskin\",\n \"diskin2\",\n \"dispfft\",\n \"display\",\n \"distort\",\n \"distort1\",\n \"divz\",\n \"doppler\",\n \"dot\",\n \"downsamp\",\n \"dripwater\",\n \"dssiactivate\",\n \"dssiaudio\",\n \"dssictls\",\n \"dssiinit\",\n \"dssilist\",\n \"dumpk\",\n \"dumpk2\",\n \"dumpk3\",\n \"dumpk4\",\n \"duserrnd\",\n \"dust\",\n \"dust2\",\n \"envlpx\",\n \"envlpxr\",\n \"ephasor\",\n \"eqfil\",\n \"evalstr\",\n \"event\",\n \"event_i\",\n \"exciter\",\n \"exitnow\",\n \"exp\",\n \"expcurve\",\n \"expon\",\n \"exprand\",\n \"exprandi\",\n \"expseg\",\n \"expsega\",\n \"expsegb\",\n \"expsegba\",\n \"expsegr\",\n \"fareylen\",\n \"fareyleni\",\n \"faustaudio\",\n \"faustcompile\",\n \"faustctl\",\n \"faustdsp\",\n \"faustgen\",\n \"faustplay\",\n \"fft\",\n \"fftinv\",\n \"ficlose\",\n \"filebit\",\n \"filelen\",\n \"filenchnls\",\n \"filepeak\",\n \"filescal\",\n \"filesr\",\n \"filevalid\",\n \"fillarray\",\n \"filter2\",\n \"fin\",\n \"fini\",\n \"fink\",\n \"fiopen\",\n \"flanger\",\n \"flashtxt\",\n \"flooper\",\n \"flooper2\",\n \"floor\",\n \"fmanal\",\n \"fmax\",\n \"fmb3\",\n \"fmbell\",\n \"fmin\",\n \"fmmetal\",\n \"fmod\",\n \"fmpercfl\",\n \"fmrhode\",\n \"fmvoice\",\n \"fmwurlie\",\n \"fof\",\n \"fof2\",\n \"fofilter\",\n \"fog\",\n \"fold\",\n \"follow\",\n \"follow2\",\n \"foscil\",\n \"foscili\",\n \"fout\",\n \"fouti\",\n \"foutir\",\n \"foutk\",\n \"fprintks\",\n \"fprints\",\n \"frac\",\n \"fractalnoise\",\n \"framebuffer\",\n \"freeverb\",\n \"ftaudio\",\n \"ftchnls\",\n \"ftconv\",\n \"ftcps\",\n \"ftfree\",\n \"ftgen\",\n \"ftgenonce\",\n \"ftgentmp\",\n \"ftlen\",\n \"ftload\",\n \"ftloadk\",\n \"ftlptim\",\n \"ftmorf\",\n \"ftom\",\n \"ftprint\",\n \"ftresize\",\n \"ftresizei\",\n \"ftsamplebank\",\n \"ftsave\",\n \"ftsavek\",\n \"ftslice\",\n \"ftsr\",\n \"gain\",\n \"gainslider\",\n \"gauss\",\n \"gaussi\",\n \"gausstrig\",\n \"gbuzz\",\n \"genarray\",\n \"genarray_i\",\n \"gendy\",\n \"gendyc\",\n \"gendyx\",\n \"getcfg\",\n \"getcol\",\n \"getftargs\",\n \"getrow\",\n \"getrowlin\",\n \"getseed\",\n \"gogobel\",\n \"grain\",\n \"grain2\",\n \"grain3\",\n \"granule\",\n \"guiro\",\n \"harmon\",\n \"harmon2\",\n \"harmon3\",\n \"harmon4\",\n \"hdf5read\",\n \"hdf5write\",\n \"hilbert\",\n \"hilbert2\",\n \"hrtfearly\",\n \"hrtfmove\",\n \"hrtfmove2\",\n \"hrtfreverb\",\n \"hrtfstat\",\n \"hsboscil\",\n \"hvs1\",\n \"hvs2\",\n \"hvs3\",\n \"hypot\",\n \"i\",\n \"ihold\",\n \"imagecreate\",\n \"imagefree\",\n \"imagegetpixel\",\n \"imageload\",\n \"imagesave\",\n \"imagesetpixel\",\n \"imagesize\",\n \"in\",\n \"in32\",\n \"inch\",\n \"inh\",\n \"init\",\n \"initc14\",\n \"initc21\",\n \"initc7\",\n \"inleta\",\n \"inletf\",\n \"inletk\",\n \"inletkid\",\n \"inletv\",\n \"ino\",\n \"inq\",\n \"inrg\",\n \"ins\",\n \"insglobal\",\n \"insremot\",\n \"int\",\n \"integ\",\n \"interleave\",\n \"interp\",\n \"invalue\",\n \"inx\",\n \"inz\",\n \"jacktransport\",\n \"jitter\",\n \"jitter2\",\n \"joystick\",\n \"jspline\",\n \"k\",\n \"la_i_add_mc\",\n \"la_i_add_mr\",\n \"la_i_add_vc\",\n \"la_i_add_vr\",\n \"la_i_assign_mc\",\n \"la_i_assign_mr\",\n \"la_i_assign_t\",\n \"la_i_assign_vc\",\n \"la_i_assign_vr\",\n \"la_i_conjugate_mc\",\n \"la_i_conjugate_mr\",\n \"la_i_conjugate_vc\",\n \"la_i_conjugate_vr\",\n \"la_i_distance_vc\",\n \"la_i_distance_vr\",\n \"la_i_divide_mc\",\n \"la_i_divide_mr\",\n \"la_i_divide_vc\",\n \"la_i_divide_vr\",\n \"la_i_dot_mc\",\n \"la_i_dot_mc_vc\",\n \"la_i_dot_mr\",\n \"la_i_dot_mr_vr\",\n \"la_i_dot_vc\",\n \"la_i_dot_vr\",\n \"la_i_get_mc\",\n \"la_i_get_mr\",\n \"la_i_get_vc\",\n \"la_i_get_vr\",\n \"la_i_invert_mc\",\n \"la_i_invert_mr\",\n \"la_i_lower_solve_mc\",\n \"la_i_lower_solve_mr\",\n \"la_i_lu_det_mc\",\n \"la_i_lu_det_mr\",\n \"la_i_lu_factor_mc\",\n \"la_i_lu_factor_mr\",\n \"la_i_lu_solve_mc\",\n \"la_i_lu_solve_mr\",\n \"la_i_mc_create\",\n \"la_i_mc_set\",\n \"la_i_mr_create\",\n \"la_i_mr_set\",\n \"la_i_multiply_mc\",\n \"la_i_multiply_mr\",\n \"la_i_multiply_vc\",\n \"la_i_multiply_vr\",\n \"la_i_norm1_mc\",\n \"la_i_norm1_mr\",\n \"la_i_norm1_vc\",\n \"la_i_norm1_vr\",\n \"la_i_norm_euclid_mc\",\n \"la_i_norm_euclid_mr\",\n \"la_i_norm_euclid_vc\",\n \"la_i_norm_euclid_vr\",\n \"la_i_norm_inf_mc\",\n \"la_i_norm_inf_mr\",\n \"la_i_norm_inf_vc\",\n \"la_i_norm_inf_vr\",\n \"la_i_norm_max_mc\",\n \"la_i_norm_max_mr\",\n \"la_i_print_mc\",\n \"la_i_print_mr\",\n \"la_i_print_vc\",\n \"la_i_print_vr\",\n \"la_i_qr_eigen_mc\",\n \"la_i_qr_eigen_mr\",\n \"la_i_qr_factor_mc\",\n \"la_i_qr_factor_mr\",\n \"la_i_qr_sym_eigen_mc\",\n \"la_i_qr_sym_eigen_mr\",\n \"la_i_random_mc\",\n \"la_i_random_mr\",\n \"la_i_random_vc\",\n \"la_i_random_vr\",\n \"la_i_size_mc\",\n \"la_i_size_mr\",\n \"la_i_size_vc\",\n \"la_i_size_vr\",\n \"la_i_subtract_mc\",\n \"la_i_subtract_mr\",\n \"la_i_subtract_vc\",\n \"la_i_subtract_vr\",\n \"la_i_t_assign\",\n \"la_i_trace_mc\",\n \"la_i_trace_mr\",\n \"la_i_transpose_mc\",\n \"la_i_transpose_mr\",\n \"la_i_upper_solve_mc\",\n \"la_i_upper_solve_mr\",\n \"la_i_vc_create\",\n \"la_i_vc_set\",\n \"la_i_vr_create\",\n \"la_i_vr_set\",\n \"la_k_a_assign\",\n \"la_k_add_mc\",\n \"la_k_add_mr\",\n \"la_k_add_vc\",\n \"la_k_add_vr\",\n \"la_k_assign_a\",\n \"la_k_assign_f\",\n \"la_k_assign_mc\",\n \"la_k_assign_mr\",\n \"la_k_assign_t\",\n \"la_k_assign_vc\",\n \"la_k_assign_vr\",\n \"la_k_conjugate_mc\",\n \"la_k_conjugate_mr\",\n \"la_k_conjugate_vc\",\n \"la_k_conjugate_vr\",\n \"la_k_current_f\",\n \"la_k_current_vr\",\n \"la_k_distance_vc\",\n \"la_k_distance_vr\",\n \"la_k_divide_mc\",\n \"la_k_divide_mr\",\n \"la_k_divide_vc\",\n \"la_k_divide_vr\",\n \"la_k_dot_mc\",\n \"la_k_dot_mc_vc\",\n \"la_k_dot_mr\",\n \"la_k_dot_mr_vr\",\n \"la_k_dot_vc\",\n \"la_k_dot_vr\",\n \"la_k_f_assign\",\n \"la_k_get_mc\",\n \"la_k_get_mr\",\n \"la_k_get_vc\",\n \"la_k_get_vr\",\n \"la_k_invert_mc\",\n \"la_k_invert_mr\",\n \"la_k_lower_solve_mc\",\n \"la_k_lower_solve_mr\",\n \"la_k_lu_det_mc\",\n \"la_k_lu_det_mr\",\n \"la_k_lu_factor_mc\",\n \"la_k_lu_factor_mr\",\n \"la_k_lu_solve_mc\",\n \"la_k_lu_solve_mr\",\n \"la_k_mc_set\",\n \"la_k_mr_set\",\n \"la_k_multiply_mc\",\n \"la_k_multiply_mr\",\n \"la_k_multiply_vc\",\n \"la_k_multiply_vr\",\n \"la_k_norm1_mc\",\n \"la_k_norm1_mr\",\n \"la_k_norm1_vc\",\n \"la_k_norm1_vr\",\n \"la_k_norm_euclid_mc\",\n \"la_k_norm_euclid_mr\",\n \"la_k_norm_euclid_vc\",\n \"la_k_norm_euclid_vr\",\n \"la_k_norm_inf_mc\",\n \"la_k_norm_inf_mr\",\n \"la_k_norm_inf_vc\",\n \"la_k_norm_inf_vr\",\n \"la_k_norm_max_mc\",\n \"la_k_norm_max_mr\",\n \"la_k_qr_eigen_mc\",\n \"la_k_qr_eigen_mr\",\n \"la_k_qr_factor_mc\",\n \"la_k_qr_factor_mr\",\n \"la_k_qr_sym_eigen_mc\",\n \"la_k_qr_sym_eigen_mr\",\n \"la_k_random_mc\",\n \"la_k_random_mr\",\n \"la_k_random_vc\",\n \"la_k_random_vr\",\n \"la_k_subtract_mc\",\n \"la_k_subtract_mr\",\n \"la_k_subtract_vc\",\n \"la_k_subtract_vr\",\n \"la_k_t_assign\",\n \"la_k_trace_mc\",\n \"la_k_trace_mr\",\n \"la_k_upper_solve_mc\",\n \"la_k_upper_solve_mr\",\n \"la_k_vc_set\",\n \"la_k_vr_set\",\n \"lenarray\",\n \"lfo\",\n \"limit\",\n \"limit1\",\n \"lincos\",\n \"line\",\n \"linen\",\n \"linenr\",\n \"lineto\",\n \"link_beat_force\",\n \"link_beat_get\",\n \"link_beat_request\",\n \"link_create\",\n \"link_enable\",\n \"link_is_enabled\",\n \"link_metro\",\n \"link_peers\",\n \"link_tempo_get\",\n \"link_tempo_set\",\n \"linlin\",\n \"linrand\",\n \"linseg\",\n \"linsegb\",\n \"linsegr\",\n \"liveconv\",\n \"locsend\",\n \"locsig\",\n \"log\",\n \"log10\",\n \"log2\",\n \"logbtwo\",\n \"logcurve\",\n \"loopseg\",\n \"loopsegp\",\n \"looptseg\",\n \"loopxseg\",\n \"lorenz\",\n \"loscil\",\n \"loscil3\",\n \"loscil3phs\",\n \"loscilphs\",\n \"loscilx\",\n \"lowpass2\",\n \"lowres\",\n \"lowresx\",\n \"lpf18\",\n \"lpform\",\n \"lpfreson\",\n \"lphasor\",\n \"lpinterp\",\n \"lposcil\",\n \"lposcil3\",\n \"lposcila\",\n \"lposcilsa\",\n \"lposcilsa2\",\n \"lpread\",\n \"lpreson\",\n \"lpshold\",\n \"lpsholdp\",\n \"lpslot\",\n \"lua_exec\",\n \"lua_iaopcall\",\n \"lua_iaopcall_off\",\n \"lua_ikopcall\",\n \"lua_ikopcall_off\",\n \"lua_iopcall\",\n \"lua_iopcall_off\",\n \"lua_opdef\",\n \"mac\",\n \"maca\",\n \"madsr\",\n \"mags\",\n \"mandel\",\n \"mandol\",\n \"maparray\",\n \"maparray_i\",\n \"marimba\",\n \"massign\",\n \"max\",\n \"max_k\",\n \"maxabs\",\n \"maxabsaccum\",\n \"maxaccum\",\n \"maxalloc\",\n \"maxarray\",\n \"mclock\",\n \"mdelay\",\n \"median\",\n \"mediank\",\n \"metro\",\n \"mfb\",\n \"midglobal\",\n \"midiarp\",\n \"midic14\",\n \"midic21\",\n \"midic7\",\n \"midichannelaftertouch\",\n \"midichn\",\n \"midicontrolchange\",\n \"midictrl\",\n \"mididefault\",\n \"midifilestatus\",\n \"midiin\",\n \"midinoteoff\",\n \"midinoteoncps\",\n \"midinoteonkey\",\n \"midinoteonoct\",\n \"midinoteonpch\",\n \"midion\",\n \"midion2\",\n \"midiout\",\n \"midiout_i\",\n \"midipgm\",\n \"midipitchbend\",\n \"midipolyaftertouch\",\n \"midiprogramchange\",\n \"miditempo\",\n \"midremot\",\n \"min\",\n \"minabs\",\n \"minabsaccum\",\n \"minaccum\",\n \"minarray\",\n \"mincer\",\n \"mirror\",\n \"mode\",\n \"modmatrix\",\n \"monitor\",\n \"moog\",\n \"moogladder\",\n \"moogladder2\",\n \"moogvcf\",\n \"moogvcf2\",\n \"moscil\",\n \"mp3bitrate\",\n \"mp3in\",\n \"mp3len\",\n \"mp3nchnls\",\n \"mp3scal\",\n \"mp3sr\",\n \"mpulse\",\n \"mrtmsg\",\n \"mtof\",\n \"mton\",\n \"multitap\",\n \"mute\",\n \"mvchpf\",\n \"mvclpf1\",\n \"mvclpf2\",\n \"mvclpf3\",\n \"mvclpf4\",\n \"mxadsr\",\n \"nchnls_hw\",\n \"nestedap\",\n \"nlalp\",\n \"nlfilt\",\n \"nlfilt2\",\n \"noise\",\n \"noteoff\",\n \"noteon\",\n \"noteondur\",\n \"noteondur2\",\n \"notnum\",\n \"nreverb\",\n \"nrpn\",\n \"nsamp\",\n \"nstance\",\n \"nstrnum\",\n \"ntom\",\n \"ntrpol\",\n \"nxtpow2\",\n \"octave\",\n \"octcps\",\n \"octmidi\",\n \"octmidib\",\n \"octmidinn\",\n \"octpch\",\n \"olabuffer\",\n \"oscbnk\",\n \"oscil\",\n \"oscil1\",\n \"oscil1i\",\n \"oscil3\",\n \"oscili\",\n \"oscilikt\",\n \"osciliktp\",\n \"oscilikts\",\n \"osciln\",\n \"oscils\",\n \"oscilx\",\n \"out\",\n \"out32\",\n \"outc\",\n \"outch\",\n \"outh\",\n \"outiat\",\n \"outic\",\n \"outic14\",\n \"outipat\",\n \"outipb\",\n \"outipc\",\n \"outkat\",\n \"outkc\",\n \"outkc14\",\n \"outkpat\",\n \"outkpb\",\n \"outkpc\",\n \"outleta\",\n \"outletf\",\n \"outletk\",\n \"outletkid\",\n \"outletv\",\n \"outo\",\n \"outq\",\n \"outq1\",\n \"outq2\",\n \"outq3\",\n \"outq4\",\n \"outrg\",\n \"outs\",\n \"outs1\",\n \"outs2\",\n \"outvalue\",\n \"outx\",\n \"outz\",\n \"p\",\n \"p5gconnect\",\n \"p5gdata\",\n \"pan\",\n \"pan2\",\n \"pareq\",\n \"part2txt\",\n \"partials\",\n \"partikkel\",\n \"partikkelget\",\n \"partikkelset\",\n \"partikkelsync\",\n \"passign\",\n \"paulstretch\",\n \"pcauchy\",\n \"pchbend\",\n \"pchmidi\",\n \"pchmidib\",\n \"pchmidinn\",\n \"pchoct\",\n \"pchtom\",\n \"pconvolve\",\n \"pcount\",\n \"pdclip\",\n \"pdhalf\",\n \"pdhalfy\",\n \"peak\",\n \"pgmassign\",\n \"pgmchn\",\n \"phaser1\",\n \"phaser2\",\n \"phasor\",\n \"phasorbnk\",\n \"phs\",\n \"pindex\",\n \"pinker\",\n \"pinkish\",\n \"pitch\",\n \"pitchac\",\n \"pitchamdf\",\n \"planet\",\n \"platerev\",\n \"plltrack\",\n \"pluck\",\n \"poisson\",\n \"pol2rect\",\n \"polyaft\",\n \"polynomial\",\n \"port\",\n \"portk\",\n \"poscil\",\n \"poscil3\",\n \"pow\",\n \"powershape\",\n \"powoftwo\",\n \"pows\",\n \"prealloc\",\n \"prepiano\",\n \"print\",\n \"print_type\",\n \"printarray\",\n \"printf\",\n \"printf_i\",\n \"printk\",\n \"printk2\",\n \"printks\",\n \"printks2\",\n \"prints\",\n \"product\",\n \"pset\",\n \"ptable\",\n \"ptable3\",\n \"ptablei\",\n \"ptableiw\",\n \"ptablew\",\n \"ptrack\",\n \"puts\",\n \"pvadd\",\n \"pvbufread\",\n \"pvcross\",\n \"pvinterp\",\n \"pvoc\",\n \"pvread\",\n \"pvs2array\",\n \"pvs2tab\",\n \"pvsadsyn\",\n \"pvsanal\",\n \"pvsarp\",\n \"pvsbandp\",\n \"pvsbandr\",\n \"pvsbin\",\n \"pvsblur\",\n \"pvsbuffer\",\n \"pvsbufread\",\n \"pvsbufread2\",\n \"pvscale\",\n \"pvscent\",\n \"pvsceps\",\n \"pvscross\",\n \"pvsdemix\",\n \"pvsdiskin\",\n \"pvsdisp\",\n \"pvsenvftw\",\n \"pvsfilter\",\n \"pvsfread\",\n \"pvsfreeze\",\n \"pvsfromarray\",\n \"pvsftr\",\n \"pvsftw\",\n \"pvsfwrite\",\n \"pvsgain\",\n \"pvshift\",\n \"pvsifd\",\n \"pvsin\",\n \"pvsinfo\",\n \"pvsinit\",\n \"pvslock\",\n \"pvsmaska\",\n \"pvsmix\",\n \"pvsmooth\",\n \"pvsmorph\",\n \"pvsosc\",\n \"pvsout\",\n \"pvspitch\",\n \"pvstanal\",\n \"pvstencil\",\n \"pvstrace\",\n \"pvsvoc\",\n \"pvswarp\",\n \"pvsynth\",\n \"pwd\",\n \"pyassign\",\n \"pyassigni\",\n \"pyassignt\",\n \"pycall\",\n \"pycall1\",\n \"pycall1i\",\n \"pycall1t\",\n \"pycall2\",\n \"pycall2i\",\n \"pycall2t\",\n \"pycall3\",\n \"pycall3i\",\n \"pycall3t\",\n \"pycall4\",\n \"pycall4i\",\n \"pycall4t\",\n \"pycall5\",\n \"pycall5i\",\n \"pycall5t\",\n \"pycall6\",\n \"pycall6i\",\n \"pycall6t\",\n \"pycall7\",\n \"pycall7i\",\n \"pycall7t\",\n \"pycall8\",\n \"pycall8i\",\n \"pycall8t\",\n \"pycalli\",\n \"pycalln\",\n \"pycallni\",\n \"pycallt\",\n \"pyeval\",\n \"pyevali\",\n \"pyevalt\",\n \"pyexec\",\n \"pyexeci\",\n \"pyexect\",\n \"pyinit\",\n \"pylassign\",\n \"pylassigni\",\n \"pylassignt\",\n \"pylcall\",\n \"pylcall1\",\n \"pylcall1i\",\n \"pylcall1t\",\n \"pylcall2\",\n \"pylcall2i\",\n \"pylcall2t\",\n \"pylcall3\",\n \"pylcall3i\",\n \"pylcall3t\",\n \"pylcall4\",\n \"pylcall4i\",\n \"pylcall4t\",\n \"pylcall5\",\n \"pylcall5i\",\n \"pylcall5t\",\n \"pylcall6\",\n \"pylcall6i\",\n \"pylcall6t\",\n \"pylcall7\",\n \"pylcall7i\",\n \"pylcall7t\",\n \"pylcall8\",\n \"pylcall8i\",\n \"pylcall8t\",\n \"pylcalli\",\n \"pylcalln\",\n \"pylcallni\",\n \"pylcallt\",\n \"pyleval\",\n \"pylevali\",\n \"pylevalt\",\n \"pylexec\",\n \"pylexeci\",\n \"pylexect\",\n \"pylrun\",\n \"pylruni\",\n \"pylrunt\",\n \"pyrun\",\n \"pyruni\",\n \"pyrunt\",\n \"qinf\",\n \"qnan\",\n \"r2c\",\n \"rand\",\n \"randh\",\n \"randi\",\n \"random\",\n \"randomh\",\n \"randomi\",\n \"rbjeq\",\n \"readclock\",\n \"readf\",\n \"readfi\",\n \"readk\",\n \"readk2\",\n \"readk3\",\n \"readk4\",\n \"readks\",\n \"readscore\",\n \"readscratch\",\n \"rect2pol\",\n \"release\",\n \"remoteport\",\n \"remove\",\n \"repluck\",\n \"reshapearray\",\n \"reson\",\n \"resonk\",\n \"resonr\",\n \"resonx\",\n \"resonxk\",\n \"resony\",\n \"resonz\",\n \"resyn\",\n \"reverb\",\n \"reverb2\",\n \"reverbsc\",\n \"rewindscore\",\n \"rezzy\",\n \"rfft\",\n \"rifft\",\n \"rms\",\n \"rnd\",\n \"rnd31\",\n \"round\",\n \"rspline\",\n \"rtclock\",\n \"s16b14\",\n \"s32b14\",\n \"samphold\",\n \"sandpaper\",\n \"sc_lag\",\n \"sc_lagud\",\n \"sc_phasor\",\n \"sc_trig\",\n \"scale\",\n \"scalearray\",\n \"scanhammer\",\n \"scans\",\n \"scantable\",\n \"scanu\",\n \"schedkwhen\",\n \"schedkwhennamed\",\n \"schedule\",\n \"schedwhen\",\n \"scoreline\",\n \"scoreline_i\",\n \"seed\",\n \"sekere\",\n \"select\",\n \"semitone\",\n \"sense\",\n \"sensekey\",\n \"seqtime\",\n \"seqtime2\",\n \"serialBegin\",\n \"serialEnd\",\n \"serialFlush\",\n \"serialPrint\",\n \"serialRead\",\n \"serialWrite\",\n \"serialWrite_i\",\n \"setcol\",\n \"setctrl\",\n \"setksmps\",\n \"setrow\",\n \"setscorepos\",\n \"sfilist\",\n \"sfinstr\",\n \"sfinstr3\",\n \"sfinstr3m\",\n \"sfinstrm\",\n \"sfload\",\n \"sflooper\",\n \"sfpassign\",\n \"sfplay\",\n \"sfplay3\",\n \"sfplay3m\",\n \"sfplaym\",\n \"sfplist\",\n \"sfpreset\",\n \"shaker\",\n \"shiftin\",\n \"shiftout\",\n \"signum\",\n \"sin\",\n \"sinh\",\n \"sininv\",\n \"sinsyn\",\n \"sleighbells\",\n \"slicearray\",\n \"slicearray_i\",\n \"slider16\",\n \"slider16f\",\n \"slider16table\",\n \"slider16tablef\",\n \"slider32\",\n \"slider32f\",\n \"slider32table\",\n \"slider32tablef\",\n \"slider64\",\n \"slider64f\",\n \"slider64table\",\n \"slider64tablef\",\n \"slider8\",\n \"slider8f\",\n \"slider8table\",\n \"slider8tablef\",\n \"sliderKawai\",\n \"sndloop\",\n \"sndwarp\",\n \"sndwarpst\",\n \"sockrecv\",\n \"sockrecvs\",\n \"socksend\",\n \"socksends\",\n \"sorta\",\n \"sortd\",\n \"soundin\",\n \"space\",\n \"spat3d\",\n \"spat3di\",\n \"spat3dt\",\n \"spdist\",\n \"splitrig\",\n \"sprintf\",\n \"sprintfk\",\n \"spsend\",\n \"sqrt\",\n \"squinewave\",\n \"statevar\",\n \"stix\",\n \"strcat\",\n \"strcatk\",\n \"strchar\",\n \"strchark\",\n \"strcmp\",\n \"strcmpk\",\n \"strcpy\",\n \"strcpyk\",\n \"strecv\",\n \"streson\",\n \"strfromurl\",\n \"strget\",\n \"strindex\",\n \"strindexk\",\n \"strlen\",\n \"strlenk\",\n \"strlower\",\n \"strlowerk\",\n \"strrindex\",\n \"strrindexk\",\n \"strset\",\n \"strsub\",\n \"strsubk\",\n \"strtod\",\n \"strtodk\",\n \"strtol\",\n \"strtolk\",\n \"strupper\",\n \"strupperk\",\n \"stsend\",\n \"subinstr\",\n \"subinstrinit\",\n \"sum\",\n \"sumarray\",\n \"svfilter\",\n \"syncgrain\",\n \"syncloop\",\n \"syncphasor\",\n \"system\",\n \"system_i\",\n \"tab\",\n \"tab2array\",\n \"tab2pvs\",\n \"tab_i\",\n \"tabifd\",\n \"table\",\n \"table3\",\n \"table3kt\",\n \"tablecopy\",\n \"tablefilter\",\n \"tablefilteri\",\n \"tablegpw\",\n \"tablei\",\n \"tableicopy\",\n \"tableigpw\",\n \"tableikt\",\n \"tableimix\",\n \"tableiw\",\n \"tablekt\",\n \"tablemix\",\n \"tableng\",\n \"tablera\",\n \"tableseg\",\n \"tableshuffle\",\n \"tableshufflei\",\n \"tablew\",\n \"tablewa\",\n \"tablewkt\",\n \"tablexkt\",\n \"tablexseg\",\n \"tabmorph\",\n \"tabmorpha\",\n \"tabmorphak\",\n \"tabmorphi\",\n \"tabplay\",\n \"tabrec\",\n \"tabrowlin\",\n \"tabsum\",\n \"tabw\",\n \"tabw_i\",\n \"tambourine\",\n \"tan\",\n \"tanh\",\n \"taninv\",\n \"taninv2\",\n \"tbvcf\",\n \"tempest\",\n \"tempo\",\n \"temposcal\",\n \"tempoval\",\n \"timedseq\",\n \"timeinstk\",\n \"timeinsts\",\n \"timek\",\n \"times\",\n \"tival\",\n \"tlineto\",\n \"tone\",\n \"tonek\",\n \"tonex\",\n \"tradsyn\",\n \"trandom\",\n \"transeg\",\n \"transegb\",\n \"transegr\",\n \"trcross\",\n \"trfilter\",\n \"trhighest\",\n \"trigger\",\n \"trigseq\",\n \"trim\",\n \"trim_i\",\n \"trirand\",\n \"trlowest\",\n \"trmix\",\n \"trscale\",\n \"trshift\",\n \"trsplit\",\n \"turnoff\",\n \"turnoff2\",\n \"turnon\",\n \"tvconv\",\n \"unirand\",\n \"unwrap\",\n \"upsamp\",\n \"urandom\",\n \"urd\",\n \"vactrol\",\n \"vadd\",\n \"vadd_i\",\n \"vaddv\",\n \"vaddv_i\",\n \"vaget\",\n \"valpass\",\n \"vaset\",\n \"vbap\",\n \"vbapg\",\n \"vbapgmove\",\n \"vbaplsinit\",\n \"vbapmove\",\n \"vbapz\",\n \"vbapzmove\",\n \"vcella\",\n \"vco\",\n \"vco2\",\n \"vco2ft\",\n \"vco2ift\",\n \"vco2init\",\n \"vcomb\",\n \"vcopy\",\n \"vcopy_i\",\n \"vdel_k\",\n \"vdelay\",\n \"vdelay3\",\n \"vdelayk\",\n \"vdelayx\",\n \"vdelayxq\",\n \"vdelayxs\",\n \"vdelayxw\",\n \"vdelayxwq\",\n \"vdelayxws\",\n \"vdivv\",\n \"vdivv_i\",\n \"vecdelay\",\n \"veloc\",\n \"vexp\",\n \"vexp_i\",\n \"vexpseg\",\n \"vexpv\",\n \"vexpv_i\",\n \"vibes\",\n \"vibr\",\n \"vibrato\",\n \"vincr\",\n \"vlimit\",\n \"vlinseg\",\n \"vlowres\",\n \"vmap\",\n \"vmirror\",\n \"vmult\",\n \"vmult_i\",\n \"vmultv\",\n \"vmultv_i\",\n \"voice\",\n \"vosim\",\n \"vphaseseg\",\n \"vport\",\n \"vpow\",\n \"vpow_i\",\n \"vpowv\",\n \"vpowv_i\",\n \"vpvoc\",\n \"vrandh\",\n \"vrandi\",\n \"vsubv\",\n \"vsubv_i\",\n \"vtaba\",\n \"vtabi\",\n \"vtabk\",\n \"vtable1k\",\n \"vtablea\",\n \"vtablei\",\n \"vtablek\",\n \"vtablewa\",\n \"vtablewi\",\n \"vtablewk\",\n \"vtabwa\",\n \"vtabwi\",\n \"vtabwk\",\n \"vwrap\",\n \"waveset\",\n \"websocket\",\n \"weibull\",\n \"wgbow\",\n \"wgbowedbar\",\n \"wgbrass\",\n \"wgclar\",\n \"wgflute\",\n \"wgpluck\",\n \"wgpluck2\",\n \"wguide1\",\n \"wguide2\",\n \"wiiconnect\",\n \"wiidata\",\n \"wiirange\",\n \"wiisend\",\n \"window\",\n \"wrap\",\n \"writescratch\",\n \"wterrain\",\n \"xadsr\",\n \"xin\",\n \"xout\",\n \"xscanmap\",\n \"xscans\",\n \"xscansmap\",\n \"xscanu\",\n \"xtratim\",\n \"xyscale\",\n \"zacl\",\n \"zakinit\",\n \"zamod\",\n \"zar\",\n \"zarg\",\n \"zaw\",\n \"zawm\",\n \"zdf_1pole\",\n \"zdf_1pole_mode\",\n \"zdf_2pole\",\n \"zdf_2pole_mode\",\n \"zdf_ladder\",\n \"zfilter2\",\n \"zir\",\n \"ziw\",\n \"ziwm\",\n \"zkcl\",\n \"zkmod\",\n \"zkr\",\n \"zkw\",\n \"zkwm\"\n ];\n var deprecatedOpcodes = [\n \"array\",\n \"bformdec\",\n \"bformenc\",\n \"copy2ftab\",\n \"copy2ttab\",\n \"hrtfer\",\n \"ktableseg\",\n \"lentab\",\n \"maxtab\",\n \"mintab\",\n \"pop\",\n \"pop_f\",\n \"push\",\n \"push_f\",\n \"scalet\",\n \"sndload\",\n \"soundout\",\n \"soundouts\",\n \"specaddm\",\n \"specdiff\",\n \"specdisp\",\n \"specfilt\",\n \"spechist\",\n \"specptrk\",\n \"specscal\",\n \"specsum\",\n \"spectrum\",\n \"stack\",\n \"sumtab\",\n \"tabgen\",\n \"tabmap\",\n \"tabmap_i\",\n \"tabslice\",\n \"tb0\",\n \"tb0_init\",\n \"tb1\",\n \"tb10\",\n \"tb10_init\",\n \"tb11\",\n \"tb11_init\",\n \"tb12\",\n \"tb12_init\",\n \"tb13\",\n \"tb13_init\",\n \"tb14\",\n \"tb14_init\",\n \"tb15\",\n \"tb15_init\",\n \"tb1_init\",\n \"tb2\",\n \"tb2_init\",\n \"tb3\",\n \"tb3_init\",\n \"tb4\",\n \"tb4_init\",\n \"tb5\",\n \"tb5_init\",\n \"tb6\",\n \"tb6_init\",\n \"tb7\",\n \"tb7_init\",\n \"tb8\",\n \"tb8_init\",\n \"tb9\",\n \"tb9_init\",\n \"vbap16\",\n \"vbap4\",\n \"vbap4move\",\n \"vbap8\",\n \"vbap8move\",\n \"xyin\"\n ];\n\n opcodes = lang.arrayToMap(opcodes);\n deprecatedOpcodes = lang.arrayToMap(deprecatedOpcodes);\n\n this.lineContinuations = [\n {\n token : \"constant.character.escape.line-continuation.csound\",\n regex : /\\\\$/\n }, this.pushRule({\n token : \"constant.character.escape.line-continuation.csound\",\n regex : /\\\\/,\n next : \"line continuation\"\n })\n ];\n\n this.comments.push(this.lineContinuations);\n\n this.quotedStringContents.push(\n this.lineContinuations,\n {\n token : \"invalid.illegal\",\n regex : /[^\"\\\\]*$/\n }\n );\n\n var start = this.$rules.start;\n start.splice(1, 0, {\n token : [\"text.csound\", \"entity.name.label.csound\", \"entity.punctuation.label.csound\", \"text.csound\"],\n regex : /^([ \\t]*)(\\w+)(:)([ \\t]+|$)/\n });\n start.push(\n this.pushRule({\n token : \"keyword.function.csound\",\n regex : /\\binstr\\b/,\n next : \"instrument numbers and identifiers\"\n }), this.pushRule({\n token : \"keyword.function.csound\",\n regex : /\\bopcode\\b/,\n next : \"after opcode keyword\"\n }), {\n token : \"keyword.other.csound\",\n regex : /\\bend(?:in|op)\\b/\n },\n\n {\n token : \"variable.language.csound\",\n regex : /\\b(?:0dbfs|A4|k(?:r|smps)|nchnls(?:_i)?|sr)\\b/\n },\n\n this.numbers,\n\n {\n token : \"keyword.operator.csound\",\n regex : \"\\\\+=|-=|\\\\*=|/=|<<|>>|<=|>=|==|!=|&&|\\\\|\\\\||[~¬]|[=!+\\\\-*/^%&|<>#?:]\"\n },\n\n this.pushRule({\n token : \"punctuation.definition.string.begin.csound\",\n regex : /\"/,\n next : \"quoted string\"\n }), this.pushRule({\n token : \"punctuation.definition.string.begin.csound\",\n regex : /{{/,\n next : \"braced string\"\n }),\n\n {\n token : \"keyword.control.csound\",\n regex : /\\b(?:do|else(?:if)?|end(?:if|until)|fi|i(?:f|then)|kthen|od|r(?:ir)?eturn|then|until|while)\\b/\n },\n\n this.pushRule({\n token : \"keyword.control.csound\",\n regex : /\\b[ik]?goto\\b/,\n next : \"goto before label\"\n }), this.pushRule({\n token : \"keyword.control.csound\",\n regex : /\\b(?:r(?:einit|igoto)|tigoto)\\b/,\n next : \"goto before label\"\n }), this.pushRule({\n token : \"keyword.control.csound\",\n regex : /\\bc(?:g|in?|k|nk?)goto\\b/,\n next : [\"goto before label\", \"goto before argument\"]\n }), this.pushRule({\n token : \"keyword.control.csound\",\n regex : /\\btimout\\b/,\n next : [\"goto before label\", \"goto before argument\", \"goto before argument\"]\n }), this.pushRule({\n token : \"keyword.control.csound\",\n regex : /\\bloop_[gl][et]\\b/,\n next : [\"goto before label\", \"goto before argument\", \"goto before argument\", \"goto before argument\"]\n }),\n\n this.pushRule({\n token : \"support.function.csound\",\n regex : /\\b(?:readscore|scoreline(?:_i)?)\\b/,\n next : \"Csound score opcode\"\n }), this.pushRule({\n token : \"support.function.csound\",\n regex : /\\bpyl?run[it]?\\b(?!$)/,\n next : \"Python opcode\"\n }), this.pushRule({\n token : \"support.function.csound\",\n regex : /\\blua_(?:exec|opdef)\\b(?!$)/,\n next : \"Lua opcode\"\n }),\n\n {\n token : \"support.variable.csound\",\n regex : /\\bp\\d+\\b/\n }, {\n regex : /\\b([A-Z_a-z]\\w*)(?:(:)([A-Za-z]))?\\b/, onMatch: function(value, currentState, stack, line) {\n var tokens = value.split(this.splitRegex);\n var name = tokens[1];\n var type;\n if (opcodes.hasOwnProperty(name))\n type = \"support.function.csound\";\n else if (deprecatedOpcodes.hasOwnProperty(name))\n type = \"invalid.deprecated.csound\";\n if (type) {\n if (tokens[2]) {\n return [\n {type: type, value: name},\n {type: \"punctuation.type-annotation.csound\", value: tokens[2]},\n {type: \"type-annotation.storage.type.csound\", value: tokens[3]}\n ];\n }\n return type;\n }\n return \"text.csound\";\n }\n }\n );\n\n this.$rules[\"macro parameter value list\"].splice(2, 0, {\n token : \"punctuation.definition.string.begin.csound\",\n regex : /{{/,\n next : \"macro parameter value braced string\"\n });\n\n this.addRules({\n \"macro parameter value braced string\": [\n {\n token : \"constant.character.escape.csound\",\n regex : /\\\\[#'()]/\n }, {\n token : \"invalid.illegal.csound.csound\",\n regex : /[#'()]/\n }, {\n token : \"punctuation.definition.string.end.csound\",\n regex : /}}/,\n next : \"macro parameter value list\"\n }, {\n defaultToken: \"string.braced.csound\"\n }\n ],\n\n \"instrument numbers and identifiers\": [\n this.comments,\n {\n token : \"entity.name.function.csound\",\n regex : /\\d+|[A-Z_a-z]\\w*/\n }, this.popRule({\n token : \"empty\",\n regex : /$/\n })\n ],\n\n \"after opcode keyword\": [\n this.comments,\n this.popRule({\n token : \"empty\",\n regex : /$/\n }), this.popRule({\n token : \"entity.name.function.opcode.csound\",\n regex : /[A-Z_a-z]\\w*/,\n next : \"opcode type signatures\"\n })\n ],\n \"opcode type signatures\": [\n this.comments,\n this.popRule({\n token : \"empty\",\n regex : /$/\n }), {\n token : \"storage.type.csound\",\n regex : /\\b(?:0|[afijkKoOpPStV\\[\\]]+)/\n }\n ],\n\n \"quoted string\": [\n this.popRule({\n token : \"punctuation.definition.string.end.csound\",\n regex : /\"/\n }),\n this.quotedStringContents,\n {\n defaultToken: \"string.quoted.csound\"\n }\n ],\n \"braced string\": [\n this.popRule({\n token : \"punctuation.definition.string.end.csound\",\n regex : /}}/\n }),\n this.bracedStringContents,\n {\n defaultToken: \"string.braced.csound\"\n }\n ],\n\n \"goto before argument\": [\n this.popRule({\n token : \"text.csound\",\n regex : /,/\n }),\n start\n ],\n \"goto before label\": [\n {\n token : \"text.csound\",\n regex : /\\s+/\n },\n this.comments,\n this.popRule({\n token : \"entity.name.label.csound\",\n regex : /\\w+/\n }), this.popRule({\n token : \"empty\",\n regex : /(?!\\w)/\n })\n ],\n\n \"Csound score opcode\": [\n this.comments,\n {\n token : \"punctuation.definition.string.begin.csound\",\n regex : /{{/,\n next : \"csound-score-start\"\n }, this.popRule({\n token : \"empty\",\n regex : /$/\n })\n ],\n\n \"Python opcode\": [\n this.comments,\n {\n token : \"punctuation.definition.string.begin.csound\",\n regex : /{{/,\n next : \"python-start\"\n }, this.popRule({\n token : \"empty\",\n regex : /$/\n })\n ],\n\n \"Lua opcode\": [\n this.comments,\n {\n token : \"punctuation.definition.string.begin.csound\",\n regex : /{{/,\n next : \"lua-start\"\n }, this.popRule({\n token : \"empty\",\n regex : /$/\n })\n ],\n\n \"line continuation\": [\n this.popRule({\n token : \"empty\",\n regex : /$/\n }),\n this.semicolonComments,\n {\n token : \"invalid.illegal.csound\",\n regex : /\\S.*/\n }\n ]\n });\n\n var rules = [\n this.popRule({\n token : \"punctuation.definition.string.end.csound\",\n regex : /}}/\n })\n ];\n this.embedRules(CsoundScoreHighlightRules, \"csound-score-\", rules);\n this.embedRules(PythonHighlightRules, \"python-\", rules);\n this.embedRules(LuaHighlightRules, \"lua-\", rules);\n\n this.normalizeRules();\n};\n\noop.inherits(CsoundOrchestraHighlightRules, CsoundPreprocessorHighlightRules);\n\nexports.CsoundOrchestraHighlightRules = CsoundOrchestraHighlightRules;\n});\n\nace.define(\"ace/mode/csound_orchestra\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/csound_orchestra_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar CsoundOrchestraHighlightRules = require(\"./csound_orchestra_highlight_rules\").CsoundOrchestraHighlightRules;\n\nvar Mode = function() {\n this.HighlightRules = CsoundOrchestraHighlightRules;\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.lineCommentStart = \";\";\n this.blockComment = {start: \"/*\", end: \"*/\"};\n\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/csound_orchestra\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file3 := &embedded.EmbeddedFile{ Filename: "02c061acfcb17cb0413eb1e190d33cbb.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/json_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar JsonHighlightRules = function() {\n this.$rules = {\n \"start\" : [\n {\n token : \"variable\", // single line\n regex : '[\"](?:(?:\\\\\\\\.)|(?:[^\"\\\\\\\\]))*?[\"]\\\\s*(?=:)'\n }, {\n token : \"string\", // single line\n regex : '\"',\n next : \"string\"\n }, {\n token : \"constant.numeric\", // hex\n regex : \"0[xX][0-9a-fA-F]+\\\\b\"\n }, {\n token : \"constant.numeric\", // float\n regex : \"[+-]?\\\\d+(?:(?:\\\\.\\\\d*)?(?:[eE][+-]?\\\\d+)?)?\\\\b\"\n }, {\n token : \"constant.language.boolean\",\n regex : \"(?:true|false)\\\\b\"\n }, {\n token : \"text\", // single quoted strings are not allowed\n regex : \"['](?:(?:\\\\\\\\.)|(?:[^'\\\\\\\\]))*?[']\"\n }, {\n token : \"comment\", // comments are not allowed, but who cares?\n regex : \"\\\\/\\\\/.*$\"\n }, {\n token : \"comment.start\", // comments are not allowed, but who cares?\n regex : \"\\\\/\\\\*\",\n next : \"comment\"\n }, {\n token : \"paren.lparen\",\n regex : \"[[({]\"\n }, {\n token : \"paren.rparen\",\n regex : \"[\\\\])}]\"\n }, {\n token : \"text\",\n regex : \"\\\\s+\"\n }\n ],\n \"string\" : [\n {\n token : \"constant.language.escape\",\n regex : /\\\\(?:x[0-9a-fA-F]{2}|u[0-9a-fA-F]{4}|[\"\\\\\\/bfnrt])/\n }, {\n token : \"string\",\n regex : '\"|$',\n next : \"start\"\n }, {\n defaultToken : \"string\"\n }\n ],\n \"comment\" : [\n {\n token : \"comment.end\", // comments are not allowed, but who cares?\n regex : \"\\\\*\\\\/\",\n next : \"start\"\n }, {\n defaultToken: \"comment\"\n }\n ]\n };\n \n};\n\noop.inherits(JsonHighlightRules, TextHighlightRules);\n\nexports.JsonHighlightRules = JsonHighlightRules;\n});\n\nace.define(\"ace/mode/matching_brace_outdent\",[\"require\",\"exports\",\"module\",\"ace/range\"], function(require, exports, module) {\n\"use strict\";\n\nvar Range = require(\"../range\").Range;\n\nvar MatchingBraceOutdent = function() {};\n\n(function() {\n\n this.checkOutdent = function(line, input) {\n if (! /^\\s+$/.test(line))\n return false;\n\n return /^\\s*\\}/.test(input);\n };\n\n this.autoOutdent = function(doc, row) {\n var line = doc.getLine(row);\n var match = line.match(/^(\\s*\\})/);\n\n if (!match) return 0;\n\n var column = match[1].length;\n var openBracePos = doc.findMatchingBracket({row: row, column: column});\n\n if (!openBracePos || openBracePos.row == row) return 0;\n\n var indent = this.$getIndent(doc.getLine(openBracePos.row));\n doc.replace(new Range(row, 0, row, column-1), indent);\n };\n\n this.$getIndent = function(line) {\n return line.match(/^\\s*/)[0];\n };\n\n}).call(MatchingBraceOutdent.prototype);\n\nexports.MatchingBraceOutdent = MatchingBraceOutdent;\n});\n\nace.define(\"ace/mode/folding/cstyle\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/range\",\"ace/mode/folding/fold_mode\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Range = require(\"../../range\").Range;\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function(commentRegex) {\n if (commentRegex) {\n this.foldingStartMarker = new RegExp(\n this.foldingStartMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.start)\n );\n this.foldingStopMarker = new RegExp(\n this.foldingStopMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.end)\n );\n }\n};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n \n this.foldingStartMarker = /([\\{\\[\\(])[^\\}\\]\\)]*$|^\\s*(\\/\\*)/;\n this.foldingStopMarker = /^[^\\[\\{\\(]*([\\}\\]\\)])|^[\\s\\*]*(\\*\\/)/;\n this.singleLineBlockCommentRe= /^\\s*(\\/\\*).*\\*\\/\\s*$/;\n this.tripleStarBlockCommentRe = /^\\s*(\\/\\*\\*\\*).*\\*\\/\\s*$/;\n this.startRegionRe = /^\\s*(\\/\\*|\\/\\/)#?region\\b/;\n this._getFoldWidgetBase = this.getFoldWidget;\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n \n if (this.singleLineBlockCommentRe.test(line)) {\n if (!this.startRegionRe.test(line) && !this.tripleStarBlockCommentRe.test(line))\n return \"\";\n }\n \n var fw = this._getFoldWidgetBase(session, foldStyle, row);\n \n if (!fw && this.startRegionRe.test(line))\n return \"start\"; // lineCommentRegionStart\n \n return fw;\n };\n\n this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {\n var line = session.getLine(row);\n \n if (this.startRegionRe.test(line))\n return this.getCommentRegionBlock(session, line, row);\n \n var match = line.match(this.foldingStartMarker);\n if (match) {\n var i = match.index;\n\n if (match[1])\n return this.openingBracketBlock(session, match[1], row, i);\n \n var range = session.getCommentFoldRange(row, i + match[0].length, 1);\n \n if (range && !range.isMultiLine()) {\n if (forceMultiline) {\n range = this.getSectionRange(session, row);\n } else if (foldStyle != \"all\")\n range = null;\n }\n \n return range;\n }\n\n if (foldStyle === \"markbegin\")\n return;\n\n var match = line.match(this.foldingStopMarker);\n if (match) {\n var i = match.index + match[0].length;\n\n if (match[1])\n return this.closingBracketBlock(session, match[1], row, i);\n\n return session.getCommentFoldRange(row, i, -1);\n }\n };\n \n this.getSectionRange = function(session, row) {\n var line = session.getLine(row);\n var startIndent = line.search(/\\S/);\n var startRow = row;\n var startColumn = line.length;\n row = row + 1;\n var endRow = row;\n var maxRow = session.getLength();\n while (++row < maxRow) {\n line = session.getLine(row);\n var indent = line.search(/\\S/);\n if (indent === -1)\n continue;\n if (startIndent > indent)\n break;\n var subRange = this.getFoldWidgetRange(session, \"all\", row);\n \n if (subRange) {\n if (subRange.start.row <= startRow) {\n break;\n } else if (subRange.isMultiLine()) {\n row = subRange.end.row;\n } else if (startIndent == indent) {\n break;\n }\n }\n endRow = row;\n }\n \n return new Range(startRow, startColumn, endRow, session.getLine(endRow).length);\n };\n this.getCommentRegionBlock = function(session, line, row) {\n var startColumn = line.search(/\\s*$/);\n var maxRow = session.getLength();\n var startRow = row;\n \n var re = /^\\s*(?:\\/\\*|\\/\\/|--)#?(end)?region\\b/;\n var depth = 1;\n while (++row < maxRow) {\n line = session.getLine(row);\n var m = re.exec(line);\n if (!m) continue;\n if (m[1]) depth--;\n else depth++;\n\n if (!depth) break;\n }\n\n var endRow = row;\n if (endRow > startRow) {\n return new Range(startRow, startColumn, endRow, line.length);\n }\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/json\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/json_highlight_rules\",\"ace/mode/matching_brace_outdent\",\"ace/mode/behaviour/cstyle\",\"ace/mode/folding/cstyle\",\"ace/worker/worker_client\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar HighlightRules = require(\"./json_highlight_rules\").JsonHighlightRules;\nvar MatchingBraceOutdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\nvar CstyleBehaviour = require(\"./behaviour/cstyle\").CstyleBehaviour;\nvar CStyleFoldMode = require(\"./folding/cstyle\").FoldMode;\nvar WorkerClient = require(\"../worker/worker_client\").WorkerClient;\n\nvar Mode = function() {\n this.HighlightRules = HighlightRules;\n this.$outdent = new MatchingBraceOutdent();\n this.$behaviour = new CstyleBehaviour();\n this.foldingRules = new CStyleFoldMode();\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n\n if (state == \"start\") {\n var match = line.match(/^.*[\\{\\(\\[]\\s*$/);\n if (match) {\n indent += tab;\n }\n }\n\n return indent;\n };\n\n this.checkOutdent = function(state, line, input) {\n return this.$outdent.checkOutdent(line, input);\n };\n\n this.autoOutdent = function(state, doc, row) {\n this.$outdent.autoOutdent(doc, row);\n };\n\n this.createWorker = function(session) {\n var worker = new WorkerClient([\"ace\"], \"ace/mode/json_worker\", \"JsonWorker\");\n worker.attachToDocument(session.getDocument());\n\n worker.on(\"annotate\", function(e) {\n session.setAnnotations(e.data);\n });\n\n worker.on(\"terminate\", function() {\n session.clearAnnotations();\n });\n\n return worker;\n };\n\n\n this.$id = \"ace/mode/json\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/json\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file4 := &embedded.EmbeddedFile{ Filename: "02f9e1083a8b03ae4f83fa79c1a4a08e.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/ini\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText =undefined;\nexports.scope = \"ini\";\n\n}); (function() {\n ace.require([\"ace/snippets/ini\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file5 := &embedded.EmbeddedFile{ Filename: "03076ca00f7a0821bf5aaf735d6d491d.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/css_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar supportType = exports.supportType = \"align-content|align-items|align-self|all|animation|animation-delay|animation-direction|animation-duration|animation-fill-mode|animation-iteration-count|animation-name|animation-play-state|animation-timing-function|backface-visibility|background|background-attachment|background-blend-mode|background-clip|background-color|background-image|background-origin|background-position|background-repeat|background-size|border|border-bottom|border-bottom-color|border-bottom-left-radius|border-bottom-right-radius|border-bottom-style|border-bottom-width|border-collapse|border-color|border-image|border-image-outset|border-image-repeat|border-image-slice|border-image-source|border-image-width|border-left|border-left-color|border-left-style|border-left-width|border-radius|border-right|border-right-color|border-right-style|border-right-width|border-spacing|border-style|border-top|border-top-color|border-top-left-radius|border-top-right-radius|border-top-style|border-top-width|border-width|bottom|box-shadow|box-sizing|caption-side|clear|clip|color|column-count|column-fill|column-gap|column-rule|column-rule-color|column-rule-style|column-rule-width|column-span|column-width|columns|content|counter-increment|counter-reset|cursor|direction|display|empty-cells|filter|flex|flex-basis|flex-direction|flex-flow|flex-grow|flex-shrink|flex-wrap|float|font|font-family|font-size|font-size-adjust|font-stretch|font-style|font-variant|font-weight|hanging-punctuation|height|justify-content|left|letter-spacing|line-height|list-style|list-style-image|list-style-position|list-style-type|margin|margin-bottom|margin-left|margin-right|margin-top|max-height|max-width|max-zoom|min-height|min-width|min-zoom|nav-down|nav-index|nav-left|nav-right|nav-up|opacity|order|outline|outline-color|outline-offset|outline-style|outline-width|overflow|overflow-x|overflow-y|padding|padding-bottom|padding-left|padding-right|padding-top|page-break-after|page-break-before|page-break-inside|perspective|perspective-origin|position|quotes|resize|right|tab-size|table-layout|text-align|text-align-last|text-decoration|text-decoration-color|text-decoration-line|text-decoration-style|text-indent|text-justify|text-overflow|text-shadow|text-transform|top|transform|transform-origin|transform-style|transition|transition-delay|transition-duration|transition-property|transition-timing-function|unicode-bidi|user-select|user-zoom|vertical-align|visibility|white-space|width|word-break|word-spacing|word-wrap|z-index\";\nvar supportFunction = exports.supportFunction = \"rgb|rgba|url|attr|counter|counters\";\nvar supportConstant = exports.supportConstant = \"absolute|after-edge|after|all-scroll|all|alphabetic|always|antialiased|armenian|auto|avoid-column|avoid-page|avoid|balance|baseline|before-edge|before|below|bidi-override|block-line-height|block|bold|bolder|border-box|both|bottom|box|break-all|break-word|capitalize|caps-height|caption|center|central|char|circle|cjk-ideographic|clone|close-quote|col-resize|collapse|column|consider-shifts|contain|content-box|cover|crosshair|cubic-bezier|dashed|decimal-leading-zero|decimal|default|disabled|disc|disregard-shifts|distribute-all-lines|distribute-letter|distribute-space|distribute|dotted|double|e-resize|ease-in|ease-in-out|ease-out|ease|ellipsis|end|exclude-ruby|fill|fixed|georgian|glyphs|grid-height|groove|hand|hanging|hebrew|help|hidden|hiragana-iroha|hiragana|horizontal|icon|ideograph-alpha|ideograph-numeric|ideograph-parenthesis|ideograph-space|ideographic|inactive|include-ruby|inherit|initial|inline-block|inline-box|inline-line-height|inline-table|inline|inset|inside|inter-ideograph|inter-word|invert|italic|justify|katakana-iroha|katakana|keep-all|last|left|lighter|line-edge|line-through|line|linear|list-item|local|loose|lower-alpha|lower-greek|lower-latin|lower-roman|lowercase|lr-tb|ltr|mathematical|max-height|max-size|medium|menu|message-box|middle|move|n-resize|ne-resize|newspaper|no-change|no-close-quote|no-drop|no-open-quote|no-repeat|none|normal|not-allowed|nowrap|nw-resize|oblique|open-quote|outset|outside|overline|padding-box|page|pointer|pre-line|pre-wrap|pre|preserve-3d|progress|relative|repeat-x|repeat-y|repeat|replaced|reset-size|ridge|right|round|row-resize|rtl|s-resize|scroll|se-resize|separate|slice|small-caps|small-caption|solid|space|square|start|static|status-bar|step-end|step-start|steps|stretch|strict|sub|super|sw-resize|table-caption|table-cell|table-column-group|table-column|table-footer-group|table-header-group|table-row-group|table-row|table|tb-rl|text-after-edge|text-before-edge|text-bottom|text-size|text-top|text|thick|thin|transparent|underline|upper-alpha|upper-latin|upper-roman|uppercase|use-script|vertical-ideographic|vertical-text|visible|w-resize|wait|whitespace|z-index|zero|zoom\";\nvar supportConstantColor = exports.supportConstantColor = \"aliceblue|antiquewhite|aqua|aquamarine|azure|beige|bisque|black|blanchedalmond|blue|blueviolet|brown|burlywood|cadetblue|chartreuse|chocolate|coral|cornflowerblue|cornsilk|crimson|cyan|darkblue|darkcyan|darkgoldenrod|darkgray|darkgreen|darkgrey|darkkhaki|darkmagenta|darkolivegreen|darkorange|darkorchid|darkred|darksalmon|darkseagreen|darkslateblue|darkslategray|darkslategrey|darkturquoise|darkviolet|deeppink|deepskyblue|dimgray|dimgrey|dodgerblue|firebrick|floralwhite|forestgreen|fuchsia|gainsboro|ghostwhite|gold|goldenrod|gray|green|greenyellow|grey|honeydew|hotpink|indianred|indigo|ivory|khaki|lavender|lavenderblush|lawngreen|lemonchiffon|lightblue|lightcoral|lightcyan|lightgoldenrodyellow|lightgray|lightgreen|lightgrey|lightpink|lightsalmon|lightseagreen|lightskyblue|lightslategray|lightslategrey|lightsteelblue|lightyellow|lime|limegreen|linen|magenta|maroon|mediumaquamarine|mediumblue|mediumorchid|mediumpurple|mediumseagreen|mediumslateblue|mediumspringgreen|mediumturquoise|mediumvioletred|midnightblue|mintcream|mistyrose|moccasin|navajowhite|navy|oldlace|olive|olivedrab|orange|orangered|orchid|palegoldenrod|palegreen|paleturquoise|palevioletred|papayawhip|peachpuff|peru|pink|plum|powderblue|purple|rebeccapurple|red|rosybrown|royalblue|saddlebrown|salmon|sandybrown|seagreen|seashell|sienna|silver|skyblue|slateblue|slategray|slategrey|snow|springgreen|steelblue|tan|teal|thistle|tomato|turquoise|violet|wheat|white|whitesmoke|yellow|yellowgreen\";\nvar supportConstantFonts = exports.supportConstantFonts = \"arial|century|comic|courier|cursive|fantasy|garamond|georgia|helvetica|impact|lucida|symbol|system|tahoma|times|trebuchet|utopia|verdana|webdings|sans-serif|serif|monospace\";\n\nvar numRe = exports.numRe = \"\\\\-?(?:(?:[0-9]+(?:\\\\.[0-9]+)?)|(?:\\\\.[0-9]+))\";\nvar pseudoElements = exports.pseudoElements = \"(\\\\:+)\\\\b(after|before|first-letter|first-line|moz-selection|selection)\\\\b\";\nvar pseudoClasses = exports.pseudoClasses = \"(:)\\\\b(active|checked|disabled|empty|enabled|first-child|first-of-type|focus|hover|indeterminate|invalid|last-child|last-of-type|link|not|nth-child|nth-last-child|nth-last-of-type|nth-of-type|only-child|only-of-type|required|root|target|valid|visited)\\\\b\";\n\nvar CssHighlightRules = function() {\n\n var keywordMapper = this.createKeywordMapper({\n \"support.function\": supportFunction,\n \"support.constant\": supportConstant,\n \"support.type\": supportType,\n \"support.constant.color\": supportConstantColor,\n \"support.constant.fonts\": supportConstantFonts\n }, \"text\", true);\n\n this.$rules = {\n \"start\" : [{\n include : [\"strings\", \"url\", \"comments\"]\n }, {\n token: \"paren.lparen\",\n regex: \"\\\\{\",\n next: \"ruleset\"\n }, {\n token: \"paren.rparen\",\n regex: \"\\\\}\"\n }, {\n token: \"string\",\n regex: \"@(?!viewport)\",\n next: \"media\"\n }, {\n token: \"keyword\",\n regex: \"#[a-z0-9-_]+\"\n }, {\n token: \"keyword\",\n regex: \"%\"\n }, {\n token: \"variable\",\n regex: \"\\\\.[a-z0-9-_]+\"\n }, {\n token: \"string\",\n regex: \":[a-z0-9-_]+\"\n }, {\n token : \"constant.numeric\",\n regex : numRe\n }, {\n token: \"constant\",\n regex: \"[a-z0-9-_]+\"\n }, {\n caseInsensitive: true\n }],\n\n \"media\": [{\n include : [\"strings\", \"url\", \"comments\"]\n }, {\n token: \"paren.lparen\",\n regex: \"\\\\{\",\n next: \"start\"\n }, {\n token: \"paren.rparen\",\n regex: \"\\\\}\",\n next: \"start\"\n }, {\n token: \"string\",\n regex: \";\",\n next: \"start\"\n }, {\n token: \"keyword\",\n regex: \"(?:media|supports|document|charset|import|namespace|media|supports|document\"\n + \"|page|font|keyframes|viewport|counter-style|font-feature-values\"\n + \"|swash|ornaments|annotation|stylistic|styleset|character-variant)\"\n }],\n\n \"comments\" : [{\n token: \"comment\", // multi line comment\n regex: \"\\\\/\\\\*\",\n push: [{\n token : \"comment\",\n regex : \"\\\\*\\\\/\",\n next : \"pop\"\n }, {\n defaultToken : \"comment\"\n }]\n }],\n\n \"ruleset\" : [{\n regex : \"-(webkit|ms|moz|o)-\",\n token : \"text\"\n }, {\n token : \"punctuation.operator\",\n regex : \"[:;]\"\n }, {\n token : \"paren.rparen\",\n regex : \"\\\\}\",\n next : \"start\"\n }, {\n include : [\"strings\", \"url\", \"comments\"]\n }, {\n token : [\"constant.numeric\", \"keyword\"],\n regex : \"(\" + numRe + \")(ch|cm|deg|em|ex|fr|gd|grad|Hz|in|kHz|mm|ms|pc|pt|px|rad|rem|s|turn|vh|vmax|vmin|vm|vw|%)\"\n }, {\n token : \"constant.numeric\",\n regex : numRe\n }, {\n token : \"constant.numeric\", // hex6 color\n regex : \"#[a-f0-9]{6}\"\n }, {\n token : \"constant.numeric\", // hex3 color\n regex : \"#[a-f0-9]{3}\"\n }, {\n token : [\"punctuation\", \"entity.other.attribute-name.pseudo-element.css\"],\n regex : pseudoElements\n }, {\n token : [\"punctuation\", \"entity.other.attribute-name.pseudo-class.css\"],\n regex : pseudoClasses\n }, {\n include: \"url\"\n }, {\n token : keywordMapper,\n regex : \"\\\\-?[a-zA-Z_][a-zA-Z0-9_\\\\-]*\"\n }, {\n caseInsensitive: true\n }],\n\n url: [{\n token : \"support.function\",\n regex : \"(?:url(:?-prefix)?|domain|regexp)\\\\(\",\n push: [{\n token : \"support.function\",\n regex : \"\\\\)\",\n next : \"pop\"\n }, {\n defaultToken: \"string\"\n }]\n }],\n\n strings: [{\n token : \"string.start\",\n regex : \"'\",\n push : [{\n token : \"string.end\",\n regex : \"'|$\",\n next: \"pop\"\n }, {\n include : \"escapes\"\n }, {\n token : \"constant.language.escape\",\n regex : /\\\\$/,\n consumeLineEnd: true\n }, {\n defaultToken: \"string\"\n }]\n }, {\n token : \"string.start\",\n regex : '\"',\n push : [{\n token : \"string.end\",\n regex : '\"|$',\n next: \"pop\"\n }, {\n include : \"escapes\"\n }, {\n token : \"constant.language.escape\",\n regex : /\\\\$/,\n consumeLineEnd: true\n }, {\n defaultToken: \"string\"\n }]\n }],\n escapes: [{\n token : \"constant.language.escape\",\n regex : /\\\\([a-fA-F\\d]{1,6}|[^a-fA-F\\d])/\n }]\n\n };\n\n this.normalizeRules();\n};\n\noop.inherits(CssHighlightRules, TextHighlightRules);\n\nexports.CssHighlightRules = CssHighlightRules;\n\n});\n\nace.define(\"ace/mode/matching_brace_outdent\",[\"require\",\"exports\",\"module\",\"ace/range\"], function(require, exports, module) {\n\"use strict\";\n\nvar Range = require(\"../range\").Range;\n\nvar MatchingBraceOutdent = function() {};\n\n(function() {\n\n this.checkOutdent = function(line, input) {\n if (! /^\\s+$/.test(line))\n return false;\n\n return /^\\s*\\}/.test(input);\n };\n\n this.autoOutdent = function(doc, row) {\n var line = doc.getLine(row);\n var match = line.match(/^(\\s*\\})/);\n\n if (!match) return 0;\n\n var column = match[1].length;\n var openBracePos = doc.findMatchingBracket({row: row, column: column});\n\n if (!openBracePos || openBracePos.row == row) return 0;\n\n var indent = this.$getIndent(doc.getLine(openBracePos.row));\n doc.replace(new Range(row, 0, row, column-1), indent);\n };\n\n this.$getIndent = function(line) {\n return line.match(/^\\s*/)[0];\n };\n\n}).call(MatchingBraceOutdent.prototype);\n\nexports.MatchingBraceOutdent = MatchingBraceOutdent;\n});\n\nace.define(\"ace/mode/css_completions\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nvar propertyMap = {\n \"background\": {\"#$0\": 1},\n \"background-color\": {\"#$0\": 1, \"transparent\": 1, \"fixed\": 1},\n \"background-image\": {\"url('/$0')\": 1},\n \"background-repeat\": {\"repeat\": 1, \"repeat-x\": 1, \"repeat-y\": 1, \"no-repeat\": 1, \"inherit\": 1},\n \"background-position\": {\"bottom\":2, \"center\":2, \"left\":2, \"right\":2, \"top\":2, \"inherit\":2},\n \"background-attachment\": {\"scroll\": 1, \"fixed\": 1},\n \"background-size\": {\"cover\": 1, \"contain\": 1},\n \"background-clip\": {\"border-box\": 1, \"padding-box\": 1, \"content-box\": 1},\n \"background-origin\": {\"border-box\": 1, \"padding-box\": 1, \"content-box\": 1},\n \"border\": {\"solid $0\": 1, \"dashed $0\": 1, \"dotted $0\": 1, \"#$0\": 1},\n \"border-color\": {\"#$0\": 1},\n \"border-style\": {\"solid\":2, \"dashed\":2, \"dotted\":2, \"double\":2, \"groove\":2, \"hidden\":2, \"inherit\":2, \"inset\":2, \"none\":2, \"outset\":2, \"ridged\":2},\n \"border-collapse\": {\"collapse\": 1, \"separate\": 1},\n \"bottom\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"clear\": {\"left\": 1, \"right\": 1, \"both\": 1, \"none\": 1},\n \"color\": {\"#$0\": 1, \"rgb(#$00,0,0)\": 1},\n \"cursor\": {\"default\": 1, \"pointer\": 1, \"move\": 1, \"text\": 1, \"wait\": 1, \"help\": 1, \"progress\": 1, \"n-resize\": 1, \"ne-resize\": 1, \"e-resize\": 1, \"se-resize\": 1, \"s-resize\": 1, \"sw-resize\": 1, \"w-resize\": 1, \"nw-resize\": 1},\n \"display\": {\"none\": 1, \"block\": 1, \"inline\": 1, \"inline-block\": 1, \"table-cell\": 1},\n \"empty-cells\": {\"show\": 1, \"hide\": 1},\n \"float\": {\"left\": 1, \"right\": 1, \"none\": 1},\n \"font-family\": {\"Arial\":2,\"Comic Sans MS\":2,\"Consolas\":2,\"Courier New\":2,\"Courier\":2,\"Georgia\":2,\"Monospace\":2,\"Sans-Serif\":2, \"Segoe UI\":2,\"Tahoma\":2,\"Times New Roman\":2,\"Trebuchet MS\":2,\"Verdana\": 1},\n \"font-size\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"font-weight\": {\"bold\": 1, \"normal\": 1},\n \"font-style\": {\"italic\": 1, \"normal\": 1},\n \"font-variant\": {\"normal\": 1, \"small-caps\": 1},\n \"height\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"left\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"letter-spacing\": {\"normal\": 1},\n \"line-height\": {\"normal\": 1},\n \"list-style-type\": {\"none\": 1, \"disc\": 1, \"circle\": 1, \"square\": 1, \"decimal\": 1, \"decimal-leading-zero\": 1, \"lower-roman\": 1, \"upper-roman\": 1, \"lower-greek\": 1, \"lower-latin\": 1, \"upper-latin\": 1, \"georgian\": 1, \"lower-alpha\": 1, \"upper-alpha\": 1},\n \"margin\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"margin-right\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"margin-left\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"margin-top\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"margin-bottom\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"max-height\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"max-width\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"min-height\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"min-width\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"overflow\": {\"hidden\": 1, \"visible\": 1, \"auto\": 1, \"scroll\": 1},\n \"overflow-x\": {\"hidden\": 1, \"visible\": 1, \"auto\": 1, \"scroll\": 1},\n \"overflow-y\": {\"hidden\": 1, \"visible\": 1, \"auto\": 1, \"scroll\": 1},\n \"padding\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"padding-top\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"padding-right\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"padding-bottom\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"padding-left\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"page-break-after\": {\"auto\": 1, \"always\": 1, \"avoid\": 1, \"left\": 1, \"right\": 1},\n \"page-break-before\": {\"auto\": 1, \"always\": 1, \"avoid\": 1, \"left\": 1, \"right\": 1},\n \"position\": {\"absolute\": 1, \"relative\": 1, \"fixed\": 1, \"static\": 1},\n \"right\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"table-layout\": {\"fixed\": 1, \"auto\": 1},\n \"text-decoration\": {\"none\": 1, \"underline\": 1, \"line-through\": 1, \"blink\": 1},\n \"text-align\": {\"left\": 1, \"right\": 1, \"center\": 1, \"justify\": 1},\n \"text-transform\": {\"capitalize\": 1, \"uppercase\": 1, \"lowercase\": 1, \"none\": 1},\n \"top\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"vertical-align\": {\"top\": 1, \"bottom\": 1},\n \"visibility\": {\"hidden\": 1, \"visible\": 1},\n \"white-space\": {\"nowrap\": 1, \"normal\": 1, \"pre\": 1, \"pre-line\": 1, \"pre-wrap\": 1},\n \"width\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"word-spacing\": {\"normal\": 1},\n \"filter\": {\"alpha(opacity=$0100)\": 1},\n\n \"text-shadow\": {\"$02px 2px 2px #777\": 1},\n \"text-overflow\": {\"ellipsis-word\": 1, \"clip\": 1, \"ellipsis\": 1},\n \"-moz-border-radius\": 1,\n \"-moz-border-radius-topright\": 1,\n \"-moz-border-radius-bottomright\": 1,\n \"-moz-border-radius-topleft\": 1,\n \"-moz-border-radius-bottomleft\": 1,\n \"-webkit-border-radius\": 1,\n \"-webkit-border-top-right-radius\": 1,\n \"-webkit-border-top-left-radius\": 1,\n \"-webkit-border-bottom-right-radius\": 1,\n \"-webkit-border-bottom-left-radius\": 1,\n \"-moz-box-shadow\": 1,\n \"-webkit-box-shadow\": 1,\n \"transform\": {\"rotate($00deg)\": 1, \"skew($00deg)\": 1},\n \"-moz-transform\": {\"rotate($00deg)\": 1, \"skew($00deg)\": 1},\n \"-webkit-transform\": {\"rotate($00deg)\": 1, \"skew($00deg)\": 1 }\n};\n\nvar CssCompletions = function() {\n\n};\n\n(function() {\n\n this.completionsDefined = false;\n\n this.defineCompletions = function() {\n if (document) {\n var style = document.createElement('c').style;\n\n for (var i in style) {\n if (typeof style[i] !== 'string')\n continue;\n\n var name = i.replace(/[A-Z]/g, function(x) {\n return '-' + x.toLowerCase();\n });\n\n if (!propertyMap.hasOwnProperty(name))\n propertyMap[name] = 1;\n }\n }\n\n this.completionsDefined = true;\n };\n\n this.getCompletions = function(state, session, pos, prefix) {\n if (!this.completionsDefined) {\n this.defineCompletions();\n }\n\n var token = session.getTokenAt(pos.row, pos.column);\n\n if (!token)\n return [];\n if (state==='ruleset'){\n var line = session.getLine(pos.row).substr(0, pos.column);\n if (/:[^;]+$/.test(line)) {\n /([\\w\\-]+):[^:]*$/.test(line);\n\n return this.getPropertyValueCompletions(state, session, pos, prefix);\n } else {\n return this.getPropertyCompletions(state, session, pos, prefix);\n }\n }\n\n return [];\n };\n\n this.getPropertyCompletions = function(state, session, pos, prefix) {\n var properties = Object.keys(propertyMap);\n return properties.map(function(property){\n return {\n caption: property,\n snippet: property + ': $0;',\n meta: \"property\",\n score: 1000000\n };\n });\n };\n\n this.getPropertyValueCompletions = function(state, session, pos, prefix) {\n var line = session.getLine(pos.row).substr(0, pos.column);\n var property = (/([\\w\\-]+):[^:]*$/.exec(line) || {})[1];\n\n if (!property)\n return [];\n var values = [];\n if (property in propertyMap && typeof propertyMap[property] === \"object\") {\n values = Object.keys(propertyMap[property]);\n }\n return values.map(function(value){\n return {\n caption: value,\n snippet: value,\n meta: \"property value\",\n score: 1000000\n };\n });\n };\n\n}).call(CssCompletions.prototype);\n\nexports.CssCompletions = CssCompletions;\n});\n\nace.define(\"ace/mode/behaviour/css\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/behaviour\",\"ace/mode/behaviour/cstyle\",\"ace/token_iterator\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Behaviour = require(\"../behaviour\").Behaviour;\nvar CstyleBehaviour = require(\"./cstyle\").CstyleBehaviour;\nvar TokenIterator = require(\"../../token_iterator\").TokenIterator;\n\nvar CssBehaviour = function () {\n\n this.inherit(CstyleBehaviour);\n\n this.add(\"colon\", \"insertion\", function (state, action, editor, session, text) {\n if (text === ':' && editor.selection.isEmpty()) {\n var cursor = editor.getCursorPosition();\n var iterator = new TokenIterator(session, cursor.row, cursor.column);\n var token = iterator.getCurrentToken();\n if (token && token.value.match(/\\s+/)) {\n token = iterator.stepBackward();\n }\n if (token && token.type === 'support.type') {\n var line = session.doc.getLine(cursor.row);\n var rightChar = line.substring(cursor.column, cursor.column + 1);\n if (rightChar === ':') {\n return {\n text: '',\n selection: [1, 1]\n };\n }\n if (/^(\\s+[^;]|\\s*$)/.test(line.substring(cursor.column))) {\n return {\n text: ':;',\n selection: [1, 1]\n };\n }\n }\n }\n });\n\n this.add(\"colon\", \"deletion\", function (state, action, editor, session, range) {\n var selected = session.doc.getTextRange(range);\n if (!range.isMultiLine() && selected === ':') {\n var cursor = editor.getCursorPosition();\n var iterator = new TokenIterator(session, cursor.row, cursor.column);\n var token = iterator.getCurrentToken();\n if (token && token.value.match(/\\s+/)) {\n token = iterator.stepBackward();\n }\n if (token && token.type === 'support.type') {\n var line = session.doc.getLine(range.start.row);\n var rightChar = line.substring(range.end.column, range.end.column + 1);\n if (rightChar === ';') {\n range.end.column ++;\n return range;\n }\n }\n }\n });\n\n this.add(\"semicolon\", \"insertion\", function (state, action, editor, session, text) {\n if (text === ';' && editor.selection.isEmpty()) {\n var cursor = editor.getCursorPosition();\n var line = session.doc.getLine(cursor.row);\n var rightChar = line.substring(cursor.column, cursor.column + 1);\n if (rightChar === ';') {\n return {\n text: '',\n selection: [1, 1]\n };\n }\n }\n });\n\n this.add(\"!important\", \"insertion\", function (state, action, editor, session, text) {\n if (text === '!' && editor.selection.isEmpty()) {\n var cursor = editor.getCursorPosition();\n var line = session.doc.getLine(cursor.row);\n\n if (/^\\s*(;|}|$)/.test(line.substring(cursor.column))) {\n return {\n text: '!important',\n selection: [10, 10]\n };\n }\n }\n });\n\n};\noop.inherits(CssBehaviour, CstyleBehaviour);\n\nexports.CssBehaviour = CssBehaviour;\n});\n\nace.define(\"ace/mode/folding/cstyle\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/range\",\"ace/mode/folding/fold_mode\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Range = require(\"../../range\").Range;\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function(commentRegex) {\n if (commentRegex) {\n this.foldingStartMarker = new RegExp(\n this.foldingStartMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.start)\n );\n this.foldingStopMarker = new RegExp(\n this.foldingStopMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.end)\n );\n }\n};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n \n this.foldingStartMarker = /([\\{\\[\\(])[^\\}\\]\\)]*$|^\\s*(\\/\\*)/;\n this.foldingStopMarker = /^[^\\[\\{\\(]*([\\}\\]\\)])|^[\\s\\*]*(\\*\\/)/;\n this.singleLineBlockCommentRe= /^\\s*(\\/\\*).*\\*\\/\\s*$/;\n this.tripleStarBlockCommentRe = /^\\s*(\\/\\*\\*\\*).*\\*\\/\\s*$/;\n this.startRegionRe = /^\\s*(\\/\\*|\\/\\/)#?region\\b/;\n this._getFoldWidgetBase = this.getFoldWidget;\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n \n if (this.singleLineBlockCommentRe.test(line)) {\n if (!this.startRegionRe.test(line) && !this.tripleStarBlockCommentRe.test(line))\n return \"\";\n }\n \n var fw = this._getFoldWidgetBase(session, foldStyle, row);\n \n if (!fw && this.startRegionRe.test(line))\n return \"start\"; // lineCommentRegionStart\n \n return fw;\n };\n\n this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {\n var line = session.getLine(row);\n \n if (this.startRegionRe.test(line))\n return this.getCommentRegionBlock(session, line, row);\n \n var match = line.match(this.foldingStartMarker);\n if (match) {\n var i = match.index;\n\n if (match[1])\n return this.openingBracketBlock(session, match[1], row, i);\n \n var range = session.getCommentFoldRange(row, i + match[0].length, 1);\n \n if (range && !range.isMultiLine()) {\n if (forceMultiline) {\n range = this.getSectionRange(session, row);\n } else if (foldStyle != \"all\")\n range = null;\n }\n \n return range;\n }\n\n if (foldStyle === \"markbegin\")\n return;\n\n var match = line.match(this.foldingStopMarker);\n if (match) {\n var i = match.index + match[0].length;\n\n if (match[1])\n return this.closingBracketBlock(session, match[1], row, i);\n\n return session.getCommentFoldRange(row, i, -1);\n }\n };\n \n this.getSectionRange = function(session, row) {\n var line = session.getLine(row);\n var startIndent = line.search(/\\S/);\n var startRow = row;\n var startColumn = line.length;\n row = row + 1;\n var endRow = row;\n var maxRow = session.getLength();\n while (++row < maxRow) {\n line = session.getLine(row);\n var indent = line.search(/\\S/);\n if (indent === -1)\n continue;\n if (startIndent > indent)\n break;\n var subRange = this.getFoldWidgetRange(session, \"all\", row);\n \n if (subRange) {\n if (subRange.start.row <= startRow) {\n break;\n } else if (subRange.isMultiLine()) {\n row = subRange.end.row;\n } else if (startIndent == indent) {\n break;\n }\n }\n endRow = row;\n }\n \n return new Range(startRow, startColumn, endRow, session.getLine(endRow).length);\n };\n this.getCommentRegionBlock = function(session, line, row) {\n var startColumn = line.search(/\\s*$/);\n var maxRow = session.getLength();\n var startRow = row;\n \n var re = /^\\s*(?:\\/\\*|\\/\\/|--)#?(end)?region\\b/;\n var depth = 1;\n while (++row < maxRow) {\n line = session.getLine(row);\n var m = re.exec(line);\n if (!m) continue;\n if (m[1]) depth--;\n else depth++;\n\n if (!depth) break;\n }\n\n var endRow = row;\n if (endRow > startRow) {\n return new Range(startRow, startColumn, endRow, line.length);\n }\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/css\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/css_highlight_rules\",\"ace/mode/matching_brace_outdent\",\"ace/worker/worker_client\",\"ace/mode/css_completions\",\"ace/mode/behaviour/css\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar CssHighlightRules = require(\"./css_highlight_rules\").CssHighlightRules;\nvar MatchingBraceOutdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\nvar WorkerClient = require(\"../worker/worker_client\").WorkerClient;\nvar CssCompletions = require(\"./css_completions\").CssCompletions;\nvar CssBehaviour = require(\"./behaviour/css\").CssBehaviour;\nvar CStyleFoldMode = require(\"./folding/cstyle\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = CssHighlightRules;\n this.$outdent = new MatchingBraceOutdent();\n this.$behaviour = new CssBehaviour();\n this.$completer = new CssCompletions();\n this.foldingRules = new CStyleFoldMode();\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.foldingRules = \"cStyle\";\n this.blockComment = {start: \"/*\", end: \"*/\"};\n\n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n var tokens = this.getTokenizer().getLineTokens(line, state).tokens;\n if (tokens.length && tokens[tokens.length-1].type == \"comment\") {\n return indent;\n }\n\n var match = line.match(/^.*\\{\\s*$/);\n if (match) {\n indent += tab;\n }\n\n return indent;\n };\n\n this.checkOutdent = function(state, line, input) {\n return this.$outdent.checkOutdent(line, input);\n };\n\n this.autoOutdent = function(state, doc, row) {\n this.$outdent.autoOutdent(doc, row);\n };\n\n this.getCompletions = function(state, session, pos, prefix) {\n return this.$completer.getCompletions(state, session, pos, prefix);\n };\n\n this.createWorker = function(session) {\n var worker = new WorkerClient([\"ace\"], \"ace/mode/css_worker\", \"Worker\");\n worker.attachToDocument(session.getDocument());\n\n worker.on(\"annotate\", function(e) {\n session.setAnnotations(e.data);\n });\n\n worker.on(\"terminate\", function() {\n session.clearAnnotations();\n });\n\n return worker;\n };\n\n this.$id = \"ace/mode/css\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n\n}); (function() {\n ace.require([\"ace/mode/css\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file6 := &embedded.EmbeddedFile{ Filename: "03fde970c4a49be262f82a2ba54b7831.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/csp\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText =undefined;\nexports.scope = \"\";\n\n}); (function() {\n ace.require([\"ace/snippets/csp\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file7 := &embedded.EmbeddedFile{ Filename: "042a0929611f7e1e7513258ec70ebdf5.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/red\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText = \" \";\nexports.scope = \"red\";\n\n}); (function() {\n ace.require([\"ace/snippets/red\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file8 := &embedded.EmbeddedFile{ Filename: "06d453ace473034cd357edb758d539ab.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/csound_document\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText = \"# \\n\\\nsnippet synth\\n\\\n\t\\n\\\n\t\\n\\\n\t${1}\\n\\\n\t\\n\\\n\t\\n\\\n\te\\n\\\n\t\\n\\\n\t\\n\\\n\";\nexports.scope = \"csound_document\";\n\n}); (function() {\n ace.require([\"ace/snippets/csound_document\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file9 := &embedded.EmbeddedFile{ Filename: "06dd700316770ac2bafb9202be298dcc.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/ada\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText =undefined;\nexports.scope = \"ada\";\n\n}); (function() {\n ace.require([\"ace/snippets/ada\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } filea := &embedded.EmbeddedFile{ Filename: "0768225f873adf5f103dcb714f17783d.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/sqlserver\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText = \"# ISNULL\\n\\\nsnippet isnull\\n\\\n\tISNULL(${1:check_expression}, ${2:replacement_value})\\n\\\n# FORMAT\\n\\\nsnippet format\\n\\\n\tFORMAT(${1:value}, ${2:format})\\n\\\n# CAST\\n\\\nsnippet cast\\n\\\n\tCAST(${1:expression} AS ${2:data_type})\\n\\\n# CONVERT\\n\\\nsnippet convert\\n\\\n\tCONVERT(${1:data_type}, ${2:expression})\\n\\\n# DATEPART\\n\\\nsnippet datepart\\n\\\n\tDATEPART(${1:datepart}, ${2:date})\\n\\\n# DATEDIFF\\n\\\nsnippet datediff\\n\\\n\tDATEDIFF(${1:datepart}, ${2:startdate}, ${3:enddate})\\n\\\n# DATEADD\\n\\\nsnippet dateadd\\n\\\n\tDATEADD(${1:datepart}, ${2:number}, ${3:date})\\n\\\n# DATEFROMPARTS \\n\\\nsnippet datefromparts\\n\\\n\tDATEFROMPARTS(${1:year}, ${2:month}, ${3:day})\\n\\\n# OBJECT_DEFINITION\\n\\\nsnippet objectdef\\n\\\n\tSELECT OBJECT_DEFINITION(OBJECT_ID('${1:sys.server_permissions /*object name*/}'))\\n\\\n# STUFF XML\\n\\\nsnippet stuffxml\\n\\\n\tSTUFF((SELECT ', ' + ${1:ColumnName}\\n\\\n\t\tFROM ${2:TableName}\\n\\\n\t\tWHERE ${3:WhereClause}\\n\\\n\t\tFOR XML PATH('')), 1, 1, '') AS ${4:Alias}\\n\\\n\t${5:/*https://msdn.microsoft.com/en-us/library/ms188043.aspx*/}\\n\\\n# Create Procedure\\n\\\nsnippet createproc\\n\\\n\t-- =============================================\\n\\\n\t-- Author:\t\t${1:Author}\\n\\\n\t-- Create date: ${2:Date}\\n\\\n\t-- Description:\t${3:Description}\\n\\\n\t-- =============================================\\n\\\n\tCREATE PROCEDURE ${4:Procedure_Name}\\n\\\n\t\t${5:/*Add the parameters for the stored procedure here*/}\\n\\\n\tAS\\n\\\n\tBEGIN\\n\\\n\t\t-- SET NOCOUNT ON added to prevent extra result sets from interfering with SELECT statements.\\n\\\n\t\tSET NOCOUNT ON;\\n\\\n\t\t\\n\\\n\t\t${6:/*Add the T-SQL statements to compute the return value here*/}\\n\\\n\t\t\\n\\\n\tEND\\n\\\n\tGO\\n\\\n# Create Scalar Function\\n\\\nsnippet createfn\\n\\\n\t-- =============================================\\n\\\n\t-- Author:\t\t${1:Author}\\n\\\n\t-- Create date: ${2:Date}\\n\\\n\t-- Description:\t${3:Description}\\n\\\n\t-- =============================================\\n\\\n\tCREATE FUNCTION ${4:Scalar_Function_Name}\\n\\\n\t\t-- Add the parameters for the function here\\n\\\n\tRETURNS ${5:Function_Data_Type}\\n\\\n\tAS\\n\\\n\tBEGIN\\n\\\n\t\tDECLARE @Result ${5:Function_Data_Type}\\n\\\n\t\t\\n\\\n\t\t${6:/*Add the T-SQL statements to compute the return value here*/}\\n\\\n\t\t\\n\\\n\tEND\\n\\\n\tGO\";\nexports.scope = \"sqlserver\";\n\n}); (function() {\n ace.require([\"ace/snippets/sqlserver\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } fileb := &embedded.EmbeddedFile{ Filename: "0870bcf868f8d64dc9a6226a6c8b341d.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/snippets\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText = \"# snippets for making snippets :)\\n\\\nsnippet snip\\n\\\n\tsnippet ${1:trigger}\\n\\\n\t\t${2}\\n\\\nsnippet msnip\\n\\\n\tsnippet ${1:trigger} ${2:description}\\n\\\n\t\t${3}\\n\\\nsnippet v\\n\\\n\t{VISUAL}\\n\\\n\";\nexports.scope = \"snippets\";\n\n}); (function() {\n ace.require([\"ace/snippets/snippets\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } filec := &embedded.EmbeddedFile{ Filename: "0925adb74dc871a2f4e654a6fc28485c.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/ext/beautify\",[\"require\",\"exports\",\"module\",\"ace/token_iterator\"], function(require, exports, module) {\n\"use strict\";\nvar TokenIterator = require(\"../token_iterator\").TokenIterator;\n\nfunction is(token, type) {\n return token.type.lastIndexOf(type + \".xml\") > -1;\n}\nexports.singletonTags = [\"area\", \"base\", \"br\", \"col\", \"command\", \"embed\", \"hr\", \"html\", \"img\", \"input\", \"keygen\", \"link\", \"meta\", \"param\", \"source\", \"track\", \"wbr\"];\nexports.blockTags = [\"article\", \"aside\", \"blockquote\", \"body\", \"div\", \"dl\", \"fieldset\", \"footer\", \"form\", \"head\", \"header\", \"html\", \"nav\", \"ol\", \"p\", \"script\", \"section\", \"style\", \"table\", \"tbody\", \"tfoot\", \"thead\", \"ul\"];\n\nexports.beautify = function(session) {\n var iterator = new TokenIterator(session, 0, 0);\n var token = iterator.getCurrentToken();\n var tabString = session.getTabString();\n var singletonTags = exports.singletonTags;\n var blockTags = exports.blockTags;\n var nextToken;\n var breakBefore = false;\n var spaceBefore = false;\n var spaceAfter = false;\n var code = \"\";\n var value = \"\";\n var tagName = \"\";\n var depth = 0;\n var lastDepth = 0;\n var lastIndent = 0;\n var indent = 0;\n var unindent = 0;\n var roundDepth = 0;\n var onCaseLine = false;\n var row;\n var curRow = 0;\n var rowsToAdd = 0;\n var rowTokens = [];\n var abort = false;\n var i;\n var indentNextLine = false;\n var inTag = false;\n var inCSS = false;\n var inBlock = false;\n var levels = {0: 0};\n var parents = {};\n\n var trimNext = function() {\n if (nextToken && nextToken.value && nextToken.type !== 'string.regexp')\n nextToken.value = nextToken.value.trim();\n };\n\n var trimLine = function() {\n code = code.replace(/ +$/, \"\");\n };\n\n var trimCode = function() {\n code = code.trimRight();\n breakBefore = false;\n };\n\n while (token !== null) {\n curRow = iterator.getCurrentTokenRow();\n rowTokens = iterator.$rowTokens;\n nextToken = iterator.stepForward();\n\n if (typeof token !== \"undefined\") {\n value = token.value;\n unindent = 0;\n inCSS = (tagName === \"style\" || session.$modeId === \"ace/mode/css\");\n if (is(token, \"tag-open\")) {\n inTag = true;\n if (nextToken)\n inBlock = (blockTags.indexOf(nextToken.value) !== -1);\n if (value === \" 0; rowsToAdd--)\n code += \"\\n\";\n\n breakBefore = true;\n if (!is(token, \"comment\") && !token.type.match(/^(comment|string)$/))\n value = value.trimLeft();\n }\n\n if (value) {\n if (token.type === \"keyword\" && value.match(/^(if|else|elseif|for|foreach|while|switch)$/)) {\n parents[depth] = value;\n\n trimNext();\n spaceAfter = true;\n if (value.match(/^(else|elseif)$/)) {\n if (code.match(/\\}[\\s]*$/)) {\n trimCode();\n spaceBefore = true;\n }\n }\n } else if (token.type === \"paren.lparen\") {\n trimNext();\n if (value.substr(-1) === \"{\") {\n spaceAfter = true;\n indentNextLine = false;\n\n if(!inTag)\n rowsToAdd = 1;\n }\n if (value.substr(0, 1) === \"{\") {\n spaceBefore = true;\n if (code.substr(-1) !== '[' && code.trimRight().substr(-1) === '[') {\n trimCode();\n spaceBefore = false;\n } else if (code.trimRight().substr(-1) === ')') {\n trimCode();\n } else {\n trimLine();\n }\n }\n } else if (token.type === \"paren.rparen\") {\n unindent = 1;\n if (value.substr(0, 1) === \"}\") {\n if (parents[depth-1] === 'case')\n unindent++;\n\n if (code.trimRight().substr(-1) === '{') {\n trimCode();\n } else {\n spaceBefore = true;\n\n if (inCSS)\n rowsToAdd+=2;\n }\n }\n if (value.substr(0, 1) === \"]\") {\n if (code.substr(-1) !== '}' && code.trimRight().substr(-1) === '}') {\n spaceBefore = false;\n indent++;\n trimCode();\n }\n }\n if (value.substr(0, 1) === \")\") {\n if (code.substr(-1) !== '(' && code.trimRight().substr(-1) === '(') {\n spaceBefore = false;\n indent++;\n trimCode();\n }\n }\n\n trimLine();\n } else if ((token.type === \"keyword.operator\" || token.type === \"keyword\") && value.match(/^(=|==|===|!=|!==|&&|\\|\\||and|or|xor|\\+=|.=|>|>=|<|<=|=>)$/)) {\n trimCode();\n trimNext();\n spaceBefore = true;\n spaceAfter = true;\n } else if (token.type === \"punctuation.operator\" && value === ';') {\n trimCode();\n trimNext();\n spaceAfter = true;\n\n if (inCSS)\n rowsToAdd++;\n } else if (token.type === \"punctuation.operator\" && value.match(/^(:|,)$/)) {\n trimCode();\n trimNext();\n spaceAfter = true;\n breakBefore = false;\n } else if (token.type === \"support.php_tag\" && value === \"?>\" && !breakBefore) {\n trimCode();\n spaceBefore = true;\n } else if (is(token, \"attribute-name\") && code.substr(-1).match(/^\\s$/)) {\n spaceBefore = true;\n } else if (is(token, \"attribute-equals\")) {\n trimLine();\n trimNext();\n } else if (is(token, \"tag-close\")) {\n trimLine();\n if(value === \"/>\")\n spaceBefore = true;\n }\n if (breakBefore && !(token.type.match(/^(comment)$/) && !value.substr(0, 1).match(/^[/#]$/)) && !(token.type.match(/^(string)$/) && !value.substr(0, 1).match(/^['\"]$/))) {\n\n indent = lastIndent;\n\n if(depth > lastDepth) {\n indent++;\n\n for (i=depth; i > lastDepth; i--)\n levels[i] = indent;\n } else if(depth < lastDepth)\n indent = levels[depth];\n\n lastDepth = depth;\n lastIndent = indent;\n\n if(unindent)\n indent -= unindent;\n\n if (indentNextLine && !roundDepth) {\n indent++;\n indentNextLine = false;\n }\n\n for (i = 0; i < indent; i++)\n code += tabString;\n }\n\n\n if (token.type === \"keyword\" && value.match(/^(case|default)$/)) {\n parents[depth] = value;\n depth++;\n }\n\n\n if (token.type === \"keyword\" && value.match(/^(break)$/)) {\n if(parents[depth-1] && parents[depth-1].match(/^(case|default)$/)) {\n depth--;\n }\n }\n if (token.type === \"paren.lparen\") {\n roundDepth += (value.match(/\\(/g) || []).length;\n depth += value.length;\n }\n\n if (token.type === \"keyword\" && value.match(/^(if|else|elseif|for|while)$/)) {\n indentNextLine = true;\n roundDepth = 0;\n } else if (!roundDepth && value.trim() && token.type !== \"comment\")\n indentNextLine = false;\n\n if (token.type === \"paren.rparen\") {\n roundDepth -= (value.match(/\\)/g) || []).length;\n\n for (i = 0; i < value.length; i++) {\n depth--;\n if(value.substr(i, 1)==='}' && parents[depth]==='case') {\n depth--;\n }\n }\n }\n if (spaceBefore && !breakBefore) {\n trimLine();\n if (code.substr(-1) !== \"\\n\")\n code += \" \";\n }\n\n code += value;\n\n if (spaceAfter)\n code += \" \";\n\n breakBefore = false;\n spaceBefore = false;\n spaceAfter = false;\n if ((is(token, \"tag-close\") && (inBlock || blockTags.indexOf(tagName) !== -1)) || (is(token, \"doctype\") && value === \">\")) {\n if (inBlock && nextToken && nextToken.value === \"\" && singletonTags.indexOf(tagName) === -1){\n depth--;\n }\n\n row = curRow;\n }\n }\n\n token = nextToken;\n }\n\n code = code.trim();\n session.doc.setValue(code);\n};\n\nexports.commands = [{\n name: \"beautify\",\n exec: function(editor) {\n exports.beautify(editor.session);\n },\n bindKey: \"Ctrl-Shift-B\"\n}];\n\n}); (function() {\n ace.require([\"ace/ext/beautify\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } filed := &embedded.EmbeddedFile{ Filename: "0a4b12234fd7cba4d7c62207e4835f4c.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/php\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText = \"snippet ec\\n\\\n\techo ${1};\\n\\\nsnippet ns\\n\\\n\tnamespace ${1:Foo\\\\Bar\\\\Baz};\\n\\\n\t${2}\\n\\\nsnippet use\\n\\\n\tuse ${1:Foo\\\\Bar\\\\Baz};\\n\\\n\t${2}\\n\\\nsnippet c\\n\\\n\t${1:abstract }class ${2:$FILENAME}\\n\\\n\t{\\n\\\n\t\t${3}\\n\\\n\t}\\n\\\nsnippet i\\n\\\n\tinterface ${1:$FILENAME}\\n\\\n\t{\\n\\\n\t\t${2}\\n\\\n\t}\\n\\\nsnippet t.\\n\\\n\t$this->${1}\\n\\\nsnippet f\\n\\\n\tfunction ${1:foo}(${2:array }${3:$bar})\\n\\\n\t{\\n\\\n\t\t${4}\\n\\\n\t}\\n\\\n# method\\n\\\nsnippet m\\n\\\n\t${1:abstract }${2:protected}${3: static} function ${4:foo}(${5:array }${6:$bar})\\n\\\n\t{\\n\\\n\t\t${7}\\n\\\n\t}\\n\\\n# setter method\\n\\\nsnippet sm\\n\\\n\t/**\\n\\\n\t * Sets the value of ${1:foo}\\n\\\n\t *\\n\\\n\t * @param ${2:$1} $$1 ${3:description}\\n\\\n\t *\\n\\\n\t * @return ${4:$FILENAME}\\n\\\n\t */\\n\\\n\t${5:public} function set${6:$2}(${7:$2 }$$1)\\n\\\n\t{\\n\\\n\t\t$this->${8:$1} = $$1;\\n\\\n\t\treturn $this;\\n\\\n\t}${9}\\n\\\n# getter method\\n\\\nsnippet gm\\n\\\n\t/**\\n\\\n\t * Gets the value of ${1:foo}\\n\\\n\t *\\n\\\n\t * @return ${2:$1}\\n\\\n\t */\\n\\\n\t${3:public} function get${4:$2}()\\n\\\n\t{\\n\\\n\t\treturn $this->${5:$1};\\n\\\n\t}${6}\\n\\\n#setter\\n\\\nsnippet $s\\n\\\n\t${1:$foo}->set${2:Bar}(${3});\\n\\\n#getter\\n\\\nsnippet $g\\n\\\n\t${1:$foo}->get${2:Bar}();\\n\\\n\\n\\\n# Tertiary conditional\\n\\\nsnippet =?:\\n\\\n\t$${1:foo} = ${2:true} ? ${3:a} : ${4};\\n\\\nsnippet ?:\\n\\\n\t${1:true} ? ${2:a} : ${3}\\n\\\n\\n\\\nsnippet C\\n\\\n\t$_COOKIE['${1:variable}']${2}\\n\\\nsnippet E\\n\\\n\t$_ENV['${1:variable}']${2}\\n\\\nsnippet F\\n\\\n\t$_FILES['${1:variable}']${2}\\n\\\nsnippet G\\n\\\n\t$_GET['${1:variable}']${2}\\n\\\nsnippet P\\n\\\n\t$_POST['${1:variable}']${2}\\n\\\nsnippet R\\n\\\n\t$_REQUEST['${1:variable}']${2}\\n\\\nsnippet S\\n\\\n\t$_SERVER['${1:variable}']${2}\\n\\\nsnippet SS\\n\\\n\t$_SESSION['${1:variable}']${2}\\n\\\n\\n\\\n# the following are old ones\\n\\\nsnippet inc\\n\\\n\tinclude '${1:file}';${2}\\n\\\nsnippet inc1\\n\\\n\tinclude_once '${1:file}';${2}\\n\\\nsnippet req\\n\\\n\trequire '${1:file}';${2}\\n\\\nsnippet req1\\n\\\n\trequire_once '${1:file}';${2}\\n\\\n# Start Docblock\\n\\\nsnippet /*\\n\\\n\t/**\\n\\\n\t * ${1}\\n\\\n\t */\\n\\\n# Class - post doc\\n\\\nsnippet doc_cp\\n\\\n\t/**\\n\\\n\t * ${1:undocumented class}\\n\\\n\t *\\n\\\n\t * @package ${2:default}\\n\\\n\t * @subpackage ${3:default}\\n\\\n\t * @author ${4:`g:snips_author`}\\n\\\n\t */${5}\\n\\\n# Class Variable - post doc\\n\\\nsnippet doc_vp\\n\\\n\t/**\\n\\\n\t * ${1:undocumented class variable}\\n\\\n\t *\\n\\\n\t * @var ${2:string}\\n\\\n\t */${3}\\n\\\n# Class Variable\\n\\\nsnippet doc_v\\n\\\n\t/**\\n\\\n\t * ${3:undocumented class variable}\\n\\\n\t *\\n\\\n\t * @var ${4:string}\\n\\\n\t */\\n\\\n\t${1:var} $${2};${5}\\n\\\n# Class\\n\\\nsnippet doc_c\\n\\\n\t/**\\n\\\n\t * ${3:undocumented class}\\n\\\n\t *\\n\\\n\t * @package ${4:default}\\n\\\n\t * @subpackage ${5:default}\\n\\\n\t * @author ${6:`g:snips_author`}\\n\\\n\t */\\n\\\n\t${1:}class ${2:}\\n\\\n\t{\\n\\\n\t\t${7}\\n\\\n\t} // END $1class $2\\n\\\n# Constant Definition - post doc\\n\\\nsnippet doc_dp\\n\\\n\t/**\\n\\\n\t * ${1:undocumented constant}\\n\\\n\t */${2}\\n\\\n# Constant Definition\\n\\\nsnippet doc_d\\n\\\n\t/**\\n\\\n\t * ${3:undocumented constant}\\n\\\n\t */\\n\\\n\tdefine(${1}, ${2});${4}\\n\\\n# Function - post doc\\n\\\nsnippet doc_fp\\n\\\n\t/**\\n\\\n\t * ${1:undocumented function}\\n\\\n\t *\\n\\\n\t * @return ${2:void}\\n\\\n\t * @author ${3:`g:snips_author`}\\n\\\n\t */${4}\\n\\\n# Function signature\\n\\\nsnippet doc_s\\n\\\n\t/**\\n\\\n\t * ${4:undocumented function}\\n\\\n\t *\\n\\\n\t * @return ${5:void}\\n\\\n\t * @author ${6:`g:snips_author`}\\n\\\n\t */\\n\\\n\t${1}function ${2}(${3});${7}\\n\\\n# Function\\n\\\nsnippet doc_f\\n\\\n\t/**\\n\\\n\t * ${4:undocumented function}\\n\\\n\t *\\n\\\n\t * @return ${5:void}\\n\\\n\t * @author ${6:`g:snips_author`}\\n\\\n\t */\\n\\\n\t${1}function ${2}(${3})\\n\\\n\t{${7}\\n\\\n\t}\\n\\\n# Header\\n\\\nsnippet doc_h\\n\\\n\t/**\\n\\\n\t * ${1}\\n\\\n\t *\\n\\\n\t * @author ${2:`g:snips_author`}\\n\\\n\t * @version ${3:$Id$}\\n\\\n\t * @copyright ${4:$2}, `strftime('%d %B, %Y')`\\n\\\n\t * @package ${5:default}\\n\\\n\t */\\n\\\n\\n\\\n# Interface\\n\\\nsnippet interface\\n\\\n\t/**\\n\\\n\t * ${2:undocumented class}\\n\\\n\t *\\n\\\n\t * @package ${3:default}\\n\\\n\t * @author ${4:`g:snips_author`}\\n\\\n\t */\\n\\\n\tinterface ${1:$FILENAME}\\n\\\n\t{\\n\\\n\t\t${5}\\n\\\n\t}\\n\\\n# class ...\\n\\\nsnippet class\\n\\\n\t/**\\n\\\n\t * ${1}\\n\\\n\t */\\n\\\n\tclass ${2:$FILENAME}\\n\\\n\t{\\n\\\n\t\t${3}\\n\\\n\t\t/**\\n\\\n\t\t * ${4}\\n\\\n\t\t */\\n\\\n\t\t${5:public} function ${6:__construct}(${7:argument})\\n\\\n\t\t{\\n\\\n\t\t\t${8:// code...}\\n\\\n\t\t}\\n\\\n\t}\\n\\\n# define(...)\\n\\\nsnippet def\\n\\\n\tdefine('${1}'${2});${3}\\n\\\n# defined(...)\\n\\\nsnippet def?\\n\\\n\t${1}defined('${2}')${3}\\n\\\nsnippet wh\\n\\\n\twhile (${1:/* condition */}) {\\n\\\n\t\t${2:// code...}\\n\\\n\t}\\n\\\n# do ... while\\n\\\nsnippet do\\n\\\n\tdo {\\n\\\n\t\t${2:// code... }\\n\\\n\t} while (${1:/* condition */});\\n\\\nsnippet if\\n\\\n\tif (${1:/* condition */}) {\\n\\\n\t\t${2:// code...}\\n\\\n\t}\\n\\\nsnippet ife\\n\\\n\tif (${1:/* condition */}) {\\n\\\n\t\t${2:// code...}\\n\\\n\t} else {\\n\\\n\t\t${3:// code...}\\n\\\n\t}\\n\\\n\t${4}\\n\\\nsnippet else\\n\\\n\telse {\\n\\\n\t\t${1:// code...}\\n\\\n\t}\\n\\\nsnippet elseif\\n\\\n\telseif (${1:/* condition */}) {\\n\\\n\t\t${2:// code...}\\n\\\n\t}\\n\\\nsnippet switch\\n\\\n\tswitch ($${1:variable}) {\\n\\\n\t\tcase '${2:value}':\\n\\\n\t\t\t${3:// code...}\\n\\\n\t\t\tbreak;\\n\\\n\t\t${5}\\n\\\n\t\tdefault:\\n\\\n\t\t\t${4:// code...}\\n\\\n\t\t\tbreak;\\n\\\n\t}\\n\\\nsnippet case\\n\\\n\tcase '${1:value}':\\n\\\n\t\t${2:// code...}\\n\\\n\t\tbreak;${3}\\n\\\nsnippet for\\n\\\n\tfor ($${2:i} = 0; $$2 < ${1:count}; $$2${3:++}) {\\n\\\n\t\t${4: // code...}\\n\\\n\t}\\n\\\nsnippet foreach\\n\\\n\tforeach ($${1:variable} as $${2:value}) {\\n\\\n\t\t${3:// code...}\\n\\\n\t}\\n\\\nsnippet foreachk\\n\\\n\tforeach ($${1:variable} as $${2:key} => $${3:value}) {\\n\\\n\t\t${4:// code...}\\n\\\n\t}\\n\\\n# $... = array (...)\\n\\\nsnippet array\\n\\\n\t$${1:arrayName} = array('${2}' => ${3});${4}\\n\\\nsnippet try\\n\\\n\ttry {\\n\\\n\t\t${2}\\n\\\n\t} catch (${1:Exception} $e) {\\n\\\n\t}\\n\\\n# lambda with closure\\n\\\nsnippet lambda\\n\\\n\t${1:static }function (${2:args}) use (${3:&$x, $y /*put vars in scope (closure) */}) {\\n\\\n\t\t${4}\\n\\\n\t};\\n\\\n# pre_dump();\\n\\\nsnippet pd\\n\\\n\techo '
'; var_dump(${1}); echo '
';\\n\\\n# pre_dump(); die();\\n\\\nsnippet pdd\\n\\\n\techo '
'; var_dump(${1}); echo '
'; die(${2:});\\n\\\nsnippet vd\\n\\\n\tvar_dump(${1});\\n\\\nsnippet vdd\\n\\\n\tvar_dump(${1}); die(${2:});\\n\\\nsnippet http_redirect\\n\\\n\theader (\\\"HTTP/1.1 301 Moved Permanently\\\");\\n\\\n\theader (\\\"Location: \\\".URL);\\n\\\n\texit();\\n\\\n# Getters & Setters\\n\\\nsnippet gs\\n\\\n\t/**\\n\\\n\t * Gets the value of ${1:foo}\\n\\\n\t *\\n\\\n\t * @return ${2:$1}\\n\\\n\t */\\n\\\n\tpublic function get${3:$2}()\\n\\\n\t{\\n\\\n\t\treturn $this->${4:$1};\\n\\\n\t}\\n\\\n\\n\\\n\t/**\\n\\\n\t * Sets the value of $1\\n\\\n\t *\\n\\\n\t * @param $2 $$1 ${5:description}\\n\\\n\t *\\n\\\n\t * @return ${6:$FILENAME}\\n\\\n\t */\\n\\\n\tpublic function set$3(${7:$2 }$$1)\\n\\\n\t{\\n\\\n\t\t$this->$4 = $$1;\\n\\\n\t\treturn $this;\\n\\\n\t}${8}\\n\\\n# anotation, get, and set, useful for doctrine\\n\\\nsnippet ags\\n\\\n\t/**\\n\\\n\t * ${1:description}\\n\\\n\t *\\n\\\n\t * @${7}\\n\\\n\t */\\n\\\n\t${2:protected} $${3:foo};\\n\\\n\\n\\\n\tpublic function get${4:$3}()\\n\\\n\t{\\n\\\n\t\treturn $this->$3;\\n\\\n\t}\\n\\\n\\n\\\n\tpublic function set$4(${5:$4 }$${6:$3})\\n\\\n\t{\\n\\\n\t\t$this->$3 = $$6;\\n\\\n\t\treturn $this;\\n\\\n\t}\\n\\\nsnippet rett\\n\\\n\treturn true;\\n\\\nsnippet retf\\n\\\n\treturn false;\\n\\\nscope html\\n\\\nsnippet \\n\\\n# this one is for php5.4\\n\\\nsnippet \\n\\\nsnippet ifil\\n\\\n\t\\n\\\n\t\t${2:}\\n\\\n\t\\n\\\nsnippet ifeil\\n\\\n\t\\n\\\n\t\t${2:}\\n\\\n\t\\n\\\n\t\t${3:}\\n\\\n\t\\n\\\n\t${4}\\n\\\nsnippet foreachil\\n\\\n\t\\n\\\n\t\t${3:}\\n\\\n\t\\n\\\nsnippet foreachkil\\n\\\n\t $${3:value}): ?>\\n\\\n\t\t${4:}\\n\\\n\t\\n\\\nscope html-tag\\n\\\nsnippet ifil\\\\n\\\\\\n\\\n\t${2:code}\\n\\\nsnippet ifeil\\\\n\\\\\\n\\\n\t${2:code}${3:code}${4}\\n\\\n\";\nexports.scope = \"php\";\n\n}); (function() {\n ace.require([\"ace/snippets/php\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } filee := &embedded.EmbeddedFile{ Filename: "0a5adf8110dfa37b8a75edf8cafb1dd7.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/doc_comment_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar DocCommentHighlightRules = function() {\n this.$rules = {\n \"start\" : [ {\n token : \"comment.doc.tag\",\n regex : \"@[\\\\w\\\\d_]+\" // TODO: fix email addresses\n }, \n DocCommentHighlightRules.getTagRule(),\n {\n defaultToken : \"comment.doc\",\n caseInsensitive: true\n }]\n };\n};\n\noop.inherits(DocCommentHighlightRules, TextHighlightRules);\n\nDocCommentHighlightRules.getTagRule = function(start) {\n return {\n token : \"comment.doc.tag.storage.type\",\n regex : \"\\\\b(?:TODO|FIXME|XXX|HACK)\\\\b\"\n };\n};\n\nDocCommentHighlightRules.getStartRule = function(start) {\n return {\n token : \"comment.doc\", // doc comment\n regex : \"\\\\/\\\\*(?=\\\\*)\",\n next : start\n };\n};\n\nDocCommentHighlightRules.getEndRule = function (start) {\n return {\n token : \"comment.doc\", // closing comment\n regex : \"\\\\*\\\\/\",\n next : start\n };\n};\n\n\nexports.DocCommentHighlightRules = DocCommentHighlightRules;\n\n});\n\nace.define(\"ace/mode/haxe_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/doc_comment_highlight_rules\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\n\nvar DocCommentHighlightRules = require(\"./doc_comment_highlight_rules\").DocCommentHighlightRules;\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar HaxeHighlightRules = function() {\n\n var keywords = (\n \"break|case|cast|catch|class|continue|default|else|enum|extends|for|function|if|implements|import|in|inline|interface|new|override|package|private|public|return|static|super|switch|this|throw|trace|try|typedef|untyped|var|while|Array|Void|Bool|Int|UInt|Float|Dynamic|String|List|Hash|IntHash|Error|Unknown|Type|Std\"\n );\n\n var buildinConstants = (\n \"null|true|false\"\n );\n\n var keywordMapper = this.createKeywordMapper({\n \"variable.language\": \"this\",\n \"keyword\": keywords,\n \"constant.language\": buildinConstants\n }, \"identifier\");\n\n this.$rules = {\n \"start\" : [\n {\n token : \"comment\",\n regex : \"\\\\/\\\\/.*$\"\n },\n DocCommentHighlightRules.getStartRule(\"doc-start\"),\n {\n token : \"comment\", // multi line comment\n regex : \"\\\\/\\\\*\",\n next : \"comment\"\n }, {\n token : \"string.regexp\",\n regex : \"[/](?:(?:\\\\[(?:\\\\\\\\]|[^\\\\]])+\\\\])|(?:\\\\\\\\/|[^\\\\]/]))*[/]\\\\w*\\\\s*(?=[).,;]|$)\"\n }, {\n token : \"string\", // single line\n regex : '[\"](?:(?:\\\\\\\\.)|(?:[^\"\\\\\\\\]))*?[\"]'\n }, {\n token : \"string\", // single line\n regex : \"['](?:(?:\\\\\\\\.)|(?:[^'\\\\\\\\]))*?[']\"\n }, {\n token : \"constant.numeric\", // hex\n regex : \"0[xX][0-9a-fA-F]+\\\\b\"\n }, {\n token : \"constant.numeric\", // float\n regex : \"[+-]?\\\\d+(?:(?:\\\\.\\\\d*)?(?:[eE][+-]?\\\\d+)?)?\\\\b\"\n }, {\n token : \"constant.language.boolean\",\n regex : \"(?:true|false)\\\\b\"\n }, {\n token : keywordMapper,\n regex : \"[a-zA-Z_$][a-zA-Z0-9_$]*\\\\b\"\n }, {\n token : \"keyword.operator\",\n regex : \"!|\\\\$|%|&|\\\\*|\\\\-\\\\-|\\\\-|\\\\+\\\\+|\\\\+|~|===|==|=|!=|!==|<=|>=|<<=|>>=|>>>=|<>|<|>|!|&&|\\\\|\\\\||\\\\?\\\\:|\\\\*=|%=|\\\\+=|\\\\-=|&=|\\\\^=|\\\\b(?:in|instanceof|new|delete|typeof|void)\"\n }, {\n token : \"punctuation.operator\",\n regex : \"\\\\?|\\\\:|\\\\,|\\\\;|\\\\.\"\n }, {\n token : \"paren.lparen\",\n regex : \"[[({<]\"\n }, {\n token : \"paren.rparen\",\n regex : \"[\\\\])}>]\"\n }, {\n token : \"text\",\n regex : \"\\\\s+\"\n }\n ],\n \"comment\" : [\n {\n token : \"comment\", // closing comment\n regex : \"\\\\*\\\\/\",\n next : \"start\"\n }, {\n defaultToken : \"comment\"\n }\n ]\n };\n\n this.embedRules(DocCommentHighlightRules, \"doc-\",\n [ DocCommentHighlightRules.getEndRule(\"start\") ]);\n};\n\noop.inherits(HaxeHighlightRules, TextHighlightRules);\n\nexports.HaxeHighlightRules = HaxeHighlightRules;\n});\n\nace.define(\"ace/mode/matching_brace_outdent\",[\"require\",\"exports\",\"module\",\"ace/range\"], function(require, exports, module) {\n\"use strict\";\n\nvar Range = require(\"../range\").Range;\n\nvar MatchingBraceOutdent = function() {};\n\n(function() {\n\n this.checkOutdent = function(line, input) {\n if (! /^\\s+$/.test(line))\n return false;\n\n return /^\\s*\\}/.test(input);\n };\n\n this.autoOutdent = function(doc, row) {\n var line = doc.getLine(row);\n var match = line.match(/^(\\s*\\})/);\n\n if (!match) return 0;\n\n var column = match[1].length;\n var openBracePos = doc.findMatchingBracket({row: row, column: column});\n\n if (!openBracePos || openBracePos.row == row) return 0;\n\n var indent = this.$getIndent(doc.getLine(openBracePos.row));\n doc.replace(new Range(row, 0, row, column-1), indent);\n };\n\n this.$getIndent = function(line) {\n return line.match(/^\\s*/)[0];\n };\n\n}).call(MatchingBraceOutdent.prototype);\n\nexports.MatchingBraceOutdent = MatchingBraceOutdent;\n});\n\nace.define(\"ace/mode/folding/cstyle\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/range\",\"ace/mode/folding/fold_mode\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Range = require(\"../../range\").Range;\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function(commentRegex) {\n if (commentRegex) {\n this.foldingStartMarker = new RegExp(\n this.foldingStartMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.start)\n );\n this.foldingStopMarker = new RegExp(\n this.foldingStopMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.end)\n );\n }\n};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n \n this.foldingStartMarker = /([\\{\\[\\(])[^\\}\\]\\)]*$|^\\s*(\\/\\*)/;\n this.foldingStopMarker = /^[^\\[\\{\\(]*([\\}\\]\\)])|^[\\s\\*]*(\\*\\/)/;\n this.singleLineBlockCommentRe= /^\\s*(\\/\\*).*\\*\\/\\s*$/;\n this.tripleStarBlockCommentRe = /^\\s*(\\/\\*\\*\\*).*\\*\\/\\s*$/;\n this.startRegionRe = /^\\s*(\\/\\*|\\/\\/)#?region\\b/;\n this._getFoldWidgetBase = this.getFoldWidget;\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n \n if (this.singleLineBlockCommentRe.test(line)) {\n if (!this.startRegionRe.test(line) && !this.tripleStarBlockCommentRe.test(line))\n return \"\";\n }\n \n var fw = this._getFoldWidgetBase(session, foldStyle, row);\n \n if (!fw && this.startRegionRe.test(line))\n return \"start\"; // lineCommentRegionStart\n \n return fw;\n };\n\n this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {\n var line = session.getLine(row);\n \n if (this.startRegionRe.test(line))\n return this.getCommentRegionBlock(session, line, row);\n \n var match = line.match(this.foldingStartMarker);\n if (match) {\n var i = match.index;\n\n if (match[1])\n return this.openingBracketBlock(session, match[1], row, i);\n \n var range = session.getCommentFoldRange(row, i + match[0].length, 1);\n \n if (range && !range.isMultiLine()) {\n if (forceMultiline) {\n range = this.getSectionRange(session, row);\n } else if (foldStyle != \"all\")\n range = null;\n }\n \n return range;\n }\n\n if (foldStyle === \"markbegin\")\n return;\n\n var match = line.match(this.foldingStopMarker);\n if (match) {\n var i = match.index + match[0].length;\n\n if (match[1])\n return this.closingBracketBlock(session, match[1], row, i);\n\n return session.getCommentFoldRange(row, i, -1);\n }\n };\n \n this.getSectionRange = function(session, row) {\n var line = session.getLine(row);\n var startIndent = line.search(/\\S/);\n var startRow = row;\n var startColumn = line.length;\n row = row + 1;\n var endRow = row;\n var maxRow = session.getLength();\n while (++row < maxRow) {\n line = session.getLine(row);\n var indent = line.search(/\\S/);\n if (indent === -1)\n continue;\n if (startIndent > indent)\n break;\n var subRange = this.getFoldWidgetRange(session, \"all\", row);\n \n if (subRange) {\n if (subRange.start.row <= startRow) {\n break;\n } else if (subRange.isMultiLine()) {\n row = subRange.end.row;\n } else if (startIndent == indent) {\n break;\n }\n }\n endRow = row;\n }\n \n return new Range(startRow, startColumn, endRow, session.getLine(endRow).length);\n };\n this.getCommentRegionBlock = function(session, line, row) {\n var startColumn = line.search(/\\s*$/);\n var maxRow = session.getLength();\n var startRow = row;\n \n var re = /^\\s*(?:\\/\\*|\\/\\/|--)#?(end)?region\\b/;\n var depth = 1;\n while (++row < maxRow) {\n line = session.getLine(row);\n var m = re.exec(line);\n if (!m) continue;\n if (m[1]) depth--;\n else depth++;\n\n if (!depth) break;\n }\n\n var endRow = row;\n if (endRow > startRow) {\n return new Range(startRow, startColumn, endRow, line.length);\n }\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/haxe\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/haxe_highlight_rules\",\"ace/mode/matching_brace_outdent\",\"ace/mode/behaviour/cstyle\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar HaxeHighlightRules = require(\"./haxe_highlight_rules\").HaxeHighlightRules;\nvar MatchingBraceOutdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\nvar CstyleBehaviour = require(\"./behaviour/cstyle\").CstyleBehaviour;\nvar CStyleFoldMode = require(\"./folding/cstyle\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = HaxeHighlightRules;\n \n this.$outdent = new MatchingBraceOutdent();\n this.$behaviour = new CstyleBehaviour();\n this.foldingRules = new CStyleFoldMode();\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n this.lineCommentStart = \"//\";\n this.blockComment = {start: \"/*\", end: \"*/\"};\n \n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n\n var tokenizedLine = this.getTokenizer().getLineTokens(line, state);\n var tokens = tokenizedLine.tokens;\n\n if (tokens.length && tokens[tokens.length-1].type == \"comment\") {\n return indent;\n }\n\n if (state == \"start\") {\n var match = line.match(/^.*[\\{\\(\\[]\\s*$/);\n if (match) {\n indent += tab;\n }\n }\n\n return indent;\n };\n\n this.checkOutdent = function(state, line, input) {\n return this.$outdent.checkOutdent(line, input);\n };\n\n this.autoOutdent = function(state, doc, row) {\n this.$outdent.autoOutdent(doc, row);\n };\n\n this.$id = \"ace/mode/haxe\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/haxe\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } filef := &embedded.EmbeddedFile{ Filename: "0a6ff8061a6e0aeb5dc28187493d9193.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/nsis_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar NSISHighlightRules = function() {\n\n this.$rules = {\n start: [{\n token: \"keyword.compiler.nsis\",\n regex: /^\\s*!(?:include|addincludedir|addplugindir|appendfile|cd|delfile|echo|error|execute|packhdr|pragma|finalize|getdllversion|gettlbversion|system|tempfile|warning|verbose|define|undef|insertmacro|macro|macroend|makensis|searchparse|searchreplace)\\b/,\n caseInsensitive: true\n }, {\n token: \"keyword.command.nsis\",\n regex: /^\\s*(?:Abort|AddBrandingImage|AddSize|AllowRootDirInstall|AllowSkipFiles|AutoCloseWindow|BGFont|BGGradient|BrandingText|BringToFront|Call|CallInstDLL|Caption|ChangeUI|CheckBitmap|ClearErrors|CompletedText|ComponentText|CopyFiles|CRCCheck|CreateDirectory|CreateFont|CreateShortCut|Delete|DeleteINISec|DeleteINIStr|DeleteRegKey|DeleteRegValue|DetailPrint|DetailsButtonText|DirText|DirVar|DirVerify|EnableWindow|EnumRegKey|EnumRegValue|Exch|Exec|ExecShell|ExecShellWait|ExecWait|ExpandEnvStrings|File|FileBufSize|FileClose|FileErrorText|FileOpen|FileRead|FileReadByte|FileReadUTF16LE|FileReadWord|FileWriteUTF16LE|FileSeek|FileWrite|FileWriteByte|FileWriteWord|FindClose|FindFirst|FindNext|FindWindow|FlushINI|GetCurInstType|GetCurrentAddress|GetDlgItem|GetDLLVersion|GetDLLVersionLocal|GetErrorLevel|GetFileTime|GetFileTimeLocal|GetFullPathName|GetFunctionAddress|GetInstDirError|GetLabelAddress|GetTempFileName|Goto|HideWindow|Icon|IfAbort|IfErrors|IfFileExists|IfRebootFlag|IfSilent|InitPluginsDir|InstallButtonText|InstallColors|InstallDir|InstallDirRegKey|InstProgressFlags|InstType|InstTypeGetText|InstTypeSetText|Int64Cmp|Int64CmpU|Int64Fmt|IntCmp|IntCmpU|IntFmt|IntOp|IntPtrCmp|IntPtrCmpU|IntPtrOp|IsWindow|LangString|LicenseBkColor|LicenseData|LicenseForceSelection|LicenseLangString|LicenseText|LoadLanguageFile|LockWindow|LogSet|LogText|ManifestDPIAware|ManifestSupportedOS|MessageBox|MiscButtonText|Name|Nop|OutFile|Page|PageCallbacks|PEDllCharacteristics|PESubsysVer|Pop|Push|Quit|ReadEnvStr|ReadINIStr|ReadRegDWORD|ReadRegStr|Reboot|RegDLL|Rename|RequestExecutionLevel|ReserveFile|Return|RMDir|SearchPath|SectionGetFlags|SectionGetInstTypes|SectionGetSize|SectionGetText|SectionIn|SectionSetFlags|SectionSetInstTypes|SectionSetSize|SectionSetText|SendMessage|SetAutoClose|SetBrandingImage|SetCompress|SetCompressor|SetCompressorDictSize|SetCtlColors|SetCurInstType|SetDatablockOptimize|SetDateSave|SetDetailsPrint|SetDetailsView|SetErrorLevel|SetErrors|SetFileAttributes|SetFont|SetOutPath|SetOverwrite|SetRebootFlag|SetRegView|SetShellVarContext|SetSilent|ShowInstDetails|ShowUninstDetails|ShowWindow|SilentInstall|SilentUnInstall|Sleep|SpaceTexts|StrCmp|StrCmpS|StrCpy|StrLen|SubCaption|Unicode|UninstallButtonText|UninstallCaption|UninstallIcon|UninstallSubCaption|UninstallText|UninstPage|UnRegDLL|Var|VIAddVersionKey|VIFileVersion|VIProductVersion|WindowIcon|WriteINIStr|WriteRegBin|WriteRegDWORD|WriteRegExpandStr|WriteRegMultiStr|WriteRegNone|WriteRegStr|WriteUninstaller|XPStyle)\\b/,\n caseInsensitive: true\n }, {\n token: \"keyword.control.nsis\",\n regex: /^\\s*!(?:ifdef|ifndef|if|ifmacrodef|ifmacrondef|else|endif)\\b/,\n caseInsensitive: true\n }, {\n token: \"keyword.plugin.nsis\",\n regex: /^\\s*\\w+::\\w+/,\n caseInsensitive: true\n }, {\n token: \"keyword.operator.comparison.nsis\",\n regex: /[!<>]?=|<>|<|>/\n }, {\n token: \"support.function.nsis\",\n regex: /(?:\\b|^\\s*)(?:Function|FunctionEnd|Section|SectionEnd|SectionGroup|SectionGroupEnd|PageEx|PageExEnd)\\b/,\n caseInsensitive: true\n }, {\n token: \"support.library.nsis\",\n regex: /\\${[\\w\\.:-]+}/\n }, {\n token: \"constant.nsis\",\n regex: /\\b(?:ARCHIVE|FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_HIDDEN|FILE_ATTRIBUTE_NORMAL|FILE_ATTRIBUTE_OFFLINE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_SYSTEM|FILE_ATTRIBUTE_TEMPORARY|HIDDEN|HKCC|HKCR(32|64)?|HKCU(32|64)?|HKDD|HKEY_CLASSES_ROOT|HKEY_CURRENT_CONFIG|HKEY_CURRENT_USER|HKEY_DYN_DATA|HKEY_LOCAL_MACHINE|HKEY_PERFORMANCE_DATA|HKEY_USERS|HKLM(32|64)?|HKPD|HKU|IDABORT|IDCANCEL|IDD_DIR|IDD_INST|IDD_INSTFILES|IDD_LICENSE|IDD_SELCOM|IDD_UNINST|IDD_VERIFY|IDIGNORE|IDNO|IDOK|IDRETRY|IDYES|MB_ABORTRETRYIGNORE|MB_DEFBUTTON1|MB_DEFBUTTON2|MB_DEFBUTTON3|MB_DEFBUTTON4|MB_ICONEXCLAMATION|MB_ICONINFORMATION|MB_ICONQUESTION|MB_ICONSTOP|MB_OK|MB_OKCANCEL|MB_RETRYCANCEL|MB_RIGHT|MB_RTLREADING|MB_SETFOREGROUND|MB_TOPMOST|MB_USERICON|MB_YESNO|MB_YESNOCANCEL|NORMAL|OFFLINE|READONLY|SHCTX|SHELL_CONTEXT|SW_HIDE|SW_SHOWDEFAULT|SW_SHOWMAXIMIZED|SW_SHOWMINIMIZED|SW_SHOWNORMAL|SYSTEM|TEMPORARY)\\b/,\n caseInsensitive: true\n }, {\n token: \"constant.library.nsis\",\n regex: /\\${(?:AtLeastServicePack|AtLeastWin7|AtLeastWin8|AtLeastWin10|AtLeastWin95|AtLeastWin98|AtLeastWin2000|AtLeastWin2003|AtLeastWin2008|AtLeastWin2008R2|AtLeastWinME|AtLeastWinNT4|AtLeastWinVista|AtLeastWinXP|AtMostServicePack|AtMostWin7|AtMostWin8|AtMostWin10|AtMostWin95|AtMostWin98|AtMostWin2000|AtMostWin2003|AtMostWin2008|AtMostWin2008R2|AtMostWinME|AtMostWinNT4|AtMostWinVista|AtMostWinXP|IsDomainController|IsNT|IsServer|IsServicePack|IsWin7|IsWin8|IsWin10|IsWin95|IsWin98|IsWin2000|IsWin2003|IsWin2008|IsWin2008R2|IsWinME|IsWinNT4|IsWinVista|IsWinXP)}/\n }, {\n token: \"constant.language.boolean.true.nsis\",\n regex: /\\b(?:true|on)\\b/\n }, {\n token: \"constant.language.boolean.false.nsis\",\n regex: /\\b(?:false|off)\\b/\n }, {\n token: \"constant.language.option.nsis\",\n regex: /(?:\\b|^\\s*)(?:(?:un\\.)?components|(?:un\\.)?custom|(?:un\\.)?directory|(?:un\\.)?instfiles|(?:un\\.)?license|uninstConfirm|admin|all|auto|both|bottom|bzip2|current|force|hide|highest|ifdiff|ifnewer|lastused|leave|left|listonly|lzma|nevershow|none|normal|notset|right|show|silent|silentlog|textonly|top|try|user|Win10|Win7|Win8|WinVista|zlib)\\b/,\n caseInsensitive: true\n }, {\n token: \"constant.language.slash-option.nsis\",\n regex: /\\b\\/(?:a|BRANDING|CENTER|COMPONENTSONLYONCUSTOM|CUSTOMSTRING=|date|e|ENABLECANCEL|FILESONLY|file|FINAL|GLOBAL|gray|ifempty|ifndef|ignorecase|IMGID=|ITALIC|LANG=|NOCUSTOM|noerrors|NONFATAL|nonfatal|oname=|o|REBOOTOK|redef|RESIZETOFIT|r|SHORT|SILENT|SOLID|STRIKE|TRIM|UNDERLINE|utcdate|windows|x)\\b/,\n caseInsensitive: true\n }, {\n token: \"constant.numeric.nsis\",\n regex: /\\b(?:0(?:x|X)[0-9a-fA-F]+|[0-9]+(?:\\.[0-9]+)?)\\b/\n }, {\n token: \"entity.name.function.nsis\",\n regex: /\\$\\([\\w\\.:-]+\\)/\n }, {\n token: \"storage.type.function.nsis\",\n regex: /\\$\\w+/\n }, {\n token: \"punctuation.definition.string.begin.nsis\",\n regex: /`/,\n push: [{\n token: \"punctuation.definition.string.end.nsis\",\n regex: /`/,\n next: \"pop\"\n }, {\n token: \"constant.character.escape.nsis\",\n regex: /\\$\\\\./\n }, {\n defaultToken: \"string.quoted.back.nsis\"\n }]\n }, {\n token: \"punctuation.definition.string.begin.nsis\",\n regex: /\"/,\n push: [{\n token: \"punctuation.definition.string.end.nsis\",\n regex: /\"/,\n next: \"pop\"\n }, {\n token: \"constant.character.escape.nsis\",\n regex: /\\$\\\\./\n }, {\n defaultToken: \"string.quoted.double.nsis\"\n }]\n }, {\n token: \"punctuation.definition.string.begin.nsis\",\n regex: /'/,\n push: [{\n token: \"punctuation.definition.string.end.nsis\",\n regex: /'/,\n next: \"pop\"\n }, {\n token: \"constant.character.escape.nsis\",\n regex: /\\$\\\\./\n }, {\n defaultToken: \"string.quoted.single.nsis\"\n }]\n }, {\n token: [\n \"punctuation.definition.comment.nsis\",\n \"comment.line.nsis\"\n ],\n regex: /(;|#)(.*$)/\n }, {\n token: \"punctuation.definition.comment.nsis\",\n regex: /\\/\\*/,\n push: [{\n token: \"punctuation.definition.comment.nsis\",\n regex: /\\*\\//,\n next: \"pop\"\n }, {\n defaultToken: \"comment.block.nsis\"\n }]\n }, {\n token: \"text\",\n regex: /(?:!include|!insertmacro)\\b/\n }]\n };\n \n this.normalizeRules();\n};\n\nNSISHighlightRules.metaData = {\n comment: \"\\n\\ttodo: - highlight functions\\n\\t\",\n fileTypes: [\"nsi\", \"nsh\"],\n name: \"NSIS\",\n scopeName: \"source.nsis\"\n};\n\n\noop.inherits(NSISHighlightRules, TextHighlightRules);\n\nexports.NSISHighlightRules = NSISHighlightRules;\n});\n\nace.define(\"ace/mode/folding/cstyle\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/range\",\"ace/mode/folding/fold_mode\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Range = require(\"../../range\").Range;\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function(commentRegex) {\n if (commentRegex) {\n this.foldingStartMarker = new RegExp(\n this.foldingStartMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.start)\n );\n this.foldingStopMarker = new RegExp(\n this.foldingStopMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.end)\n );\n }\n};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n \n this.foldingStartMarker = /([\\{\\[\\(])[^\\}\\]\\)]*$|^\\s*(\\/\\*)/;\n this.foldingStopMarker = /^[^\\[\\{\\(]*([\\}\\]\\)])|^[\\s\\*]*(\\*\\/)/;\n this.singleLineBlockCommentRe= /^\\s*(\\/\\*).*\\*\\/\\s*$/;\n this.tripleStarBlockCommentRe = /^\\s*(\\/\\*\\*\\*).*\\*\\/\\s*$/;\n this.startRegionRe = /^\\s*(\\/\\*|\\/\\/)#?region\\b/;\n this._getFoldWidgetBase = this.getFoldWidget;\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n \n if (this.singleLineBlockCommentRe.test(line)) {\n if (!this.startRegionRe.test(line) && !this.tripleStarBlockCommentRe.test(line))\n return \"\";\n }\n \n var fw = this._getFoldWidgetBase(session, foldStyle, row);\n \n if (!fw && this.startRegionRe.test(line))\n return \"start\"; // lineCommentRegionStart\n \n return fw;\n };\n\n this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {\n var line = session.getLine(row);\n \n if (this.startRegionRe.test(line))\n return this.getCommentRegionBlock(session, line, row);\n \n var match = line.match(this.foldingStartMarker);\n if (match) {\n var i = match.index;\n\n if (match[1])\n return this.openingBracketBlock(session, match[1], row, i);\n \n var range = session.getCommentFoldRange(row, i + match[0].length, 1);\n \n if (range && !range.isMultiLine()) {\n if (forceMultiline) {\n range = this.getSectionRange(session, row);\n } else if (foldStyle != \"all\")\n range = null;\n }\n \n return range;\n }\n\n if (foldStyle === \"markbegin\")\n return;\n\n var match = line.match(this.foldingStopMarker);\n if (match) {\n var i = match.index + match[0].length;\n\n if (match[1])\n return this.closingBracketBlock(session, match[1], row, i);\n\n return session.getCommentFoldRange(row, i, -1);\n }\n };\n \n this.getSectionRange = function(session, row) {\n var line = session.getLine(row);\n var startIndent = line.search(/\\S/);\n var startRow = row;\n var startColumn = line.length;\n row = row + 1;\n var endRow = row;\n var maxRow = session.getLength();\n while (++row < maxRow) {\n line = session.getLine(row);\n var indent = line.search(/\\S/);\n if (indent === -1)\n continue;\n if (startIndent > indent)\n break;\n var subRange = this.getFoldWidgetRange(session, \"all\", row);\n \n if (subRange) {\n if (subRange.start.row <= startRow) {\n break;\n } else if (subRange.isMultiLine()) {\n row = subRange.end.row;\n } else if (startIndent == indent) {\n break;\n }\n }\n endRow = row;\n }\n \n return new Range(startRow, startColumn, endRow, session.getLine(endRow).length);\n };\n this.getCommentRegionBlock = function(session, line, row) {\n var startColumn = line.search(/\\s*$/);\n var maxRow = session.getLength();\n var startRow = row;\n \n var re = /^\\s*(?:\\/\\*|\\/\\/|--)#?(end)?region\\b/;\n var depth = 1;\n while (++row < maxRow) {\n line = session.getLine(row);\n var m = re.exec(line);\n if (!m) continue;\n if (m[1]) depth--;\n else depth++;\n\n if (!depth) break;\n }\n\n var endRow = row;\n if (endRow > startRow) {\n return new Range(startRow, startColumn, endRow, line.length);\n }\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/nsis\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/nsis_highlight_rules\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar NSISHighlightRules = require(\"./nsis_highlight_rules\").NSISHighlightRules;\nvar FoldMode = require(\"./folding/cstyle\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = NSISHighlightRules;\n this.foldingRules = new FoldMode();\n this.$behaviour = this.$defaultBehaviour;\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n this.lineCommentStart = [\";\", \"#\"];\n this.blockComment = {start: \"/*\", end: \"*/\"};\n this.$id = \"ace/mode/nsis\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/nsis\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } fileg := &embedded.EmbeddedFile{ Filename: "0ab67a107deacf1d9b22eb0b706486db.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/theme/gob\",[\"require\",\"exports\",\"module\",\"ace/lib/dom\"], function(require, exports, module) {\n\nexports.isDark = true;\nexports.cssClass = \"ace-gob\";\nexports.cssText = \".ace-gob .ace_gutter {\\\nbackground: #0B1818;\\\ncolor: #03EE03\\\n}\\\n.ace-gob .ace_print-margin {\\\nwidth: 1px;\\\nbackground: #131313\\\n}\\\n.ace-gob {\\\nbackground-color: #0B0B0B;\\\ncolor: #00FF00\\\n}\\\n.ace-gob .ace_cursor {\\\nborder-color: rgba(16, 248, 255, 0.90);\\\nbackground-color: rgba(16, 240, 248, 0.70);\\\nopacity: 0.4;\\\n}\\\n.ace-gob .ace_marker-layer .ace_selection {\\\nbackground: rgba(221, 240, 255, 0.20)\\\n}\\\n.ace-gob.ace_multiselect .ace_selection.ace_start {\\\nbox-shadow: 0 0 3px 0px #141414;\\\n}\\\n.ace-gob .ace_marker-layer .ace_step {\\\nbackground: rgb(16, 128, 0)\\\n}\\\n.ace-gob .ace_marker-layer .ace_bracket {\\\nmargin: -1px 0 0 -1px;\\\nborder: 1px solid rgba(64, 255, 255, 0.25)\\\n}\\\n.ace-gob .ace_marker-layer .ace_active-line {\\\nbackground: rgba(255, 255, 255, 0.04)\\\n}\\\n.ace-gob .ace_gutter-active-line {\\\nbackground-color: rgba(255, 255, 255, 0.04)\\\n}\\\n.ace-gob .ace_marker-layer .ace_selected-word {\\\nborder: 1px solid rgba(192, 240, 255, 0.20)\\\n}\\\n.ace-gob .ace_invisible {\\\ncolor: rgba(255, 255, 255, 0.25)\\\n}\\\n.ace-gob .ace_keyword,\\\n.ace-gob .ace_meta {\\\ncolor: #10D8E8\\\n}\\\n.ace-gob .ace_constant,\\\n.ace-gob .ace_constant.ace_character,\\\n.ace-gob .ace_constant.ace_character.ace_escape,\\\n.ace-gob .ace_constant.ace_other,\\\n.ace-gob .ace_heading,\\\n.ace-gob .ace_markup.ace_heading,\\\n.ace-gob .ace_support.ace_constant {\\\ncolor: #10F0A0\\\n}\\\n.ace-gob .ace_invalid.ace_illegal {\\\ncolor: #F8F8F8;\\\nbackground-color: rgba(86, 45, 86, 0.75)\\\n}\\\n.ace-gob .ace_invalid.ace_deprecated {\\\ntext-decoration: underline;\\\nfont-style: italic;\\\ncolor: #20F8C0\\\n}\\\n.ace-gob .ace_support {\\\ncolor: #20E8B0\\\n}\\\n.ace-gob .ace_fold {\\\nbackground-color: #50B8B8;\\\nborder-color: #70F8F8\\\n}\\\n.ace-gob .ace_support.ace_function {\\\ncolor: #00F800\\\n}\\\n.ace-gob .ace_list,\\\n.ace-gob .ace_markup.ace_list,\\\n.ace-gob .ace_storage {\\\ncolor: #10FF98\\\n}\\\n.ace-gob .ace_entity.ace_name.ace_function,\\\n.ace-gob .ace_meta.ace_tag,\\\n.ace-gob .ace_variable {\\\ncolor: #00F868\\\n}\\\n.ace-gob .ace_string {\\\ncolor: #10F060\\\n}\\\n.ace-gob .ace_string.ace_regexp {\\\ncolor: #20F090;\\\n}\\\n.ace-gob .ace_comment {\\\nfont-style: italic;\\\ncolor: #00E060;\\\n}\\\n.ace-gob .ace_variable {\\\ncolor: #00F888;\\\n}\\\n.ace-gob .ace_xml-pe {\\\ncolor: #488858;\\\n}\\\n.ace-gob .ace_indent-guide {\\\nbackground: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWMQERFpYLC1tf0PAAgOAnPnhxyiAAAAAElFTkSuQmCC) right repeat-y\\\n}\\\n\";\n\nvar dom = require(\"../lib/dom\");\ndom.importCssString(exports.cssText, exports.cssClass);\n}); (function() {\n ace.require([\"ace/theme/gob\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } fileh := &embedded.EmbeddedFile{ Filename: "0b56e82ae05b7ec2022e1cb35b8b6e10.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/css_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar supportType = exports.supportType = \"align-content|align-items|align-self|all|animation|animation-delay|animation-direction|animation-duration|animation-fill-mode|animation-iteration-count|animation-name|animation-play-state|animation-timing-function|backface-visibility|background|background-attachment|background-blend-mode|background-clip|background-color|background-image|background-origin|background-position|background-repeat|background-size|border|border-bottom|border-bottom-color|border-bottom-left-radius|border-bottom-right-radius|border-bottom-style|border-bottom-width|border-collapse|border-color|border-image|border-image-outset|border-image-repeat|border-image-slice|border-image-source|border-image-width|border-left|border-left-color|border-left-style|border-left-width|border-radius|border-right|border-right-color|border-right-style|border-right-width|border-spacing|border-style|border-top|border-top-color|border-top-left-radius|border-top-right-radius|border-top-style|border-top-width|border-width|bottom|box-shadow|box-sizing|caption-side|clear|clip|color|column-count|column-fill|column-gap|column-rule|column-rule-color|column-rule-style|column-rule-width|column-span|column-width|columns|content|counter-increment|counter-reset|cursor|direction|display|empty-cells|filter|flex|flex-basis|flex-direction|flex-flow|flex-grow|flex-shrink|flex-wrap|float|font|font-family|font-size|font-size-adjust|font-stretch|font-style|font-variant|font-weight|hanging-punctuation|height|justify-content|left|letter-spacing|line-height|list-style|list-style-image|list-style-position|list-style-type|margin|margin-bottom|margin-left|margin-right|margin-top|max-height|max-width|max-zoom|min-height|min-width|min-zoom|nav-down|nav-index|nav-left|nav-right|nav-up|opacity|order|outline|outline-color|outline-offset|outline-style|outline-width|overflow|overflow-x|overflow-y|padding|padding-bottom|padding-left|padding-right|padding-top|page-break-after|page-break-before|page-break-inside|perspective|perspective-origin|position|quotes|resize|right|tab-size|table-layout|text-align|text-align-last|text-decoration|text-decoration-color|text-decoration-line|text-decoration-style|text-indent|text-justify|text-overflow|text-shadow|text-transform|top|transform|transform-origin|transform-style|transition|transition-delay|transition-duration|transition-property|transition-timing-function|unicode-bidi|user-select|user-zoom|vertical-align|visibility|white-space|width|word-break|word-spacing|word-wrap|z-index\";\nvar supportFunction = exports.supportFunction = \"rgb|rgba|url|attr|counter|counters\";\nvar supportConstant = exports.supportConstant = \"absolute|after-edge|after|all-scroll|all|alphabetic|always|antialiased|armenian|auto|avoid-column|avoid-page|avoid|balance|baseline|before-edge|before|below|bidi-override|block-line-height|block|bold|bolder|border-box|both|bottom|box|break-all|break-word|capitalize|caps-height|caption|center|central|char|circle|cjk-ideographic|clone|close-quote|col-resize|collapse|column|consider-shifts|contain|content-box|cover|crosshair|cubic-bezier|dashed|decimal-leading-zero|decimal|default|disabled|disc|disregard-shifts|distribute-all-lines|distribute-letter|distribute-space|distribute|dotted|double|e-resize|ease-in|ease-in-out|ease-out|ease|ellipsis|end|exclude-ruby|fill|fixed|georgian|glyphs|grid-height|groove|hand|hanging|hebrew|help|hidden|hiragana-iroha|hiragana|horizontal|icon|ideograph-alpha|ideograph-numeric|ideograph-parenthesis|ideograph-space|ideographic|inactive|include-ruby|inherit|initial|inline-block|inline-box|inline-line-height|inline-table|inline|inset|inside|inter-ideograph|inter-word|invert|italic|justify|katakana-iroha|katakana|keep-all|last|left|lighter|line-edge|line-through|line|linear|list-item|local|loose|lower-alpha|lower-greek|lower-latin|lower-roman|lowercase|lr-tb|ltr|mathematical|max-height|max-size|medium|menu|message-box|middle|move|n-resize|ne-resize|newspaper|no-change|no-close-quote|no-drop|no-open-quote|no-repeat|none|normal|not-allowed|nowrap|nw-resize|oblique|open-quote|outset|outside|overline|padding-box|page|pointer|pre-line|pre-wrap|pre|preserve-3d|progress|relative|repeat-x|repeat-y|repeat|replaced|reset-size|ridge|right|round|row-resize|rtl|s-resize|scroll|se-resize|separate|slice|small-caps|small-caption|solid|space|square|start|static|status-bar|step-end|step-start|steps|stretch|strict|sub|super|sw-resize|table-caption|table-cell|table-column-group|table-column|table-footer-group|table-header-group|table-row-group|table-row|table|tb-rl|text-after-edge|text-before-edge|text-bottom|text-size|text-top|text|thick|thin|transparent|underline|upper-alpha|upper-latin|upper-roman|uppercase|use-script|vertical-ideographic|vertical-text|visible|w-resize|wait|whitespace|z-index|zero|zoom\";\nvar supportConstantColor = exports.supportConstantColor = \"aliceblue|antiquewhite|aqua|aquamarine|azure|beige|bisque|black|blanchedalmond|blue|blueviolet|brown|burlywood|cadetblue|chartreuse|chocolate|coral|cornflowerblue|cornsilk|crimson|cyan|darkblue|darkcyan|darkgoldenrod|darkgray|darkgreen|darkgrey|darkkhaki|darkmagenta|darkolivegreen|darkorange|darkorchid|darkred|darksalmon|darkseagreen|darkslateblue|darkslategray|darkslategrey|darkturquoise|darkviolet|deeppink|deepskyblue|dimgray|dimgrey|dodgerblue|firebrick|floralwhite|forestgreen|fuchsia|gainsboro|ghostwhite|gold|goldenrod|gray|green|greenyellow|grey|honeydew|hotpink|indianred|indigo|ivory|khaki|lavender|lavenderblush|lawngreen|lemonchiffon|lightblue|lightcoral|lightcyan|lightgoldenrodyellow|lightgray|lightgreen|lightgrey|lightpink|lightsalmon|lightseagreen|lightskyblue|lightslategray|lightslategrey|lightsteelblue|lightyellow|lime|limegreen|linen|magenta|maroon|mediumaquamarine|mediumblue|mediumorchid|mediumpurple|mediumseagreen|mediumslateblue|mediumspringgreen|mediumturquoise|mediumvioletred|midnightblue|mintcream|mistyrose|moccasin|navajowhite|navy|oldlace|olive|olivedrab|orange|orangered|orchid|palegoldenrod|palegreen|paleturquoise|palevioletred|papayawhip|peachpuff|peru|pink|plum|powderblue|purple|rebeccapurple|red|rosybrown|royalblue|saddlebrown|salmon|sandybrown|seagreen|seashell|sienna|silver|skyblue|slateblue|slategray|slategrey|snow|springgreen|steelblue|tan|teal|thistle|tomato|turquoise|violet|wheat|white|whitesmoke|yellow|yellowgreen\";\nvar supportConstantFonts = exports.supportConstantFonts = \"arial|century|comic|courier|cursive|fantasy|garamond|georgia|helvetica|impact|lucida|symbol|system|tahoma|times|trebuchet|utopia|verdana|webdings|sans-serif|serif|monospace\";\n\nvar numRe = exports.numRe = \"\\\\-?(?:(?:[0-9]+(?:\\\\.[0-9]+)?)|(?:\\\\.[0-9]+))\";\nvar pseudoElements = exports.pseudoElements = \"(\\\\:+)\\\\b(after|before|first-letter|first-line|moz-selection|selection)\\\\b\";\nvar pseudoClasses = exports.pseudoClasses = \"(:)\\\\b(active|checked|disabled|empty|enabled|first-child|first-of-type|focus|hover|indeterminate|invalid|last-child|last-of-type|link|not|nth-child|nth-last-child|nth-last-of-type|nth-of-type|only-child|only-of-type|required|root|target|valid|visited)\\\\b\";\n\nvar CssHighlightRules = function() {\n\n var keywordMapper = this.createKeywordMapper({\n \"support.function\": supportFunction,\n \"support.constant\": supportConstant,\n \"support.type\": supportType,\n \"support.constant.color\": supportConstantColor,\n \"support.constant.fonts\": supportConstantFonts\n }, \"text\", true);\n\n this.$rules = {\n \"start\" : [{\n include : [\"strings\", \"url\", \"comments\"]\n }, {\n token: \"paren.lparen\",\n regex: \"\\\\{\",\n next: \"ruleset\"\n }, {\n token: \"paren.rparen\",\n regex: \"\\\\}\"\n }, {\n token: \"string\",\n regex: \"@(?!viewport)\",\n next: \"media\"\n }, {\n token: \"keyword\",\n regex: \"#[a-z0-9-_]+\"\n }, {\n token: \"keyword\",\n regex: \"%\"\n }, {\n token: \"variable\",\n regex: \"\\\\.[a-z0-9-_]+\"\n }, {\n token: \"string\",\n regex: \":[a-z0-9-_]+\"\n }, {\n token : \"constant.numeric\",\n regex : numRe\n }, {\n token: \"constant\",\n regex: \"[a-z0-9-_]+\"\n }, {\n caseInsensitive: true\n }],\n\n \"media\": [{\n include : [\"strings\", \"url\", \"comments\"]\n }, {\n token: \"paren.lparen\",\n regex: \"\\\\{\",\n next: \"start\"\n }, {\n token: \"paren.rparen\",\n regex: \"\\\\}\",\n next: \"start\"\n }, {\n token: \"string\",\n regex: \";\",\n next: \"start\"\n }, {\n token: \"keyword\",\n regex: \"(?:media|supports|document|charset|import|namespace|media|supports|document\"\n + \"|page|font|keyframes|viewport|counter-style|font-feature-values\"\n + \"|swash|ornaments|annotation|stylistic|styleset|character-variant)\"\n }],\n\n \"comments\" : [{\n token: \"comment\", // multi line comment\n regex: \"\\\\/\\\\*\",\n push: [{\n token : \"comment\",\n regex : \"\\\\*\\\\/\",\n next : \"pop\"\n }, {\n defaultToken : \"comment\"\n }]\n }],\n\n \"ruleset\" : [{\n regex : \"-(webkit|ms|moz|o)-\",\n token : \"text\"\n }, {\n token : \"punctuation.operator\",\n regex : \"[:;]\"\n }, {\n token : \"paren.rparen\",\n regex : \"\\\\}\",\n next : \"start\"\n }, {\n include : [\"strings\", \"url\", \"comments\"]\n }, {\n token : [\"constant.numeric\", \"keyword\"],\n regex : \"(\" + numRe + \")(ch|cm|deg|em|ex|fr|gd|grad|Hz|in|kHz|mm|ms|pc|pt|px|rad|rem|s|turn|vh|vmax|vmin|vm|vw|%)\"\n }, {\n token : \"constant.numeric\",\n regex : numRe\n }, {\n token : \"constant.numeric\", // hex6 color\n regex : \"#[a-f0-9]{6}\"\n }, {\n token : \"constant.numeric\", // hex3 color\n regex : \"#[a-f0-9]{3}\"\n }, {\n token : [\"punctuation\", \"entity.other.attribute-name.pseudo-element.css\"],\n regex : pseudoElements\n }, {\n token : [\"punctuation\", \"entity.other.attribute-name.pseudo-class.css\"],\n regex : pseudoClasses\n }, {\n include: \"url\"\n }, {\n token : keywordMapper,\n regex : \"\\\\-?[a-zA-Z_][a-zA-Z0-9_\\\\-]*\"\n }, {\n caseInsensitive: true\n }],\n\n url: [{\n token : \"support.function\",\n regex : \"(?:url(:?-prefix)?|domain|regexp)\\\\(\",\n push: [{\n token : \"support.function\",\n regex : \"\\\\)\",\n next : \"pop\"\n }, {\n defaultToken: \"string\"\n }]\n }],\n\n strings: [{\n token : \"string.start\",\n regex : \"'\",\n push : [{\n token : \"string.end\",\n regex : \"'|$\",\n next: \"pop\"\n }, {\n include : \"escapes\"\n }, {\n token : \"constant.language.escape\",\n regex : /\\\\$/,\n consumeLineEnd: true\n }, {\n defaultToken: \"string\"\n }]\n }, {\n token : \"string.start\",\n regex : '\"',\n push : [{\n token : \"string.end\",\n regex : '\"|$',\n next: \"pop\"\n }, {\n include : \"escapes\"\n }, {\n token : \"constant.language.escape\",\n regex : /\\\\$/,\n consumeLineEnd: true\n }, {\n defaultToken: \"string\"\n }]\n }],\n escapes: [{\n token : \"constant.language.escape\",\n regex : /\\\\([a-fA-F\\d]{1,6}|[^a-fA-F\\d])/\n }]\n\n };\n\n this.normalizeRules();\n};\n\noop.inherits(CssHighlightRules, TextHighlightRules);\n\nexports.CssHighlightRules = CssHighlightRules;\n\n});\n\nace.define(\"ace/mode/stylus_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\",\"ace/mode/css_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar CssHighlightRules = require(\"./css_highlight_rules\");\n\nvar StylusHighlightRules = function() {\n\n var keywordMapper = this.createKeywordMapper({\n \"support.type\": CssHighlightRules.supportType,\n \"support.function\": CssHighlightRules.supportFunction,\n \"support.constant\": CssHighlightRules.supportConstant,\n \"support.constant.color\": CssHighlightRules.supportConstantColor,\n \"support.constant.fonts\": CssHighlightRules.supportConstantFonts\n }, \"text\", true);\n\n this.$rules = {\n start: [\n {\n token : \"comment\",\n regex : /\\/\\/.*$/\n },\n {\n token : \"comment\", // multi line comment\n regex : /\\/\\*/,\n next : \"comment\"\n },\n {\n token: [\"entity.name.function.stylus\", \"text\"],\n regex: \"^([-a-zA-Z_][-\\\\w]*)?(\\\\()\"\n },\n {\n token: [\"entity.other.attribute-name.class.stylus\"],\n regex: \"\\\\.-?[_a-zA-Z]+[_a-zA-Z0-9-]*\"\n },\n {\n token: [\"entity.language.stylus\"],\n regex: \"^ *&\"\n },\n {\n token: [\"variable.language.stylus\"],\n regex: \"(arguments)\"\n },\n {\n token: [\"keyword.stylus\"],\n regex: \"@[-\\\\w]+\"\n },\n {\n token : [\"punctuation\", \"entity.other.attribute-name.pseudo-element.css\"],\n regex : CssHighlightRules.pseudoElements\n }, {\n token : [\"punctuation\", \"entity.other.attribute-name.pseudo-class.css\"],\n regex : CssHighlightRules.pseudoClasses\n }, \n {\n token: [\"entity.name.tag.stylus\"],\n regex: \"(?:\\\\b)(a|abbr|acronym|address|area|article|aside|audio|b|base|big|blockquote|body|br|button|canvas|caption|cite|code|col|colgroup|datalist|dd|del|details|dfn|dialog|div|dl|dt|em|eventsource|fieldset|figure|figcaption|footer|form|frame|frameset|(?:h[1-6])|head|header|hgroup|hr|html|i|iframe|img|input|ins|kbd|label|legend|li|link|map|mark|menu|meta|meter|nav|noframes|noscript|object|ol|optgroup|option|output|p|param|pre|progress|q|samp|script|section|select|small|span|strike|strong|style|sub|summary|sup|table|tbody|td|textarea|tfoot|th|thead|time|title|tr|tt|ul|var|video)(?:\\\\b)\"\n },\n {\n token : \"constant.numeric\", // hex6 color\n regex : \"#[a-f0-9]{6}\"\n }, \n {\n token : \"constant.numeric\", // hex3 color\n regex : \"#[a-f0-9]{3}\"\n }, \n {\n token: [\"punctuation.definition.entity.stylus\", \"entity.other.attribute-name.id.stylus\"],\n regex: \"(#)([a-zA-Z][a-zA-Z0-9_-]*)\"\n },\n {\n token: \"meta.vendor-prefix.stylus\",\n regex: \"-webkit-|-moz\\\\-|-ms-|-o-\"\n },\n {\n token: \"keyword.control.stylus\",\n regex: \"(?:!important|for|in|return|true|false|null|if|else|unless|return)\\\\b\"\n },\n {\n token: \"keyword.operator.stylus\",\n regex: \"!|~|\\\\+|-|(?:\\\\*)?\\\\*|\\\\/|%|(?:\\\\.)\\\\.\\\\.|<|>|(?:=|:|\\\\?|\\\\+|-|\\\\*|\\\\/|%|<|>)?=|!=\"\n },\n {\n token: \"keyword.operator.stylus\",\n regex: \"(?:in|is(?:nt)?|not)\\\\b\"\n },\n {\n token : \"string\",\n regex : \"'(?=.)\",\n next : \"qstring\"\n }, {\n token : \"string\",\n regex : '\"(?=.)',\n next : \"qqstring\"\n }, \n {\n token : \"constant.numeric\",\n regex : CssHighlightRules.numRe\n }, \n {\n token : \"keyword\",\n regex : \"(?:ch|cm|deg|em|ex|fr|gd|grad|Hz|in|kHz|mm|ms|pc|pt|px|rad|rem|s|turn|vh|vm|vw|%)\\\\b\"\n }, \n {\n token : keywordMapper,\n regex : \"\\\\-?[a-zA-Z_][a-zA-Z0-9_\\\\-]*\"\n }\n ],\n \"comment\" : [\n {\n token : \"comment\", // closing comment\n regex : \"\\\\*\\\\/\",\n next : \"start\"\n }, {\n defaultToken : \"comment\"\n }\n ],\n \"qqstring\" : [\n {\n token : \"string\",\n regex : '[^\"\\\\\\\\]+'\n }, \n {\n token : \"string\",\n regex : \"\\\\\\\\$\",\n next : \"qqstring\"\n }, \n {\n token : \"string\",\n regex : '\"|$',\n next : \"start\"\n }\n ],\n \"qstring\" : [\n {\n token : \"string\",\n regex : \"[^'\\\\\\\\]+\"\n }, \n {\n token : \"string\",\n regex : \"\\\\\\\\$\",\n next : \"qstring\"\n }, \n {\n token : \"string\",\n regex : \"'|$\",\n next : \"start\"\n }\n ]\n};\n\n};\n\noop.inherits(StylusHighlightRules, TextHighlightRules);\n\nexports.StylusHighlightRules = StylusHighlightRules;\n});\n\nace.define(\"ace/mode/folding/coffee\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/folding/fold_mode\",\"ace/range\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\nvar Range = require(\"../../range\").Range;\n\nvar FoldMode = exports.FoldMode = function() {};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n\n this.getFoldWidgetRange = function(session, foldStyle, row) {\n var range = this.indentationBlock(session, row);\n if (range)\n return range;\n\n var re = /\\S/;\n var line = session.getLine(row);\n var startLevel = line.search(re);\n if (startLevel == -1 || line[startLevel] != \"#\")\n return;\n\n var startColumn = line.length;\n var maxRow = session.getLength();\n var startRow = row;\n var endRow = row;\n\n while (++row < maxRow) {\n line = session.getLine(row);\n var level = line.search(re);\n\n if (level == -1)\n continue;\n\n if (line[level] != \"#\")\n break;\n\n endRow = row;\n }\n\n if (endRow > startRow) {\n var endColumn = session.getLine(endRow).length;\n return new Range(startRow, startColumn, endRow, endColumn);\n }\n };\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n var indent = line.search(/\\S/);\n var next = session.getLine(row + 1);\n var prev = session.getLine(row - 1);\n var prevIndent = prev.search(/\\S/);\n var nextIndent = next.search(/\\S/);\n\n if (indent == -1) {\n session.foldWidgets[row - 1] = prevIndent!= -1 && prevIndent < nextIndent ? \"start\" : \"\";\n return \"\";\n }\n if (prevIndent == -1) {\n if (indent == nextIndent && line[indent] == \"#\" && next[indent] == \"#\") {\n session.foldWidgets[row - 1] = \"\";\n session.foldWidgets[row + 1] = \"\";\n return \"start\";\n }\n } else if (prevIndent == indent && line[indent] == \"#\" && prev[indent] == \"#\") {\n if (session.getLine(row - 2).search(/\\S/) == -1) {\n session.foldWidgets[row - 1] = \"start\";\n session.foldWidgets[row + 1] = \"\";\n return \"\";\n }\n }\n\n if (prevIndent!= -1 && prevIndent < indent)\n session.foldWidgets[row - 1] = \"start\";\n else\n session.foldWidgets[row - 1] = \"\";\n\n if (indent < nextIndent)\n return \"start\";\n else\n return \"\";\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/stylus\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/stylus_highlight_rules\",\"ace/mode/folding/coffee\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar StylusHighlightRules = require(\"./stylus_highlight_rules\").StylusHighlightRules;\nvar FoldMode = require(\"./folding/coffee\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = StylusHighlightRules;\n this.foldingRules = new FoldMode();\n this.$behaviour = this.$defaultBehaviour;\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n this.lineCommentStart = \"//\";\n this.blockComment = {start: \"/*\", end: \"*/\"};\n \n this.$id = \"ace/mode/stylus\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/stylus\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } filei := &embedded.EmbeddedFile{ Filename: "0c3615fc194682bd2043624d19f6352e.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/rdoc\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText =undefined;\nexports.scope = \"rdoc\";\n\n}); (function() {\n ace.require([\"ace/snippets/rdoc\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } filej := &embedded.EmbeddedFile{ Filename: "0cab51dee983721ec757e7e209a67c1d.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/theme/xcode\",[\"require\",\"exports\",\"module\",\"ace/lib/dom\"], function(require, exports, module) {\n\nexports.isDark = false;\nexports.cssClass = \"ace-xcode\";\nexports.cssText = \"\\\n.ace-xcode .ace_gutter {\\\nbackground: #e8e8e8;\\\ncolor: #333\\\n}\\\n.ace-xcode .ace_print-margin {\\\nwidth: 1px;\\\nbackground: #e8e8e8\\\n}\\\n.ace-xcode {\\\nbackground-color: #FFFFFF;\\\ncolor: #000000\\\n}\\\n.ace-xcode .ace_cursor {\\\ncolor: #000000\\\n}\\\n.ace-xcode .ace_marker-layer .ace_selection {\\\nbackground: #B5D5FF\\\n}\\\n.ace-xcode.ace_multiselect .ace_selection.ace_start {\\\nbox-shadow: 0 0 3px 0px #FFFFFF;\\\n}\\\n.ace-xcode .ace_marker-layer .ace_step {\\\nbackground: rgb(198, 219, 174)\\\n}\\\n.ace-xcode .ace_marker-layer .ace_bracket {\\\nmargin: -1px 0 0 -1px;\\\nborder: 1px solid #BFBFBF\\\n}\\\n.ace-xcode .ace_marker-layer .ace_active-line {\\\nbackground: rgba(0, 0, 0, 0.071)\\\n}\\\n.ace-xcode .ace_gutter-active-line {\\\nbackground-color: rgba(0, 0, 0, 0.071)\\\n}\\\n.ace-xcode .ace_marker-layer .ace_selected-word {\\\nborder: 1px solid #B5D5FF\\\n}\\\n.ace-xcode .ace_constant.ace_language,\\\n.ace-xcode .ace_keyword,\\\n.ace-xcode .ace_meta,\\\n.ace-xcode .ace_variable.ace_language {\\\ncolor: #C800A4\\\n}\\\n.ace-xcode .ace_invisible {\\\ncolor: #BFBFBF\\\n}\\\n.ace-xcode .ace_constant.ace_character,\\\n.ace-xcode .ace_constant.ace_other {\\\ncolor: #275A5E\\\n}\\\n.ace-xcode .ace_constant.ace_numeric {\\\ncolor: #3A00DC\\\n}\\\n.ace-xcode .ace_entity.ace_other.ace_attribute-name,\\\n.ace-xcode .ace_support.ace_constant,\\\n.ace-xcode .ace_support.ace_function {\\\ncolor: #450084\\\n}\\\n.ace-xcode .ace_fold {\\\nbackground-color: #C800A4;\\\nborder-color: #000000\\\n}\\\n.ace-xcode .ace_entity.ace_name.ace_tag,\\\n.ace-xcode .ace_support.ace_class,\\\n.ace-xcode .ace_support.ace_type {\\\ncolor: #790EAD\\\n}\\\n.ace-xcode .ace_storage {\\\ncolor: #C900A4\\\n}\\\n.ace-xcode .ace_string {\\\ncolor: #DF0002\\\n}\\\n.ace-xcode .ace_comment {\\\ncolor: #008E00\\\n}\\\n.ace-xcode .ace_indent-guide {\\\nbackground: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==) right repeat-y\\\n}\";\n\nvar dom = require(\"../lib/dom\");\ndom.importCssString(exports.cssText, exports.cssClass);\n}); (function() {\n ace.require([\"ace/theme/xcode\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } filek := &embedded.EmbeddedFile{ Filename: "0cbaf3ecc6b20dbc83c2164e9a1eac02.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/logiql_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar LogiQLHighlightRules = function() {\n\n this.$rules = { start: \n [ { token: 'comment.block',\n regex: '/\\\\*',\n push: \n [ { token: 'comment.block', regex: '\\\\*/', next: 'pop' },\n { defaultToken: 'comment.block' } ]\n },\n { token: 'comment.single',\n regex: '//.*'\n },\n { token: 'constant.numeric',\n regex: '\\\\d+(?:\\\\.\\\\d+)?(?:[eE][+-]?\\\\d+)?[fd]?'\n },\n { token: 'string',\n regex: '\"',\n push: \n [ { token: 'string', regex: '\"', next: 'pop' },\n { defaultToken: 'string' } ]\n },\n { token: 'constant.language',\n regex: '\\\\b(true|false)\\\\b'\n },\n { token: 'entity.name.type.logicblox',\n regex: '`[a-zA-Z_:]+(\\\\d|\\\\a)*\\\\b'\n },\n { token: 'keyword.start', regex: '->', comment: 'Constraint' },\n { token: 'keyword.start', regex: '-->', comment: 'Level 1 Constraint'},\n { token: 'keyword.start', regex: '<-', comment: 'Rule' },\n { token: 'keyword.start', regex: '<--', comment: 'Level 1 Rule' },\n { token: 'keyword.end', regex: '\\\\.', comment: 'Terminator' },\n { token: 'keyword.other', regex: '!', comment: 'Negation' },\n { token: 'keyword.other', regex: ',', comment: 'Conjunction' },\n { token: 'keyword.other', regex: ';', comment: 'Disjunction' },\n { token: 'keyword.operator', regex: '<=|>=|!=|<|>', comment: 'Equality'},\n { token: 'keyword.other', regex: '@', comment: 'Equality' },\n { token: 'keyword.operator', regex: '\\\\+|-|\\\\*|/', comment: 'Arithmetic operations'},\n { token: 'keyword', regex: '::', comment: 'Colon colon' },\n { token: 'support.function',\n regex: '\\\\b(agg\\\\s*<<)',\n push: \n [ { include: '$self' },\n { token: 'support.function',\n regex: '>>',\n next: 'pop' } ]\n },\n { token: 'storage.modifier',\n regex: '\\\\b(lang:[\\\\w:]*)'\n },\n { token: [ 'storage.type', 'text' ],\n regex: '(export|sealed|clauses|block|alias|alias_all)(\\\\s*\\\\()(?=`)'\n },\n { token: 'entity.name',\n regex: '[a-zA-Z_][a-zA-Z_0-9:]*(@prev|@init|@final)?(?=(\\\\(|\\\\[))'\n },\n { token: 'variable.parameter',\n regex: '([a-zA-Z][a-zA-Z_0-9]*|_)\\\\s*(?=(,|\\\\.|<-|->|\\\\)|\\\\]|=))'\n } ] };\n \n this.normalizeRules();\n};\n\noop.inherits(LogiQLHighlightRules, TextHighlightRules);\n\nexports.LogiQLHighlightRules = LogiQLHighlightRules;\n});\n\nace.define(\"ace/mode/folding/coffee\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/folding/fold_mode\",\"ace/range\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\nvar Range = require(\"../../range\").Range;\n\nvar FoldMode = exports.FoldMode = function() {};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n\n this.getFoldWidgetRange = function(session, foldStyle, row) {\n var range = this.indentationBlock(session, row);\n if (range)\n return range;\n\n var re = /\\S/;\n var line = session.getLine(row);\n var startLevel = line.search(re);\n if (startLevel == -1 || line[startLevel] != \"#\")\n return;\n\n var startColumn = line.length;\n var maxRow = session.getLength();\n var startRow = row;\n var endRow = row;\n\n while (++row < maxRow) {\n line = session.getLine(row);\n var level = line.search(re);\n\n if (level == -1)\n continue;\n\n if (line[level] != \"#\")\n break;\n\n endRow = row;\n }\n\n if (endRow > startRow) {\n var endColumn = session.getLine(endRow).length;\n return new Range(startRow, startColumn, endRow, endColumn);\n }\n };\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n var indent = line.search(/\\S/);\n var next = session.getLine(row + 1);\n var prev = session.getLine(row - 1);\n var prevIndent = prev.search(/\\S/);\n var nextIndent = next.search(/\\S/);\n\n if (indent == -1) {\n session.foldWidgets[row - 1] = prevIndent!= -1 && prevIndent < nextIndent ? \"start\" : \"\";\n return \"\";\n }\n if (prevIndent == -1) {\n if (indent == nextIndent && line[indent] == \"#\" && next[indent] == \"#\") {\n session.foldWidgets[row - 1] = \"\";\n session.foldWidgets[row + 1] = \"\";\n return \"start\";\n }\n } else if (prevIndent == indent && line[indent] == \"#\" && prev[indent] == \"#\") {\n if (session.getLine(row - 2).search(/\\S/) == -1) {\n session.foldWidgets[row - 1] = \"start\";\n session.foldWidgets[row + 1] = \"\";\n return \"\";\n }\n }\n\n if (prevIndent!= -1 && prevIndent < indent)\n session.foldWidgets[row - 1] = \"start\";\n else\n session.foldWidgets[row - 1] = \"\";\n\n if (indent < nextIndent)\n return \"start\";\n else\n return \"\";\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/matching_brace_outdent\",[\"require\",\"exports\",\"module\",\"ace/range\"], function(require, exports, module) {\n\"use strict\";\n\nvar Range = require(\"../range\").Range;\n\nvar MatchingBraceOutdent = function() {};\n\n(function() {\n\n this.checkOutdent = function(line, input) {\n if (! /^\\s+$/.test(line))\n return false;\n\n return /^\\s*\\}/.test(input);\n };\n\n this.autoOutdent = function(doc, row) {\n var line = doc.getLine(row);\n var match = line.match(/^(\\s*\\})/);\n\n if (!match) return 0;\n\n var column = match[1].length;\n var openBracePos = doc.findMatchingBracket({row: row, column: column});\n\n if (!openBracePos || openBracePos.row == row) return 0;\n\n var indent = this.$getIndent(doc.getLine(openBracePos.row));\n doc.replace(new Range(row, 0, row, column-1), indent);\n };\n\n this.$getIndent = function(line) {\n return line.match(/^\\s*/)[0];\n };\n\n}).call(MatchingBraceOutdent.prototype);\n\nexports.MatchingBraceOutdent = MatchingBraceOutdent;\n});\n\nace.define(\"ace/mode/logiql\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/logiql_highlight_rules\",\"ace/mode/folding/coffee\",\"ace/token_iterator\",\"ace/range\",\"ace/mode/behaviour/cstyle\",\"ace/mode/matching_brace_outdent\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar LogiQLHighlightRules = require(\"./logiql_highlight_rules\").LogiQLHighlightRules;\nvar FoldMode = require(\"./folding/coffee\").FoldMode;\nvar TokenIterator = require(\"../token_iterator\").TokenIterator;\nvar Range = require(\"../range\").Range;\nvar CstyleBehaviour = require(\"./behaviour/cstyle\").CstyleBehaviour;\nvar MatchingBraceOutdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\n\nvar Mode = function() {\n this.HighlightRules = LogiQLHighlightRules;\n this.foldingRules = new FoldMode();\n this.$outdent = new MatchingBraceOutdent();\n this.$behaviour = new CstyleBehaviour();\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n this.lineCommentStart = \"//\";\n this.blockComment = {start: \"/*\", end: \"*/\"};\n\n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n\n var tokenizedLine = this.getTokenizer().getLineTokens(line, state);\n var tokens = tokenizedLine.tokens;\n var endState = tokenizedLine.state;\n if (/comment|string/.test(endState)) \n return indent;\n if (tokens.length && tokens[tokens.length - 1].type == \"comment.single\")\n return indent;\n\n var match = line.match();\n if (/(-->|<--|<-|->|{)\\s*$/.test(line))\n indent += tab;\n return indent;\n };\n\n this.checkOutdent = function(state, line, input) {\n if (this.$outdent.checkOutdent(line, input))\n return true;\n\n if (input !== \"\\n\" && input !== \"\\r\\n\")\n return false;\n \n if (!/^\\s+/.test(line))\n return false;\n\n return true;\n };\n\n this.autoOutdent = function(state, doc, row) {\n if (this.$outdent.autoOutdent(doc, row))\n return;\n var prevLine = doc.getLine(row);\n var match = prevLine.match(/^\\s+/);\n var column = prevLine.lastIndexOf(\".\") + 1;\n if (!match || !row || !column) return 0;\n\n var line = doc.getLine(row + 1);\n var startRange = this.getMatching(doc, {row: row, column: column});\n if (!startRange || startRange.start.row == row) return 0;\n\n column = match[0].length;\n var indent = this.$getIndent(doc.getLine(startRange.start.row));\n doc.replace(new Range(row + 1, 0, row + 1, column), indent);\n };\n\n this.getMatching = function(session, row, column) {\n if (row == undefined)\n row = session.selection.lead;\n if (typeof row == \"object\") {\n column = row.column;\n row = row.row;\n }\n\n var startToken = session.getTokenAt(row, column);\n var KW_START = \"keyword.start\", KW_END = \"keyword.end\";\n var tok;\n if (!startToken)\n return;\n if (startToken.type == KW_START) {\n var it = new TokenIterator(session, row, column);\n it.step = it.stepForward;\n } else if (startToken.type == KW_END) {\n var it = new TokenIterator(session, row, column);\n it.step = it.stepBackward;\n } else\n return;\n\n while (tok = it.step()) {\n if (tok.type == KW_START || tok.type == KW_END)\n break;\n }\n if (!tok || tok.type == startToken.type)\n return;\n\n var col = it.getCurrentTokenColumn();\n var row = it.getCurrentTokenRow();\n return new Range(row, col, row, col + tok.value.length);\n };\n this.$id = \"ace/mode/logiql\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/logiql\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } filel := &embedded.EmbeddedFile{ Filename: "0ce085f9290d691fe3ec63e475d1867a.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/matlab\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText =undefined;\nexports.scope = \"matlab\";\n\n}); (function() {\n ace.require([\"ace/snippets/matlab\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } filem := &embedded.EmbeddedFile{ Filename: "0ce1238464e3ffdc94507b661c65f4b6.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/properties\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText =undefined;\nexports.scope = \"properties\";\n\n}); (function() {\n ace.require([\"ace/snippets/properties\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } filen := &embedded.EmbeddedFile{ Filename: "0d00a50d1d38185cd5ae6fbbf13ed127.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/jsx\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText =undefined;\nexports.scope = \"jsx\";\n\n}); (function() {\n ace.require([\"ace/snippets/jsx\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } fileo := &embedded.EmbeddedFile{ Filename: "0dc486b4415f7cbd7ddde8f32b6f12f1.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/drools\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText = \"\\n\\\nsnippet rule\\n\\\n\trule \\\"${1?:rule_name}\\\"\\n\\\n\twhen\\n\\\n\t\t${2:// when...} \\n\\\n\tthen\\n\\\n\t\t${3:// then...}\\n\\\n\tend\\n\\\n\\n\\\nsnippet query\\n\\\n\tquery ${1?:query_name}\\n\\\n\t\t${2:// find} \\n\\\n\tend\\n\\\n\t\\n\\\nsnippet declare\\n\\\n\tdeclare ${1?:type_name}\\n\\\n\t\t${2:// attributes} \\n\\\n\tend\\n\\\n\\n\\\n\";\nexports.scope = \"drools\";\n\n}); (function() {\n ace.require([\"ace/snippets/drools\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } filep := &embedded.EmbeddedFile{ Filename: "0ebc6c9681e409f2bf3bb6d8ce64e28e.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/theme/tomorrow_night_bright\",[\"require\",\"exports\",\"module\",\"ace/lib/dom\"], function(require, exports, module) {\n\nexports.isDark = true;\nexports.cssClass = \"ace-tomorrow-night-bright\";\nexports.cssText = \".ace-tomorrow-night-bright .ace_gutter {\\\nbackground: #1a1a1a;\\\ncolor: #DEDEDE\\\n}\\\n.ace-tomorrow-night-bright .ace_print-margin {\\\nwidth: 1px;\\\nbackground: #1a1a1a\\\n}\\\n.ace-tomorrow-night-bright {\\\nbackground-color: #000000;\\\ncolor: #DEDEDE\\\n}\\\n.ace-tomorrow-night-bright .ace_cursor {\\\ncolor: #9F9F9F\\\n}\\\n.ace-tomorrow-night-bright .ace_marker-layer .ace_selection {\\\nbackground: #424242\\\n}\\\n.ace-tomorrow-night-bright.ace_multiselect .ace_selection.ace_start {\\\nbox-shadow: 0 0 3px 0px #000000;\\\n}\\\n.ace-tomorrow-night-bright .ace_marker-layer .ace_step {\\\nbackground: rgb(102, 82, 0)\\\n}\\\n.ace-tomorrow-night-bright .ace_marker-layer .ace_bracket {\\\nmargin: -1px 0 0 -1px;\\\nborder: 1px solid #888888\\\n}\\\n.ace-tomorrow-night-bright .ace_marker-layer .ace_highlight {\\\nborder: 1px solid rgb(110, 119, 0);\\\nborder-bottom: 0;\\\nbox-shadow: inset 0 -1px rgb(110, 119, 0);\\\nmargin: -1px 0 0 -1px;\\\nbackground: rgba(255, 235, 0, 0.1)\\\n}\\\n.ace-tomorrow-night-bright .ace_marker-layer .ace_active-line {\\\nbackground: #2A2A2A\\\n}\\\n.ace-tomorrow-night-bright .ace_gutter-active-line {\\\nbackground-color: #2A2A2A\\\n}\\\n.ace-tomorrow-night-bright .ace_stack {\\\nbackground-color: rgb(66, 90, 44)\\\n}\\\n.ace-tomorrow-night-bright .ace_marker-layer .ace_selected-word {\\\nborder: 1px solid #888888\\\n}\\\n.ace-tomorrow-night-bright .ace_invisible {\\\ncolor: #343434\\\n}\\\n.ace-tomorrow-night-bright .ace_keyword,\\\n.ace-tomorrow-night-bright .ace_meta,\\\n.ace-tomorrow-night-bright .ace_storage,\\\n.ace-tomorrow-night-bright .ace_storage.ace_type,\\\n.ace-tomorrow-night-bright .ace_support.ace_type {\\\ncolor: #C397D8\\\n}\\\n.ace-tomorrow-night-bright .ace_keyword.ace_operator {\\\ncolor: #70C0B1\\\n}\\\n.ace-tomorrow-night-bright .ace_constant.ace_character,\\\n.ace-tomorrow-night-bright .ace_constant.ace_language,\\\n.ace-tomorrow-night-bright .ace_constant.ace_numeric,\\\n.ace-tomorrow-night-bright .ace_keyword.ace_other.ace_unit,\\\n.ace-tomorrow-night-bright .ace_support.ace_constant,\\\n.ace-tomorrow-night-bright .ace_variable.ace_parameter {\\\ncolor: #E78C45\\\n}\\\n.ace-tomorrow-night-bright .ace_constant.ace_other {\\\ncolor: #EEEEEE\\\n}\\\n.ace-tomorrow-night-bright .ace_invalid {\\\ncolor: #CED2CF;\\\nbackground-color: #DF5F5F\\\n}\\\n.ace-tomorrow-night-bright .ace_invalid.ace_deprecated {\\\ncolor: #CED2CF;\\\nbackground-color: #B798BF\\\n}\\\n.ace-tomorrow-night-bright .ace_fold {\\\nbackground-color: #7AA6DA;\\\nborder-color: #DEDEDE\\\n}\\\n.ace-tomorrow-night-bright .ace_entity.ace_name.ace_function,\\\n.ace-tomorrow-night-bright .ace_support.ace_function,\\\n.ace-tomorrow-night-bright .ace_variable {\\\ncolor: #7AA6DA\\\n}\\\n.ace-tomorrow-night-bright .ace_support.ace_class,\\\n.ace-tomorrow-night-bright .ace_support.ace_type {\\\ncolor: #E7C547\\\n}\\\n.ace-tomorrow-night-bright .ace_heading,\\\n.ace-tomorrow-night-bright .ace_markup.ace_heading,\\\n.ace-tomorrow-night-bright .ace_string {\\\ncolor: #B9CA4A\\\n}\\\n.ace-tomorrow-night-bright .ace_entity.ace_name.ace_tag,\\\n.ace-tomorrow-night-bright .ace_entity.ace_other.ace_attribute-name,\\\n.ace-tomorrow-night-bright .ace_meta.ace_tag,\\\n.ace-tomorrow-night-bright .ace_string.ace_regexp,\\\n.ace-tomorrow-night-bright .ace_variable {\\\ncolor: #D54E53\\\n}\\\n.ace-tomorrow-night-bright .ace_comment {\\\ncolor: #969896\\\n}\\\n.ace-tomorrow-night-bright .ace_c9searchresults.ace_keyword {\\\ncolor: #C2C280\\\n}\\\n.ace-tomorrow-night-bright .ace_indent-guide {\\\nbackground: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWNgYGBgYFBXV/8PAAJoAXX4kT2EAAAAAElFTkSuQmCC) right repeat-y\\\n}\";\n\nvar dom = require(\"../lib/dom\");\ndom.importCssString(exports.cssText, exports.cssClass);\n}); (function() {\n ace.require([\"ace/theme/tomorrow_night_bright\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } fileq := &embedded.EmbeddedFile{ Filename: "0ec5fd3cff31303d324fc853798b66e6.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/vhdl_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar VHDLHighlightRules = function() {\n\n\n \n var keywords = \"access|after|ailas|all|architecture|assert|attribute|\"+\n \"begin|block|buffer|bus|case|component|configuration|\"+\n \"disconnect|downto|else|elsif|end|entity|file|for|function|\"+\n \"generate|generic|guarded|if|impure|in|inertial|inout|is|\"+\n \"label|linkage|literal|loop|mapnew|next|of|on|open|\"+\n \"others|out|port|process|pure|range|record|reject|\"+\n \"report|return|select|shared|subtype|then|to|transport|\"+\n \"type|unaffected|united|until|wait|when|while|with\";\n \n var storageType = \"bit|bit_vector|boolean|character|integer|line|natural|\"+\n \"positive|real|register|severity|signal|signed|\"+\n \"std_logic|std_logic_vector|string||text|time|unsigned|\"+\n \"variable\";\n \n var storageModifiers = \"array|constant\";\n \n var keywordOperators = \"abs|and|mod|nand|nor|not|rem|rol|ror|sla|sll|sra\"+\n \"srl|xnor|xor\";\n \n var builtinConstants = (\n \"true|false|null\"\n );\n\n\n var keywordMapper = this.createKeywordMapper({\n \"keyword.operator\": keywordOperators,\n \"keyword\": keywords,\n \"constant.language\": builtinConstants,\n \"storage.modifier\": storageModifiers,\n \"storage.type\": storageType\n }, \"identifier\", true);\n\n this.$rules = {\n \"start\" : [ {\n token : \"comment\",\n regex : \"--.*$\"\n }, {\n token : \"string\", // \" string\n regex : '\".*?\"'\n }, {\n token : \"string\", // ' string\n regex : \"'.*?'\"\n }, {\n token : \"constant.numeric\", // float\n regex : \"[+-]?\\\\d+(?:(?:\\\\.\\\\d*)?(?:[eE][+-]?\\\\d+)?)?\\\\b\"\n }, {\n token : \"keyword\", // pre-compiler directives\n regex : \"\\\\s*(?:library|package|use)\\\\b\"\n }, {\n token : keywordMapper,\n regex : \"[a-zA-Z_$][a-zA-Z0-9_$]*\\\\b\"\n }, {\n token : \"keyword.operator\",\n regex : \"&|\\\\*|\\\\+|\\\\-|\\\\/|<|=|>|\\\\||=>|\\\\*\\\\*|:=|\\\\/=|>=|<=|<>\" \n }, {\n token : \"punctuation.operator\",\n regex : \"\\\\'|\\\\:|\\\\,|\\\\;|\\\\.\"\n },{\n token : \"paren.lparen\",\n regex : \"[[(]\"\n }, {\n token : \"paren.rparen\",\n regex : \"[\\\\])]\"\n }, {\n token : \"text\",\n regex : \"\\\\s+\"\n } ]\n\n \n };\n};\n\noop.inherits(VHDLHighlightRules, TextHighlightRules);\n\nexports.VHDLHighlightRules = VHDLHighlightRules;\n});\n\nace.define(\"ace/mode/vhdl\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/vhdl_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar VHDLHighlightRules = require(\"./vhdl_highlight_rules\").VHDLHighlightRules;\n\nvar Mode = function() {\n this.HighlightRules = VHDLHighlightRules;\n this.$behaviour = this.$defaultBehaviour;\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.lineCommentStart = \"--\";\n\n this.$id = \"ace/mode/vhdl\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n\n}); (function() {\n ace.require([\"ace/mode/vhdl\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } filer := &embedded.EmbeddedFile{ Filename: "0fb66b5df979aa54298b32e978f97734.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/ext/themelist\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nvar themeData = [\n [\"Chrome\" ],\n [\"Clouds\" ],\n [\"Crimson Editor\" ],\n [\"Dawn\" ],\n [\"Dreamweaver\" ],\n [\"Eclipse\" ],\n [\"GitHub\" ],\n [\"IPlastic\" ],\n [\"Solarized Light\"],\n [\"TextMate\" ],\n [\"Tomorrow\" ],\n [\"XCode\" ],\n [\"Kuroir\"],\n [\"KatzenMilch\"],\n [\"SQL Server\" ,\"sqlserver\" , \"light\"],\n [\"Ambiance\" ,\"ambiance\" , \"dark\"],\n [\"Chaos\" ,\"chaos\" , \"dark\"],\n [\"Clouds Midnight\" ,\"clouds_midnight\" , \"dark\"],\n [\"Dracula\" ,\"\" , \"dark\"],\n [\"Cobalt\" ,\"cobalt\" , \"dark\"],\n [\"Gruvbox\" ,\"gruvbox\" , \"dark\"],\n [\"Green on Black\" ,\"gob\" , \"dark\"],\n [\"idle Fingers\" ,\"idle_fingers\" , \"dark\"],\n [\"krTheme\" ,\"kr_theme\" , \"dark\"],\n [\"Merbivore\" ,\"merbivore\" , \"dark\"],\n [\"Merbivore Soft\" ,\"merbivore_soft\" , \"dark\"],\n [\"Mono Industrial\" ,\"mono_industrial\" , \"dark\"],\n [\"Monokai\" ,\"monokai\" , \"dark\"],\n [\"Pastel on dark\" ,\"pastel_on_dark\" , \"dark\"],\n [\"Solarized Dark\" ,\"solarized_dark\" , \"dark\"],\n [\"Terminal\" ,\"terminal\" , \"dark\"],\n [\"Tomorrow Night\" ,\"tomorrow_night\" , \"dark\"],\n [\"Tomorrow Night Blue\" ,\"tomorrow_night_blue\" , \"dark\"],\n [\"Tomorrow Night Bright\",\"tomorrow_night_bright\" , \"dark\"],\n [\"Tomorrow Night 80s\" ,\"tomorrow_night_eighties\" , \"dark\"],\n [\"Twilight\" ,\"twilight\" , \"dark\"],\n [\"Vibrant Ink\" ,\"vibrant_ink\" , \"dark\"]\n];\n\n\nexports.themesByName = {};\nexports.themes = themeData.map(function(data) {\n var name = data[1] || data[0].replace(/ /g, \"_\").toLowerCase();\n var theme = {\n caption: data[0],\n theme: \"ace/theme/\" + name,\n isDark: data[2] == \"dark\",\n name: name\n };\n exports.themesByName[name] = theme;\n return theme;\n});\n\n}); (function() {\n ace.require([\"ace/ext/themelist\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } files := &embedded.EmbeddedFile{ Filename: "0fcfed328afda56a1dd4ca6c43cfae47.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/scheme\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText =undefined;\nexports.scope = \"scheme\";\n\n}); (function() {\n ace.require([\"ace/snippets/scheme\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } filet := &embedded.EmbeddedFile{ Filename: "100f9b1846c1e1ecae19e0ca2fc8224c.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/ini_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar escapeRe = \"\\\\\\\\(?:[\\\\\\\\0abtrn;#=:]|x[a-fA-F\\\\d]{4})\";\n\nvar IniHighlightRules = function() {\n this.$rules = {\n start: [{\n token: 'punctuation.definition.comment.ini',\n regex: '#.*',\n push_: [{\n token: 'comment.line.number-sign.ini',\n regex: '$|^',\n next: 'pop'\n }, {\n defaultToken: 'comment.line.number-sign.ini'\n }]\n }, {\n token: 'punctuation.definition.comment.ini',\n regex: ';.*',\n push_: [{\n token: 'comment.line.semicolon.ini',\n regex: '$|^',\n next: 'pop'\n }, {\n defaultToken: 'comment.line.semicolon.ini'\n }]\n }, {\n token: ['keyword.other.definition.ini', 'text', 'punctuation.separator.key-value.ini'],\n regex: '\\\\b([a-zA-Z0-9_.-]+)\\\\b(\\\\s*)(=)'\n }, {\n token: ['punctuation.definition.entity.ini', 'constant.section.group-title.ini', 'punctuation.definition.entity.ini'],\n regex: '^(\\\\[)(.*?)(\\\\])'\n }, {\n token: 'punctuation.definition.string.begin.ini',\n regex: \"'\",\n push: [{\n token: 'punctuation.definition.string.end.ini',\n regex: \"'\",\n next: 'pop'\n }, {\n token: \"constant.language.escape\",\n regex: escapeRe\n }, {\n defaultToken: 'string.quoted.single.ini'\n }]\n }, {\n token: 'punctuation.definition.string.begin.ini',\n regex: '\"',\n push: [{\n token: \"constant.language.escape\",\n regex: escapeRe\n }, {\n token: 'punctuation.definition.string.end.ini',\n regex: '\"',\n next: 'pop'\n }, {\n defaultToken: 'string.quoted.double.ini'\n }]\n }]\n };\n\n this.normalizeRules();\n};\n\nIniHighlightRules.metaData = {\n fileTypes: ['ini', 'conf'],\n keyEquivalent: '^~I',\n name: 'Ini',\n scopeName: 'source.ini'\n};\n\n\noop.inherits(IniHighlightRules, TextHighlightRules);\n\nexports.IniHighlightRules = IniHighlightRules;\n});\n\nace.define(\"ace/mode/folding/ini\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/range\",\"ace/mode/folding/fold_mode\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Range = require(\"../../range\").Range;\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function() {\n};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n\n this.foldingStartMarker = /^\\s*\\[([^\\])]*)]\\s*(?:$|[;#])/;\n\n this.getFoldWidgetRange = function(session, foldStyle, row) {\n var re = this.foldingStartMarker;\n var line = session.getLine(row);\n \n var m = line.match(re);\n \n if (!m) return;\n \n var startName = m[1] + \".\";\n \n var startColumn = line.length;\n var maxRow = session.getLength();\n var startRow = row;\n var endRow = row;\n\n while (++row < maxRow) {\n line = session.getLine(row);\n if (/^\\s*$/.test(line))\n continue;\n m = line.match(re);\n if (m && m[1].lastIndexOf(startName, 0) !== 0)\n break;\n\n endRow = row;\n }\n\n if (endRow > startRow) {\n var endColumn = session.getLine(endRow).length;\n return new Range(startRow, startColumn, endRow, endColumn);\n }\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/ini\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/ini_highlight_rules\",\"ace/mode/folding/ini\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar IniHighlightRules = require(\"./ini_highlight_rules\").IniHighlightRules;\nvar FoldMode = require(\"./folding/ini\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = IniHighlightRules;\n this.foldingRules = new FoldMode();\n this.$behaviour = this.$defaultBehaviour;\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n this.lineCommentStart = \";\";\n this.blockComment = null;\n this.$id = \"ace/mode/ini\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/ini\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } fileu := &embedded.EmbeddedFile{ Filename: "1084edaced97872890c9d87a9944cdcd.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/assembly_x86_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar AssemblyX86HighlightRules = function() {\n\n this.$rules = { start: \n [ { token: 'keyword.control.assembly',\n regex: '\\\\b(?:aaa|aad|aam|aas|adc|add|addpd|addps|addsd|addss|addsubpd|addsubps|aesdec|aesdeclast|aesenc|aesenclast|aesimc|aeskeygenassist|and|andpd|andps|andnpd|andnps|arpl|blendpd|blendps|blendvpd|blendvps|bound|bsf|bsr|bswap|bt|btc|btr|bts|cbw|cwde|cdqe|clc|cld|cflush|clts|cmc|cmov(?:n?e|ge?|ae?|le?|be?|n?o|n?z)|cmp|cmppd|cmpps|cmps|cnpsb|cmpsw|cmpsd|cmpsq|cmpss|cmpxchg|cmpxchg8b|cmpxchg16b|comisd|comiss|cpuid|crc32|cvtdq2pd|cvtdq2ps|cvtpd2dq|cvtpd2pi|cvtpd2ps|cvtpi2pd|cvtpi2ps|cvtps2dq|cvtps2pd|cvtps2pi|cvtsd2si|cvtsd2ss|cvts2sd|cvtsi2ss|cvtss2sd|cvtss2si|cvttpd2dq|cvtpd2pi|cvttps2dq|cvttps2pi|cvttps2dq|cvttps2pi|cvttsd2si|cvttss2si|cwd|cdq|cqo|daa|das|dec|div|divpd|divps|divsd|divss|dppd|dpps|emms|enter|extractps|f2xm1|fabs|fadd|faddp|fiadd|fbld|fbstp|fchs|fclex|fnclex|fcmov(?:n?e|ge?|ae?|le?|be?|n?o|n?z)|fcom|fcmop|fcompp|fcomi|fcomip|fucomi|fucomip|fcos|fdecstp|fdiv|fdivp|fidiv|fdivr|fdivrp|fidivr|ffree|ficom|ficomp|fild|fincstp|finit|fnint|fist|fistp|fisttp|fld|fld1|fldl2t|fldl2e|fldpi|fldlg2|fldln2|fldz|fldcw|fldenv|fmul|fmulp|fimul|fnop|fpatan|fprem|fprem1|fptan|frndint|frstor|fsave|fnsave|fscale|fsin|fsincos|fsqrt|fst|fstp|fstcw|fnstcw|fstenv|fnstenv|fsts|fnstsw|fsub|fsubp|fisub|fsubr|fsubrp|fisubr|ftst|fucom|fucomp|fucompp|fxam|fxch|fxrstor|fxsave|fxtract|fyl2x|fyl2xp1|haddpd|haddps|husbpd|hsubps|idiv|imul|in|inc|ins|insb|insw|insd|insertps|int|into|invd|invplg|invpcid|iret|iretd|iretq|lahf|lar|lddqu|ldmxcsr|lds|les|lfs|lgs|lss|lea|leave|lfence|lgdt|lidt|llgdt|lmsw|lock|lods|lodsb|lodsw|lodsd|lodsq|lsl|ltr|maskmovdqu|maskmovq|maxpd|maxps|maxsd|maxss|mfence|minpd|minps|minsd|minss|monitor|mov|movapd|movaps|movbe|movd|movq|movddup|movdqa|movdqu|movq2q|movhlps|movhpd|movhps|movlhps|movlpd|movlps|movmskpd|movmskps|movntdqa|movntdq|movnti|movntpd|movntps|movntq|movq|movq2dq|movs|movsb|movsw|movsd|movsq|movsd|movshdup|movsldup|movss|movsx|movsxd|movupd|movups|movzx|mpsadbw|mul|mulpd|mulps|mulsd|mulss|mwait|neg|not|or|orpd|orps|out|outs|outsb|outsw|outsd|pabsb|pabsw|pabsd|packsswb|packssdw|packusdw|packuswbpaddb|paddw|paddd|paddq|paddsb|paddsw|paddusb|paddusw|palignr|pand|pandn|pause|pavgb|pavgw|pblendvb|pblendw|pclmulqdq|pcmpeqb|pcmpeqw|pcmpeqd|pcmpeqq|pcmpestri|pcmpestrm|pcmptb|pcmptgw|pcmpgtd|pcmpgtq|pcmpistri|pcmpisrm|pextrb|pextrd|pextrq|pextrw|phaddw|phaddd|phaddsw|phinposuw|phsubw|phsubd|phsubsw|pinsrb|pinsrd|pinsrq|pinsrw|pmaddubsw|pmadddwd|pmaxsb|pmaxsd|pmaxsw|pmaxsw|pmaxub|pmaxud|pmaxuw|pminsb|pminsd|pminsw|pminub|pminud|pminuw|pmovmskb|pmovsx|pmovzx|pmuldq|pmulhrsw|pmulhuw|pmulhw|pmulld|pmullw|pmuludw|pop|popa|popad|popcnt|popf|popfd|popfq|por|prefetch|psadbw|pshufb|pshufd|pshufhw|pshuflw|pshufw|psignb|psignw|psignd|pslldq|psllw|pslld|psllq|psraw|psrad|psrldq|psrlw|psrld|psrlq|psubb|psubw|psubd|psubq|psubsb|psubsw|psubusb|psubusw|test|ptest|punpckhbw|punpckhwd|punpckhdq|punpckhddq|punpcklbw|punpcklwd|punpckldq|punpckldqd|push|pusha|pushad|pushf|pushfd|pxor|prcl|rcr|rol|ror|rcpps|rcpss|rdfsbase|rdgsbase|rdmsr|rdpmc|rdrand|rdtsc|rdtscp|rep|repe|repz|repne|repnz|roundpd|roundps|roundsd|roundss|rsm|rsqrps|rsqrtss|sahf|sal|sar|shl|shr|sbb|scas|scasb|scasw|scasd|set(?:n?e|ge?|ae?|le?|be?|n?o|n?z)|sfence|sgdt|shld|shrd|shufpd|shufps|sidt|sldt|smsw|sqrtpd|sqrtps|sqrtsd|sqrtss|stc|std|stmxcsr|stos|stosb|stosw|stosd|stosq|str|sub|subpd|subps|subsd|subss|swapgs|syscall|sysenter|sysexit|sysret|teset|ucomisd|ucomiss|ud2|unpckhpd|unpckhps|unpcklpd|unpcklps|vbroadcast|vcvtph2ps|vcvtp2sph|verr|verw|vextractf128|vinsertf128|vmaskmov|vpermilpd|vpermilps|vperm2f128|vtestpd|vtestps|vzeroall|vzeroupper|wait|fwait|wbinvd|wrfsbase|wrgsbase|wrmsr|xadd|xchg|xgetbv|xlat|xlatb|xor|xorpd|xorps|xrstor|xsave|xsaveopt|xsetbv|lzcnt|extrq|insertq|movntsd|movntss|vfmaddpd|vfmaddps|vfmaddsd|vfmaddss|vfmaddsubbpd|vfmaddsubps|vfmsubaddpd|vfmsubaddps|vfmsubpd|vfmsubps|vfmsubsd|vfnmaddpd|vfnmaddps|vfnmaddsd|vfnmaddss|vfnmsubpd|vfnmusbps|vfnmusbsd|vfnmusbss|cvt|xor|cli|sti|hlt|nop|lock|wait|enter|leave|ret|loop(?:n?e|n?z)?|call|j(?:mp|n?e|ge?|ae?|le?|be?|n?o|n?z))\\\\b',\n caseInsensitive: true },\n { token: 'variable.parameter.register.assembly',\n regex: '\\\\b(?:CS|DS|ES|FS|GS|SS|RAX|EAX|RBX|EBX|RCX|ECX|RDX|EDX|RCX|RIP|EIP|IP|RSP|ESP|SP|RSI|ESI|SI|RDI|EDI|DI|RFLAGS|EFLAGS|FLAGS|R8-15|(?:Y|X)MM(?:[0-9]|10|11|12|13|14|15)|(?:A|B|C|D)(?:X|H|L)|CR(?:[0-4]|DR(?:[0-7]|TR6|TR7|EFER)))\\\\b',\n caseInsensitive: true },\n { token: 'constant.character.decimal.assembly',\n regex: '\\\\b[0-9]+\\\\b' },\n { token: 'constant.character.hexadecimal.assembly',\n regex: '\\\\b0x[A-F0-9]+\\\\b',\n caseInsensitive: true },\n { token: 'constant.character.hexadecimal.assembly',\n regex: '\\\\b[A-F0-9]+h\\\\b',\n caseInsensitive: true },\n { token: 'string.assembly', regex: /'([^\\\\']|\\\\.)*'/ },\n { token: 'string.assembly', regex: /\"([^\\\\\"]|\\\\.)*\"/ },\n { token: 'support.function.directive.assembly',\n regex: '^\\\\[',\n push: \n [ { token: 'support.function.directive.assembly',\n regex: '\\\\]$',\n next: 'pop' },\n { defaultToken: 'support.function.directive.assembly' } ] },\n { token: \n [ 'support.function.directive.assembly',\n 'support.function.directive.assembly',\n 'entity.name.function.assembly' ],\n regex: '(^struc)( )([_a-zA-Z][_a-zA-Z0-9]*)' },\n { token: 'support.function.directive.assembly',\n regex: '^endstruc\\\\b' },\n { token: \n [ 'support.function.directive.assembly',\n 'entity.name.function.assembly',\n 'support.function.directive.assembly',\n 'constant.character.assembly' ],\n regex: '^(%macro )([_a-zA-Z][_a-zA-Z0-9]*)( )([0-9]+)' },\n { token: 'support.function.directive.assembly',\n regex: '^%endmacro' },\n { token: \n [ 'text',\n 'support.function.directive.assembly',\n 'text',\n 'entity.name.function.assembly' ],\n regex: '(\\\\s*)(%define|%xdefine|%idefine|%undef|%assign|%defstr|%strcat|%strlen|%substr|%00|%0|%rotate|%rep|%endrep|%include|\\\\$\\\\$|\\\\$|%unmacro|%if|%elif|%else|%endif|%(?:el)?ifdef|%(?:el)?ifmacro|%(?:el)?ifctx|%(?:el)?ifidn|%(?:el)?ifidni|%(?:el)?ifid|%(?:el)?ifnum|%(?:el)?ifstr|%(?:el)?iftoken|%(?:el)?ifempty|%(?:el)?ifenv|%pathsearch|%depend|%use|%push|%pop|%repl|%arg|%stacksize|%local|%error|%warning|%fatal|%line|%!|%comment|%endcomment|__NASM_VERSION_ID__|__NASM_VER__|__FILE__|__LINE__|__BITS__|__OUTPUT_FORMAT__|__DATE__|__TIME__|__DATE_NUM__|_TIME__NUM__|__UTC_DATE__|__UTC_TIME__|__UTC_DATE_NUM__|__UTC_TIME_NUM__|__POSIX_TIME__|__PASS__|ISTRUC|AT|IEND|BITS 16|BITS 32|BITS 64|USE16|USE32|__SECT__|ABSOLUTE|EXTERN|GLOBAL|COMMON|CPU|FLOAT)\\\\b( ?)((?:[_a-zA-Z][_a-zA-Z0-9]*)?)',\n caseInsensitive: true },\n { token: 'support.function.directive.assembly',\n regex: '\\\\b(?:d[bwdqtoy]|res[bwdqto]|equ|times|align|alignb|sectalign|section|ptr|byte|word|dword|qword|incbin)\\\\b',\n caseInsensitive: true },\n { token: 'entity.name.function.assembly', regex: '^\\\\s*%%[\\\\w.]+?:$' },\n { token: 'entity.name.function.assembly', regex: '^\\\\s*%\\\\$[\\\\w.]+?:$' },\n { token: 'entity.name.function.assembly', regex: '^[\\\\w.]+?:' },\n { token: 'entity.name.function.assembly', regex: '^[\\\\w.]+?\\\\b' },\n { token: 'comment.assembly', regex: ';.*$' } ] \n };\n \n this.normalizeRules();\n};\n\nAssemblyX86HighlightRules.metaData = { fileTypes: [ 'asm' ],\n name: 'Assembly x86',\n scopeName: 'source.assembly' };\n\n\noop.inherits(AssemblyX86HighlightRules, TextHighlightRules);\n\nexports.AssemblyX86HighlightRules = AssemblyX86HighlightRules;\n});\n\nace.define(\"ace/mode/folding/coffee\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/folding/fold_mode\",\"ace/range\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\nvar Range = require(\"../../range\").Range;\n\nvar FoldMode = exports.FoldMode = function() {};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n\n this.getFoldWidgetRange = function(session, foldStyle, row) {\n var range = this.indentationBlock(session, row);\n if (range)\n return range;\n\n var re = /\\S/;\n var line = session.getLine(row);\n var startLevel = line.search(re);\n if (startLevel == -1 || line[startLevel] != \"#\")\n return;\n\n var startColumn = line.length;\n var maxRow = session.getLength();\n var startRow = row;\n var endRow = row;\n\n while (++row < maxRow) {\n line = session.getLine(row);\n var level = line.search(re);\n\n if (level == -1)\n continue;\n\n if (line[level] != \"#\")\n break;\n\n endRow = row;\n }\n\n if (endRow > startRow) {\n var endColumn = session.getLine(endRow).length;\n return new Range(startRow, startColumn, endRow, endColumn);\n }\n };\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n var indent = line.search(/\\S/);\n var next = session.getLine(row + 1);\n var prev = session.getLine(row - 1);\n var prevIndent = prev.search(/\\S/);\n var nextIndent = next.search(/\\S/);\n\n if (indent == -1) {\n session.foldWidgets[row - 1] = prevIndent!= -1 && prevIndent < nextIndent ? \"start\" : \"\";\n return \"\";\n }\n if (prevIndent == -1) {\n if (indent == nextIndent && line[indent] == \"#\" && next[indent] == \"#\") {\n session.foldWidgets[row - 1] = \"\";\n session.foldWidgets[row + 1] = \"\";\n return \"start\";\n }\n } else if (prevIndent == indent && line[indent] == \"#\" && prev[indent] == \"#\") {\n if (session.getLine(row - 2).search(/\\S/) == -1) {\n session.foldWidgets[row - 1] = \"start\";\n session.foldWidgets[row + 1] = \"\";\n return \"\";\n }\n }\n\n if (prevIndent!= -1 && prevIndent < indent)\n session.foldWidgets[row - 1] = \"start\";\n else\n session.foldWidgets[row - 1] = \"\";\n\n if (indent < nextIndent)\n return \"start\";\n else\n return \"\";\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/assembly_x86\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/assembly_x86_highlight_rules\",\"ace/mode/folding/coffee\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar AssemblyX86HighlightRules = require(\"./assembly_x86_highlight_rules\").AssemblyX86HighlightRules;\nvar FoldMode = require(\"./folding/coffee\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = AssemblyX86HighlightRules;\n this.foldingRules = new FoldMode();\n this.$behaviour = this.$defaultBehaviour;\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n this.lineCommentStart = [\";\"];\n this.$id = \"ace/mode/assembly_x86\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/assembly_x86\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } filev := &embedded.EmbeddedFile{ Filename: "10bc79414b62df132421027bbf5e5c3e.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/theme/crimson_editor\",[\"require\",\"exports\",\"module\",\"ace/lib/dom\"], function(require, exports, module) {\nexports.isDark = false;\nexports.cssText = \".ace-crimson-editor .ace_gutter {\\\nbackground: #ebebeb;\\\ncolor: #333;\\\noverflow : hidden;\\\n}\\\n.ace-crimson-editor .ace_gutter-layer {\\\nwidth: 100%;\\\ntext-align: right;\\\n}\\\n.ace-crimson-editor .ace_print-margin {\\\nwidth: 1px;\\\nbackground: #e8e8e8;\\\n}\\\n.ace-crimson-editor {\\\nbackground-color: #FFFFFF;\\\ncolor: rgb(64, 64, 64);\\\n}\\\n.ace-crimson-editor .ace_cursor {\\\ncolor: black;\\\n}\\\n.ace-crimson-editor .ace_invisible {\\\ncolor: rgb(191, 191, 191);\\\n}\\\n.ace-crimson-editor .ace_identifier {\\\ncolor: black;\\\n}\\\n.ace-crimson-editor .ace_keyword {\\\ncolor: blue;\\\n}\\\n.ace-crimson-editor .ace_constant.ace_buildin {\\\ncolor: rgb(88, 72, 246);\\\n}\\\n.ace-crimson-editor .ace_constant.ace_language {\\\ncolor: rgb(255, 156, 0);\\\n}\\\n.ace-crimson-editor .ace_constant.ace_library {\\\ncolor: rgb(6, 150, 14);\\\n}\\\n.ace-crimson-editor .ace_invalid {\\\ntext-decoration: line-through;\\\ncolor: rgb(224, 0, 0);\\\n}\\\n.ace-crimson-editor .ace_fold {\\\n}\\\n.ace-crimson-editor .ace_support.ace_function {\\\ncolor: rgb(192, 0, 0);\\\n}\\\n.ace-crimson-editor .ace_support.ace_constant {\\\ncolor: rgb(6, 150, 14);\\\n}\\\n.ace-crimson-editor .ace_support.ace_type,\\\n.ace-crimson-editor .ace_support.ace_class {\\\ncolor: rgb(109, 121, 222);\\\n}\\\n.ace-crimson-editor .ace_keyword.ace_operator {\\\ncolor: rgb(49, 132, 149);\\\n}\\\n.ace-crimson-editor .ace_string {\\\ncolor: rgb(128, 0, 128);\\\n}\\\n.ace-crimson-editor .ace_comment {\\\ncolor: rgb(76, 136, 107);\\\n}\\\n.ace-crimson-editor .ace_comment.ace_doc {\\\ncolor: rgb(0, 102, 255);\\\n}\\\n.ace-crimson-editor .ace_comment.ace_doc.ace_tag {\\\ncolor: rgb(128, 159, 191);\\\n}\\\n.ace-crimson-editor .ace_constant.ace_numeric {\\\ncolor: rgb(0, 0, 64);\\\n}\\\n.ace-crimson-editor .ace_variable {\\\ncolor: rgb(0, 64, 128);\\\n}\\\n.ace-crimson-editor .ace_xml-pe {\\\ncolor: rgb(104, 104, 91);\\\n}\\\n.ace-crimson-editor .ace_marker-layer .ace_selection {\\\nbackground: rgb(181, 213, 255);\\\n}\\\n.ace-crimson-editor .ace_marker-layer .ace_step {\\\nbackground: rgb(252, 255, 0);\\\n}\\\n.ace-crimson-editor .ace_marker-layer .ace_stack {\\\nbackground: rgb(164, 229, 101);\\\n}\\\n.ace-crimson-editor .ace_marker-layer .ace_bracket {\\\nmargin: -1px 0 0 -1px;\\\nborder: 1px solid rgb(192, 192, 192);\\\n}\\\n.ace-crimson-editor .ace_marker-layer .ace_active-line {\\\nbackground: rgb(232, 242, 254);\\\n}\\\n.ace-crimson-editor .ace_gutter-active-line {\\\nbackground-color : #dcdcdc;\\\n}\\\n.ace-crimson-editor .ace_meta.ace_tag {\\\ncolor:rgb(28, 2, 255);\\\n}\\\n.ace-crimson-editor .ace_marker-layer .ace_selected-word {\\\nbackground: rgb(250, 250, 255);\\\nborder: 1px solid rgb(200, 200, 250);\\\n}\\\n.ace-crimson-editor .ace_string.ace_regex {\\\ncolor: rgb(192, 0, 192);\\\n}\\\n.ace-crimson-editor .ace_indent-guide {\\\nbackground: url(\\\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==\\\") right repeat-y;\\\n}\";\n\nexports.cssClass = \"ace-crimson-editor\";\n\nvar dom = require(\"../lib/dom\");\ndom.importCssString(exports.cssText, exports.cssClass);\n}); (function() {\n ace.require([\"ace/theme/crimson_editor\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } filew := &embedded.EmbeddedFile{ Filename: "110d938fcc0c48d4aa3078e74ea1d177.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("\"no use strict\";\n!(function(window) {\nif (typeof window.window != \"undefined\" && window.document)\n return;\nif (window.require && window.define)\n return;\n\nif (!window.console) {\n window.console = function() {\n var msgs = Array.prototype.slice.call(arguments, 0);\n postMessage({type: \"log\", data: msgs});\n };\n window.console.error =\n window.console.warn = \n window.console.log =\n window.console.trace = window.console;\n}\nwindow.window = window;\nwindow.ace = window;\n\nwindow.onerror = function(message, file, line, col, err) {\n postMessage({type: \"error\", data: {\n message: message,\n data: err.data,\n file: file,\n line: line, \n col: col,\n stack: err.stack\n }});\n};\n\nwindow.normalizeModule = function(parentId, moduleName) {\n // normalize plugin requires\n if (moduleName.indexOf(\"!\") !== -1) {\n var chunks = moduleName.split(\"!\");\n return window.normalizeModule(parentId, chunks[0]) + \"!\" + window.normalizeModule(parentId, chunks[1]);\n }\n // normalize relative requires\n if (moduleName.charAt(0) == \".\") {\n var base = parentId.split(\"/\").slice(0, -1).join(\"/\");\n moduleName = (base ? base + \"/\" : \"\") + moduleName;\n \n while (moduleName.indexOf(\".\") !== -1 && previous != moduleName) {\n var previous = moduleName;\n moduleName = moduleName.replace(/^\\.\\//, \"\").replace(/\\/\\.\\//, \"/\").replace(/[^\\/]+\\/\\.\\.\\//, \"\");\n }\n }\n \n return moduleName;\n};\n\nwindow.require = function require(parentId, id) {\n if (!id) {\n id = parentId;\n parentId = null;\n }\n if (!id.charAt)\n throw new Error(\"worker.js require() accepts only (parentId, id) as arguments\");\n\n id = window.normalizeModule(parentId, id);\n\n var module = window.require.modules[id];\n if (module) {\n if (!module.initialized) {\n module.initialized = true;\n module.exports = module.factory().exports;\n }\n return module.exports;\n }\n \n if (!window.require.tlns)\n return console.log(\"unable to load \" + id);\n \n var path = resolveModuleId(id, window.require.tlns);\n if (path.slice(-3) != \".js\") path += \".js\";\n \n window.require.id = id;\n window.require.modules[id] = {}; // prevent infinite loop on broken modules\n importScripts(path);\n return window.require(parentId, id);\n};\nfunction resolveModuleId(id, paths) {\n var testPath = id, tail = \"\";\n while (testPath) {\n var alias = paths[testPath];\n if (typeof alias == \"string\") {\n return alias + tail;\n } else if (alias) {\n return alias.location.replace(/\\/*$/, \"/\") + (tail || alias.main || alias.name);\n } else if (alias === false) {\n return \"\";\n }\n var i = testPath.lastIndexOf(\"/\");\n if (i === -1) break;\n tail = testPath.substr(i) + tail;\n testPath = testPath.slice(0, i);\n }\n return id;\n}\nwindow.require.modules = {};\nwindow.require.tlns = {};\n\nwindow.define = function(id, deps, factory) {\n if (arguments.length == 2) {\n factory = deps;\n if (typeof id != \"string\") {\n deps = id;\n id = window.require.id;\n }\n } else if (arguments.length == 1) {\n factory = id;\n deps = [];\n id = window.require.id;\n }\n \n if (typeof factory != \"function\") {\n window.require.modules[id] = {\n exports: factory,\n initialized: true\n };\n return;\n }\n\n if (!deps.length)\n // If there is no dependencies, we inject \"require\", \"exports\" and\n // \"module\" as dependencies, to provide CommonJS compatibility.\n deps = [\"require\", \"exports\", \"module\"];\n\n var req = function(childId) {\n return window.require(id, childId);\n };\n\n window.require.modules[id] = {\n exports: {},\n factory: function() {\n var module = this;\n var returnExports = factory.apply(this, deps.slice(0, factory.length).map(function(dep) {\n switch (dep) {\n // Because \"require\", \"exports\" and \"module\" aren't actual\n // dependencies, we must handle them seperately.\n case \"require\": return req;\n case \"exports\": return module.exports;\n case \"module\": return module;\n // But for all other dependencies, we can just go ahead and\n // require them.\n default: return req(dep);\n }\n }));\n if (returnExports)\n module.exports = returnExports;\n return module;\n }\n };\n};\nwindow.define.amd = {};\nrequire.tlns = {};\nwindow.initBaseUrls = function initBaseUrls(topLevelNamespaces) {\n for (var i in topLevelNamespaces)\n require.tlns[i] = topLevelNamespaces[i];\n};\n\nwindow.initSender = function initSender() {\n\n var EventEmitter = window.require(\"ace/lib/event_emitter\").EventEmitter;\n var oop = window.require(\"ace/lib/oop\");\n \n var Sender = function() {};\n \n (function() {\n \n oop.implement(this, EventEmitter);\n \n this.callback = function(data, callbackId) {\n postMessage({\n type: \"call\",\n id: callbackId,\n data: data\n });\n };\n \n this.emit = function(name, data) {\n postMessage({\n type: \"event\",\n name: name,\n data: data\n });\n };\n \n }).call(Sender.prototype);\n \n return new Sender();\n};\n\nvar main = window.main = null;\nvar sender = window.sender = null;\n\nwindow.onmessage = function(e) {\n var msg = e.data;\n if (msg.event && sender) {\n sender._signal(msg.event, msg.data);\n }\n else if (msg.command) {\n if (main[msg.command])\n main[msg.command].apply(main, msg.args);\n else if (window[msg.command])\n window[msg.command].apply(window, msg.args);\n else\n throw new Error(\"Unknown command:\" + msg.command);\n }\n else if (msg.init) {\n window.initBaseUrls(msg.tlns);\n require(\"ace/lib/es5-shim\");\n sender = window.sender = window.initSender();\n var clazz = require(msg.module)[msg.classname];\n main = window.main = new clazz(sender);\n }\n};\n})(this);\n\nace.define(\"ace/lib/oop\",[], function(require, exports, module) {\n\"use strict\";\n\nexports.inherits = function(ctor, superCtor) {\n ctor.super_ = superCtor;\n ctor.prototype = Object.create(superCtor.prototype, {\n constructor: {\n value: ctor,\n enumerable: false,\n writable: true,\n configurable: true\n }\n });\n};\n\nexports.mixin = function(obj, mixin) {\n for (var key in mixin) {\n obj[key] = mixin[key];\n }\n return obj;\n};\n\nexports.implement = function(proto, mixin) {\n exports.mixin(proto, mixin);\n};\n\n});\n\nace.define(\"ace/lib/lang\",[], function(require, exports, module) {\n\"use strict\";\n\nexports.last = function(a) {\n return a[a.length - 1];\n};\n\nexports.stringReverse = function(string) {\n return string.split(\"\").reverse().join(\"\");\n};\n\nexports.stringRepeat = function (string, count) {\n var result = '';\n while (count > 0) {\n if (count & 1)\n result += string;\n\n if (count >>= 1)\n string += string;\n }\n return result;\n};\n\nvar trimBeginRegexp = /^\\s\\s*/;\nvar trimEndRegexp = /\\s\\s*$/;\n\nexports.stringTrimLeft = function (string) {\n return string.replace(trimBeginRegexp, '');\n};\n\nexports.stringTrimRight = function (string) {\n return string.replace(trimEndRegexp, '');\n};\n\nexports.copyObject = function(obj) {\n var copy = {};\n for (var key in obj) {\n copy[key] = obj[key];\n }\n return copy;\n};\n\nexports.copyArray = function(array){\n var copy = [];\n for (var i=0, l=array.length; i [\" + this.end.row + \"/\" + this.end.column + \"]\");\n };\n\n this.contains = function(row, column) {\n return this.compare(row, column) == 0;\n };\n this.compareRange = function(range) {\n var cmp,\n end = range.end,\n start = range.start;\n\n cmp = this.compare(end.row, end.column);\n if (cmp == 1) {\n cmp = this.compare(start.row, start.column);\n if (cmp == 1) {\n return 2;\n } else if (cmp == 0) {\n return 1;\n } else {\n return 0;\n }\n } else if (cmp == -1) {\n return -2;\n } else {\n cmp = this.compare(start.row, start.column);\n if (cmp == -1) {\n return -1;\n } else if (cmp == 1) {\n return 42;\n } else {\n return 0;\n }\n }\n };\n this.comparePoint = function(p) {\n return this.compare(p.row, p.column);\n };\n this.containsRange = function(range) {\n return this.comparePoint(range.start) == 0 && this.comparePoint(range.end) == 0;\n };\n this.intersects = function(range) {\n var cmp = this.compareRange(range);\n return (cmp == -1 || cmp == 0 || cmp == 1);\n };\n this.isEnd = function(row, column) {\n return this.end.row == row && this.end.column == column;\n };\n this.isStart = function(row, column) {\n return this.start.row == row && this.start.column == column;\n };\n this.setStart = function(row, column) {\n if (typeof row == \"object\") {\n this.start.column = row.column;\n this.start.row = row.row;\n } else {\n this.start.row = row;\n this.start.column = column;\n }\n };\n this.setEnd = function(row, column) {\n if (typeof row == \"object\") {\n this.end.column = row.column;\n this.end.row = row.row;\n } else {\n this.end.row = row;\n this.end.column = column;\n }\n };\n this.inside = function(row, column) {\n if (this.compare(row, column) == 0) {\n if (this.isEnd(row, column) || this.isStart(row, column)) {\n return false;\n } else {\n return true;\n }\n }\n return false;\n };\n this.insideStart = function(row, column) {\n if (this.compare(row, column) == 0) {\n if (this.isEnd(row, column)) {\n return false;\n } else {\n return true;\n }\n }\n return false;\n };\n this.insideEnd = function(row, column) {\n if (this.compare(row, column) == 0) {\n if (this.isStart(row, column)) {\n return false;\n } else {\n return true;\n }\n }\n return false;\n };\n this.compare = function(row, column) {\n if (!this.isMultiLine()) {\n if (row === this.start.row) {\n return column < this.start.column ? -1 : (column > this.end.column ? 1 : 0);\n }\n }\n\n if (row < this.start.row)\n return -1;\n\n if (row > this.end.row)\n return 1;\n\n if (this.start.row === row)\n return column >= this.start.column ? 0 : -1;\n\n if (this.end.row === row)\n return column <= this.end.column ? 0 : 1;\n\n return 0;\n };\n this.compareStart = function(row, column) {\n if (this.start.row == row && this.start.column == column) {\n return -1;\n } else {\n return this.compare(row, column);\n }\n };\n this.compareEnd = function(row, column) {\n if (this.end.row == row && this.end.column == column) {\n return 1;\n } else {\n return this.compare(row, column);\n }\n };\n this.compareInside = function(row, column) {\n if (this.end.row == row && this.end.column == column) {\n return 1;\n } else if (this.start.row == row && this.start.column == column) {\n return -1;\n } else {\n return this.compare(row, column);\n }\n };\n this.clipRows = function(firstRow, lastRow) {\n if (this.end.row > lastRow)\n var end = {row: lastRow + 1, column: 0};\n else if (this.end.row < firstRow)\n var end = {row: firstRow, column: 0};\n\n if (this.start.row > lastRow)\n var start = {row: lastRow + 1, column: 0};\n else if (this.start.row < firstRow)\n var start = {row: firstRow, column: 0};\n\n return Range.fromPoints(start || this.start, end || this.end);\n };\n this.extend = function(row, column) {\n var cmp = this.compare(row, column);\n\n if (cmp == 0)\n return this;\n else if (cmp == -1)\n var start = {row: row, column: column};\n else\n var end = {row: row, column: column};\n\n return Range.fromPoints(start || this.start, end || this.end);\n };\n\n this.isEmpty = function() {\n return (this.start.row === this.end.row && this.start.column === this.end.column);\n };\n this.isMultiLine = function() {\n return (this.start.row !== this.end.row);\n };\n this.clone = function() {\n return Range.fromPoints(this.start, this.end);\n };\n this.collapseRows = function() {\n if (this.end.column == 0)\n return new Range(this.start.row, 0, Math.max(this.start.row, this.end.row-1), 0);\n else\n return new Range(this.start.row, 0, this.end.row, 0);\n };\n this.toScreenRange = function(session) {\n var screenPosStart = session.documentToScreenPosition(this.start);\n var screenPosEnd = session.documentToScreenPosition(this.end);\n\n return new Range(\n screenPosStart.row, screenPosStart.column,\n screenPosEnd.row, screenPosEnd.column\n );\n };\n this.moveBy = function(row, column) {\n this.start.row += row;\n this.start.column += column;\n this.end.row += row;\n this.end.column += column;\n };\n\n}).call(Range.prototype);\nRange.fromPoints = function(start, end) {\n return new Range(start.row, start.column, end.row, end.column);\n};\nRange.comparePoints = comparePoints;\n\nRange.comparePoints = function(p1, p2) {\n return p1.row - p2.row || p1.column - p2.column;\n};\n\n\nexports.Range = Range;\n});\n\nace.define(\"ace/apply_delta\",[], function(require, exports, module) {\n\"use strict\";\n\nfunction throwDeltaError(delta, errorText){\n console.log(\"Invalid Delta:\", delta);\n throw \"Invalid Delta: \" + errorText;\n}\n\nfunction positionInDocument(docLines, position) {\n return position.row >= 0 && position.row < docLines.length &&\n position.column >= 0 && position.column <= docLines[position.row].length;\n}\n\nfunction validateDelta(docLines, delta) {\n if (delta.action != \"insert\" && delta.action != \"remove\")\n throwDeltaError(delta, \"delta.action must be 'insert' or 'remove'\");\n if (!(delta.lines instanceof Array))\n throwDeltaError(delta, \"delta.lines must be an Array\");\n if (!delta.start || !delta.end)\n throwDeltaError(delta, \"delta.start/end must be an present\");\n var start = delta.start;\n if (!positionInDocument(docLines, delta.start))\n throwDeltaError(delta, \"delta.start must be contained in document\");\n var end = delta.end;\n if (delta.action == \"remove\" && !positionInDocument(docLines, end))\n throwDeltaError(delta, \"delta.end must contained in document for 'remove' actions\");\n var numRangeRows = end.row - start.row;\n var numRangeLastLineChars = (end.column - (numRangeRows == 0 ? start.column : 0));\n if (numRangeRows != delta.lines.length - 1 || delta.lines[numRangeRows].length != numRangeLastLineChars)\n throwDeltaError(delta, \"delta.range must match delta lines\");\n}\n\nexports.applyDelta = function(docLines, delta, doNotValidate) {\n \n var row = delta.start.row;\n var startColumn = delta.start.column;\n var line = docLines[row] || \"\";\n switch (delta.action) {\n case \"insert\":\n var lines = delta.lines;\n if (lines.length === 1) {\n docLines[row] = line.substring(0, startColumn) + delta.lines[0] + line.substring(startColumn);\n } else {\n var args = [row, 1].concat(delta.lines);\n docLines.splice.apply(docLines, args);\n docLines[row] = line.substring(0, startColumn) + docLines[row];\n docLines[row + delta.lines.length - 1] += line.substring(startColumn);\n }\n break;\n case \"remove\":\n var endColumn = delta.end.column;\n var endRow = delta.end.row;\n if (row === endRow) {\n docLines[row] = line.substring(0, startColumn) + line.substring(endColumn);\n } else {\n docLines.splice(\n row, endRow - row + 1,\n line.substring(0, startColumn) + docLines[endRow].substring(endColumn)\n );\n }\n break;\n }\n};\n});\n\nace.define(\"ace/lib/event_emitter\",[], function(require, exports, module) {\n\"use strict\";\n\nvar EventEmitter = {};\nvar stopPropagation = function() { this.propagationStopped = true; };\nvar preventDefault = function() { this.defaultPrevented = true; };\n\nEventEmitter._emit =\nEventEmitter._dispatchEvent = function(eventName, e) {\n this._eventRegistry || (this._eventRegistry = {});\n this._defaultHandlers || (this._defaultHandlers = {});\n\n var listeners = this._eventRegistry[eventName] || [];\n var defaultHandler = this._defaultHandlers[eventName];\n if (!listeners.length && !defaultHandler)\n return;\n\n if (typeof e != \"object\" || !e)\n e = {};\n\n if (!e.type)\n e.type = eventName;\n if (!e.stopPropagation)\n e.stopPropagation = stopPropagation;\n if (!e.preventDefault)\n e.preventDefault = preventDefault;\n\n listeners = listeners.slice();\n for (var i=0; i this.row)\n return;\n \n var point = $getTransformedPoint(delta, {row: this.row, column: this.column}, this.$insertRight);\n this.setPosition(point.row, point.column, true);\n };\n \n function $pointsInOrder(point1, point2, equalPointsInOrder) {\n var bColIsAfter = equalPointsInOrder ? point1.column <= point2.column : point1.column < point2.column;\n return (point1.row < point2.row) || (point1.row == point2.row && bColIsAfter);\n }\n \n function $getTransformedPoint(delta, point, moveIfEqual) {\n var deltaIsInsert = delta.action == \"insert\";\n var deltaRowShift = (deltaIsInsert ? 1 : -1) * (delta.end.row - delta.start.row);\n var deltaColShift = (deltaIsInsert ? 1 : -1) * (delta.end.column - delta.start.column);\n var deltaStart = delta.start;\n var deltaEnd = deltaIsInsert ? deltaStart : delta.end; // Collapse insert range.\n if ($pointsInOrder(point, deltaStart, moveIfEqual)) {\n return {\n row: point.row,\n column: point.column\n };\n }\n if ($pointsInOrder(deltaEnd, point, !moveIfEqual)) {\n return {\n row: point.row + deltaRowShift,\n column: point.column + (point.row == deltaEnd.row ? deltaColShift : 0)\n };\n }\n \n return {\n row: deltaStart.row,\n column: deltaStart.column\n };\n }\n this.setPosition = function(row, column, noClip) {\n var pos;\n if (noClip) {\n pos = {\n row: row,\n column: column\n };\n } else {\n pos = this.$clipPositionToDocument(row, column);\n }\n\n if (this.row == pos.row && this.column == pos.column)\n return;\n\n var old = {\n row: this.row,\n column: this.column\n };\n\n this.row = pos.row;\n this.column = pos.column;\n this._signal(\"change\", {\n old: old,\n value: pos\n });\n };\n this.detach = function() {\n this.document.removeEventListener(\"change\", this.$onChange);\n };\n this.attach = function(doc) {\n this.document = doc || this.document;\n this.document.on(\"change\", this.$onChange);\n };\n this.$clipPositionToDocument = function(row, column) {\n var pos = {};\n\n if (row >= this.document.getLength()) {\n pos.row = Math.max(0, this.document.getLength() - 1);\n pos.column = this.document.getLine(pos.row).length;\n }\n else if (row < 0) {\n pos.row = 0;\n pos.column = 0;\n }\n else {\n pos.row = row;\n pos.column = Math.min(this.document.getLine(pos.row).length, Math.max(0, column));\n }\n\n if (column < 0)\n pos.column = 0;\n\n return pos;\n };\n\n}).call(Anchor.prototype);\n\n});\n\nace.define(\"ace/document\",[], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"./lib/oop\");\nvar applyDelta = require(\"./apply_delta\").applyDelta;\nvar EventEmitter = require(\"./lib/event_emitter\").EventEmitter;\nvar Range = require(\"./range\").Range;\nvar Anchor = require(\"./anchor\").Anchor;\n\nvar Document = function(textOrLines) {\n this.$lines = [\"\"];\n if (textOrLines.length === 0) {\n this.$lines = [\"\"];\n } else if (Array.isArray(textOrLines)) {\n this.insertMergedLines({row: 0, column: 0}, textOrLines);\n } else {\n this.insert({row: 0, column:0}, textOrLines);\n }\n};\n\n(function() {\n\n oop.implement(this, EventEmitter);\n this.setValue = function(text) {\n var len = this.getLength() - 1;\n this.remove(new Range(0, 0, len, this.getLine(len).length));\n this.insert({row: 0, column: 0}, text);\n };\n this.getValue = function() {\n return this.getAllLines().join(this.getNewLineCharacter());\n };\n this.createAnchor = function(row, column) {\n return new Anchor(this, row, column);\n };\n if (\"aaa\".split(/a/).length === 0) {\n this.$split = function(text) {\n return text.replace(/\\r\\n|\\r/g, \"\\n\").split(\"\\n\");\n };\n } else {\n this.$split = function(text) {\n return text.split(/\\r\\n|\\r|\\n/);\n };\n }\n\n\n this.$detectNewLine = function(text) {\n var match = text.match(/^.*?(\\r\\n|\\r|\\n)/m);\n this.$autoNewLine = match ? match[1] : \"\\n\";\n this._signal(\"changeNewLineMode\");\n };\n this.getNewLineCharacter = function() {\n switch (this.$newLineMode) {\n case \"windows\":\n return \"\\r\\n\";\n case \"unix\":\n return \"\\n\";\n default:\n return this.$autoNewLine || \"\\n\";\n }\n };\n\n this.$autoNewLine = \"\";\n this.$newLineMode = \"auto\";\n this.setNewLineMode = function(newLineMode) {\n if (this.$newLineMode === newLineMode)\n return;\n\n this.$newLineMode = newLineMode;\n this._signal(\"changeNewLineMode\");\n };\n this.getNewLineMode = function() {\n return this.$newLineMode;\n };\n this.isNewLine = function(text) {\n return (text == \"\\r\\n\" || text == \"\\r\" || text == \"\\n\");\n };\n this.getLine = function(row) {\n return this.$lines[row] || \"\";\n };\n this.getLines = function(firstRow, lastRow) {\n return this.$lines.slice(firstRow, lastRow + 1);\n };\n this.getAllLines = function() {\n return this.getLines(0, this.getLength());\n };\n this.getLength = function() {\n return this.$lines.length;\n };\n this.getTextRange = function(range) {\n return this.getLinesForRange(range).join(this.getNewLineCharacter());\n };\n this.getLinesForRange = function(range) {\n var lines;\n if (range.start.row === range.end.row) {\n lines = [this.getLine(range.start.row).substring(range.start.column, range.end.column)];\n } else {\n lines = this.getLines(range.start.row, range.end.row);\n lines[0] = (lines[0] || \"\").substring(range.start.column);\n var l = lines.length - 1;\n if (range.end.row - range.start.row == l)\n lines[l] = lines[l].substring(0, range.end.column);\n }\n return lines;\n };\n this.insertLines = function(row, lines) {\n console.warn(\"Use of document.insertLines is deprecated. Use the insertFullLines method instead.\");\n return this.insertFullLines(row, lines);\n };\n this.removeLines = function(firstRow, lastRow) {\n console.warn(\"Use of document.removeLines is deprecated. Use the removeFullLines method instead.\");\n return this.removeFullLines(firstRow, lastRow);\n };\n this.insertNewLine = function(position) {\n console.warn(\"Use of document.insertNewLine is deprecated. Use insertMergedLines(position, ['', '']) instead.\");\n return this.insertMergedLines(position, [\"\", \"\"]);\n };\n this.insert = function(position, text) {\n if (this.getLength() <= 1)\n this.$detectNewLine(text);\n \n return this.insertMergedLines(position, this.$split(text));\n };\n this.insertInLine = function(position, text) {\n var start = this.clippedPos(position.row, position.column);\n var end = this.pos(position.row, position.column + text.length);\n \n this.applyDelta({\n start: start,\n end: end,\n action: \"insert\",\n lines: [text]\n }, true);\n \n return this.clonePos(end);\n };\n \n this.clippedPos = function(row, column) {\n var length = this.getLength();\n if (row === undefined) {\n row = length;\n } else if (row < 0) {\n row = 0;\n } else if (row >= length) {\n row = length - 1;\n column = undefined;\n }\n var line = this.getLine(row);\n if (column == undefined)\n column = line.length;\n column = Math.min(Math.max(column, 0), line.length);\n return {row: row, column: column};\n };\n \n this.clonePos = function(pos) {\n return {row: pos.row, column: pos.column};\n };\n \n this.pos = function(row, column) {\n return {row: row, column: column};\n };\n \n this.$clipPosition = function(position) {\n var length = this.getLength();\n if (position.row >= length) {\n position.row = Math.max(0, length - 1);\n position.column = this.getLine(length - 1).length;\n } else {\n position.row = Math.max(0, position.row);\n position.column = Math.min(Math.max(position.column, 0), this.getLine(position.row).length);\n }\n return position;\n };\n this.insertFullLines = function(row, lines) {\n row = Math.min(Math.max(row, 0), this.getLength());\n var column = 0;\n if (row < this.getLength()) {\n lines = lines.concat([\"\"]);\n column = 0;\n } else {\n lines = [\"\"].concat(lines);\n row--;\n column = this.$lines[row].length;\n }\n this.insertMergedLines({row: row, column: column}, lines);\n }; \n this.insertMergedLines = function(position, lines) {\n var start = this.clippedPos(position.row, position.column);\n var end = {\n row: start.row + lines.length - 1,\n column: (lines.length == 1 ? start.column : 0) + lines[lines.length - 1].length\n };\n \n this.applyDelta({\n start: start,\n end: end,\n action: \"insert\",\n lines: lines\n });\n \n return this.clonePos(end);\n };\n this.remove = function(range) {\n var start = this.clippedPos(range.start.row, range.start.column);\n var end = this.clippedPos(range.end.row, range.end.column);\n this.applyDelta({\n start: start,\n end: end,\n action: \"remove\",\n lines: this.getLinesForRange({start: start, end: end})\n });\n return this.clonePos(start);\n };\n this.removeInLine = function(row, startColumn, endColumn) {\n var start = this.clippedPos(row, startColumn);\n var end = this.clippedPos(row, endColumn);\n \n this.applyDelta({\n start: start,\n end: end,\n action: \"remove\",\n lines: this.getLinesForRange({start: start, end: end})\n }, true);\n \n return this.clonePos(start);\n };\n this.removeFullLines = function(firstRow, lastRow) {\n firstRow = Math.min(Math.max(0, firstRow), this.getLength() - 1);\n lastRow = Math.min(Math.max(0, lastRow ), this.getLength() - 1);\n var deleteFirstNewLine = lastRow == this.getLength() - 1 && firstRow > 0;\n var deleteLastNewLine = lastRow < this.getLength() - 1;\n var startRow = ( deleteFirstNewLine ? firstRow - 1 : firstRow );\n var startCol = ( deleteFirstNewLine ? this.getLine(startRow).length : 0 );\n var endRow = ( deleteLastNewLine ? lastRow + 1 : lastRow );\n var endCol = ( deleteLastNewLine ? 0 : this.getLine(endRow).length ); \n var range = new Range(startRow, startCol, endRow, endCol);\n var deletedLines = this.$lines.slice(firstRow, lastRow + 1);\n \n this.applyDelta({\n start: range.start,\n end: range.end,\n action: \"remove\",\n lines: this.getLinesForRange(range)\n });\n return deletedLines;\n };\n this.removeNewLine = function(row) {\n if (row < this.getLength() - 1 && row >= 0) {\n this.applyDelta({\n start: this.pos(row, this.getLine(row).length),\n end: this.pos(row + 1, 0),\n action: \"remove\",\n lines: [\"\", \"\"]\n });\n }\n };\n this.replace = function(range, text) {\n if (!(range instanceof Range))\n range = Range.fromPoints(range.start, range.end);\n if (text.length === 0 && range.isEmpty())\n return range.start;\n if (text == this.getTextRange(range))\n return range.end;\n\n this.remove(range);\n var end;\n if (text) {\n end = this.insert(range.start, text);\n }\n else {\n end = range.start;\n }\n \n return end;\n };\n this.applyDeltas = function(deltas) {\n for (var i=0; i=0; i--) {\n this.revertDelta(deltas[i]);\n }\n };\n this.applyDelta = function(delta, doNotValidate) {\n var isInsert = delta.action == \"insert\";\n if (isInsert ? delta.lines.length <= 1 && !delta.lines[0]\n : !Range.comparePoints(delta.start, delta.end)) {\n return;\n }\n \n if (isInsert && delta.lines.length > 20000) {\n this.$splitAndapplyLargeDelta(delta, 20000);\n }\n else {\n applyDelta(this.$lines, delta, doNotValidate);\n this._signal(\"change\", delta);\n }\n };\n \n this.$splitAndapplyLargeDelta = function(delta, MAX) {\n var lines = delta.lines;\n var l = lines.length - MAX + 1;\n var row = delta.start.row; \n var column = delta.start.column;\n for (var from = 0, to = 0; from < l; from = to) {\n to += MAX - 1;\n var chunk = lines.slice(from, to);\n chunk.push(\"\");\n this.applyDelta({\n start: this.pos(row + from, column),\n end: this.pos(row + to, column = 0),\n action: delta.action,\n lines: chunk\n }, true);\n }\n delta.lines = lines.slice(from);\n delta.start.row = row + from;\n delta.start.column = column;\n this.applyDelta(delta, true);\n };\n this.revertDelta = function(delta) {\n this.applyDelta({\n start: this.clonePos(delta.start),\n end: this.clonePos(delta.end),\n action: (delta.action == \"insert\" ? \"remove\" : \"insert\"),\n lines: delta.lines.slice()\n });\n };\n this.indexToPosition = function(index, startRow) {\n var lines = this.$lines || this.getAllLines();\n var newlineLength = this.getNewLineCharacter().length;\n for (var i = startRow || 0, l = lines.length; i < l; i++) {\n index -= lines[i].length + newlineLength;\n if (index < 0)\n return {row: i, column: index + lines[i].length + newlineLength};\n }\n return {row: l-1, column: index + lines[l-1].length + newlineLength};\n };\n this.positionToIndex = function(pos, startRow) {\n var lines = this.$lines || this.getAllLines();\n var newlineLength = this.getNewLineCharacter().length;\n var index = 0;\n var row = Math.min(pos.row, lines.length);\n for (var i = startRow || 0; i < row; ++i)\n index += lines[i].length + newlineLength;\n\n return index + pos.column;\n };\n\n}).call(Document.prototype);\n\nexports.Document = Document;\n});\n\nace.define(\"ace/worker/mirror\",[], function(require, exports, module) {\n\"use strict\";\n\nvar Range = require(\"../range\").Range;\nvar Document = require(\"../document\").Document;\nvar lang = require(\"../lib/lang\");\n \nvar Mirror = exports.Mirror = function(sender) {\n this.sender = sender;\n var doc = this.doc = new Document(\"\");\n \n var deferredUpdate = this.deferredUpdate = lang.delayedCall(this.onUpdate.bind(this));\n \n var _self = this;\n sender.on(\"change\", function(e) {\n var data = e.data;\n if (data[0].start) {\n doc.applyDeltas(data);\n } else {\n for (var i = 0; i < data.length; i += 2) {\n if (Array.isArray(data[i+1])) {\n var d = {action: \"insert\", start: data[i], lines: data[i+1]};\n } else {\n var d = {action: \"remove\", start: data[i], end: data[i+1]};\n }\n doc.applyDelta(d, true);\n }\n }\n if (_self.$timeout)\n return deferredUpdate.schedule(_self.$timeout);\n _self.onUpdate();\n });\n};\n\n(function() {\n \n this.$timeout = 500;\n \n this.setTimeout = function(timeout) {\n this.$timeout = timeout;\n };\n \n this.setValue = function(value) {\n this.doc.setValue(value);\n this.deferredUpdate.schedule(this.$timeout);\n };\n \n this.getValue = function(callbackId) {\n this.sender.callback(this.doc.getValue(), callbackId);\n };\n \n this.onUpdate = function() {\n };\n \n this.isPending = function() {\n return this.deferredUpdate.isPending();\n };\n \n}).call(Mirror.prototype);\n\n});\n\nace.define(\"ace/mode/xml/sax\",[], function(require, exports, module) {\nvar nameStartChar = /[A-Z_a-z\\xC0-\\xD6\\xD8-\\xF6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD]///\\u10000-\\uEFFFF\nvar nameChar = new RegExp(\"[\\\\-\\\\.0-9\"+nameStartChar.source.slice(1,-1)+\"\\u00B7\\u0300-\\u036F\\\\ux203F-\\u2040]\");\nvar tagNamePattern = new RegExp('^'+nameStartChar.source+nameChar.source+'*(?:\\:'+nameStartChar.source+nameChar.source+'*)?$');\nvar S_TAG = 0;//tag name offerring\nvar S_ATTR = 1;//attr name offerring \nvar S_ATTR_S=2;//attr name end and space offer\nvar S_EQ = 3;//=space?\nvar S_V = 4;//attr value(no quot value only)\nvar S_E = 5;//attr value end and no space(quot end)\nvar S_S = 6;//(attr value end || tag end ) && (space offer)\nvar S_C = 7;//closed el\n\nfunction XMLReader(){\n\t\n}\n\nXMLReader.prototype = {\n\tparse:function(source,defaultNSMap,entityMap){\n\t\tvar domBuilder = this.domBuilder;\n\t\tdomBuilder.startDocument();\n\t\t_copy(defaultNSMap ,defaultNSMap = {})\n\t\tparse(source,defaultNSMap,entityMap,\n\t\t\t\tdomBuilder,this.errorHandler);\n\t\tdomBuilder.endDocument();\n\t}\n}\nfunction parse(source,defaultNSMapCopy,entityMap,domBuilder,errorHandler){\n function fixedFromCharCode(code) {\n\t\tif (code > 0xffff) {\n\t\t\tcode -= 0x10000;\n\t\t\tvar surrogate1 = 0xd800 + (code >> 10)\n\t\t\t\t, surrogate2 = 0xdc00 + (code & 0x3ff);\n\n\t\t\treturn String.fromCharCode(surrogate1, surrogate2);\n\t\t} else {\n\t\t\treturn String.fromCharCode(code);\n\t\t}\n\t}\n\tfunction entityReplacer(a){\n\t\tvar k = a.slice(1,-1);\n\t\tif(k in entityMap){\n\t\t\treturn entityMap[k]; \n\t\t}else if(k.charAt(0) === '#'){\n\t\t\treturn fixedFromCharCode(parseInt(k.substr(1).replace('x','0x')))\n\t\t}else{\n\t\t\terrorHandler.error('entity not found:'+a);\n\t\t\treturn a;\n\t\t}\n\t}\n\tfunction appendText(end){//has some bugs\n\t\tvar xt = source.substring(start,end).replace(/&#?\\w+;/g,entityReplacer);\n\t\tlocator&&position(start);\n\t\tdomBuilder.characters(xt,0,end-start);\n\t\tstart = end\n\t}\n\tfunction position(start,m){\n\t\twhile(start>=endPos && (m = linePattern.exec(source))){\n\t\t\tstartPos = m.index;\n\t\t\tendPos = startPos + m[0].length;\n\t\t\tlocator.lineNumber++;\n\t\t}\n\t\tlocator.columnNumber = start-startPos+1;\n\t}\n\tvar startPos = 0;\n\tvar endPos = 0;\n\tvar linePattern = /.+(?:\\r\\n?|\\n)|.*$/g\n\tvar locator = domBuilder.locator;\n\t\n\tvar parseStack = [{currentNSMap:defaultNSMapCopy}]\n\tvar closeMap = {};\n\tvar start = 0;\n\twhile(true){\n\t\tvar i = source.indexOf('<',start);\n\t\tif(i<0){\n\t\t\tif(!source.substr(start).match(/^\\s*$/)){\n\t\t\t\tvar doc = domBuilder.document;\n \t\t\tvar text = doc.createTextNode(source.substr(start));\n \t\t\tdoc.appendChild(text);\n \t\t\tdomBuilder.currentElement = text;\n\t\t\t}\n\t\t\treturn;\n\t\t}\n\t\tif(i>start){\n\t\t\tappendText(i);\n\t\t}\n\t\tswitch(source.charAt(i+1)){\n\t\tcase '/':\n\t\t\tvar end = source.indexOf('>',i+3);\n\t\t\tvar tagName = source.substring(i+2,end);\n\t\t\tvar config;\n\t\t\tif (parseStack.length > 1) {\n\t\t\t\tconfig = parseStack.pop();\n\t\t\t} else {\n\t\t\t\terrorHandler.fatalError(\"end tag name not found for: \"+tagName);\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tvar localNSMap = config.localNSMap;\n\t\t\t\n\t if(config.tagName != tagName){\n\t errorHandler.fatalError(\"end tag name: \" + tagName + \" does not match the current start tagName: \"+config.tagName );\n\t }\n\t\t\tdomBuilder.endElement(config.uri,config.localName,tagName);\n\t\t\tif(localNSMap){\n\t\t\t\tfor(var prefix in localNSMap){\n\t\t\t\t\tdomBuilder.endPrefixMapping(prefix) ;\n\t\t\t\t}\n\t\t\t}\n\t\t\tend++;\n\t\t\tbreak;\n\t\tcase '?':// \n\t\t\tlocator&&position(i);\n\t\t\tend = parseInstruction(source,i,domBuilder);\n\t\t\tbreak;\n\t\tcase '!':// 0){\n\t\t\t\t\tvalue = source.slice(start,p).replace(/&#?\\w+;/g,entityReplacer);\n\t\t\t\t\tel.add(attrName,value,start-1);\n\t\t\t\t\ts = S_E;\n\t\t\t\t}else{\n\t\t\t\t\tthrow new Error('attribute value no end \\''+c+'\\' match');\n\t\t\t\t}\n\t\t\t}else if(s == S_V){\n\t\t\t\tvalue = source.slice(start,p).replace(/&#?\\w+;/g,entityReplacer);\n\t\t\t\tel.add(attrName,value,start);\n\t\t\t\terrorHandler.warning('attribute \"'+attrName+'\" missed start quot('+c+')!!');\n\t\t\t\tstart = p+1;\n\t\t\t\ts = S_E\n\t\t\t}else{\n\t\t\t\tthrow new Error('attribute value must after \"=\"');\n\t\t\t}\n\t\t\tbreak;\n\t\tcase '/':\n\t\t\tswitch(s){\n\t\t\tcase S_TAG:\n\t\t\t\tel.setTagName(source.slice(start,p));\n\t\t\tcase S_E:\n\t\t\tcase S_S:\n\t\t\tcase S_C:\n\t\t\t\ts = S_C;\n\t\t\t\tel.closed = true;\n\t\t\tcase S_V:\n\t\t\tcase S_ATTR:\n\t\t\tcase S_ATTR_S:\n\t\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\tthrow new Error(\"attribute invalid close char('/')\")\n\t\t\t}\n\t\t\tbreak;\n\t\tcase ''://end document\n\t\t\terrorHandler.error('unexpected end of input');\n\t\tcase '>':\n\t\t\tswitch(s){\n\t\t\tcase S_TAG:\n\t\t\t\tel.setTagName(source.slice(start,p));\n\t\t\tcase S_E:\n\t\t\tcase S_S:\n\t\t\tcase S_C:\n\t\t\t\tbreak;//normal\n\t\t\tcase S_V://Compatible state\n\t\t\tcase S_ATTR:\n\t\t\t\tvalue = source.slice(start,p);\n\t\t\t\tif(value.slice(-1) === '/'){\n\t\t\t\t\tel.closed = true;\n\t\t\t\t\tvalue = value.slice(0,-1)\n\t\t\t\t}\n\t\t\tcase S_ATTR_S:\n\t\t\t\tif(s === S_ATTR_S){\n\t\t\t\t\tvalue = attrName;\n\t\t\t\t}\n\t\t\t\tif(s == S_V){\n\t\t\t\t\terrorHandler.warning('attribute \"'+value+'\" missed quot(\")!!');\n\t\t\t\t\tel.add(attrName,value.replace(/&#?\\w+;/g,entityReplacer),start)\n\t\t\t\t}else{\n\t\t\t\t\terrorHandler.warning('attribute \"'+value+'\" missed value!! \"'+value+'\" instead!!')\n\t\t\t\t\tel.add(value,value,start)\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\tcase S_EQ:\n\t\t\t\tthrow new Error('attribute value missed!!');\n\t\t\t}\n\t\t\treturn p;\n\t\tcase '\\u0080':\n\t\t\tc = ' ';\n\t\tdefault:\n\t\t\tif(c<= ' '){//space\n\t\t\t\tswitch(s){\n\t\t\t\tcase S_TAG:\n\t\t\t\t\tel.setTagName(source.slice(start,p));//tagName\n\t\t\t\t\ts = S_S;\n\t\t\t\t\tbreak;\n\t\t\t\tcase S_ATTR:\n\t\t\t\t\tattrName = source.slice(start,p)\n\t\t\t\t\ts = S_ATTR_S;\n\t\t\t\t\tbreak;\n\t\t\t\tcase S_V:\n\t\t\t\t\tvar value = source.slice(start,p).replace(/&#?\\w+;/g,entityReplacer);\n\t\t\t\t\terrorHandler.warning('attribute \"'+value+'\" missed quot(\")!!');\n\t\t\t\t\tel.add(attrName,value,start)\n\t\t\t\tcase S_E:\n\t\t\t\t\ts = S_S;\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}else{//not space\n\t\t\t\tswitch(s){\n\t\t\t\tcase S_ATTR_S:\n\t\t\t\t\terrorHandler.warning('attribute \"'+attrName+'\" missed value!! \"'+attrName+'\" instead!!')\n\t\t\t\t\tel.add(attrName,attrName,start);\n\t\t\t\t\tstart = p;\n\t\t\t\t\ts = S_ATTR;\n\t\t\t\t\tbreak;\n\t\t\t\tcase S_E:\n\t\t\t\t\terrorHandler.warning('attribute space is required\"'+attrName+'\"!!')\n\t\t\t\tcase S_S:\n\t\t\t\t\ts = S_ATTR;\n\t\t\t\t\tstart = p;\n\t\t\t\t\tbreak;\n\t\t\t\tcase S_EQ:\n\t\t\t\t\ts = S_V;\n\t\t\t\t\tstart = p;\n\t\t\t\t\tbreak;\n\t\t\t\tcase S_C:\n\t\t\t\t\tthrow new Error(\"elements closed character '/' and '>' must be connected to\");\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tp++;\n\t}\n}\nfunction appendElement(el,domBuilder,parseStack){\n\tvar tagName = el.tagName;\n\tvar localNSMap = null;\n\tvar currentNSMap = parseStack[parseStack.length-1].currentNSMap;\n\tvar i = el.length;\n\twhile(i--){\n\t\tvar a = el[i];\n\t\tvar qName = a.qName;\n\t\tvar value = a.value;\n\t\tvar nsp = qName.indexOf(':');\n\t\tif(nsp>0){\n\t\t\tvar prefix = a.prefix = qName.slice(0,nsp);\n\t\t\tvar localName = qName.slice(nsp+1);\n\t\t\tvar nsPrefix = prefix === 'xmlns' && localName\n\t\t}else{\n\t\t\tlocalName = qName;\n\t\t\tprefix = null\n\t\t\tnsPrefix = qName === 'xmlns' && ''\n\t\t}\n\t\ta.localName = localName ;\n\t\tif(nsPrefix !== false){//hack!!\n\t\t\tif(localNSMap == null){\n\t\t\t\tlocalNSMap = {}\n\t\t\t\t_copy(currentNSMap,currentNSMap={})\n\t\t\t}\n\t\t\tcurrentNSMap[nsPrefix] = localNSMap[nsPrefix] = value;\n\t\t\ta.uri = 'http://www.w3.org/2000/xmlns/'\n\t\t\tdomBuilder.startPrefixMapping(nsPrefix, value) \n\t\t}\n\t}\n\tvar i = el.length;\n\twhile(i--){\n\t\ta = el[i];\n\t\tvar prefix = a.prefix;\n\t\tif(prefix){//no prefix attribute has no namespace\n\t\t\tif(prefix === 'xml'){\n\t\t\t\ta.uri = 'http://www.w3.org/XML/1998/namespace';\n\t\t\t}if(prefix !== 'xmlns'){\n\t\t\t\ta.uri = currentNSMap[prefix]\n\t\t\t}\n\t\t}\n\t}\n\tvar nsp = tagName.indexOf(':');\n\tif(nsp>0){\n\t\tprefix = el.prefix = tagName.slice(0,nsp);\n\t\tlocalName = el.localName = tagName.slice(nsp+1);\n\t}else{\n\t\tprefix = null;//important!!\n\t\tlocalName = el.localName = tagName;\n\t}\n\tvar ns = el.uri = currentNSMap[prefix || ''];\n\tdomBuilder.startElement(ns,localName,tagName,el);\n\tif(el.closed){\n\t\tdomBuilder.endElement(ns,localName,tagName);\n\t\tif(localNSMap){\n\t\t\tfor(prefix in localNSMap){\n\t\t\t\tdomBuilder.endPrefixMapping(prefix) \n\t\t\t}\n\t\t}\n\t}else{\n\t\tel.currentNSMap = currentNSMap;\n\t\tel.localNSMap = localNSMap;\n\t\tparseStack.push(el);\n\t}\n}\nfunction parseHtmlSpecialContent(source,elStartEnd,tagName,entityReplacer,domBuilder){\n\tif(/^(?:script|textarea)$/i.test(tagName)){\n\t\tvar elEndStart = source.indexOf('',elStartEnd);\n\t\tvar text = source.substring(elStartEnd+1,elEndStart);\n\t\tif(/[&<]/.test(text)){\n\t\t\tif(/^script$/i.test(tagName)){\n\t\t\t\t\tdomBuilder.characters(text,0,text.length);\n\t\t\t\t\treturn elEndStart;\n\t\t\t}//}else{//text area\n\t\t\t\ttext = text.replace(/&#?\\w+;/g,entityReplacer);\n\t\t\t\tdomBuilder.characters(text,0,text.length);\n\t\t\t\treturn elEndStart;\n\t\t\t\n\t\t}\n\t}\n\treturn elStartEnd+1;\n}\nfunction fixSelfClosed(source,elStartEnd,tagName,closeMap){\n\tvar pos = closeMap[tagName];\n\tif(pos == null){\n\t\tpos = closeMap[tagName] = source.lastIndexOf('')\n\t}\n\treturn pos',start+4);\n\t\t\tif(end>start){\n\t\t\t\tdomBuilder.comment(source,start+4,end-start-4);\n\t\t\t\treturn end+3;\n\t\t\t}else{\n\t\t\t\terrorHandler.error(\"Unclosed comment\");\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}else{\n\t\t\treturn -1;\n\t\t}\n\tdefault:\n\t\tif(source.substr(start+3,6) == 'CDATA['){\n\t\t\tvar end = source.indexOf(']]>',start+9);\n\t\t\tdomBuilder.startCDATA();\n\t\t\tdomBuilder.characters(source,start+9,end-start-9);\n\t\t\tdomBuilder.endCDATA() \n\t\t\treturn end+3;\n\t\t}\n\t\tvar matchs = split(source,start);\n\t\tvar len = matchs.length;\n\t\tif(len>1 && /!doctype/i.test(matchs[0][0])){\n\t\t\tvar name = matchs[1][0];\n\t\t\tvar pubid = len>3 && /^public$/i.test(matchs[2][0]) && matchs[3][0]\n\t\t\tvar sysid = len>4 && matchs[4][0];\n\t\t\tvar lastMatch = matchs[len-1]\n\t\t\tdomBuilder.startDTD(name,pubid && pubid.replace(/^(['\"])(.*?)\\1$/,'$2'),\n\t\t\t\t\tsysid && sysid.replace(/^(['\"])(.*?)\\1$/,'$2'));\n\t\t\tdomBuilder.endDTD();\n\t\t\t\n\t\t\treturn lastMatch.index+lastMatch[0].length\n\t\t}\n\t}\n\treturn -1;\n}\n\n\n\nfunction parseInstruction(source,start,domBuilder){\n\tvar end = source.indexOf('?>',start);\n\tif(end){\n\t\tvar match = source.substring(start,end).match(/^<\\?(\\S*)\\s*([\\s\\S]*?)\\s*$/);\n\t\tif(match){\n\t\t\tvar len = match[0].length;\n\t\t\tdomBuilder.processingInstruction(match[1], match[2]) ;\n\t\t\treturn end+2;\n\t\t}else{//error\n\t\t\treturn -1;\n\t\t}\n\t}\n\treturn -1;\n}\nfunction ElementAttributes(source){\n\t\n}\nElementAttributes.prototype = {\n\tsetTagName:function(tagName){\n\t\tif(!tagNamePattern.test(tagName)){\n\t\t\tthrow new Error('invalid tagName:'+tagName)\n\t\t}\n\t\tthis.tagName = tagName\n\t},\n\tadd:function(qName,value,offset){\n\t\tif(!tagNamePattern.test(qName)){\n\t\t\tthrow new Error('invalid attribute:'+qName)\n\t\t}\n\t\tthis[this.length++] = {qName:qName,value:value,offset:offset}\n\t},\n\tlength:0,\n\tgetLocalName:function(i){return this[i].localName},\n\tgetOffset:function(i){return this[i].offset},\n\tgetQName:function(i){return this[i].qName},\n\tgetURI:function(i){return this[i].uri},\n\tgetValue:function(i){return this[i].value}\n}\n\n\n\n\nfunction _set_proto_(thiz,parent){\n\tthiz.__proto__ = parent;\n\treturn thiz;\n}\nif(!(_set_proto_({},_set_proto_.prototype) instanceof _set_proto_)){\n\t_set_proto_ = function(thiz,parent){\n\t\tfunction p(){};\n\t\tp.prototype = parent;\n\t\tp = new p();\n\t\tfor(parent in thiz){\n\t\t\tp[parent] = thiz[parent];\n\t\t}\n\t\treturn p;\n\t}\n}\n\nfunction split(source,start){\n\tvar match;\n\tvar buf = [];\n\tvar reg = /'[^']+'|\"[^\"]+\"|[^\\s<>\\/=]+=?|(\\/?\\s*>|<)/g;\n\treg.lastIndex = start;\n\treg.exec(source);//skip <\n\twhile(match = reg.exec(source)){\n\t\tbuf.push(match);\n\t\tif(match[1])return buf;\n\t}\n}\n\nreturn XMLReader;\n});\n\nace.define(\"ace/mode/xml/dom\",[], function(require, exports, module) {\n\nfunction copy(src,dest){\n\tfor(var p in src){\n\t\tdest[p] = src[p];\n\t}\n}\nfunction _extends(Class,Super){\n\tvar t = function(){};\n\tvar pt = Class.prototype;\n\tif(Object.create){\n\t\tvar ppt = Object.create(Super.prototype);\n\t\tpt.__proto__ = ppt;\n\t}\n\tif(!(pt instanceof Super)){\n\t\tt.prototype = Super.prototype;\n\t\tt = new t();\n\t\tcopy(pt,t);\n\t\tClass.prototype = pt = t;\n\t}\n\tif(pt.constructor != Class){\n\t\tif(typeof Class != 'function'){\n\t\t\tconsole.error(\"unknown Class:\"+Class);\n\t\t}\n\t\tpt.constructor = Class;\n\t}\n}\nvar htmlns = 'http://www.w3.org/1999/xhtml' ;\nvar NodeType = {};\nvar ELEMENT_NODE = NodeType.ELEMENT_NODE = 1;\nvar ATTRIBUTE_NODE = NodeType.ATTRIBUTE_NODE = 2;\nvar TEXT_NODE = NodeType.TEXT_NODE = 3;\nvar CDATA_SECTION_NODE = NodeType.CDATA_SECTION_NODE = 4;\nvar ENTITY_REFERENCE_NODE = NodeType.ENTITY_REFERENCE_NODE = 5;\nvar ENTITY_NODE = NodeType.ENTITY_NODE = 6;\nvar PROCESSING_INSTRUCTION_NODE = NodeType.PROCESSING_INSTRUCTION_NODE = 7;\nvar COMMENT_NODE = NodeType.COMMENT_NODE = 8;\nvar DOCUMENT_NODE = NodeType.DOCUMENT_NODE = 9;\nvar DOCUMENT_TYPE_NODE = NodeType.DOCUMENT_TYPE_NODE = 10;\nvar DOCUMENT_FRAGMENT_NODE = NodeType.DOCUMENT_FRAGMENT_NODE = 11;\nvar NOTATION_NODE = NodeType.NOTATION_NODE = 12;\nvar ExceptionCode = {};\nvar ExceptionMessage = {};\nvar INDEX_SIZE_ERR = ExceptionCode.INDEX_SIZE_ERR = ((ExceptionMessage[1]=\"Index size error\"),1);\nvar DOMSTRING_SIZE_ERR = ExceptionCode.DOMSTRING_SIZE_ERR = ((ExceptionMessage[2]=\"DOMString size error\"),2);\nvar HIERARCHY_REQUEST_ERR = ExceptionCode.HIERARCHY_REQUEST_ERR = ((ExceptionMessage[3]=\"Hierarchy request error\"),3);\nvar WRONG_DOCUMENT_ERR = ExceptionCode.WRONG_DOCUMENT_ERR = ((ExceptionMessage[4]=\"Wrong document\"),4);\nvar INVALID_CHARACTER_ERR = ExceptionCode.INVALID_CHARACTER_ERR = ((ExceptionMessage[5]=\"Invalid character\"),5);\nvar NO_DATA_ALLOWED_ERR = ExceptionCode.NO_DATA_ALLOWED_ERR = ((ExceptionMessage[6]=\"No data allowed\"),6);\nvar NO_MODIFICATION_ALLOWED_ERR = ExceptionCode.NO_MODIFICATION_ALLOWED_ERR = ((ExceptionMessage[7]=\"No modification allowed\"),7);\nvar NOT_FOUND_ERR = ExceptionCode.NOT_FOUND_ERR = ((ExceptionMessage[8]=\"Not found\"),8);\nvar NOT_SUPPORTED_ERR = ExceptionCode.NOT_SUPPORTED_ERR = ((ExceptionMessage[9]=\"Not supported\"),9);\nvar INUSE_ATTRIBUTE_ERR = ExceptionCode.INUSE_ATTRIBUTE_ERR = ((ExceptionMessage[10]=\"Attribute in use\"),10);\nvar INVALID_STATE_ERR \t= ExceptionCode.INVALID_STATE_ERR \t= ((ExceptionMessage[11]=\"Invalid state\"),11);\nvar SYNTAX_ERR \t= ExceptionCode.SYNTAX_ERR \t= ((ExceptionMessage[12]=\"Syntax error\"),12);\nvar INVALID_MODIFICATION_ERR \t= ExceptionCode.INVALID_MODIFICATION_ERR \t= ((ExceptionMessage[13]=\"Invalid modification\"),13);\nvar NAMESPACE_ERR \t= ExceptionCode.NAMESPACE_ERR \t= ((ExceptionMessage[14]=\"Invalid namespace\"),14);\nvar INVALID_ACCESS_ERR \t= ExceptionCode.INVALID_ACCESS_ERR \t= ((ExceptionMessage[15]=\"Invalid access\"),15);\n\n\nfunction DOMException(code, message) {\n\tif(message instanceof Error){\n\t\tvar error = message;\n\t}else{\n\t\terror = this;\n\t\tError.call(this, ExceptionMessage[code]);\n\t\tthis.message = ExceptionMessage[code];\n\t\tif(Error.captureStackTrace) Error.captureStackTrace(this, DOMException);\n\t}\n\terror.code = code;\n\tif(message) this.message = this.message + \": \" + message;\n\treturn error;\n};\nDOMException.prototype = Error.prototype;\ncopy(ExceptionCode,DOMException)\nfunction NodeList() {\n};\nNodeList.prototype = {\n\tlength:0,\n\titem: function(index) {\n\t\treturn this[index] || null;\n\t}\n};\nfunction LiveNodeList(node,refresh){\n\tthis._node = node;\n\tthis._refresh = refresh;\n\t_updateLiveList(this);\n}\nfunction _updateLiveList(list){\n\tvar inc = list._node._inc || list._node.ownerDocument._inc;\n\tif(list._inc != inc){\n\t\tvar ls = list._refresh(list._node);\n\t\t__set__(list,'length',ls.length);\n\t\tcopy(ls,list);\n\t\tlist._inc = inc;\n\t}\n}\nLiveNodeList.prototype.item = function(i){\n\t_updateLiveList(this);\n\treturn this[i];\n}\n\n_extends(LiveNodeList,NodeList);\nfunction NamedNodeMap() {\n};\n\nfunction _findNodeIndex(list,node){\n\tvar i = list.length;\n\twhile(i--){\n\t\tif(list[i] === node){return i}\n\t}\n}\n\nfunction _addNamedNode(el,list,newAttr,oldAttr){\n\tif(oldAttr){\n\t\tlist[_findNodeIndex(list,oldAttr)] = newAttr;\n\t}else{\n\t\tlist[list.length++] = newAttr;\n\t}\n\tif(el){\n\t\tnewAttr.ownerElement = el;\n\t\tvar doc = el.ownerDocument;\n\t\tif(doc){\n\t\t\toldAttr && _onRemoveAttribute(doc,el,oldAttr);\n\t\t\t_onAddAttribute(doc,el,newAttr);\n\t\t}\n\t}\n}\nfunction _removeNamedNode(el,list,attr){\n\tvar i = _findNodeIndex(list,attr);\n\tif(i>=0){\n\t\tvar lastIndex = list.length-1;\n\t\twhile(i0;\n },\n lookupPrefix:function(namespaceURI){\n \tvar el = this;\n \twhile(el){\n \t\tvar map = el._nsMap;\n \t\tif(map){\n \t\t\tfor(var n in map){\n \t\t\t\tif(map[n] == namespaceURI){\n \t\t\t\t\treturn n;\n \t\t\t\t}\n \t\t\t}\n \t\t}\n \t\tel = el.nodeType == 2?el.ownerDocument : el.parentNode;\n \t}\n \treturn null;\n },\n lookupNamespaceURI:function(prefix){\n \tvar el = this;\n \twhile(el){\n \t\tvar map = el._nsMap;\n \t\tif(map){\n \t\t\tif(prefix in map){\n \t\t\t\treturn map[prefix] ;\n \t\t\t}\n \t\t}\n \t\tel = el.nodeType == 2?el.ownerDocument : el.parentNode;\n \t}\n \treturn null;\n },\n isDefaultNamespace:function(namespaceURI){\n \tvar prefix = this.lookupPrefix(namespaceURI);\n \treturn prefix == null;\n }\n};\n\n\nfunction _xmlEncoder(c){\n\treturn c == '<' && '<' ||\n c == '>' && '>' ||\n c == '&' && '&' ||\n c == '\"' && '"' ||\n '&#'+c.charCodeAt()+';';\n}\n\n\ncopy(NodeType,Node);\ncopy(NodeType,Node.prototype);\nfunction _visitNode(node,callback){\n\tif(callback(node)){\n\t\treturn true;\n\t}\n\tif(node = node.firstChild){\n\t\tdo{\n\t\t\tif(_visitNode(node,callback)){return true}\n }while(node=node.nextSibling)\n }\n}\n\n\n\nfunction Document(){\n}\nfunction _onAddAttribute(doc,el,newAttr){\n\tdoc && doc._inc++;\n\tvar ns = newAttr.namespaceURI ;\n\tif(ns == 'http://www.w3.org/2000/xmlns/'){\n\t\tel._nsMap[newAttr.prefix?newAttr.localName:''] = newAttr.value\n\t}\n}\nfunction _onRemoveAttribute(doc,el,newAttr,remove){\n\tdoc && doc._inc++;\n\tvar ns = newAttr.namespaceURI ;\n\tif(ns == 'http://www.w3.org/2000/xmlns/'){\n\t\tdelete el._nsMap[newAttr.prefix?newAttr.localName:''];\n\t}\n}\nfunction _onUpdateChild(doc,el,newChild){\n\tif(doc && doc._inc){\n\t\tdoc._inc++;\n\t\tvar cs = el.childNodes;\n\t\tif(newChild){\n\t\t\tcs[cs.length++] = newChild;\n\t\t}else{\n\t\t\tvar child = el.firstChild;\n\t\t\tvar i = 0;\n\t\t\twhile(child){\n\t\t\t\tcs[i++] = child;\n\t\t\t\tchild =child.nextSibling;\n\t\t\t}\n\t\t\tcs.length = i;\n\t\t}\n\t}\n}\nfunction _removeChild(parentNode,child){\n\tvar previous = child.previousSibling;\n\tvar next = child.nextSibling;\n\tif(previous){\n\t\tprevious.nextSibling = next;\n\t}else{\n\t\tparentNode.firstChild = next\n\t}\n\tif(next){\n\t\tnext.previousSibling = previous;\n\t}else{\n\t\tparentNode.lastChild = previous;\n\t}\n\t_onUpdateChild(parentNode.ownerDocument,parentNode);\n\treturn child;\n}\nfunction _insertBefore(parentNode,newChild,nextChild){\n\tvar cp = newChild.parentNode;\n\tif(cp){\n\t\tcp.removeChild(newChild);//remove and update\n\t}\n\tif(newChild.nodeType === DOCUMENT_FRAGMENT_NODE){\n\t\tvar newFirst = newChild.firstChild;\n\t\tif (newFirst == null) {\n\t\t\treturn newChild;\n\t\t}\n\t\tvar newLast = newChild.lastChild;\n\t}else{\n\t\tnewFirst = newLast = newChild;\n\t}\n\tvar pre = nextChild ? nextChild.previousSibling : parentNode.lastChild;\n\n\tnewFirst.previousSibling = pre;\n\tnewLast.nextSibling = nextChild;\n\n\n\tif(pre){\n\t\tpre.nextSibling = newFirst;\n\t}else{\n\t\tparentNode.firstChild = newFirst;\n\t}\n\tif(nextChild == null){\n\t\tparentNode.lastChild = newLast;\n\t}else{\n\t\tnextChild.previousSibling = newLast;\n\t}\n\tdo{\n\t\tnewFirst.parentNode = parentNode;\n\t}while(newFirst !== newLast && (newFirst= newFirst.nextSibling))\n\t_onUpdateChild(parentNode.ownerDocument||parentNode,parentNode);\n\tif (newChild.nodeType == DOCUMENT_FRAGMENT_NODE) {\n\t\tnewChild.firstChild = newChild.lastChild = null;\n\t}\n\treturn newChild;\n}\nfunction _appendSingleChild(parentNode,newChild){\n\tvar cp = newChild.parentNode;\n\tif(cp){\n\t\tvar pre = parentNode.lastChild;\n\t\tcp.removeChild(newChild);//remove and update\n\t\tvar pre = parentNode.lastChild;\n\t}\n\tvar pre = parentNode.lastChild;\n\tnewChild.parentNode = parentNode;\n\tnewChild.previousSibling = pre;\n\tnewChild.nextSibling = null;\n\tif(pre){\n\t\tpre.nextSibling = newChild;\n\t}else{\n\t\tparentNode.firstChild = newChild;\n\t}\n\tparentNode.lastChild = newChild;\n\t_onUpdateChild(parentNode.ownerDocument,parentNode,newChild);\n\treturn newChild;\n}\nDocument.prototype = {\n\tnodeName : '#document',\n\tnodeType : DOCUMENT_NODE,\n\tdoctype : null,\n\tdocumentElement : null,\n\t_inc : 1,\n\n\tinsertBefore : function(newChild, refChild){//raises\n\t\tif(newChild.nodeType == DOCUMENT_FRAGMENT_NODE){\n\t\t\tvar child = newChild.firstChild;\n\t\t\twhile(child){\n\t\t\t\tvar next = child.nextSibling;\n\t\t\t\tthis.insertBefore(child,refChild);\n\t\t\t\tchild = next;\n\t\t\t}\n\t\t\treturn newChild;\n\t\t}\n\t\tif(this.documentElement == null && newChild.nodeType == 1){\n\t\t\tthis.documentElement = newChild;\n\t\t}\n\n\t\treturn _insertBefore(this,newChild,refChild),(newChild.ownerDocument = this),newChild;\n\t},\n\tremoveChild : function(oldChild){\n\t\tif(this.documentElement == oldChild){\n\t\t\tthis.documentElement = null;\n\t\t}\n\t\treturn _removeChild(this,oldChild);\n\t},\n\timportNode : function(importedNode,deep){\n\t\treturn importNode(this,importedNode,deep);\n\t},\n\tgetElementById :\tfunction(id){\n\t\tvar rtv = null;\n\t\t_visitNode(this.documentElement,function(node){\n\t\t\tif(node.nodeType == 1){\n\t\t\t\tif(node.getAttribute('id') == id){\n\t\t\t\t\trtv = node;\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t\treturn rtv;\n\t},\n\tcreateElement :\tfunction(tagName){\n\t\tvar node = new Element();\n\t\tnode.ownerDocument = this;\n\t\tnode.nodeName = tagName;\n\t\tnode.tagName = tagName;\n\t\tnode.childNodes = new NodeList();\n\t\tvar attrs\t= node.attributes = new NamedNodeMap();\n\t\tattrs._ownerElement = node;\n\t\treturn node;\n\t},\n\tcreateDocumentFragment :\tfunction(){\n\t\tvar node = new DocumentFragment();\n\t\tnode.ownerDocument = this;\n\t\tnode.childNodes = new NodeList();\n\t\treturn node;\n\t},\n\tcreateTextNode :\tfunction(data){\n\t\tvar node = new Text();\n\t\tnode.ownerDocument = this;\n\t\tnode.appendData(data);\n\t\treturn node;\n\t},\n\tcreateComment :\tfunction(data){\n\t\tvar node = new Comment();\n\t\tnode.ownerDocument = this;\n\t\tnode.appendData(data);\n\t\treturn node;\n\t},\n\tcreateCDATASection :\tfunction(data){\n\t\tvar node = new CDATASection();\n\t\tnode.ownerDocument = this;\n\t\tnode.appendData(data);\n\t\treturn node;\n\t},\n\tcreateProcessingInstruction :\tfunction(target,data){\n\t\tvar node = new ProcessingInstruction();\n\t\tnode.ownerDocument = this;\n\t\tnode.tagName = node.target = target;\n\t\tnode.nodeValue= node.data = data;\n\t\treturn node;\n\t},\n\tcreateAttribute :\tfunction(name){\n\t\tvar node = new Attr();\n\t\tnode.ownerDocument\t= this;\n\t\tnode.name = name;\n\t\tnode.nodeName\t= name;\n\t\tnode.localName = name;\n\t\tnode.specified = true;\n\t\treturn node;\n\t},\n\tcreateEntityReference :\tfunction(name){\n\t\tvar node = new EntityReference();\n\t\tnode.ownerDocument\t= this;\n\t\tnode.nodeName\t= name;\n\t\treturn node;\n\t},\n\tcreateElementNS :\tfunction(namespaceURI,qualifiedName){\n\t\tvar node = new Element();\n\t\tvar pl = qualifiedName.split(':');\n\t\tvar attrs\t= node.attributes = new NamedNodeMap();\n\t\tnode.childNodes = new NodeList();\n\t\tnode.ownerDocument = this;\n\t\tnode.nodeName = qualifiedName;\n\t\tnode.tagName = qualifiedName;\n\t\tnode.namespaceURI = namespaceURI;\n\t\tif(pl.length == 2){\n\t\t\tnode.prefix = pl[0];\n\t\t\tnode.localName = pl[1];\n\t\t}else{\n\t\t\tnode.localName = qualifiedName;\n\t\t}\n\t\tattrs._ownerElement = node;\n\t\treturn node;\n\t},\n\tcreateAttributeNS :\tfunction(namespaceURI,qualifiedName){\n\t\tvar node = new Attr();\n\t\tvar pl = qualifiedName.split(':');\n\t\tnode.ownerDocument = this;\n\t\tnode.nodeName = qualifiedName;\n\t\tnode.name = qualifiedName;\n\t\tnode.namespaceURI = namespaceURI;\n\t\tnode.specified = true;\n\t\tif(pl.length == 2){\n\t\t\tnode.prefix = pl[0];\n\t\t\tnode.localName = pl[1];\n\t\t}else{\n\t\t\tnode.localName = qualifiedName;\n\t\t}\n\t\treturn node;\n\t}\n};\n_extends(Document,Node);\n\n\nfunction Element() {\n\tthis._nsMap = {};\n};\nElement.prototype = {\n\tnodeType : ELEMENT_NODE,\n\thasAttribute : function(name){\n\t\treturn this.getAttributeNode(name)!=null;\n\t},\n\tgetAttribute : function(name){\n\t\tvar attr = this.getAttributeNode(name);\n\t\treturn attr && attr.value || '';\n\t},\n\tgetAttributeNode : function(name){\n\t\treturn this.attributes.getNamedItem(name);\n\t},\n\tsetAttribute : function(name, value){\n\t\tvar attr = this.ownerDocument.createAttribute(name);\n\t\tattr.value = attr.nodeValue = \"\" + value;\n\t\tthis.setAttributeNode(attr);\n\t},\n\tremoveAttribute : function(name){\n\t\tvar attr = this.getAttributeNode(name);\n\t\tattr && this.removeAttributeNode(attr);\n\t},\n\tappendChild:function(newChild){\n\t\tif(newChild.nodeType === DOCUMENT_FRAGMENT_NODE){\n\t\t\treturn this.insertBefore(newChild,null);\n\t\t}else{\n\t\t\treturn _appendSingleChild(this,newChild);\n\t\t}\n\t},\n\tsetAttributeNode : function(newAttr){\n\t\treturn this.attributes.setNamedItem(newAttr);\n\t},\n\tsetAttributeNodeNS : function(newAttr){\n\t\treturn this.attributes.setNamedItemNS(newAttr);\n\t},\n\tremoveAttributeNode : function(oldAttr){\n\t\treturn this.attributes.removeNamedItem(oldAttr.nodeName);\n\t},\n\tremoveAttributeNS : function(namespaceURI, localName){\n\t\tvar old = this.getAttributeNodeNS(namespaceURI, localName);\n\t\told && this.removeAttributeNode(old);\n\t},\n\n\thasAttributeNS : function(namespaceURI, localName){\n\t\treturn this.getAttributeNodeNS(namespaceURI, localName)!=null;\n\t},\n\tgetAttributeNS : function(namespaceURI, localName){\n\t\tvar attr = this.getAttributeNodeNS(namespaceURI, localName);\n\t\treturn attr && attr.value || '';\n\t},\n\tsetAttributeNS : function(namespaceURI, qualifiedName, value){\n\t\tvar attr = this.ownerDocument.createAttributeNS(namespaceURI, qualifiedName);\n\t\tattr.value = attr.nodeValue = \"\" + value;\n\t\tthis.setAttributeNode(attr);\n\t},\n\tgetAttributeNodeNS : function(namespaceURI, localName){\n\t\treturn this.attributes.getNamedItemNS(namespaceURI, localName);\n\t},\n\n\tgetElementsByTagName : function(tagName){\n\t\treturn new LiveNodeList(this,function(base){\n\t\t\tvar ls = [];\n\t\t\t_visitNode(base,function(node){\n\t\t\t\tif(node !== base && node.nodeType == ELEMENT_NODE && (tagName === '*' || node.tagName == tagName)){\n\t\t\t\t\tls.push(node);\n\t\t\t\t}\n\t\t\t});\n\t\t\treturn ls;\n\t\t});\n\t},\n\tgetElementsByTagNameNS : function(namespaceURI, localName){\n\t\treturn new LiveNodeList(this,function(base){\n\t\t\tvar ls = [];\n\t\t\t_visitNode(base,function(node){\n\t\t\t\tif(node !== base && node.nodeType === ELEMENT_NODE && (namespaceURI === '*' || node.namespaceURI === namespaceURI) && (localName === '*' || node.localName == localName)){\n\t\t\t\t\tls.push(node);\n\t\t\t\t}\n\t\t\t});\n\t\t\treturn ls;\n\t\t});\n\t}\n};\nDocument.prototype.getElementsByTagName = Element.prototype.getElementsByTagName;\nDocument.prototype.getElementsByTagNameNS = Element.prototype.getElementsByTagNameNS;\n\n\n_extends(Element,Node);\nfunction Attr() {\n};\nAttr.prototype.nodeType = ATTRIBUTE_NODE;\n_extends(Attr,Node);\n\n\nfunction CharacterData() {\n};\nCharacterData.prototype = {\n\tdata : '',\n\tsubstringData : function(offset, count) {\n\t\treturn this.data.substring(offset, offset+count);\n\t},\n\tappendData: function(text) {\n\t\ttext = this.data+text;\n\t\tthis.nodeValue = this.data = text;\n\t\tthis.length = text.length;\n\t},\n\tinsertData: function(offset,text) {\n\t\tthis.replaceData(offset,0,text);\n\t},\n\tappendChild:function(newChild){\n\t\t\tthrow new Error(ExceptionMessage[3]);\n\t\treturn Node.prototype.appendChild.apply(this,arguments);\n\t},\n\tdeleteData: function(offset, count) {\n\t\tthis.replaceData(offset,count,\"\");\n\t},\n\treplaceData: function(offset, count, text) {\n\t\tvar start = this.data.substring(0,offset);\n\t\tvar end = this.data.substring(offset+count);\n\t\ttext = start + text + end;\n\t\tthis.nodeValue = this.data = text;\n\t\tthis.length = text.length;\n\t}\n}\n_extends(CharacterData,Node);\nfunction Text() {\n};\nText.prototype = {\n\tnodeName : \"#text\",\n\tnodeType : TEXT_NODE,\n\tsplitText : function(offset) {\n\t\tvar text = this.data;\n\t\tvar newText = text.substring(offset);\n\t\ttext = text.substring(0, offset);\n\t\tthis.data = this.nodeValue = text;\n\t\tthis.length = text.length;\n\t\tvar newNode = this.ownerDocument.createTextNode(newText);\n\t\tif(this.parentNode){\n\t\t\tthis.parentNode.insertBefore(newNode, this.nextSibling);\n\t\t}\n\t\treturn newNode;\n\t}\n}\n_extends(Text,CharacterData);\nfunction Comment() {\n};\nComment.prototype = {\n\tnodeName : \"#comment\",\n\tnodeType : COMMENT_NODE\n}\n_extends(Comment,CharacterData);\n\nfunction CDATASection() {\n};\nCDATASection.prototype = {\n\tnodeName : \"#cdata-section\",\n\tnodeType : CDATA_SECTION_NODE\n}\n_extends(CDATASection,CharacterData);\n\n\nfunction DocumentType() {\n}\nDocumentType.prototype.nodeType = DOCUMENT_TYPE_NODE;\n_extends(DocumentType,Node);\n\nfunction Notation() {\n}\nNotation.prototype.nodeType = NOTATION_NODE;\n_extends(Notation,Node);\n\nfunction Entity() {\n}\nEntity.prototype.nodeType = ENTITY_NODE;\n_extends(Entity,Node);\n\nfunction EntityReference() {\n}\nEntityReference.prototype.nodeType = ENTITY_REFERENCE_NODE;\n_extends(EntityReference,Node);\n\nfunction DocumentFragment() {\n}\nDocumentFragment.prototype.nodeName =\t\"#document-fragment\";\nDocumentFragment.prototype.nodeType =\tDOCUMENT_FRAGMENT_NODE;\n_extends(DocumentFragment,Node);\n\n\nfunction ProcessingInstruction() {\n}\nProcessingInstruction.prototype.nodeType = PROCESSING_INSTRUCTION_NODE;\n_extends(ProcessingInstruction,Node);\nfunction XMLSerializer(){}\nXMLSerializer.prototype.serializeToString = function(node){\n\tvar buf = [];\n\tserializeToString(node,buf);\n\treturn buf.join('');\n}\nNode.prototype.toString =function(){\n\treturn XMLSerializer.prototype.serializeToString(this);\n}\nfunction serializeToString(node,buf){\n\tswitch(node.nodeType){\n\tcase ELEMENT_NODE:\n\t\tvar attrs = node.attributes;\n\t\tvar len = attrs.length;\n\t\tvar child = node.firstChild;\n\t\tvar nodeName = node.tagName;\n\t\tvar isHTML = htmlns === node.namespaceURI;\n\t\tbuf.push('<',nodeName);\n\t\tfor(var i=0;i');\n\t\t\tif(isHTML && /^script$/i.test(nodeName)){\n\t\t\t\tif(child){\n\t\t\t\t\tbuf.push(child.data);\n\t\t\t\t}\n\t\t\t}else{\n\t\t\t\twhile(child){\n\t\t\t\t\tserializeToString(child,buf);\n\t\t\t\t\tchild = child.nextSibling;\n\t\t\t\t}\n\t\t\t}\n\t\t\tbuf.push('');\n\t\t}else{\n\t\t\tbuf.push('/>');\n\t\t}\n\t\treturn;\n\tcase DOCUMENT_NODE:\n\tcase DOCUMENT_FRAGMENT_NODE:\n\t\tvar child = node.firstChild;\n\t\twhile(child){\n\t\t\tserializeToString(child,buf);\n\t\t\tchild = child.nextSibling;\n\t\t}\n\t\treturn;\n\tcase ATTRIBUTE_NODE:\n\t\treturn buf.push(' ',node.name,'=\"',node.value.replace(/[<&\"]/g,_xmlEncoder),'\"');\n\tcase TEXT_NODE:\n\t\treturn buf.push(node.data.replace(/[<&]/g,_xmlEncoder));\n\tcase CDATA_SECTION_NODE:\n\t\treturn buf.push( '');\n\tcase COMMENT_NODE:\n\t\treturn buf.push( \"\");\n\tcase DOCUMENT_TYPE_NODE:\n\t\tvar pubid = node.publicId;\n\t\tvar sysid = node.systemId;\n\t\tbuf.push('');\n\t\t}else if(sysid && sysid!='.'){\n\t\t\tbuf.push(' SYSTEM \"',sysid,'\">');\n\t\t}else{\n\t\t\tvar sub = node.internalSubset;\n\t\t\tif(sub){\n\t\t\t\tbuf.push(\" [\",sub,\"]\");\n\t\t\t}\n\t\t\tbuf.push(\">\");\n\t\t}\n\t\treturn;\n\tcase PROCESSING_INSTRUCTION_NODE:\n\t\treturn buf.push( \"\");\n\tcase ENTITY_REFERENCE_NODE:\n\t\treturn buf.push( '&',node.nodeName,';');\n\tdefault:\n\t\tbuf.push('??',node.nodeName);\n\t}\n}\nfunction importNode(doc,node,deep){\n\tvar node2;\n\tswitch (node.nodeType) {\n\tcase ELEMENT_NODE:\n\t\tnode2 = node.cloneNode(false);\n\t\tnode2.ownerDocument = doc;\n\tcase DOCUMENT_FRAGMENT_NODE:\n\t\tbreak;\n\tcase ATTRIBUTE_NODE:\n\t\tdeep = true;\n\t\tbreak;\n\t}\n\tif(!node2){\n\t\tnode2 = node.cloneNode(false);//false\n\t}\n\tnode2.ownerDocument = doc;\n\tnode2.parentNode = null;\n\tif(deep){\n\t\tvar child = node.firstChild;\n\t\twhile(child){\n\t\t\tnode2.appendChild(importNode(doc,child,deep));\n\t\t\tchild = child.nextSibling;\n\t\t}\n\t}\n\treturn node2;\n}\nfunction cloneNode(doc,node,deep){\n\tvar node2 = new node.constructor();\n\tfor(var n in node){\n\t\tvar v = node[n];\n\t\tif(typeof v != 'object' ){\n\t\t\tif(v != node2[n]){\n\t\t\t\tnode2[n] = v;\n\t\t\t}\n\t\t}\n\t}\n\tif(node.childNodes){\n\t\tnode2.childNodes = new NodeList();\n\t}\n\tnode2.ownerDocument = doc;\n\tswitch (node2.nodeType) {\n\tcase ELEMENT_NODE:\n\t\tvar attrs\t= node.attributes;\n\t\tvar attrs2\t= node2.attributes = new NamedNodeMap();\n\t\tvar len = attrs.length;\n\t\tattrs2._ownerElement = node2;\n\t\tfor(var i=0;i','amp':'&','quot':'\"','apos':\"'\"}\n\tif(locator){\n\t\tdomBuilder.setDocumentLocator(locator)\n\t}\n\t\n\tsax.errorHandler = buildErrorHandler(errorHandler,domBuilder,locator);\n\tsax.domBuilder = options.domBuilder || domBuilder;\n\tif(/\\/x?html?$/.test(mimeType)){\n\t\tentityMap.nbsp = '\\xa0';\n\t\tentityMap.copy = '\\xa9';\n\t\tdefaultNSMap['']= 'http://www.w3.org/1999/xhtml';\n\t}\n\tif(source){\n\t\tsax.parse(source,defaultNSMap,entityMap);\n\t}else{\n\t\tsax.errorHandler.error(\"invalid document source\");\n\t}\n\treturn domBuilder.document;\n}\nfunction buildErrorHandler(errorImpl,domBuilder,locator){\n\tif(!errorImpl){\n\t\tif(domBuilder instanceof DOMHandler){\n\t\t\treturn domBuilder;\n\t\t}\n\t\terrorImpl = domBuilder ;\n\t}\n\tvar errorHandler = {}\n\tvar isCallback = errorImpl instanceof Function;\n\tlocator = locator||{}\n\tfunction build(key){\n\t\tvar fn = errorImpl[key];\n\t\tif(!fn){\n\t\t\tif(isCallback){\n\t\t\t\tfn = errorImpl.length == 2?function(msg){errorImpl(key,msg)}:errorImpl;\n\t\t\t}else{\n\t\t\t\tvar i=arguments.length;\n\t\t\t\twhile(--i){\n\t\t\t\t\tif(fn = errorImpl[arguments[i]]){\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\terrorHandler[key] = fn && function(msg){\n\t\t\tfn(msg+_locator(locator), msg, locator);\n\t\t}||function(){};\n\t}\n\tbuild('warning','warn');\n\tbuild('error','warn','warning');\n\tbuild('fatalError','warn','warning','error');\n\treturn errorHandler;\n}\nfunction DOMHandler() {\n this.cdata = false;\n}\nfunction position(locator,node){\n\tnode.lineNumber = locator.lineNumber;\n\tnode.columnNumber = locator.columnNumber;\n} \nDOMHandler.prototype = {\n\tstartDocument : function() {\n \tthis.document = new DOMImplementation().createDocument(null, null, null);\n \tif (this.locator) {\n \tthis.document.documentURI = this.locator.systemId;\n \t}\n\t},\n\tstartElement:function(namespaceURI, localName, qName, attrs) {\n\t\tvar doc = this.document;\n\t var el = doc.createElementNS(namespaceURI, qName||localName);\n\t var len = attrs.length;\n\t appendElement(this, el);\n\t this.currentElement = el;\n\t \n\t\tthis.locator && position(this.locator,el)\n\t for (var i = 0 ; i < len; i++) {\n\t var namespaceURI = attrs.getURI(i);\n\t var value = attrs.getValue(i);\n\t var qName = attrs.getQName(i);\n\t\t\tvar attr = doc.createAttributeNS(namespaceURI, qName);\n\t\t\tif( attr.getOffset){\n\t\t\t\tposition(attr.getOffset(1),attr)\n\t\t\t}\n\t\t\tattr.value = attr.nodeValue = value;\n\t\t\tel.setAttributeNode(attr)\n\t }\n\t},\n\tendElement:function(namespaceURI, localName, qName) {\n\t\tvar current = this.currentElement\n\t var tagName = current.tagName;\n\t this.currentElement = current.parentNode;\n\t},\n\tstartPrefixMapping:function(prefix, uri) {\n\t},\n\tendPrefixMapping:function(prefix) {\n\t},\n\tprocessingInstruction:function(target, data) {\n\t var ins = this.document.createProcessingInstruction(target, data);\n\t this.locator && position(this.locator,ins)\n\t appendElement(this, ins);\n\t},\n\tignorableWhitespace:function(ch, start, length) {\n\t},\n\tcharacters:function(chars, start, length) {\n\t\tchars = _toString.apply(this,arguments)\n\t\tif(this.currentElement && chars){\n\t\t\tif (this.cdata) {\n\t\t\t\tvar charNode = this.document.createCDATASection(chars);\n\t\t\t\tthis.currentElement.appendChild(charNode);\n\t\t\t} else {\n\t\t\t\tvar charNode = this.document.createTextNode(chars);\n\t\t\t\tthis.currentElement.appendChild(charNode);\n\t\t\t}\n\t\t\tthis.locator && position(this.locator,charNode)\n\t\t}\n\t},\n\tskippedEntity:function(name) {\n\t},\n\tendDocument:function() {\n\t\tthis.document.normalize();\n\t},\n\tsetDocumentLocator:function (locator) {\n\t if(this.locator = locator){// && !('lineNumber' in locator)){\n\t \tlocator.lineNumber = 0;\n\t }\n\t},\n\tcomment:function(chars, start, length) {\n\t\tchars = _toString.apply(this,arguments)\n\t var comm = this.document.createComment(chars);\n\t this.locator && position(this.locator,comm)\n\t appendElement(this, comm);\n\t},\n\t\n\tstartCDATA:function() {\n\t this.cdata = true;\n\t},\n\tendCDATA:function() {\n\t this.cdata = false;\n\t},\n\t\n\tstartDTD:function(name, publicId, systemId) {\n\t\tvar impl = this.document.implementation;\n\t if (impl && impl.createDocumentType) {\n\t var dt = impl.createDocumentType(name, publicId, systemId);\n\t this.locator && position(this.locator,dt)\n\t appendElement(this, dt);\n\t }\n\t},\n\twarning:function(error) {\n\t\tconsole.warn(error,_locator(this.locator));\n\t},\n\terror:function(error) {\n\t\tconsole.error(error,_locator(this.locator));\n\t},\n\tfatalError:function(error) {\n\t\tconsole.error(error,_locator(this.locator));\n\t throw error;\n\t}\n}\nfunction _locator(l){\n\tif(l){\n\t\treturn '\\n@'+(l.systemId ||'')+'#[line:'+l.lineNumber+',col:'+l.columnNumber+']'\n\t}\n}\nfunction _toString(chars,start,length){\n\tif(typeof chars == 'string'){\n\t\treturn chars.substr(start,length)\n\t}else{//java sax connect width xmldom on rhino(what about: \"? && !(chars instanceof String)\")\n\t\tif(chars.length >= start+length || start){\n\t\t\treturn new java.lang.String(chars,start,length)+'';\n\t\t}\n\t\treturn chars;\n\t}\n}\n\"endDTD,startEntity,endEntity,attributeDecl,elementDecl,externalEntityDecl,internalEntityDecl,resolveEntity,getExternalSubset,notationDecl,unparsedEntityDecl\".replace(/\\w+/g,function(key){\n\tDOMHandler.prototype[key] = function(){return null}\n})\nfunction appendElement (hander,node) {\n if (!hander.currentElement) {\n hander.document.appendChild(node);\n } else {\n hander.currentElement.appendChild(node);\n }\n}//appendChild and setAttributeNS are preformance key\n\nreturn {\n\t\tDOMParser: DOMParser\n\t };\n});\n\nace.define(\"ace/mode/xml_worker\",[], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar Mirror = require(\"../worker/mirror\").Mirror;\nvar DOMParser = require(\"./xml/dom-parser\").DOMParser;\n\nvar Worker = exports.Worker = function(sender) {\n Mirror.call(this, sender);\n this.setTimeout(400);\n this.context = null;\n};\n\noop.inherits(Worker, Mirror);\n\n(function() {\n\n this.setOptions = function(options) {\n this.context = options.context;\n };\n\n this.onUpdate = function() {\n var value = this.doc.getValue();\n if (!value)\n return;\n var parser = new DOMParser();\n var errors = [];\n parser.options.errorHandler = {\n fatalError: function(fullMsg, errorMsg, locator) {\n errors.push({\n row: locator.lineNumber,\n column: locator.columnNumber,\n text: errorMsg,\n type: \"error\"\n });\n },\n error: function(fullMsg, errorMsg, locator) {\n errors.push({\n row: locator.lineNumber,\n column: locator.columnNumber,\n text: errorMsg,\n type: \"error\"\n });\n },\n warning: function(fullMsg, errorMsg, locator) {\n errors.push({\n row: locator.lineNumber,\n column: locator.columnNumber,\n text: errorMsg,\n type: \"warning\"\n });\n }\n };\n \n parser.parseFromString(value);\n this.sender.emit(\"error\", errors);\n };\n\n}).call(Worker.prototype);\n\n});\n\nace.define(\"ace/lib/es5-shim\",[], function(require, exports, module) {\n\nfunction Empty() {}\n\nif (!Function.prototype.bind) {\n Function.prototype.bind = function bind(that) { // .length is 1\n var target = this;\n if (typeof target != \"function\") {\n throw new TypeError(\"Function.prototype.bind called on incompatible \" + target);\n }\n var args = slice.call(arguments, 1); // for normal call\n var bound = function () {\n\n if (this instanceof bound) {\n\n var result = target.apply(\n this,\n args.concat(slice.call(arguments))\n );\n if (Object(result) === result) {\n return result;\n }\n return this;\n\n } else {\n return target.apply(\n that,\n args.concat(slice.call(arguments))\n );\n\n }\n\n };\n if(target.prototype) {\n Empty.prototype = target.prototype;\n bound.prototype = new Empty();\n Empty.prototype = null;\n }\n return bound;\n };\n}\nvar call = Function.prototype.call;\nvar prototypeOfArray = Array.prototype;\nvar prototypeOfObject = Object.prototype;\nvar slice = prototypeOfArray.slice;\nvar _toString = call.bind(prototypeOfObject.toString);\nvar owns = call.bind(prototypeOfObject.hasOwnProperty);\nvar defineGetter;\nvar defineSetter;\nvar lookupGetter;\nvar lookupSetter;\nvar supportsAccessors;\nif ((supportsAccessors = owns(prototypeOfObject, \"__defineGetter__\"))) {\n defineGetter = call.bind(prototypeOfObject.__defineGetter__);\n defineSetter = call.bind(prototypeOfObject.__defineSetter__);\n lookupGetter = call.bind(prototypeOfObject.__lookupGetter__);\n lookupSetter = call.bind(prototypeOfObject.__lookupSetter__);\n}\nif ([1,2].splice(0).length != 2) {\n if(function() { // test IE < 9 to splice bug - see issue #138\n function makeArray(l) {\n var a = new Array(l+2);\n a[0] = a[1] = 0;\n return a;\n }\n var array = [], lengthBefore;\n \n array.splice.apply(array, makeArray(20));\n array.splice.apply(array, makeArray(26));\n\n lengthBefore = array.length; //46\n array.splice(5, 0, \"XXX\"); // add one element\n\n lengthBefore + 1 == array.length\n\n if (lengthBefore + 1 == array.length) {\n return true;// has right splice implementation without bugs\n }\n }()) {//IE 6/7\n var array_splice = Array.prototype.splice;\n Array.prototype.splice = function(start, deleteCount) {\n if (!arguments.length) {\n return [];\n } else {\n return array_splice.apply(this, [\n start === void 0 ? 0 : start,\n deleteCount === void 0 ? (this.length - start) : deleteCount\n ].concat(slice.call(arguments, 2)))\n }\n };\n } else {//IE8\n Array.prototype.splice = function(pos, removeCount){\n var length = this.length;\n if (pos > 0) {\n if (pos > length)\n pos = length;\n } else if (pos == void 0) {\n pos = 0;\n } else if (pos < 0) {\n pos = Math.max(length + pos, 0);\n }\n\n if (!(pos+removeCount < length))\n removeCount = length - pos;\n\n var removed = this.slice(pos, pos+removeCount);\n var insert = slice.call(arguments, 2);\n var add = insert.length; \n if (pos === length) {\n if (add) {\n this.push.apply(this, insert);\n }\n } else {\n var remove = Math.min(removeCount, length - pos);\n var tailOldPos = pos + remove;\n var tailNewPos = tailOldPos + add - remove;\n var tailCount = length - tailOldPos;\n var lengthAfterRemove = length - remove;\n\n if (tailNewPos < tailOldPos) { // case A\n for (var i = 0; i < tailCount; ++i) {\n this[tailNewPos+i] = this[tailOldPos+i];\n }\n } else if (tailNewPos > tailOldPos) { // case B\n for (i = tailCount; i--; ) {\n this[tailNewPos+i] = this[tailOldPos+i];\n }\n } // else, add == remove (nothing to do)\n\n if (add && pos === lengthAfterRemove) {\n this.length = lengthAfterRemove; // truncate array\n this.push.apply(this, insert);\n } else {\n this.length = lengthAfterRemove + add; // reserves space\n for (i = 0; i < add; ++i) {\n this[pos+i] = insert[i];\n }\n }\n }\n return removed;\n };\n }\n}\nif (!Array.isArray) {\n Array.isArray = function isArray(obj) {\n return _toString(obj) == \"[object Array]\";\n };\n}\nvar boxedString = Object(\"a\"),\n splitString = boxedString[0] != \"a\" || !(0 in boxedString);\n\nif (!Array.prototype.forEach) {\n Array.prototype.forEach = function forEach(fun /*, thisp*/) {\n var object = toObject(this),\n self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n object,\n thisp = arguments[1],\n i = -1,\n length = self.length >>> 0;\n if (_toString(fun) != \"[object Function]\") {\n throw new TypeError(); // TODO message\n }\n\n while (++i < length) {\n if (i in self) {\n fun.call(thisp, self[i], i, object);\n }\n }\n };\n}\nif (!Array.prototype.map) {\n Array.prototype.map = function map(fun /*, thisp*/) {\n var object = toObject(this),\n self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n object,\n length = self.length >>> 0,\n result = Array(length),\n thisp = arguments[1];\n if (_toString(fun) != \"[object Function]\") {\n throw new TypeError(fun + \" is not a function\");\n }\n\n for (var i = 0; i < length; i++) {\n if (i in self)\n result[i] = fun.call(thisp, self[i], i, object);\n }\n return result;\n };\n}\nif (!Array.prototype.filter) {\n Array.prototype.filter = function filter(fun /*, thisp */) {\n var object = toObject(this),\n self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n object,\n length = self.length >>> 0,\n result = [],\n value,\n thisp = arguments[1];\n if (_toString(fun) != \"[object Function]\") {\n throw new TypeError(fun + \" is not a function\");\n }\n\n for (var i = 0; i < length; i++) {\n if (i in self) {\n value = self[i];\n if (fun.call(thisp, value, i, object)) {\n result.push(value);\n }\n }\n }\n return result;\n };\n}\nif (!Array.prototype.every) {\n Array.prototype.every = function every(fun /*, thisp */) {\n var object = toObject(this),\n self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n object,\n length = self.length >>> 0,\n thisp = arguments[1];\n if (_toString(fun) != \"[object Function]\") {\n throw new TypeError(fun + \" is not a function\");\n }\n\n for (var i = 0; i < length; i++) {\n if (i in self && !fun.call(thisp, self[i], i, object)) {\n return false;\n }\n }\n return true;\n };\n}\nif (!Array.prototype.some) {\n Array.prototype.some = function some(fun /*, thisp */) {\n var object = toObject(this),\n self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n object,\n length = self.length >>> 0,\n thisp = arguments[1];\n if (_toString(fun) != \"[object Function]\") {\n throw new TypeError(fun + \" is not a function\");\n }\n\n for (var i = 0; i < length; i++) {\n if (i in self && fun.call(thisp, self[i], i, object)) {\n return true;\n }\n }\n return false;\n };\n}\nif (!Array.prototype.reduce) {\n Array.prototype.reduce = function reduce(fun /*, initial*/) {\n var object = toObject(this),\n self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n object,\n length = self.length >>> 0;\n if (_toString(fun) != \"[object Function]\") {\n throw new TypeError(fun + \" is not a function\");\n }\n if (!length && arguments.length == 1) {\n throw new TypeError(\"reduce of empty array with no initial value\");\n }\n\n var i = 0;\n var result;\n if (arguments.length >= 2) {\n result = arguments[1];\n } else {\n do {\n if (i in self) {\n result = self[i++];\n break;\n }\n if (++i >= length) {\n throw new TypeError(\"reduce of empty array with no initial value\");\n }\n } while (true);\n }\n\n for (; i < length; i++) {\n if (i in self) {\n result = fun.call(void 0, result, self[i], i, object);\n }\n }\n\n return result;\n };\n}\nif (!Array.prototype.reduceRight) {\n Array.prototype.reduceRight = function reduceRight(fun /*, initial*/) {\n var object = toObject(this),\n self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n object,\n length = self.length >>> 0;\n if (_toString(fun) != \"[object Function]\") {\n throw new TypeError(fun + \" is not a function\");\n }\n if (!length && arguments.length == 1) {\n throw new TypeError(\"reduceRight of empty array with no initial value\");\n }\n\n var result, i = length - 1;\n if (arguments.length >= 2) {\n result = arguments[1];\n } else {\n do {\n if (i in self) {\n result = self[i--];\n break;\n }\n if (--i < 0) {\n throw new TypeError(\"reduceRight of empty array with no initial value\");\n }\n } while (true);\n }\n\n do {\n if (i in this) {\n result = fun.call(void 0, result, self[i], i, object);\n }\n } while (i--);\n\n return result;\n };\n}\nif (!Array.prototype.indexOf || ([0, 1].indexOf(1, 2) != -1)) {\n Array.prototype.indexOf = function indexOf(sought /*, fromIndex */ ) {\n var self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n toObject(this),\n length = self.length >>> 0;\n\n if (!length) {\n return -1;\n }\n\n var i = 0;\n if (arguments.length > 1) {\n i = toInteger(arguments[1]);\n }\n i = i >= 0 ? i : Math.max(0, length + i);\n for (; i < length; i++) {\n if (i in self && self[i] === sought) {\n return i;\n }\n }\n return -1;\n };\n}\nif (!Array.prototype.lastIndexOf || ([0, 1].lastIndexOf(0, -3) != -1)) {\n Array.prototype.lastIndexOf = function lastIndexOf(sought /*, fromIndex */) {\n var self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n toObject(this),\n length = self.length >>> 0;\n\n if (!length) {\n return -1;\n }\n var i = length - 1;\n if (arguments.length > 1) {\n i = Math.min(i, toInteger(arguments[1]));\n }\n i = i >= 0 ? i : length - Math.abs(i);\n for (; i >= 0; i--) {\n if (i in self && sought === self[i]) {\n return i;\n }\n }\n return -1;\n };\n}\nif (!Object.getPrototypeOf) {\n Object.getPrototypeOf = function getPrototypeOf(object) {\n return object.__proto__ || (\n object.constructor ?\n object.constructor.prototype :\n prototypeOfObject\n );\n };\n}\nif (!Object.getOwnPropertyDescriptor) {\n var ERR_NON_OBJECT = \"Object.getOwnPropertyDescriptor called on a \" +\n \"non-object: \";\n Object.getOwnPropertyDescriptor = function getOwnPropertyDescriptor(object, property) {\n if ((typeof object != \"object\" && typeof object != \"function\") || object === null)\n throw new TypeError(ERR_NON_OBJECT + object);\n if (!owns(object, property))\n return;\n\n var descriptor, getter, setter;\n descriptor = { enumerable: true, configurable: true };\n if (supportsAccessors) {\n var prototype = object.__proto__;\n object.__proto__ = prototypeOfObject;\n\n var getter = lookupGetter(object, property);\n var setter = lookupSetter(object, property);\n object.__proto__ = prototype;\n\n if (getter || setter) {\n if (getter) descriptor.get = getter;\n if (setter) descriptor.set = setter;\n return descriptor;\n }\n }\n descriptor.value = object[property];\n return descriptor;\n };\n}\nif (!Object.getOwnPropertyNames) {\n Object.getOwnPropertyNames = function getOwnPropertyNames(object) {\n return Object.keys(object);\n };\n}\nif (!Object.create) {\n var createEmpty;\n if (Object.prototype.__proto__ === null) {\n createEmpty = function () {\n return { \"__proto__\": null };\n };\n } else {\n createEmpty = function () {\n var empty = {};\n for (var i in empty)\n empty[i] = null;\n empty.constructor =\n empty.hasOwnProperty =\n empty.propertyIsEnumerable =\n empty.isPrototypeOf =\n empty.toLocaleString =\n empty.toString =\n empty.valueOf =\n empty.__proto__ = null;\n return empty;\n }\n }\n\n Object.create = function create(prototype, properties) {\n var object;\n if (prototype === null) {\n object = createEmpty();\n } else {\n if (typeof prototype != \"object\")\n throw new TypeError(\"typeof prototype[\"+(typeof prototype)+\"] != 'object'\");\n var Type = function () {};\n Type.prototype = prototype;\n object = new Type();\n object.__proto__ = prototype;\n }\n if (properties !== void 0)\n Object.defineProperties(object, properties);\n return object;\n };\n}\n\nfunction doesDefinePropertyWork(object) {\n try {\n Object.defineProperty(object, \"sentinel\", {});\n return \"sentinel\" in object;\n } catch (exception) {\n }\n}\nif (Object.defineProperty) {\n var definePropertyWorksOnObject = doesDefinePropertyWork({});\n var definePropertyWorksOnDom = typeof document == \"undefined\" ||\n doesDefinePropertyWork(document.createElement(\"div\"));\n if (!definePropertyWorksOnObject || !definePropertyWorksOnDom) {\n var definePropertyFallback = Object.defineProperty;\n }\n}\n\nif (!Object.defineProperty || definePropertyFallback) {\n var ERR_NON_OBJECT_DESCRIPTOR = \"Property description must be an object: \";\n var ERR_NON_OBJECT_TARGET = \"Object.defineProperty called on non-object: \"\n var ERR_ACCESSORS_NOT_SUPPORTED = \"getters & setters can not be defined \" +\n \"on this javascript engine\";\n\n Object.defineProperty = function defineProperty(object, property, descriptor) {\n if ((typeof object != \"object\" && typeof object != \"function\") || object === null)\n throw new TypeError(ERR_NON_OBJECT_TARGET + object);\n if ((typeof descriptor != \"object\" && typeof descriptor != \"function\") || descriptor === null)\n throw new TypeError(ERR_NON_OBJECT_DESCRIPTOR + descriptor);\n if (definePropertyFallback) {\n try {\n return definePropertyFallback.call(Object, object, property, descriptor);\n } catch (exception) {\n }\n }\n if (owns(descriptor, \"value\")) {\n\n if (supportsAccessors && (lookupGetter(object, property) ||\n lookupSetter(object, property)))\n {\n var prototype = object.__proto__;\n object.__proto__ = prototypeOfObject;\n delete object[property];\n object[property] = descriptor.value;\n object.__proto__ = prototype;\n } else {\n object[property] = descriptor.value;\n }\n } else {\n if (!supportsAccessors)\n throw new TypeError(ERR_ACCESSORS_NOT_SUPPORTED);\n if (owns(descriptor, \"get\"))\n defineGetter(object, property, descriptor.get);\n if (owns(descriptor, \"set\"))\n defineSetter(object, property, descriptor.set);\n }\n\n return object;\n };\n}\nif (!Object.defineProperties) {\n Object.defineProperties = function defineProperties(object, properties) {\n for (var property in properties) {\n if (owns(properties, property))\n Object.defineProperty(object, property, properties[property]);\n }\n return object;\n };\n}\nif (!Object.seal) {\n Object.seal = function seal(object) {\n return object;\n };\n}\nif (!Object.freeze) {\n Object.freeze = function freeze(object) {\n return object;\n };\n}\ntry {\n Object.freeze(function () {});\n} catch (exception) {\n Object.freeze = (function freeze(freezeObject) {\n return function freeze(object) {\n if (typeof object == \"function\") {\n return object;\n } else {\n return freezeObject(object);\n }\n };\n })(Object.freeze);\n}\nif (!Object.preventExtensions) {\n Object.preventExtensions = function preventExtensions(object) {\n return object;\n };\n}\nif (!Object.isSealed) {\n Object.isSealed = function isSealed(object) {\n return false;\n };\n}\nif (!Object.isFrozen) {\n Object.isFrozen = function isFrozen(object) {\n return false;\n };\n}\nif (!Object.isExtensible) {\n Object.isExtensible = function isExtensible(object) {\n if (Object(object) === object) {\n throw new TypeError(); // TODO message\n }\n var name = '';\n while (owns(object, name)) {\n name += '?';\n }\n object[name] = true;\n var returnValue = owns(object, name);\n delete object[name];\n return returnValue;\n };\n}\nif (!Object.keys) {\n var hasDontEnumBug = true,\n dontEnums = [\n \"toString\",\n \"toLocaleString\",\n \"valueOf\",\n \"hasOwnProperty\",\n \"isPrototypeOf\",\n \"propertyIsEnumerable\",\n \"constructor\"\n ],\n dontEnumsLength = dontEnums.length;\n\n for (var key in {\"toString\": null}) {\n hasDontEnumBug = false;\n }\n\n Object.keys = function keys(object) {\n\n if (\n (typeof object != \"object\" && typeof object != \"function\") ||\n object === null\n ) {\n throw new TypeError(\"Object.keys called on a non-object\");\n }\n\n var keys = [];\n for (var name in object) {\n if (owns(object, name)) {\n keys.push(name);\n }\n }\n\n if (hasDontEnumBug) {\n for (var i = 0, ii = dontEnumsLength; i < ii; i++) {\n var dontEnum = dontEnums[i];\n if (owns(object, dontEnum)) {\n keys.push(dontEnum);\n }\n }\n }\n return keys;\n };\n\n}\nif (!Date.now) {\n Date.now = function now() {\n return new Date().getTime();\n };\n}\nvar ws = \"\\x09\\x0A\\x0B\\x0C\\x0D\\x20\\xA0\\u1680\\u180E\\u2000\\u2001\\u2002\\u2003\" +\n \"\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200A\\u202F\\u205F\\u3000\\u2028\" +\n \"\\u2029\\uFEFF\";\nif (!String.prototype.trim || ws.trim()) {\n ws = \"[\" + ws + \"]\";\n var trimBeginRegexp = new RegExp(\"^\" + ws + ws + \"*\"),\n trimEndRegexp = new RegExp(ws + ws + \"*$\");\n String.prototype.trim = function trim() {\n return String(this).replace(trimBeginRegexp, \"\").replace(trimEndRegexp, \"\");\n };\n}\n\nfunction toInteger(n) {\n n = +n;\n if (n !== n) { // isNaN\n n = 0;\n } else if (n !== 0 && n !== (1/0) && n !== -(1/0)) {\n n = (n > 0 || -1) * Math.floor(Math.abs(n));\n }\n return n;\n}\n\nfunction isPrimitive(input) {\n var type = typeof input;\n return (\n input === null ||\n type === \"undefined\" ||\n type === \"boolean\" ||\n type === \"number\" ||\n type === \"string\"\n );\n}\n\nfunction toPrimitive(input) {\n var val, valueOf, toString;\n if (isPrimitive(input)) {\n return input;\n }\n valueOf = input.valueOf;\n if (typeof valueOf === \"function\") {\n val = valueOf.call(input);\n if (isPrimitive(val)) {\n return val;\n }\n }\n toString = input.toString;\n if (typeof toString === \"function\") {\n val = toString.call(input);\n if (isPrimitive(val)) {\n return val;\n }\n }\n throw new TypeError();\n}\nvar toObject = function (o) {\n if (o == null) { // this matches both null and undefined\n throw new TypeError(\"can't convert \"+o+\" to object\");\n }\n return Object(o);\n};\n\n});\n"), } filex := &embedded.EmbeddedFile{ Filename: "115ab67b3f87b1c843ea1543b9559a72.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/mysql\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText =undefined;\nexports.scope = \"mysql\";\n\n}); (function() {\n ace.require([\"ace/snippets/mysql\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } filey := &embedded.EmbeddedFile{ Filename: "11bf0f7ed4a8973f585ee98239613ebc.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/vbscript\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText =undefined;\nexports.scope = \"vbscript\";\n\n}); (function() {\n ace.require([\"ace/snippets/vbscript\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } filez := &embedded.EmbeddedFile{ Filename: "124d60d8a09f472321bb9a02878bc8a2.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/groovy\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText =undefined;\nexports.scope = \"groovy\";\n\n}); (function() {\n ace.require([\"ace/snippets/groovy\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file10 := &embedded.EmbeddedFile{ Filename: "1295d4470d348d3ff8ea442b1dcef3d3.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/maze\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText = \"snippet >\\n\\\ndescription assignment\\n\\\nscope maze\\n\\\n\t-> ${1}= ${2}\\n\\\n\\n\\\nsnippet >\\n\\\ndescription if\\n\\\nscope maze\\n\\\n\t-> IF ${2:**} THEN %${3:L} ELSE %${4:R}\\n\\\n\";\nexports.scope = \"maze\";\n\n}); (function() {\n ace.require([\"ace/snippets/maze\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file11 := &embedded.EmbeddedFile{ Filename: "12fcb95361de9251f1be9f0689a14453.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/curly\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText =undefined;\nexports.scope = \"curly\";\n\n}); (function() {\n ace.require([\"ace/snippets/curly\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file12 := &embedded.EmbeddedFile{ Filename: "144991c48dbba89bfe10e886aaaed32a.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/sql\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText = \"snippet tbl\\n\\\n\tcreate table ${1:table} (\\n\\\n\t\t${2:columns}\\n\\\n\t);\\n\\\nsnippet col\\n\\\n\t${1:name}\t${2:type}\t${3:default ''}\t${4:not null}\\n\\\nsnippet ccol\\n\\\n\t${1:name}\tvarchar2(${2:size})\t${3:default ''}\t${4:not null}\\n\\\nsnippet ncol\\n\\\n\t${1:name}\tnumber\t${3:default 0}\t${4:not null}\\n\\\nsnippet dcol\\n\\\n\t${1:name}\tdate\t${3:default sysdate}\t${4:not null}\\n\\\nsnippet ind\\n\\\n\tcreate index ${3:$1_$2} on ${1:table}(${2:column});\\n\\\nsnippet uind\\n\\\n\tcreate unique index ${1:name} on ${2:table}(${3:column});\\n\\\nsnippet tblcom\\n\\\n\tcomment on table ${1:table} is '${2:comment}';\\n\\\nsnippet colcom\\n\\\n\tcomment on column ${1:table}.${2:column} is '${3:comment}';\\n\\\nsnippet addcol\\n\\\n\talter table ${1:table} add (${2:column} ${3:type});\\n\\\nsnippet seq\\n\\\n\tcreate sequence ${1:name} start with ${2:1} increment by ${3:1} minvalue ${4:1};\\n\\\nsnippet s*\\n\\\n\tselect * from ${1:table}\\n\\\n\";\nexports.scope = \"sql\";\n\n}); (function() {\n ace.require([\"ace/snippets/sql\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file13 := &embedded.EmbeddedFile{ Filename: "1517d7a249c47eaf819aa1fcca0d9f1e.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/pgsql\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText =undefined;\nexports.scope = \"pgsql\";\n\n}); (function() {\n ace.require([\"ace/snippets/pgsql\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file14 := &embedded.EmbeddedFile{ Filename: "1570e695c448e6a4f3a6bdf0372b58f0.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/haskell\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText = \"snippet lang\\n\\\n\t{-# LANGUAGE ${1:OverloadedStrings} #-}\\n\\\nsnippet info\\n\\\n\t-- |\\n\\\n\t-- Module : ${1:Module.Namespace}\\n\\\n\t-- Copyright : ${2:Author} ${3:2011-2012}\\n\\\n\t-- License : ${4:BSD3}\\n\\\n\t--\\n\\\n\t-- Maintainer : ${5:email@something.com}\\n\\\n\t-- Stability : ${6:experimental}\\n\\\n\t-- Portability : ${7:unknown}\\n\\\n\t--\\n\\\n\t-- ${8:Description}\\n\\\n\t--\\n\\\nsnippet import\\n\\\n\timport ${1:Data.Text}\\n\\\nsnippet import2\\n\\\n\timport ${1:Data.Text} (${2:head})\\n\\\nsnippet importq\\n\\\n\timport qualified ${1:Data.Text} as ${2:T}\\n\\\nsnippet inst\\n\\\n\tinstance ${1:Monoid} ${2:Type} where\\n\\\n\t\t${3}\\n\\\nsnippet type\\n\\\n\ttype ${1:Type} = ${2:Type}\\n\\\nsnippet data\\n\\\n\tdata ${1:Type} = ${2:$1} ${3:Int}\\n\\\nsnippet newtype\\n\\\n\tnewtype ${1:Type} = ${2:$1} ${3:Int}\\n\\\nsnippet class\\n\\\n\tclass ${1:Class} a where\\n\\\n\t\t${2}\\n\\\nsnippet module\\n\\\n\tmodule `substitute(substitute(expand('%:r'), '[/\\\\\\\\]','.','g'),'^\\\\%(\\\\l*\\\\.\\\\)\\\\?','','')` (\\n\\\n\t)\twhere\\n\\\n\t`expand('%') =~ 'Main' ? \\\"\\\\n\\\\nmain = do\\\\n print \\\\\\\"hello world\\\\\\\"\\\" : \\\"\\\"`\\n\\\n\\n\\\nsnippet const\\n\\\n\t${1:name} :: ${2:a}\\n\\\n\t$1 = ${3:undefined}\\n\\\nsnippet fn\\n\\\n\t${1:fn} :: ${2:a} -> ${3:a}\\n\\\n\t$1 ${4} = ${5:undefined}\\n\\\nsnippet fn2\\n\\\n\t${1:fn} :: ${2:a} -> ${3:a} -> ${4:a}\\n\\\n\t$1 ${5} = ${6:undefined}\\n\\\nsnippet ap\\n\\\n\t${1:map} ${2:fn} ${3:list}\\n\\\nsnippet do\\n\\\n\tdo\\n\\\n\t\t\\n\\\nsnippet λ\\n\\\n\t\\\\${1:x} -> ${2}\\n\\\nsnippet \\\\\\n\\\n\t\\\\${1:x} -> ${2}\\n\\\nsnippet <-\\n\\\n\t${1:a} <- ${2:m a}\\n\\\nsnippet ←\\n\\\n\t${1:a} <- ${2:m a}\\n\\\nsnippet ->\\n\\\n\t${1:m a} -> ${2:a}\\n\\\nsnippet →\\n\\\n\t${1:m a} -> ${2:a}\\n\\\nsnippet tup\\n\\\n\t(${1:a}, ${2:b})\\n\\\nsnippet tup2\\n\\\n\t(${1:a}, ${2:b}, ${3:c})\\n\\\nsnippet tup3\\n\\\n\t(${1:a}, ${2:b}, ${3:c}, ${4:d})\\n\\\nsnippet rec\\n\\\n\t${1:Record} { ${2:recFieldA} = ${3:undefined}\\n\\\n\t\t\t\t, ${4:recFieldB} = ${5:undefined}\\n\\\n\t\t\t\t}\\n\\\nsnippet case\\n\\\n\tcase ${1:something} of\\n\\\n\t\t${2} -> ${3}\\n\\\nsnippet let\\n\\\n\tlet ${1} = ${2}\\n\\\n\tin ${3}\\n\\\nsnippet where\\n\\\n\twhere\\n\\\n\t\t${1:fn} = ${2:undefined}\\n\\\n\";\nexports.scope = \"haskell\";\n\n}); (function() {\n ace.require([\"ace/snippets/haskell\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file15 := &embedded.EmbeddedFile{ Filename: "15abe309c5ecbc579dccc79beb041fd8.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/elm_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar ElmHighlightRules = function() {\n var keywordMapper = this.createKeywordMapper({\n \"keyword\": \"as|case|class|data|default|deriving|do|else|export|foreign|\" +\n \"hiding|jsevent|if|import|in|infix|infixl|infixr|instance|let|\" +\n \"module|newtype|of|open|then|type|where|_|port|\\u03BB\"\n }, \"identifier\");\n \n var escapeRe = /\\\\(\\d+|['\"\\\\&trnbvf])/;\n \n var smallRe = /[a-z_]/.source;\n var largeRe = /[A-Z]/.source;\n var idRe = /[a-z_A-Z0-9']/.source;\n\n this.$rules = {\n start: [{\n token: \"string.start\",\n regex: '\"',\n next: \"string\"\n }, {\n token: \"string.character\",\n regex: \"'(?:\" + escapeRe.source + \"|.)'?\"\n }, {\n regex: /0(?:[xX][0-9A-Fa-f]+|[oO][0-7]+)|\\d+(\\.\\d+)?([eE][-+]?\\d*)?/,\n token: \"constant.numeric\"\n }, {\n token: \"comment\",\n regex: \"--.*\"\n }, {\n token : \"keyword\",\n regex : /\\.\\.|\\||:|=|\\\\|\"|->|<-|\\u2192/\n }, {\n token : \"keyword.operator\",\n regex : /[-!#$%&*+.\\/<=>?@\\\\^|~:\\u03BB\\u2192]+/\n }, {\n token : \"operator.punctuation\",\n regex : /[,;`]/\n }, {\n regex : largeRe + idRe + \"+\\\\.?\",\n token : function(value) {\n if (value[value.length - 1] == \".\")\n return \"entity.name.function\"; \n return \"constant.language\"; \n }\n }, {\n regex : \"^\" + smallRe + idRe + \"+\",\n token : function(value) {\n return \"constant.language\"; \n }\n }, {\n token : keywordMapper,\n regex : \"[\\\\w\\\\xff-\\\\u218e\\\\u2455-\\\\uffff]+\\\\b\"\n }, {\n regex: \"{-#?\",\n token: \"comment.start\",\n onMatch: function(value, currentState, stack) {\n this.next = value.length == 2 ? \"blockComment\" : \"docComment\";\n return this.token;\n }\n }, {\n token: \"variable.language\",\n regex: /\\[markdown\\|/,\n next: \"markdown\"\n }, {\n token: \"paren.lparen\",\n regex: /[\\[({]/ \n }, {\n token: \"paren.rparen\",\n regex: /[\\])}]/\n } ],\n markdown: [{\n regex: /\\|\\]/,\n next: \"start\"\n }, {\n defaultToken : \"string\"\n }],\n blockComment: [{\n regex: \"{-\",\n token: \"comment.start\",\n push: \"blockComment\"\n }, {\n regex: \"-}\",\n token: \"comment.end\",\n next: \"pop\"\n }, {\n defaultToken: \"comment\"\n }],\n docComment: [{\n regex: \"{-\",\n token: \"comment.start\",\n push: \"docComment\"\n }, {\n regex: \"-}\",\n token: \"comment.end\",\n next: \"pop\" \n }, {\n defaultToken: \"doc.comment\"\n }],\n string: [{\n token: \"constant.language.escape\",\n regex: escapeRe\n }, {\n token: \"text\",\n regex: /\\\\(\\s|$)/,\n next: \"stringGap\"\n }, {\n token: \"string.end\",\n regex: '\"',\n next: \"start\"\n }, {\n defaultToken: \"string\"\n }],\n stringGap: [{\n token: \"text\",\n regex: /\\\\/,\n next: \"string\"\n }, {\n token: \"error\",\n regex: \"\",\n next: \"start\"\n }]\n };\n \n this.normalizeRules();\n};\n\noop.inherits(ElmHighlightRules, TextHighlightRules);\n\nexports.ElmHighlightRules = ElmHighlightRules;\n});\n\nace.define(\"ace/mode/folding/cstyle\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/range\",\"ace/mode/folding/fold_mode\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Range = require(\"../../range\").Range;\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function(commentRegex) {\n if (commentRegex) {\n this.foldingStartMarker = new RegExp(\n this.foldingStartMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.start)\n );\n this.foldingStopMarker = new RegExp(\n this.foldingStopMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.end)\n );\n }\n};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n \n this.foldingStartMarker = /([\\{\\[\\(])[^\\}\\]\\)]*$|^\\s*(\\/\\*)/;\n this.foldingStopMarker = /^[^\\[\\{\\(]*([\\}\\]\\)])|^[\\s\\*]*(\\*\\/)/;\n this.singleLineBlockCommentRe= /^\\s*(\\/\\*).*\\*\\/\\s*$/;\n this.tripleStarBlockCommentRe = /^\\s*(\\/\\*\\*\\*).*\\*\\/\\s*$/;\n this.startRegionRe = /^\\s*(\\/\\*|\\/\\/)#?region\\b/;\n this._getFoldWidgetBase = this.getFoldWidget;\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n \n if (this.singleLineBlockCommentRe.test(line)) {\n if (!this.startRegionRe.test(line) && !this.tripleStarBlockCommentRe.test(line))\n return \"\";\n }\n \n var fw = this._getFoldWidgetBase(session, foldStyle, row);\n \n if (!fw && this.startRegionRe.test(line))\n return \"start\"; // lineCommentRegionStart\n \n return fw;\n };\n\n this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {\n var line = session.getLine(row);\n \n if (this.startRegionRe.test(line))\n return this.getCommentRegionBlock(session, line, row);\n \n var match = line.match(this.foldingStartMarker);\n if (match) {\n var i = match.index;\n\n if (match[1])\n return this.openingBracketBlock(session, match[1], row, i);\n \n var range = session.getCommentFoldRange(row, i + match[0].length, 1);\n \n if (range && !range.isMultiLine()) {\n if (forceMultiline) {\n range = this.getSectionRange(session, row);\n } else if (foldStyle != \"all\")\n range = null;\n }\n \n return range;\n }\n\n if (foldStyle === \"markbegin\")\n return;\n\n var match = line.match(this.foldingStopMarker);\n if (match) {\n var i = match.index + match[0].length;\n\n if (match[1])\n return this.closingBracketBlock(session, match[1], row, i);\n\n return session.getCommentFoldRange(row, i, -1);\n }\n };\n \n this.getSectionRange = function(session, row) {\n var line = session.getLine(row);\n var startIndent = line.search(/\\S/);\n var startRow = row;\n var startColumn = line.length;\n row = row + 1;\n var endRow = row;\n var maxRow = session.getLength();\n while (++row < maxRow) {\n line = session.getLine(row);\n var indent = line.search(/\\S/);\n if (indent === -1)\n continue;\n if (startIndent > indent)\n break;\n var subRange = this.getFoldWidgetRange(session, \"all\", row);\n \n if (subRange) {\n if (subRange.start.row <= startRow) {\n break;\n } else if (subRange.isMultiLine()) {\n row = subRange.end.row;\n } else if (startIndent == indent) {\n break;\n }\n }\n endRow = row;\n }\n \n return new Range(startRow, startColumn, endRow, session.getLine(endRow).length);\n };\n this.getCommentRegionBlock = function(session, line, row) {\n var startColumn = line.search(/\\s*$/);\n var maxRow = session.getLength();\n var startRow = row;\n \n var re = /^\\s*(?:\\/\\*|\\/\\/|--)#?(end)?region\\b/;\n var depth = 1;\n while (++row < maxRow) {\n line = session.getLine(row);\n var m = re.exec(line);\n if (!m) continue;\n if (m[1]) depth--;\n else depth++;\n\n if (!depth) break;\n }\n\n var endRow = row;\n if (endRow > startRow) {\n return new Range(startRow, startColumn, endRow, line.length);\n }\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/elm\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/elm_highlight_rules\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar HighlightRules = require(\"./elm_highlight_rules\").ElmHighlightRules;\nvar FoldMode = require(\"./folding/cstyle\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = HighlightRules;\n this.foldingRules = new FoldMode();\n this.$behaviour = this.$defaultBehaviour;\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n this.lineCommentStart = \"--\";\n this.blockComment = {start: \"{-\", end: \"-}\", nestable: true};\n this.$id = \"ace/mode/elm\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/elm\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file16 := &embedded.EmbeddedFile{ Filename: "1628a9542b90bd525fe8d6707dab77af.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/doc_comment_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar DocCommentHighlightRules = function() {\n this.$rules = {\n \"start\" : [ {\n token : \"comment.doc.tag\",\n regex : \"@[\\\\w\\\\d_]+\" // TODO: fix email addresses\n }, \n DocCommentHighlightRules.getTagRule(),\n {\n defaultToken : \"comment.doc\",\n caseInsensitive: true\n }]\n };\n};\n\noop.inherits(DocCommentHighlightRules, TextHighlightRules);\n\nDocCommentHighlightRules.getTagRule = function(start) {\n return {\n token : \"comment.doc.tag.storage.type\",\n regex : \"\\\\b(?:TODO|FIXME|XXX|HACK)\\\\b\"\n };\n};\n\nDocCommentHighlightRules.getStartRule = function(start) {\n return {\n token : \"comment.doc\", // doc comment\n regex : \"\\\\/\\\\*(?=\\\\*)\",\n next : start\n };\n};\n\nDocCommentHighlightRules.getEndRule = function (start) {\n return {\n token : \"comment.doc\", // closing comment\n regex : \"\\\\*\\\\/\",\n next : start\n };\n};\n\n\nexports.DocCommentHighlightRules = DocCommentHighlightRules;\n\n});\n\nace.define(\"ace/mode/java_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/doc_comment_highlight_rules\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar DocCommentHighlightRules = require(\"./doc_comment_highlight_rules\").DocCommentHighlightRules;\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar JavaHighlightRules = function() {\n var keywords = (\n \"abstract|continue|for|new|switch|\" +\n \"assert|default|goto|package|synchronized|\" +\n \"boolean|do|if|private|this|\" +\n \"break|double|implements|protected|throw|\" +\n \"byte|else|import|public|throws|\" +\n \"case|enum|instanceof|return|transient|\" +\n \"catch|extends|int|short|try|\" +\n \"char|final|interface|static|void|\" +\n \"class|finally|long|strictfp|volatile|\" +\n \"const|float|native|super|while|\" +\n \"var\"\n );\n\n var buildinConstants = (\"null|Infinity|NaN|undefined\");\n\n\n var langClasses = (\n \"AbstractMethodError|AssertionError|ClassCircularityError|\"+\n \"ClassFormatError|Deprecated|EnumConstantNotPresentException|\"+\n \"ExceptionInInitializerError|IllegalAccessError|\"+\n \"IllegalThreadStateException|InstantiationError|InternalError|\"+\n \"NegativeArraySizeException|NoSuchFieldError|Override|Process|\"+\n \"ProcessBuilder|SecurityManager|StringIndexOutOfBoundsException|\"+\n \"SuppressWarnings|TypeNotPresentException|UnknownError|\"+\n \"UnsatisfiedLinkError|UnsupportedClassVersionError|VerifyError|\"+\n \"InstantiationException|IndexOutOfBoundsException|\"+\n \"ArrayIndexOutOfBoundsException|CloneNotSupportedException|\"+\n \"NoSuchFieldException|IllegalArgumentException|NumberFormatException|\"+\n \"SecurityException|Void|InheritableThreadLocal|IllegalStateException|\"+\n \"InterruptedException|NoSuchMethodException|IllegalAccessException|\"+\n \"UnsupportedOperationException|Enum|StrictMath|Package|Compiler|\"+\n \"Readable|Runtime|StringBuilder|Math|IncompatibleClassChangeError|\"+\n \"NoSuchMethodError|ThreadLocal|RuntimePermission|ArithmeticException|\"+\n \"NullPointerException|Long|Integer|Short|Byte|Double|Number|Float|\"+\n \"Character|Boolean|StackTraceElement|Appendable|StringBuffer|\"+\n \"Iterable|ThreadGroup|Runnable|Thread|IllegalMonitorStateException|\"+\n \"StackOverflowError|OutOfMemoryError|VirtualMachineError|\"+\n \"ArrayStoreException|ClassCastException|LinkageError|\"+\n \"NoClassDefFoundError|ClassNotFoundException|RuntimeException|\"+\n \"Exception|ThreadDeath|Error|Throwable|System|ClassLoader|\"+\n \"Cloneable|Class|CharSequence|Comparable|String|Object\"\n );\n\n var keywordMapper = this.createKeywordMapper({\n \"variable.language\": \"this\",\n \"keyword\": keywords,\n \"constant.language\": buildinConstants,\n \"support.function\": langClasses\n }, \"identifier\");\n\n this.$rules = {\n \"start\" : [\n {\n token : \"comment\",\n regex : \"\\\\/\\\\/.*$\"\n },\n DocCommentHighlightRules.getStartRule(\"doc-start\"),\n {\n token : \"comment\", // multi line comment\n regex : \"\\\\/\\\\*\",\n next : \"comment\"\n }, {\n token : \"string\", // single line\n regex : '[\"](?:(?:\\\\\\\\.)|(?:[^\"\\\\\\\\]))*?[\"]'\n }, {\n token : \"string\", // single line\n regex : \"['](?:(?:\\\\\\\\.)|(?:[^'\\\\\\\\]))*?[']\"\n }, {\n token : \"constant.numeric\", // hex\n regex : /0(?:[xX][0-9a-fA-F][0-9a-fA-F_]*|[bB][01][01_]*)[LlSsDdFfYy]?\\b/\n }, {\n token : \"constant.numeric\", // float\n regex : /[+-]?\\d[\\d_]*(?:(?:\\.[\\d_]*)?(?:[eE][+-]?[\\d_]+)?)?[LlSsDdFfYy]?\\b/\n }, {\n token : \"constant.language.boolean\",\n regex : \"(?:true|false)\\\\b\"\n }, {\n regex: \"(open(?:\\\\s+))?module(?=\\\\s*\\\\w)\",\n token: \"keyword\",\n next: [{\n regex: \"{\",\n token: \"paren.lparen\",\n next: [{\n regex: \"}\",\n token: \"paren.rparen\",\n next: \"start\"\n }, {\n regex: \"\\\\b(requires|transitive|exports|opens|to|uses|provides|with)\\\\b\",\n token: \"keyword\" \n }]\n }, {\n token : \"text\",\n regex : \"\\\\s+\"\n }, {\n token : \"identifier\",\n regex : \"\\\\w+\"\n }, {\n token : \"punctuation.operator\",\n regex : \".\"\n }, {\n token : \"text\",\n regex : \"\\\\s+\"\n }, {\n regex: \"\", // exit if there is anything else\n next: \"start\"\n }]\n }, {\n token : keywordMapper,\n regex : \"[a-zA-Z_$][a-zA-Z0-9_$]*\\\\b\"\n }, {\n token : \"keyword.operator\",\n regex : \"!|\\\\$|%|&|\\\\*|\\\\-\\\\-|\\\\-|\\\\+\\\\+|\\\\+|~|===|==|=|!=|!==|<=|>=|<<=|>>=|>>>=|<>|<|>|!|&&|\\\\|\\\\||\\\\?\\\\:|\\\\*=|%=|\\\\+=|\\\\-=|&=|\\\\^=|\\\\b(?:in|instanceof|new|delete|typeof|void)\"\n }, {\n token : \"lparen\",\n regex : \"[[({]\"\n }, {\n token : \"rparen\",\n regex : \"[\\\\])}]\"\n }, {\n token : \"text\",\n regex : \"\\\\s+\"\n }\n ],\n \"comment\" : [\n {\n token : \"comment\", // closing comment\n regex : \"\\\\*\\\\/\",\n next : \"start\"\n }, {\n defaultToken : \"comment\"\n }\n ]\n };\n\n \n this.embedRules(DocCommentHighlightRules, \"doc-\",\n [ DocCommentHighlightRules.getEndRule(\"start\") ]);\n this.normalizeRules();\n};\n\noop.inherits(JavaHighlightRules, TextHighlightRules);\n\nexports.JavaHighlightRules = JavaHighlightRules;\n});\n\nace.define(\"ace/mode/drools_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\",\"ace/mode/java_highlight_rules\",\"ace/mode/doc_comment_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar JavaHighlightRules = require(\"./java_highlight_rules\").JavaHighlightRules;\nvar DocCommentHighlightRules = require(\"./doc_comment_highlight_rules\").DocCommentHighlightRules;\n\nvar identifierRe = \"[a-zA-Z\\\\$_\\u00a1-\\uffff][a-zA-Z\\\\d\\\\$_\\u00a1-\\uffff]*\";\nvar packageIdentifierRe = \"[a-zA-Z\\\\$_\\u00a1-\\uffff][\\\\.a-zA-Z\\\\d\\\\$_\\u00a1-\\uffff]*\";\n\nvar DroolsHighlightRules = function() {\n\n var keywords = (\"date|effective|expires|lock|on|active|no|loop|auto|focus\" +\n \"|activation|group|agenda|ruleflow|duration|timer|calendars|refract|direct\" +\n \"|dialect|salience|enabled|attributes|extends|template\" +\n \"|function|contains|matches|eval|excludes|soundslike\" +\n \"|memberof|not|in|or|and|exists|forall|over|from|entry|point|accumulate|acc|collect\" +\n \"|action|reverse|result|end|init|instanceof|extends|super|boolean|char|byte|short\" +\n \"|int|long|float|double|this|void|class|new|case|final|if|else|for|while|do\" +\n \"|default|try|catch|finally|switch|synchronized|return|throw|break|continue|assert\" +\n \"|modify|static|public|protected|private|abstract|native|transient|volatile\" +\n \"|strictfp|throws|interface|enum|implements|type|window|trait|no-loop|str\"\n );\n\n var langClasses = (\n \"AbstractMethodError|AssertionError|ClassCircularityError|\"+\n \"ClassFormatError|Deprecated|EnumConstantNotPresentException|\"+\n \"ExceptionInInitializerError|IllegalAccessError|\"+\n \"IllegalThreadStateException|InstantiationError|InternalError|\"+\n \"NegativeArraySizeException|NoSuchFieldError|Override|Process|\"+\n \"ProcessBuilder|SecurityManager|StringIndexOutOfBoundsException|\"+\n \"SuppressWarnings|TypeNotPresentException|UnknownError|\"+\n \"UnsatisfiedLinkError|UnsupportedClassVersionError|VerifyError|\"+\n \"InstantiationException|IndexOutOfBoundsException|\"+\n \"ArrayIndexOutOfBoundsException|CloneNotSupportedException|\"+\n \"NoSuchFieldException|IllegalArgumentException|NumberFormatException|\"+\n \"SecurityException|Void|InheritableThreadLocal|IllegalStateException|\"+\n \"InterruptedException|NoSuchMethodException|IllegalAccessException|\"+\n \"UnsupportedOperationException|Enum|StrictMath|Package|Compiler|\"+\n \"Readable|Runtime|StringBuilder|Math|IncompatibleClassChangeError|\"+\n \"NoSuchMethodError|ThreadLocal|RuntimePermission|ArithmeticException|\"+\n \"NullPointerException|Long|Integer|Short|Byte|Double|Number|Float|\"+\n \"Character|Boolean|StackTraceElement|Appendable|StringBuffer|\"+\n \"Iterable|ThreadGroup|Runnable|Thread|IllegalMonitorStateException|\"+\n \"StackOverflowError|OutOfMemoryError|VirtualMachineError|\"+\n \"ArrayStoreException|ClassCastException|LinkageError|\"+\n \"NoClassDefFoundError|ClassNotFoundException|RuntimeException|\"+\n \"Exception|ThreadDeath|Error|Throwable|System|ClassLoader|\"+\n \"Cloneable|Class|CharSequence|Comparable|String|Object\"\n );\n\n var keywordMapper = this.createKeywordMapper({\n \"variable.language\": \"this\",\n \"keyword\": keywords,\n \"constant.language\": \"null\",\n \"support.class\" : langClasses,\n \"support.function\" : \"retract|update|modify|insert\"\n }, \"identifier\");\n\n var stringRules = function() {\n return [{\n token : \"string\", // single line\n regex : '[\"](?:(?:\\\\\\\\.)|(?:[^\"\\\\\\\\]))*?[\"]'\n }, {\n token : \"string\", // single line\n regex : \"['](?:(?:\\\\\\\\.)|(?:[^'\\\\\\\\]))*?[']\"\n }];\n };\n\n\n var basicPreRules = function(blockCommentRules) {\n return [{\n token : \"comment\",\n regex : \"\\\\/\\\\/.*$\"\n },\n DocCommentHighlightRules.getStartRule(\"doc-start\"),\n {\n token : \"comment\", // multi line comment\n regex : \"\\\\/\\\\*\",\n next : blockCommentRules\n }, {\n token : \"constant.numeric\", // hex\n regex : \"0[xX][0-9a-fA-F]+\\\\b\"\n }, {\n token : \"constant.numeric\", // float\n regex : \"[+-]?\\\\d+(?:(?:\\\\.\\\\d*)?(?:[eE][+-]?\\\\d+)?)?\\\\b\"\n }, {\n token : \"constant.language.boolean\",\n regex : \"(?:true|false)\\\\b\"\n }];\n };\n\n var blockCommentRules = function(returnRule) {\n return [\n {\n token : \"comment.block\", // closing comment\n regex : \"\\\\*\\\\/\",\n next : returnRule\n }, {\n defaultToken : \"comment.block\"\n }\n ];\n };\n\n var basicPostRules = function() {\n return [{\n token : keywordMapper,\n regex : \"[a-zA-Z_$][a-zA-Z0-9_$]*\\\\b\"\n }, {\n token : \"keyword.operator\",\n regex : \"!|\\\\$|%|&|\\\\*|\\\\-\\\\-|\\\\-|\\\\+\\\\+|\\\\+|~|===|==|=|!=|!==|<=|>=|<<=|>>=|>>>=|<>|<|>|!|&&|\\\\|\\\\||\\\\?\\\\:|\\\\*=|%=|\\\\+=|\\\\-=|&=|\\\\^=|\\\\b(?:in|instanceof|new|delete|typeof|void)\"\n }, {\n token : \"lparen\",\n regex : \"[[({]\"\n }, {\n token : \"rparen\",\n regex : \"[\\\\])}]\"\n }, {\n token : \"text\",\n regex : \"\\\\s+\"\n }];\n };\n\n\n this.$rules = {\n \"start\" : [].concat(basicPreRules(\"block.comment\"), [\n {\n token : \"entity.name.type\",\n regex : \"@[a-zA-Z_$][a-zA-Z0-9_$]*\\\\b\"\n }, {\n token : [\"keyword\",\"text\",\"entity.name.type\"],\n regex : \"(package)(\\\\s+)(\" + packageIdentifierRe +\")\"\n }, {\n token : [\"keyword\",\"text\",\"keyword\",\"text\",\"entity.name.type\"],\n regex : \"(import)(\\\\s+)(function)(\\\\s+)(\" + packageIdentifierRe +\")\"\n }, {\n token : [\"keyword\",\"text\",\"entity.name.type\"],\n regex : \"(import)(\\\\s+)(\" + packageIdentifierRe +\")\"\n }, {\n token : [\"keyword\",\"text\",\"entity.name.type\",\"text\",\"variable\"],\n regex : \"(global)(\\\\s+)(\" + packageIdentifierRe +\")(\\\\s+)(\" + identifierRe +\")\"\n }, {\n token : [\"keyword\",\"text\",\"keyword\",\"text\",\"entity.name.type\"],\n regex : \"(declare)(\\\\s+)(trait)(\\\\s+)(\" + identifierRe +\")\"\n }, {\n token : [\"keyword\",\"text\",\"entity.name.type\"],\n regex : \"(declare)(\\\\s+)(\" + identifierRe +\")\"\n }, {\n token : [\"keyword\",\"text\",\"entity.name.type\"],\n regex : \"(extends)(\\\\s+)(\" + packageIdentifierRe +\")\"\n }, {\n token : [\"keyword\",\"text\"],\n regex : \"(rule)(\\\\s+)\",\n next : \"asset.name\"\n }],\n stringRules(),\n [{\n token : [\"variable.other\",\"text\",\"text\"],\n regex : \"(\" + identifierRe + \")(\\\\s*)(:)\"\n }, {\n token : [\"keyword\",\"text\"],\n regex : \"(query)(\\\\s+)\",\n next : \"asset.name\"\n }, {\n token : [\"keyword\",\"text\"],\n regex : \"(when)(\\\\s*)\"\n }, {\n token : [\"keyword\",\"text\"],\n regex : \"(then)(\\\\s*)\",\n next : \"java-start\"\n }, {\n token : \"paren.lparen\",\n regex : /[\\[({]/\n }, {\n token : \"paren.rparen\",\n regex : /[\\])}]/\n }], basicPostRules()),\n \"block.comment\" : blockCommentRules(\"start\"),\n \"asset.name\" : [\n {\n token : \"entity.name\",\n regex : '[\"](?:(?:\\\\\\\\.)|(?:[^\"\\\\\\\\]))*?[\"]'\n }, {\n token : \"entity.name\",\n regex : \"['](?:(?:\\\\\\\\.)|(?:[^'\\\\\\\\]))*?[']\"\n }, {\n token : \"entity.name\",\n regex : identifierRe\n }, {\n regex: \"\",\n token: \"empty\",\n next: \"start\"\n }]\n };\n this.embedRules(DocCommentHighlightRules, \"doc-\",\n [ DocCommentHighlightRules.getEndRule(\"start\") ]);\n\n this.embedRules(JavaHighlightRules, \"java-\", [\n {\n token : \"support.function\",\n regex: \"\\\\b(insert|modify|retract|update)\\\\b\"\n }, {\n token : \"keyword\",\n regex: \"\\\\bend\\\\b\",\n next : \"start\"\n }]);\n\n};\n\noop.inherits(DroolsHighlightRules, TextHighlightRules);\n\nexports.DroolsHighlightRules = DroolsHighlightRules;\n});\n\nace.define(\"ace/mode/folding/drools\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/range\",\"ace/mode/folding/fold_mode\",\"ace/token_iterator\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Range = require(\"../../range\").Range;\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\nvar TokenIterator = require(\"../../token_iterator\").TokenIterator;\n\nvar FoldMode = exports.FoldMode = function() {};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n this.foldingStartMarker = /\\b(rule|declare|query|when|then)\\b/; \n this.foldingStopMarker = /\\bend\\b/;\n\n this.getFoldWidgetRange = function(session, foldStyle, row) {\n var line = session.getLine(row);\n var match = line.match(this.foldingStartMarker);\n if (match) {\n var i = match.index;\n\n if (match[1]) {\n var position = {row: row, column: line.length};\n var iterator = new TokenIterator(session, position.row, position.column);\n var seek = \"end\";\n var token = iterator.getCurrentToken();\n if (token.value == \"when\") {\n seek = \"then\";\n }\n while (token) {\n if (token.value == seek) { \n return Range.fromPoints(position ,{\n row: iterator.getCurrentTokenRow(),\n column: iterator.getCurrentTokenColumn()\n });\n }\n token = iterator.stepForward();\n }\n }\n\n }\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/drools\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/drools_highlight_rules\",\"ace/mode/folding/drools\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar DroolsHighlightRules = require(\"./drools_highlight_rules\").DroolsHighlightRules;\nvar DroolsFoldMode = require(\"./folding/drools\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = DroolsHighlightRules;\n this.foldingRules = new DroolsFoldMode();\n this.$behaviour = this.$defaultBehaviour;\n\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n this.lineCommentStart = \"//\";\n this.$id = \"ace/mode/drools\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n\n}); (function() {\n ace.require([\"ace/mode/drools\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file17 := &embedded.EmbeddedFile{ Filename: "16d2899be426bd265925b9479c5ab602.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/ext/spellcheck\",[\"require\",\"exports\",\"module\",\"ace/lib/event\",\"ace/editor\",\"ace/config\"], function(require, exports, module) {\n\"use strict\";\nvar event = require(\"../lib/event\");\n\nexports.contextMenuHandler = function(e){\n var host = e.target;\n var text = host.textInput.getElement();\n if (!host.selection.isEmpty())\n return;\n var c = host.getCursorPosition();\n var r = host.session.getWordRange(c.row, c.column);\n var w = host.session.getTextRange(r);\n\n host.session.tokenRe.lastIndex = 0;\n if (!host.session.tokenRe.test(w))\n return;\n var PLACEHOLDER = \"\\x01\\x01\";\n var value = w + \" \" + PLACEHOLDER;\n text.value = value;\n text.setSelectionRange(w.length, w.length + 1);\n text.setSelectionRange(0, 0);\n text.setSelectionRange(0, w.length);\n\n var afterKeydown = false;\n event.addListener(text, \"keydown\", function onKeydown() {\n event.removeListener(text, \"keydown\", onKeydown);\n afterKeydown = true;\n });\n\n host.textInput.setInputHandler(function(newVal) {\n console.log(newVal , value, text.selectionStart, text.selectionEnd);\n if (newVal == value)\n return '';\n if (newVal.lastIndexOf(value, 0) === 0)\n return newVal.slice(value.length);\n if (newVal.substr(text.selectionEnd) == value)\n return newVal.slice(0, -value.length);\n if (newVal.slice(-2) == PLACEHOLDER) {\n var val = newVal.slice(0, -2);\n if (val.slice(-1) == \" \") {\n if (afterKeydown)\n return val.substring(0, text.selectionEnd);\n val = val.slice(0, -1);\n host.session.replace(r, val);\n return \"\";\n }\n }\n\n return newVal;\n });\n};\nvar Editor = require(\"../editor\").Editor;\nrequire(\"../config\").defineOptions(Editor.prototype, \"editor\", {\n spellcheck: {\n set: function(val) {\n var text = this.textInput.getElement();\n text.spellcheck = !!val;\n if (!val)\n this.removeListener(\"nativecontextmenu\", exports.contextMenuHandler);\n else\n this.on(\"nativecontextmenu\", exports.contextMenuHandler);\n },\n value: true\n }\n});\n\n}); (function() {\n ace.require([\"ace/ext/spellcheck\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file18 := &embedded.EmbeddedFile{ Filename: "16f4439a0d344c68357e63c24719dfc2.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/gcode\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText =undefined;\nexports.scope = \"gcode\";\n\n}); (function() {\n ace.require([\"ace/snippets/gcode\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file19 := &embedded.EmbeddedFile{ Filename: "1810046f2f3e963af7edc12bdd0f5982.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/pascal\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText =undefined;\nexports.scope = \"pascal\";\n\n}); (function() {\n ace.require([\"ace/snippets/pascal\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file1a := &embedded.EmbeddedFile{ Filename: "1898cb6dd49e17c14fa2b89aee7f468c.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/event_emitter\",\"ace/lib/lang\",\"ace/range\",\"ace/anchor\",\"ace/keyboard/hash_handler\",\"ace/tokenizer\",\"ace/lib/dom\",\"ace/editor\"], function(require, exports, module) {\n\"use strict\";\nvar oop = require(\"./lib/oop\");\nvar EventEmitter = require(\"./lib/event_emitter\").EventEmitter;\nvar lang = require(\"./lib/lang\");\nvar Range = require(\"./range\").Range;\nvar Anchor = require(\"./anchor\").Anchor;\nvar HashHandler = require(\"./keyboard/hash_handler\").HashHandler;\nvar Tokenizer = require(\"./tokenizer\").Tokenizer;\nvar comparePoints = Range.comparePoints;\n\nvar SnippetManager = function() {\n this.snippetMap = {};\n this.snippetNameMap = {};\n};\n\n(function() {\n oop.implement(this, EventEmitter);\n \n this.getTokenizer = function() {\n function TabstopToken(str, _, stack) {\n str = str.substr(1);\n if (/^\\d+$/.test(str) && !stack.inFormatString)\n return [{tabstopId: parseInt(str, 10)}];\n return [{text: str}];\n }\n function escape(ch) {\n return \"(?:[^\\\\\\\\\" + ch + \"]|\\\\\\\\.)\";\n }\n SnippetManager.$tokenizer = new Tokenizer({\n start: [\n {regex: /:/, onMatch: function(val, state, stack) {\n if (stack.length && stack[0].expectIf) {\n stack[0].expectIf = false;\n stack[0].elseBranch = stack[0];\n return [stack[0]];\n }\n return \":\";\n }},\n {regex: /\\\\./, onMatch: function(val, state, stack) {\n var ch = val[1];\n if (ch == \"}\" && stack.length) {\n val = ch;\n }else if (\"`$\\\\\".indexOf(ch) != -1) {\n val = ch;\n } else if (stack.inFormatString) {\n if (ch == \"n\")\n val = \"\\n\";\n else if (ch == \"t\")\n val = \"\\n\";\n else if (\"ulULE\".indexOf(ch) != -1) {\n val = {changeCase: ch, local: ch > \"a\"};\n }\n }\n\n return [val];\n }},\n {regex: /}/, onMatch: function(val, state, stack) {\n return [stack.length ? stack.shift() : val];\n }},\n {regex: /\\$(?:\\d+|\\w+)/, onMatch: TabstopToken},\n {regex: /\\$\\{[\\dA-Z_a-z]+/, onMatch: function(str, state, stack) {\n var t = TabstopToken(str.substr(1), state, stack);\n stack.unshift(t[0]);\n return t;\n }, next: \"snippetVar\"},\n {regex: /\\n/, token: \"newline\", merge: false}\n ],\n snippetVar: [\n {regex: \"\\\\|\" + escape(\"\\\\|\") + \"*\\\\|\", onMatch: function(val, state, stack) {\n stack[0].choices = val.slice(1, -1).split(\",\");\n }, next: \"start\"},\n {regex: \"/(\" + escape(\"/\") + \"+)/(?:(\" + escape(\"/\") + \"*)/)(\\\\w*):?\",\n onMatch: function(val, state, stack) {\n var ts = stack[0];\n ts.fmtString = val;\n\n val = this.splitRegex.exec(val);\n ts.guard = val[1];\n ts.fmt = val[2];\n ts.flag = val[3];\n return \"\";\n }, next: \"start\"},\n {regex: \"`\" + escape(\"`\") + \"*`\", onMatch: function(val, state, stack) {\n stack[0].code = val.splice(1, -1);\n return \"\";\n }, next: \"start\"},\n {regex: \"\\\\?\", onMatch: function(val, state, stack) {\n if (stack[0])\n stack[0].expectIf = true;\n }, next: \"start\"},\n {regex: \"([^:}\\\\\\\\]|\\\\\\\\.)*:?\", token: \"\", next: \"start\"}\n ],\n formatString: [\n {regex: \"/(\" + escape(\"/\") + \"+)/\", token: \"regex\"},\n {regex: \"\", onMatch: function(val, state, stack) {\n stack.inFormatString = true;\n }, next: \"start\"}\n ]\n });\n SnippetManager.prototype.getTokenizer = function() {\n return SnippetManager.$tokenizer;\n };\n return SnippetManager.$tokenizer;\n };\n\n this.tokenizeTmSnippet = function(str, startState) {\n return this.getTokenizer().getLineTokens(str, startState).tokens.map(function(x) {\n return x.value || x;\n });\n };\n\n this.$getDefaultValue = function(editor, name) {\n if (/^[A-Z]\\d+$/.test(name)) {\n var i = name.substr(1);\n return (this.variables[name[0] + \"__\"] || {})[i];\n }\n if (/^\\d+$/.test(name)) {\n return (this.variables.__ || {})[name];\n }\n name = name.replace(/^TM_/, \"\");\n\n if (!editor)\n return;\n var s = editor.session;\n switch(name) {\n case \"CURRENT_WORD\":\n var r = s.getWordRange();\n case \"SELECTION\":\n case \"SELECTED_TEXT\":\n return s.getTextRange(r);\n case \"CURRENT_LINE\":\n return s.getLine(editor.getCursorPosition().row);\n case \"PREV_LINE\": // not possible in textmate\n return s.getLine(editor.getCursorPosition().row - 1);\n case \"LINE_INDEX\":\n return editor.getCursorPosition().column;\n case \"LINE_NUMBER\":\n return editor.getCursorPosition().row + 1;\n case \"SOFT_TABS\":\n return s.getUseSoftTabs() ? \"YES\" : \"NO\";\n case \"TAB_SIZE\":\n return s.getTabSize();\n case \"FILENAME\":\n case \"FILEPATH\":\n return \"\";\n case \"FULLNAME\":\n return \"Ace\";\n }\n };\n this.variables = {};\n this.getVariableValue = function(editor, varName) {\n if (this.variables.hasOwnProperty(varName))\n return this.variables[varName](editor, varName) || \"\";\n return this.$getDefaultValue(editor, varName) || \"\";\n };\n this.tmStrFormat = function(str, ch, editor) {\n var flag = ch.flag || \"\";\n var re = ch.guard;\n re = new RegExp(re, flag.replace(/[^gi]/, \"\"));\n var fmtTokens = this.tokenizeTmSnippet(ch.fmt, \"formatString\");\n var _self = this;\n var formatted = str.replace(re, function() {\n _self.variables.__ = arguments;\n var fmtParts = _self.resolveVariables(fmtTokens, editor);\n var gChangeCase = \"E\";\n for (var i = 0; i < fmtParts.length; i++) {\n var ch = fmtParts[i];\n if (typeof ch == \"object\") {\n fmtParts[i] = \"\";\n if (ch.changeCase && ch.local) {\n var next = fmtParts[i + 1];\n if (next && typeof next == \"string\") {\n if (ch.changeCase == \"u\")\n fmtParts[i] = next[0].toUpperCase();\n else\n fmtParts[i] = next[0].toLowerCase();\n fmtParts[i + 1] = next.substr(1);\n }\n } else if (ch.changeCase) {\n gChangeCase = ch.changeCase;\n }\n } else if (gChangeCase == \"U\") {\n fmtParts[i] = ch.toUpperCase();\n } else if (gChangeCase == \"L\") {\n fmtParts[i] = ch.toLowerCase();\n }\n }\n return fmtParts.join(\"\");\n });\n this.variables.__ = null;\n return formatted;\n };\n\n this.resolveVariables = function(snippet, editor) {\n var result = [];\n for (var i = 0; i < snippet.length; i++) {\n var ch = snippet[i];\n if (typeof ch == \"string\") {\n result.push(ch);\n } else if (typeof ch != \"object\") {\n continue;\n } else if (ch.skip) {\n gotoNext(ch);\n } else if (ch.processed < i) {\n continue;\n } else if (ch.text) {\n var value = this.getVariableValue(editor, ch.text);\n if (value && ch.fmtString)\n value = this.tmStrFormat(value, ch);\n ch.processed = i;\n if (ch.expectIf == null) {\n if (value) {\n result.push(value);\n gotoNext(ch);\n }\n } else {\n if (value) {\n ch.skip = ch.elseBranch;\n } else\n gotoNext(ch);\n }\n } else if (ch.tabstopId != null) {\n result.push(ch);\n } else if (ch.changeCase != null) {\n result.push(ch);\n }\n }\n function gotoNext(ch) {\n var i1 = snippet.indexOf(ch, i + 1);\n if (i1 != -1)\n i = i1;\n }\n return result;\n };\n\n this.insertSnippetForSelection = function(editor, snippetText) {\n var cursor = editor.getCursorPosition();\n var line = editor.session.getLine(cursor.row);\n var tabString = editor.session.getTabString();\n var indentString = line.match(/^\\s*/)[0];\n \n if (cursor.column < indentString.length)\n indentString = indentString.slice(0, cursor.column);\n\n snippetText = snippetText.replace(/\\r/g, \"\");\n var tokens = this.tokenizeTmSnippet(snippetText);\n tokens = this.resolveVariables(tokens, editor);\n tokens = tokens.map(function(x) {\n if (x == \"\\n\")\n return x + indentString;\n if (typeof x == \"string\")\n return x.replace(/\\t/g, tabString);\n return x;\n });\n var tabstops = [];\n tokens.forEach(function(p, i) {\n if (typeof p != \"object\")\n return;\n var id = p.tabstopId;\n var ts = tabstops[id];\n if (!ts) {\n ts = tabstops[id] = [];\n ts.index = id;\n ts.value = \"\";\n }\n if (ts.indexOf(p) !== -1)\n return;\n ts.push(p);\n var i1 = tokens.indexOf(p, i + 1);\n if (i1 === -1)\n return;\n\n var value = tokens.slice(i + 1, i1);\n var isNested = value.some(function(t) {return typeof t === \"object\";});\n if (isNested && !ts.value) {\n ts.value = value;\n } else if (value.length && (!ts.value || typeof ts.value !== \"string\")) {\n ts.value = value.join(\"\");\n }\n });\n tabstops.forEach(function(ts) {ts.length = 0;});\n var expanding = {};\n function copyValue(val) {\n var copy = [];\n for (var i = 0; i < val.length; i++) {\n var p = val[i];\n if (typeof p == \"object\") {\n if (expanding[p.tabstopId])\n continue;\n var j = val.lastIndexOf(p, i - 1);\n p = copy[j] || {tabstopId: p.tabstopId};\n }\n copy[i] = p;\n }\n return copy;\n }\n for (var i = 0; i < tokens.length; i++) {\n var p = tokens[i];\n if (typeof p != \"object\")\n continue;\n var id = p.tabstopId;\n var i1 = tokens.indexOf(p, i + 1);\n if (expanding[id]) {\n if (expanding[id] === p)\n expanding[id] = null;\n continue;\n }\n \n var ts = tabstops[id];\n var arg = typeof ts.value == \"string\" ? [ts.value] : copyValue(ts.value);\n arg.unshift(i + 1, Math.max(0, i1 - i));\n arg.push(p);\n expanding[id] = p;\n tokens.splice.apply(tokens, arg);\n\n if (ts.indexOf(p) === -1)\n ts.push(p);\n }\n var row = 0, column = 0;\n var text = \"\";\n tokens.forEach(function(t) {\n if (typeof t === \"string\") {\n var lines = t.split(\"\\n\");\n if (lines.length > 1){\n column = lines[lines.length - 1].length;\n row += lines.length - 1;\n } else\n column += t.length;\n text += t;\n } else {\n if (!t.start)\n t.start = {row: row, column: column};\n else\n t.end = {row: row, column: column};\n }\n });\n var range = editor.getSelectionRange();\n var end = editor.session.replace(range, text);\n\n var tabstopManager = new TabstopManager(editor);\n var selectionId = editor.inVirtualSelectionMode && editor.selection.index;\n tabstopManager.addTabstops(tabstops, range.start, end, selectionId);\n };\n \n this.insertSnippet = function(editor, snippetText) {\n var self = this;\n if (editor.inVirtualSelectionMode)\n return self.insertSnippetForSelection(editor, snippetText);\n \n editor.forEachSelection(function() {\n self.insertSnippetForSelection(editor, snippetText);\n }, null, {keepOrder: true});\n \n if (editor.tabstopManager)\n editor.tabstopManager.tabNext();\n };\n\n this.$getScope = function(editor) {\n var scope = editor.session.$mode.$id || \"\";\n scope = scope.split(\"/\").pop();\n if (scope === \"html\" || scope === \"php\") {\n if (scope === \"php\" && !editor.session.$mode.inlinePhp) \n scope = \"html\";\n var c = editor.getCursorPosition();\n var state = editor.session.getState(c.row);\n if (typeof state === \"object\") {\n state = state[0];\n }\n if (state.substring) {\n if (state.substring(0, 3) == \"js-\")\n scope = \"javascript\";\n else if (state.substring(0, 4) == \"css-\")\n scope = \"css\";\n else if (state.substring(0, 4) == \"php-\")\n scope = \"php\";\n }\n }\n \n return scope;\n };\n\n this.getActiveScopes = function(editor) {\n var scope = this.$getScope(editor);\n var scopes = [scope];\n var snippetMap = this.snippetMap;\n if (snippetMap[scope] && snippetMap[scope].includeScopes) {\n scopes.push.apply(scopes, snippetMap[scope].includeScopes);\n }\n scopes.push(\"_\");\n return scopes;\n };\n\n this.expandWithTab = function(editor, options) {\n var self = this;\n var result = editor.forEachSelection(function() {\n return self.expandSnippetForSelection(editor, options);\n }, null, {keepOrder: true});\n if (result && editor.tabstopManager)\n editor.tabstopManager.tabNext();\n return result;\n };\n \n this.expandSnippetForSelection = function(editor, options) {\n var cursor = editor.getCursorPosition();\n var line = editor.session.getLine(cursor.row);\n var before = line.substring(0, cursor.column);\n var after = line.substr(cursor.column);\n\n var snippetMap = this.snippetMap;\n var snippet;\n this.getActiveScopes(editor).some(function(scope) {\n var snippets = snippetMap[scope];\n if (snippets)\n snippet = this.findMatchingSnippet(snippets, before, after);\n return !!snippet;\n }, this);\n if (!snippet)\n return false;\n if (options && options.dryRun)\n return true;\n editor.session.doc.removeInLine(cursor.row,\n cursor.column - snippet.replaceBefore.length,\n cursor.column + snippet.replaceAfter.length\n );\n\n this.variables.M__ = snippet.matchBefore;\n this.variables.T__ = snippet.matchAfter;\n this.insertSnippetForSelection(editor, snippet.content);\n\n this.variables.M__ = this.variables.T__ = null;\n return true;\n };\n\n this.findMatchingSnippet = function(snippetList, before, after) {\n for (var i = snippetList.length; i--;) {\n var s = snippetList[i];\n if (s.startRe && !s.startRe.test(before))\n continue;\n if (s.endRe && !s.endRe.test(after))\n continue;\n if (!s.startRe && !s.endRe)\n continue;\n\n s.matchBefore = s.startRe ? s.startRe.exec(before) : [\"\"];\n s.matchAfter = s.endRe ? s.endRe.exec(after) : [\"\"];\n s.replaceBefore = s.triggerRe ? s.triggerRe.exec(before)[0] : \"\";\n s.replaceAfter = s.endTriggerRe ? s.endTriggerRe.exec(after)[0] : \"\";\n return s;\n }\n };\n\n this.snippetMap = {};\n this.snippetNameMap = {};\n this.register = function(snippets, scope) {\n var snippetMap = this.snippetMap;\n var snippetNameMap = this.snippetNameMap;\n var self = this;\n \n if (!snippets) \n snippets = [];\n \n function wrapRegexp(src) {\n if (src && !/^\\^?\\(.*\\)\\$?$|^\\\\b$/.test(src))\n src = \"(?:\" + src + \")\";\n\n return src || \"\";\n }\n function guardedRegexp(re, guard, opening) {\n re = wrapRegexp(re);\n guard = wrapRegexp(guard);\n if (opening) {\n re = guard + re;\n if (re && re[re.length - 1] != \"$\")\n re = re + \"$\";\n } else {\n re = re + guard;\n if (re && re[0] != \"^\")\n re = \"^\" + re;\n }\n return new RegExp(re);\n }\n\n function addSnippet(s) {\n if (!s.scope)\n s.scope = scope || \"_\";\n scope = s.scope;\n if (!snippetMap[scope]) {\n snippetMap[scope] = [];\n snippetNameMap[scope] = {};\n }\n\n var map = snippetNameMap[scope];\n if (s.name) {\n var old = map[s.name];\n if (old)\n self.unregister(old);\n map[s.name] = s;\n }\n snippetMap[scope].push(s);\n\n if (s.tabTrigger && !s.trigger) {\n if (!s.guard && /^\\w/.test(s.tabTrigger))\n s.guard = \"\\\\b\";\n s.trigger = lang.escapeRegExp(s.tabTrigger);\n }\n \n if (!s.trigger && !s.guard && !s.endTrigger && !s.endGuard)\n return;\n \n s.startRe = guardedRegexp(s.trigger, s.guard, true);\n s.triggerRe = new RegExp(s.trigger);\n\n s.endRe = guardedRegexp(s.endTrigger, s.endGuard, true);\n s.endTriggerRe = new RegExp(s.endTrigger);\n }\n\n if (snippets && snippets.content)\n addSnippet(snippets);\n else if (Array.isArray(snippets))\n snippets.forEach(addSnippet);\n \n this._signal(\"registerSnippets\", {scope: scope});\n };\n this.unregister = function(snippets, scope) {\n var snippetMap = this.snippetMap;\n var snippetNameMap = this.snippetNameMap;\n\n function removeSnippet(s) {\n var nameMap = snippetNameMap[s.scope||scope];\n if (nameMap && nameMap[s.name]) {\n delete nameMap[s.name];\n var map = snippetMap[s.scope||scope];\n var i = map && map.indexOf(s);\n if (i >= 0)\n map.splice(i, 1);\n }\n }\n if (snippets.content)\n removeSnippet(snippets);\n else if (Array.isArray(snippets))\n snippets.forEach(removeSnippet);\n };\n this.parseSnippetFile = function(str) {\n str = str.replace(/\\r/g, \"\");\n var list = [], snippet = {};\n var re = /^#.*|^({[\\s\\S]*})\\s*$|^(\\S+) (.*)$|^((?:\\n*\\t.*)+)/gm;\n var m;\n while (m = re.exec(str)) {\n if (m[1]) {\n try {\n snippet = JSON.parse(m[1]);\n list.push(snippet);\n } catch (e) {}\n } if (m[4]) {\n snippet.content = m[4].replace(/^\\t/gm, \"\");\n list.push(snippet);\n snippet = {};\n } else {\n var key = m[2], val = m[3];\n if (key == \"regex\") {\n var guardRe = /\\/((?:[^\\/\\\\]|\\\\.)*)|$/g;\n snippet.guard = guardRe.exec(val)[1];\n snippet.trigger = guardRe.exec(val)[1];\n snippet.endTrigger = guardRe.exec(val)[1];\n snippet.endGuard = guardRe.exec(val)[1];\n } else if (key == \"snippet\") {\n snippet.tabTrigger = val.match(/^\\S*/)[0];\n if (!snippet.name)\n snippet.name = val;\n } else {\n snippet[key] = val;\n }\n }\n }\n return list;\n };\n this.getSnippetByName = function(name, editor) {\n var snippetMap = this.snippetNameMap;\n var snippet;\n this.getActiveScopes(editor).some(function(scope) {\n var snippets = snippetMap[scope];\n if (snippets)\n snippet = snippets[name];\n return !!snippet;\n }, this);\n return snippet;\n };\n\n}).call(SnippetManager.prototype);\n\n\nvar TabstopManager = function(editor) {\n if (editor.tabstopManager)\n return editor.tabstopManager;\n editor.tabstopManager = this;\n this.$onChange = this.onChange.bind(this);\n this.$onChangeSelection = lang.delayedCall(this.onChangeSelection.bind(this)).schedule;\n this.$onChangeSession = this.onChangeSession.bind(this);\n this.$onAfterExec = this.onAfterExec.bind(this);\n this.attach(editor);\n};\n(function() {\n this.attach = function(editor) {\n this.index = 0;\n this.ranges = [];\n this.tabstops = [];\n this.$openTabstops = null;\n this.selectedTabstop = null;\n\n this.editor = editor;\n this.editor.on(\"change\", this.$onChange);\n this.editor.on(\"changeSelection\", this.$onChangeSelection);\n this.editor.on(\"changeSession\", this.$onChangeSession);\n this.editor.commands.on(\"afterExec\", this.$onAfterExec);\n this.editor.keyBinding.addKeyboardHandler(this.keyboardHandler);\n };\n this.detach = function() {\n this.tabstops.forEach(this.removeTabstopMarkers, this);\n this.ranges = null;\n this.tabstops = null;\n this.selectedTabstop = null;\n this.editor.removeListener(\"change\", this.$onChange);\n this.editor.removeListener(\"changeSelection\", this.$onChangeSelection);\n this.editor.removeListener(\"changeSession\", this.$onChangeSession);\n this.editor.commands.removeListener(\"afterExec\", this.$onAfterExec);\n this.editor.keyBinding.removeKeyboardHandler(this.keyboardHandler);\n this.editor.tabstopManager = null;\n this.editor = null;\n };\n\n this.onChange = function(delta) {\n var changeRange = delta;\n var isRemove = delta.action[0] == \"r\";\n var start = delta.start;\n var end = delta.end;\n var startRow = start.row;\n var endRow = end.row;\n var lineDif = endRow - startRow;\n var colDiff = end.column - start.column;\n\n if (isRemove) {\n lineDif = -lineDif;\n colDiff = -colDiff;\n }\n if (!this.$inChange && isRemove) {\n var ts = this.selectedTabstop;\n var changedOutside = ts && !ts.some(function(r) {\n return comparePoints(r.start, start) <= 0 && comparePoints(r.end, end) >= 0;\n });\n if (changedOutside)\n return this.detach();\n }\n var ranges = this.ranges;\n for (var i = 0; i < ranges.length; i++) {\n var r = ranges[i];\n if (r.end.row < start.row)\n continue;\n\n if (isRemove && comparePoints(start, r.start) < 0 && comparePoints(end, r.end) > 0) {\n this.removeRange(r);\n i--;\n continue;\n }\n\n if (r.start.row == startRow && r.start.column > start.column)\n r.start.column += colDiff;\n if (r.end.row == startRow && r.end.column >= start.column)\n r.end.column += colDiff;\n if (r.start.row >= startRow)\n r.start.row += lineDif;\n if (r.end.row >= startRow)\n r.end.row += lineDif;\n\n if (comparePoints(r.start, r.end) > 0)\n this.removeRange(r);\n }\n if (!ranges.length)\n this.detach();\n };\n this.updateLinkedFields = function() {\n var ts = this.selectedTabstop;\n if (!ts || !ts.hasLinkedRanges)\n return;\n this.$inChange = true;\n var session = this.editor.session;\n var text = session.getTextRange(ts.firstNonLinked);\n for (var i = ts.length; i--;) {\n var range = ts[i];\n if (!range.linked)\n continue;\n var fmt = exports.snippetManager.tmStrFormat(text, range.original);\n session.replace(range, fmt);\n }\n this.$inChange = false;\n };\n this.onAfterExec = function(e) {\n if (e.command && !e.command.readOnly)\n this.updateLinkedFields();\n };\n this.onChangeSelection = function() {\n if (!this.editor)\n return;\n var lead = this.editor.selection.lead;\n var anchor = this.editor.selection.anchor;\n var isEmpty = this.editor.selection.isEmpty();\n for (var i = this.ranges.length; i--;) {\n if (this.ranges[i].linked)\n continue;\n var containsLead = this.ranges[i].contains(lead.row, lead.column);\n var containsAnchor = isEmpty || this.ranges[i].contains(anchor.row, anchor.column);\n if (containsLead && containsAnchor)\n return;\n }\n this.detach();\n };\n this.onChangeSession = function() {\n this.detach();\n };\n this.tabNext = function(dir) {\n var max = this.tabstops.length;\n var index = this.index + (dir || 1);\n index = Math.min(Math.max(index, 1), max);\n if (index == max)\n index = 0;\n this.selectTabstop(index);\n if (index === 0)\n this.detach();\n };\n this.selectTabstop = function(index) {\n this.$openTabstops = null;\n var ts = this.tabstops[this.index];\n if (ts)\n this.addTabstopMarkers(ts);\n this.index = index;\n ts = this.tabstops[this.index];\n if (!ts || !ts.length)\n return;\n \n this.selectedTabstop = ts;\n if (!this.editor.inVirtualSelectionMode) { \n var sel = this.editor.multiSelect;\n sel.toSingleRange(ts.firstNonLinked.clone());\n for (var i = ts.length; i--;) {\n if (ts.hasLinkedRanges && ts[i].linked)\n continue;\n sel.addRange(ts[i].clone(), true);\n }\n if (sel.ranges[0])\n sel.addRange(sel.ranges[0].clone());\n } else {\n this.editor.selection.setRange(ts.firstNonLinked);\n }\n \n this.editor.keyBinding.addKeyboardHandler(this.keyboardHandler);\n };\n this.addTabstops = function(tabstops, start, end) {\n if (!this.$openTabstops)\n this.$openTabstops = [];\n if (!tabstops[0]) {\n var p = Range.fromPoints(end, end);\n moveRelative(p.start, start);\n moveRelative(p.end, start);\n tabstops[0] = [p];\n tabstops[0].index = 0;\n }\n\n var i = this.index;\n var arg = [i + 1, 0];\n var ranges = this.ranges;\n tabstops.forEach(function(ts, index) {\n var dest = this.$openTabstops[index] || ts;\n \n for (var i = ts.length; i--;) {\n var p = ts[i];\n var range = Range.fromPoints(p.start, p.end || p.start);\n movePoint(range.start, start);\n movePoint(range.end, start);\n range.original = p;\n range.tabstop = dest;\n ranges.push(range);\n if (dest != ts)\n dest.unshift(range);\n else\n dest[i] = range;\n if (p.fmtString) {\n range.linked = true;\n dest.hasLinkedRanges = true;\n } else if (!dest.firstNonLinked)\n dest.firstNonLinked = range;\n }\n if (!dest.firstNonLinked)\n dest.hasLinkedRanges = false;\n if (dest === ts) {\n arg.push(dest);\n this.$openTabstops[index] = dest;\n }\n this.addTabstopMarkers(dest);\n }, this);\n \n if (arg.length > 2) {\n if (this.tabstops.length)\n arg.push(arg.splice(2, 1)[0]);\n this.tabstops.splice.apply(this.tabstops, arg);\n }\n };\n\n this.addTabstopMarkers = function(ts) {\n var session = this.editor.session;\n ts.forEach(function(range) {\n if (!range.markerId)\n range.markerId = session.addMarker(range, \"ace_snippet-marker\", \"text\");\n });\n };\n this.removeTabstopMarkers = function(ts) {\n var session = this.editor.session;\n ts.forEach(function(range) {\n session.removeMarker(range.markerId);\n range.markerId = null;\n });\n };\n this.removeRange = function(range) {\n var i = range.tabstop.indexOf(range);\n range.tabstop.splice(i, 1);\n i = this.ranges.indexOf(range);\n this.ranges.splice(i, 1);\n this.editor.session.removeMarker(range.markerId);\n if (!range.tabstop.length) {\n i = this.tabstops.indexOf(range.tabstop);\n if (i != -1)\n this.tabstops.splice(i, 1);\n if (!this.tabstops.length)\n this.detach();\n }\n };\n\n this.keyboardHandler = new HashHandler();\n this.keyboardHandler.bindKeys({\n \"Tab\": function(ed) {\n if (exports.snippetManager && exports.snippetManager.expandWithTab(ed)) {\n return;\n }\n\n ed.tabstopManager.tabNext(1);\n },\n \"Shift-Tab\": function(ed) {\n ed.tabstopManager.tabNext(-1);\n },\n \"Esc\": function(ed) {\n ed.tabstopManager.detach();\n },\n \"Return\": function(ed) {\n return false;\n }\n });\n}).call(TabstopManager.prototype);\n\n\n\nvar changeTracker = {};\nchangeTracker.onChange = Anchor.prototype.onChange;\nchangeTracker.setPosition = function(row, column) {\n this.pos.row = row;\n this.pos.column = column;\n};\nchangeTracker.update = function(pos, delta, $insertRight) {\n this.$insertRight = $insertRight;\n this.pos = pos; \n this.onChange(delta);\n};\n\nvar movePoint = function(point, diff) {\n if (point.row == 0)\n point.column += diff.column;\n point.row += diff.row;\n};\n\nvar moveRelative = function(point, start) {\n if (point.row == start.row)\n point.column -= start.column;\n point.row -= start.row;\n};\n\n\nrequire(\"./lib/dom\").importCssString(\"\\\n.ace_snippet-marker {\\\n -moz-box-sizing: border-box;\\\n box-sizing: border-box;\\\n background: rgba(194, 193, 208, 0.09);\\\n border: 1px dotted rgba(211, 208, 235, 0.62);\\\n position: absolute;\\\n}\");\n\nexports.snippetManager = new SnippetManager();\n\n\nvar Editor = require(\"./editor\").Editor;\n(function() {\n this.insertSnippet = function(content, options) {\n return exports.snippetManager.insertSnippet(this, content, options);\n };\n this.expandSnippet = function(options) {\n return exports.snippetManager.expandWithTab(this, options);\n };\n}).call(Editor.prototype);\n\n});\n\nace.define(\"ace/autocomplete/popup\",[\"require\",\"exports\",\"module\",\"ace/virtual_renderer\",\"ace/editor\",\"ace/range\",\"ace/lib/event\",\"ace/lib/lang\",\"ace/lib/dom\"], function(require, exports, module) {\n\"use strict\";\n\nvar Renderer = require(\"../virtual_renderer\").VirtualRenderer;\nvar Editor = require(\"../editor\").Editor;\nvar Range = require(\"../range\").Range;\nvar event = require(\"../lib/event\");\nvar lang = require(\"../lib/lang\");\nvar dom = require(\"../lib/dom\");\n\nvar $singleLineEditor = function(el) {\n var renderer = new Renderer(el);\n\n renderer.$maxLines = 4;\n\n var editor = new Editor(renderer);\n\n editor.setHighlightActiveLine(false);\n editor.setShowPrintMargin(false);\n editor.renderer.setShowGutter(false);\n editor.renderer.setHighlightGutterLine(false);\n\n editor.$mouseHandler.$focusTimeout = 0;\n editor.$highlightTagPending = true;\n\n return editor;\n};\n\nvar AcePopup = function(parentNode) {\n var el = dom.createElement(\"div\");\n var popup = new $singleLineEditor(el);\n\n if (parentNode)\n parentNode.appendChild(el);\n el.style.display = \"none\";\n popup.renderer.content.style.cursor = \"default\";\n popup.renderer.setStyle(\"ace_autocomplete\");\n\n popup.setOption(\"displayIndentGuides\", false);\n popup.setOption(\"dragDelay\", 150);\n\n var noop = function(){};\n\n popup.focus = noop;\n popup.$isFocused = true;\n\n popup.renderer.$cursorLayer.restartTimer = noop;\n popup.renderer.$cursorLayer.element.style.opacity = 0;\n\n popup.renderer.$maxLines = 8;\n popup.renderer.$keepTextAreaAtCursor = false;\n\n popup.setHighlightActiveLine(false);\n popup.session.highlight(\"\");\n popup.session.$searchHighlight.clazz = \"ace_highlight-marker\";\n\n popup.on(\"mousedown\", function(e) {\n var pos = e.getDocumentPosition();\n popup.selection.moveToPosition(pos);\n selectionMarker.start.row = selectionMarker.end.row = pos.row;\n e.stop();\n });\n\n var lastMouseEvent;\n var hoverMarker = new Range(-1,0,-1,Infinity);\n var selectionMarker = new Range(-1,0,-1,Infinity);\n selectionMarker.id = popup.session.addMarker(selectionMarker, \"ace_active-line\", \"fullLine\");\n popup.setSelectOnHover = function(val) {\n if (!val) {\n hoverMarker.id = popup.session.addMarker(hoverMarker, \"ace_line-hover\", \"fullLine\");\n } else if (hoverMarker.id) {\n popup.session.removeMarker(hoverMarker.id);\n hoverMarker.id = null;\n }\n };\n popup.setSelectOnHover(false);\n popup.on(\"mousemove\", function(e) {\n if (!lastMouseEvent) {\n lastMouseEvent = e;\n return;\n }\n if (lastMouseEvent.x == e.x && lastMouseEvent.y == e.y) {\n return;\n }\n lastMouseEvent = e;\n lastMouseEvent.scrollTop = popup.renderer.scrollTop;\n var row = lastMouseEvent.getDocumentPosition().row;\n if (hoverMarker.start.row != row) {\n if (!hoverMarker.id)\n popup.setRow(row);\n setHoverMarker(row);\n }\n });\n popup.renderer.on(\"beforeRender\", function() {\n if (lastMouseEvent && hoverMarker.start.row != -1) {\n lastMouseEvent.$pos = null;\n var row = lastMouseEvent.getDocumentPosition().row;\n if (!hoverMarker.id)\n popup.setRow(row);\n setHoverMarker(row, true);\n }\n });\n popup.renderer.on(\"afterRender\", function() {\n var row = popup.getRow();\n var t = popup.renderer.$textLayer;\n var selected = t.element.childNodes[row - t.config.firstRow];\n if (selected !== t.selectedNode && t.selectedNode)\n dom.removeCssClass(t.selectedNode, \"ace_selected\");\n t.selectedNode = selected;\n if (selected)\n dom.addCssClass(selected, \"ace_selected\");\n });\n var hideHoverMarker = function() { setHoverMarker(-1); };\n var setHoverMarker = function(row, suppressRedraw) {\n if (row !== hoverMarker.start.row) {\n hoverMarker.start.row = hoverMarker.end.row = row;\n if (!suppressRedraw)\n popup.session._emit(\"changeBackMarker\");\n popup._emit(\"changeHoverMarker\");\n }\n };\n popup.getHoveredRow = function() {\n return hoverMarker.start.row;\n };\n\n event.addListener(popup.container, \"mouseout\", hideHoverMarker);\n popup.on(\"hide\", hideHoverMarker);\n popup.on(\"changeSelection\", hideHoverMarker);\n\n popup.session.doc.getLength = function() {\n return popup.data.length;\n };\n popup.session.doc.getLine = function(i) {\n var data = popup.data[i];\n if (typeof data == \"string\")\n return data;\n return (data && data.value) || \"\";\n };\n\n var bgTokenizer = popup.session.bgTokenizer;\n bgTokenizer.$tokenizeRow = function(row) {\n var data = popup.data[row];\n var tokens = [];\n if (!data)\n return tokens;\n if (typeof data == \"string\")\n data = {value: data};\n var caption = data.caption || data.value || data.name;\n\n function addToken(value, className) {\n value && tokens.push({\n type: (data.className || \"\") + (className || \"\"), \n value: value\n });\n }\n \n var lower = caption.toLowerCase();\n var filterText = (popup.filterText || \"\").toLowerCase();\n var lastIndex = 0;\n var lastI = 0;\n for (var i = 0; i <= filterText.length; i++) {\n if (i != lastI && (data.matchMask & (1 << i) || i == filterText.length)) {\n var sub = filterText.slice(lastI, i);\n lastI = i;\n var index = lower.indexOf(sub, lastIndex);\n if (index == -1) continue;\n addToken(caption.slice(lastIndex, index), \"\");\n lastIndex = index + sub.length;\n addToken(caption.slice(index, lastIndex), \"completion-highlight\");\n }\n }\n addToken(caption.slice(lastIndex, caption.length), \"\");\n \n if (data.meta)\n tokens.push({type: \"completion-meta\", value: data.meta});\n\n return tokens;\n };\n bgTokenizer.$updateOnChange = noop;\n bgTokenizer.start = noop;\n\n popup.session.$computeWidth = function() {\n return this.screenWidth = 0;\n };\n popup.isOpen = false;\n popup.isTopdown = false;\n popup.autoSelect = true;\n popup.filterText = \"\";\n\n popup.data = [];\n popup.setData = function(list, filterText) {\n popup.filterText = filterText || \"\";\n popup.setValue(lang.stringRepeat(\"\\n\", list.length), -1);\n popup.data = list || [];\n popup.setRow(0);\n };\n popup.getData = function(row) {\n return popup.data[row];\n };\n\n popup.getRow = function() {\n return selectionMarker.start.row;\n };\n popup.setRow = function(line) {\n line = Math.max(this.autoSelect ? 0 : -1, Math.min(this.data.length, line));\n if (selectionMarker.start.row != line) {\n popup.selection.clearSelection();\n selectionMarker.start.row = selectionMarker.end.row = line || 0;\n popup.session._emit(\"changeBackMarker\");\n popup.moveCursorTo(line || 0, 0);\n if (popup.isOpen)\n popup._signal(\"select\");\n }\n };\n\n popup.on(\"changeSelection\", function() {\n if (popup.isOpen)\n popup.setRow(popup.selection.lead.row);\n popup.renderer.scrollCursorIntoView();\n });\n\n popup.hide = function() {\n this.container.style.display = \"none\";\n this._signal(\"hide\");\n popup.isOpen = false;\n };\n popup.show = function(pos, lineHeight, topdownOnly) {\n var el = this.container;\n var screenHeight = window.innerHeight;\n var screenWidth = window.innerWidth;\n var renderer = this.renderer;\n var maxH = renderer.$maxLines * lineHeight * 1.4;\n var top = pos.top + this.$borderSize;\n var allowTopdown = top > screenHeight / 2 && !topdownOnly;\n if (allowTopdown && top + lineHeight + maxH > screenHeight) {\n renderer.$maxPixelHeight = top - 2 * this.$borderSize;\n el.style.top = \"\";\n el.style.bottom = screenHeight - top + \"px\";\n popup.isTopdown = false;\n } else {\n top += lineHeight;\n renderer.$maxPixelHeight = screenHeight - top - 0.2 * lineHeight;\n el.style.top = top + \"px\";\n el.style.bottom = \"\";\n popup.isTopdown = true;\n }\n\n el.style.display = \"\";\n\n var left = pos.left;\n if (left + el.offsetWidth > screenWidth)\n left = screenWidth - el.offsetWidth;\n\n el.style.left = left + \"px\";\n\n this._signal(\"show\");\n lastMouseEvent = null;\n popup.isOpen = true;\n };\n\n popup.getTextLeftOffset = function() {\n return this.$borderSize + this.renderer.$padding + this.$imageSize;\n };\n\n popup.$imageSize = 0;\n popup.$borderSize = 1;\n\n return popup;\n};\n\ndom.importCssString(\"\\\n.ace_editor.ace_autocomplete .ace_marker-layer .ace_active-line {\\\n background-color: #CAD6FA;\\\n z-index: 1;\\\n}\\\n.ace_dark.ace_editor.ace_autocomplete .ace_marker-layer .ace_active-line {\\\n background-color: #3a674e;\\\n}\\\n.ace_editor.ace_autocomplete .ace_line-hover {\\\n border: 1px solid #abbffe;\\\n margin-top: -1px;\\\n background: rgba(233,233,253,0.4);\\\n position: absolute;\\\n z-index: 2;\\\n}\\\n.ace_dark.ace_editor.ace_autocomplete .ace_line-hover {\\\n border: 1px solid rgba(109, 150, 13, 0.8);\\\n background: rgba(58, 103, 78, 0.62);\\\n}\\\n.ace_completion-meta {\\\n opacity: 0.5;\\\n margin: 0.9em;\\\n}\\\n.ace_editor.ace_autocomplete .ace_completion-highlight{\\\n color: #2d69c7;\\\n}\\\n.ace_dark.ace_editor.ace_autocomplete .ace_completion-highlight{\\\n color: #93ca12;\\\n}\\\n.ace_editor.ace_autocomplete {\\\n width: 300px;\\\n z-index: 200000;\\\n border: 1px lightgray solid;\\\n position: fixed;\\\n box-shadow: 2px 3px 5px rgba(0,0,0,.2);\\\n line-height: 1.4;\\\n background: #fefefe;\\\n color: #111;\\\n}\\\n.ace_dark.ace_editor.ace_autocomplete {\\\n border: 1px #484747 solid;\\\n box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.51);\\\n line-height: 1.4;\\\n background: #25282c;\\\n color: #c1c1c1;\\\n}\", \"autocompletion.css\");\n\nexports.AcePopup = AcePopup;\n\n});\n\nace.define(\"ace/autocomplete/util\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.parForEach = function(array, fn, callback) {\n var completed = 0;\n var arLength = array.length;\n if (arLength === 0)\n callback();\n for (var i = 0; i < arLength; i++) {\n fn(array[i], function(result, err) {\n completed++;\n if (completed === arLength)\n callback(result, err);\n });\n }\n};\n\nvar ID_REGEX = /[a-zA-Z_0-9\\$\\-\\u00A2-\\uFFFF]/;\n\nexports.retrievePrecedingIdentifier = function(text, pos, regex) {\n regex = regex || ID_REGEX;\n var buf = [];\n for (var i = pos-1; i >= 0; i--) {\n if (regex.test(text[i]))\n buf.push(text[i]);\n else\n break;\n }\n return buf.reverse().join(\"\");\n};\n\nexports.retrieveFollowingIdentifier = function(text, pos, regex) {\n regex = regex || ID_REGEX;\n var buf = [];\n for (var i = pos; i < text.length; i++) {\n if (regex.test(text[i]))\n buf.push(text[i]);\n else\n break;\n }\n return buf;\n};\n\nexports.getCompletionPrefix = function (editor) {\n var pos = editor.getCursorPosition();\n var line = editor.session.getLine(pos.row);\n var prefix;\n editor.completers.forEach(function(completer) {\n if (completer.identifierRegexps) {\n completer.identifierRegexps.forEach(function(identifierRegex) {\n if (!prefix && identifierRegex)\n prefix = this.retrievePrecedingIdentifier(line, pos.column, identifierRegex);\n }.bind(this));\n }\n }.bind(this));\n return prefix || this.retrievePrecedingIdentifier(line, pos.column);\n};\n\n});\n\nace.define(\"ace/autocomplete\",[\"require\",\"exports\",\"module\",\"ace/keyboard/hash_handler\",\"ace/autocomplete/popup\",\"ace/autocomplete/util\",\"ace/lib/event\",\"ace/lib/lang\",\"ace/lib/dom\",\"ace/snippets\"], function(require, exports, module) {\n\"use strict\";\n\nvar HashHandler = require(\"./keyboard/hash_handler\").HashHandler;\nvar AcePopup = require(\"./autocomplete/popup\").AcePopup;\nvar util = require(\"./autocomplete/util\");\nvar event = require(\"./lib/event\");\nvar lang = require(\"./lib/lang\");\nvar dom = require(\"./lib/dom\");\nvar snippetManager = require(\"./snippets\").snippetManager;\n\nvar Autocomplete = function() {\n this.autoInsert = false;\n this.autoSelect = true;\n this.exactMatch = false;\n this.gatherCompletionsId = 0;\n this.keyboardHandler = new HashHandler();\n this.keyboardHandler.bindKeys(this.commands);\n\n this.blurListener = this.blurListener.bind(this);\n this.changeListener = this.changeListener.bind(this);\n this.mousedownListener = this.mousedownListener.bind(this);\n this.mousewheelListener = this.mousewheelListener.bind(this);\n\n this.changeTimer = lang.delayedCall(function() {\n this.updateCompletions(true);\n }.bind(this));\n\n this.tooltipTimer = lang.delayedCall(this.updateDocTooltip.bind(this), 50);\n};\n\n(function() {\n\n this.$init = function() {\n this.popup = new AcePopup(document.body || document.documentElement);\n this.popup.on(\"click\", function(e) {\n this.insertMatch();\n e.stop();\n }.bind(this));\n this.popup.focus = this.editor.focus.bind(this.editor);\n this.popup.on(\"show\", this.tooltipTimer.bind(null, null));\n this.popup.on(\"select\", this.tooltipTimer.bind(null, null));\n this.popup.on(\"changeHoverMarker\", this.tooltipTimer.bind(null, null));\n return this.popup;\n };\n\n this.getPopup = function() {\n return this.popup || this.$init();\n };\n\n this.openPopup = function(editor, prefix, keepPopupPosition) {\n if (!this.popup)\n this.$init();\n\n this.popup.autoSelect = this.autoSelect;\n\n this.popup.setData(this.completions.filtered, this.completions.filterText);\n\n editor.keyBinding.addKeyboardHandler(this.keyboardHandler);\n \n var renderer = editor.renderer;\n this.popup.setRow(this.autoSelect ? 0 : -1);\n if (!keepPopupPosition) {\n this.popup.setTheme(editor.getTheme());\n this.popup.setFontSize(editor.getFontSize());\n\n var lineHeight = renderer.layerConfig.lineHeight;\n\n var pos = renderer.$cursorLayer.getPixelPosition(this.base, true);\n pos.left -= this.popup.getTextLeftOffset();\n\n var rect = editor.container.getBoundingClientRect();\n pos.top += rect.top - renderer.layerConfig.offset;\n pos.left += rect.left - editor.renderer.scrollLeft;\n pos.left += renderer.gutterWidth;\n\n this.popup.show(pos, lineHeight);\n } else if (keepPopupPosition && !prefix) {\n this.detach();\n }\n };\n\n this.detach = function() {\n this.editor.keyBinding.removeKeyboardHandler(this.keyboardHandler);\n this.editor.off(\"changeSelection\", this.changeListener);\n this.editor.off(\"blur\", this.blurListener);\n this.editor.off(\"mousedown\", this.mousedownListener);\n this.editor.off(\"mousewheel\", this.mousewheelListener);\n this.changeTimer.cancel();\n this.hideDocTooltip();\n\n this.gatherCompletionsId += 1;\n if (this.popup && this.popup.isOpen)\n this.popup.hide();\n\n if (this.base)\n this.base.detach();\n this.activated = false;\n this.completions = this.base = null;\n };\n\n this.changeListener = function(e) {\n var cursor = this.editor.selection.lead;\n if (cursor.row != this.base.row || cursor.column < this.base.column) {\n this.detach();\n }\n if (this.activated)\n this.changeTimer.schedule();\n else\n this.detach();\n };\n\n this.blurListener = function(e) {\n var el = document.activeElement;\n var text = this.editor.textInput.getElement();\n var fromTooltip = e.relatedTarget && this.tooltipNode && this.tooltipNode.contains(e.relatedTarget);\n var container = this.popup && this.popup.container;\n if (el != text && el.parentNode != container && !fromTooltip\n && el != this.tooltipNode && e.relatedTarget != text\n ) {\n this.detach();\n }\n };\n\n this.mousedownListener = function(e) {\n this.detach();\n };\n\n this.mousewheelListener = function(e) {\n this.detach();\n };\n\n this.goTo = function(where) {\n var row = this.popup.getRow();\n var max = this.popup.session.getLength() - 1;\n\n switch(where) {\n case \"up\": row = row <= 0 ? max : row - 1; break;\n case \"down\": row = row >= max ? -1 : row + 1; break;\n case \"start\": row = 0; break;\n case \"end\": row = max; break;\n }\n\n this.popup.setRow(row);\n };\n\n this.insertMatch = function(data, options) {\n if (!data)\n data = this.popup.getData(this.popup.getRow());\n if (!data)\n return false;\n\n if (data.completer && data.completer.insertMatch) {\n data.completer.insertMatch(this.editor, data);\n } else {\n if (this.completions.filterText) {\n var ranges = this.editor.selection.getAllRanges();\n for (var i = 0, range; range = ranges[i]; i++) {\n range.start.column -= this.completions.filterText.length;\n this.editor.session.remove(range);\n }\n }\n if (data.snippet)\n snippetManager.insertSnippet(this.editor, data.snippet);\n else\n this.editor.execCommand(\"insertstring\", data.value || data);\n }\n this.detach();\n };\n\n\n this.commands = {\n \"Up\": function(editor) { editor.completer.goTo(\"up\"); },\n \"Down\": function(editor) { editor.completer.goTo(\"down\"); },\n \"Ctrl-Up|Ctrl-Home\": function(editor) { editor.completer.goTo(\"start\"); },\n \"Ctrl-Down|Ctrl-End\": function(editor) { editor.completer.goTo(\"end\"); },\n\n \"Esc\": function(editor) { editor.completer.detach(); },\n \"Return\": function(editor) { return editor.completer.insertMatch(); },\n \"Shift-Return\": function(editor) { editor.completer.insertMatch(null, {deleteSuffix: true}); },\n \"Tab\": function(editor) {\n var result = editor.completer.insertMatch();\n if (!result && !editor.tabstopManager)\n editor.completer.goTo(\"down\");\n else\n return result;\n },\n\n \"PageUp\": function(editor) { editor.completer.popup.gotoPageUp(); },\n \"PageDown\": function(editor) { editor.completer.popup.gotoPageDown(); }\n };\n\n this.gatherCompletions = function(editor, callback) {\n var session = editor.getSession();\n var pos = editor.getCursorPosition();\n\n var prefix = util.getCompletionPrefix(editor);\n\n this.base = session.doc.createAnchor(pos.row, pos.column - prefix.length);\n this.base.$insertRight = true;\n\n var matches = [];\n var total = editor.completers.length;\n editor.completers.forEach(function(completer, i) {\n completer.getCompletions(editor, session, pos, prefix, function(err, results) {\n if (!err && results)\n matches = matches.concat(results);\n callback(null, {\n prefix: util.getCompletionPrefix(editor),\n matches: matches,\n finished: (--total === 0)\n });\n });\n });\n return true;\n };\n\n this.showPopup = function(editor) {\n if (this.editor)\n this.detach();\n\n this.activated = true;\n\n this.editor = editor;\n if (editor.completer != this) {\n if (editor.completer)\n editor.completer.detach();\n editor.completer = this;\n }\n\n editor.on(\"changeSelection\", this.changeListener);\n editor.on(\"blur\", this.blurListener);\n editor.on(\"mousedown\", this.mousedownListener);\n editor.on(\"mousewheel\", this.mousewheelListener);\n\n this.updateCompletions();\n };\n\n this.updateCompletions = function(keepPopupPosition) {\n if (keepPopupPosition && this.base && this.completions) {\n var pos = this.editor.getCursorPosition();\n var prefix = this.editor.session.getTextRange({start: this.base, end: pos});\n if (prefix == this.completions.filterText)\n return;\n this.completions.setFilter(prefix);\n if (!this.completions.filtered.length)\n return this.detach();\n if (this.completions.filtered.length == 1\n && this.completions.filtered[0].value == prefix\n && !this.completions.filtered[0].snippet)\n return this.detach();\n this.openPopup(this.editor, prefix, keepPopupPosition);\n return;\n }\n var _id = this.gatherCompletionsId;\n this.gatherCompletions(this.editor, function(err, results) {\n var detachIfFinished = function() {\n if (!results.finished) return;\n return this.detach();\n }.bind(this);\n\n var prefix = results.prefix;\n var matches = results && results.matches;\n\n if (!matches || !matches.length)\n return detachIfFinished();\n if (prefix.indexOf(results.prefix) !== 0 || _id != this.gatherCompletionsId)\n return;\n\n this.completions = new FilteredList(matches);\n\n if (this.exactMatch)\n this.completions.exactMatch = true;\n\n this.completions.setFilter(prefix);\n var filtered = this.completions.filtered;\n if (!filtered.length)\n return detachIfFinished();\n if (filtered.length == 1 && filtered[0].value == prefix && !filtered[0].snippet)\n return detachIfFinished();\n if (this.autoInsert && filtered.length == 1 && results.finished)\n return this.insertMatch(filtered[0]);\n\n this.openPopup(this.editor, prefix, keepPopupPosition);\n }.bind(this));\n };\n\n this.cancelContextMenu = function() {\n this.editor.$mouseHandler.cancelContextMenu();\n };\n\n this.updateDocTooltip = function() {\n var popup = this.popup;\n var all = popup.data;\n var selected = all && (all[popup.getHoveredRow()] || all[popup.getRow()]);\n var doc = null;\n if (!selected || !this.editor || !this.popup.isOpen)\n return this.hideDocTooltip();\n this.editor.completers.some(function(completer) {\n if (completer.getDocTooltip)\n doc = completer.getDocTooltip(selected);\n return doc;\n });\n if (!doc)\n doc = selected;\n\n if (typeof doc == \"string\")\n doc = {docText: doc};\n if (!doc || !(doc.docHTML || doc.docText))\n return this.hideDocTooltip();\n this.showDocTooltip(doc);\n };\n\n this.showDocTooltip = function(item) {\n if (!this.tooltipNode) {\n this.tooltipNode = dom.createElement(\"div\");\n this.tooltipNode.className = \"ace_tooltip ace_doc-tooltip\";\n this.tooltipNode.style.margin = 0;\n this.tooltipNode.style.pointerEvents = \"auto\";\n this.tooltipNode.tabIndex = -1;\n this.tooltipNode.onblur = this.blurListener.bind(this);\n this.tooltipNode.onclick = this.onTooltipClick.bind(this);\n }\n\n var tooltipNode = this.tooltipNode;\n if (item.docHTML) {\n tooltipNode.innerHTML = item.docHTML;\n } else if (item.docText) {\n tooltipNode.textContent = item.docText;\n }\n\n if (!tooltipNode.parentNode)\n document.body.appendChild(tooltipNode);\n var popup = this.popup;\n var rect = popup.container.getBoundingClientRect();\n tooltipNode.style.top = popup.container.style.top;\n tooltipNode.style.bottom = popup.container.style.bottom;\n\n tooltipNode.style.display = \"block\";\n if (window.innerWidth - rect.right < 320) {\n if (rect.left < 320) {\n if(popup.isTopdown) {\n tooltipNode.style.top = rect.bottom + \"px\";\n tooltipNode.style.left = rect.left + \"px\";\n tooltipNode.style.right = \"\";\n tooltipNode.style.bottom = \"\";\n } else {\n tooltipNode.style.top = popup.container.offsetTop - tooltipNode.offsetHeight + \"px\";\n tooltipNode.style.left = rect.left + \"px\";\n tooltipNode.style.right = \"\";\n tooltipNode.style.bottom = \"\";\n }\n } else {\n tooltipNode.style.right = window.innerWidth - rect.left + \"px\";\n tooltipNode.style.left = \"\";\n }\n } else {\n tooltipNode.style.left = (rect.right + 1) + \"px\";\n tooltipNode.style.right = \"\";\n }\n };\n\n this.hideDocTooltip = function() {\n this.tooltipTimer.cancel();\n if (!this.tooltipNode) return;\n var el = this.tooltipNode;\n if (!this.editor.isFocused() && document.activeElement == el)\n this.editor.focus();\n this.tooltipNode = null;\n if (el.parentNode)\n el.parentNode.removeChild(el);\n };\n \n this.onTooltipClick = function(e) {\n var a = e.target;\n while (a && a != this.tooltipNode) {\n if (a.nodeName == \"A\" && a.href) {\n a.rel = \"noreferrer\";\n a.target = \"_blank\";\n break;\n }\n a = a.parentNode;\n }\n };\n\n}).call(Autocomplete.prototype);\n\nAutocomplete.startCommand = {\n name: \"startAutocomplete\",\n exec: function(editor) {\n if (!editor.completer)\n editor.completer = new Autocomplete();\n editor.completer.autoInsert = false;\n editor.completer.autoSelect = true;\n editor.completer.showPopup(editor);\n editor.completer.cancelContextMenu();\n },\n bindKey: \"Ctrl-Space|Ctrl-Shift-Space|Alt-Space\"\n};\n\nvar FilteredList = function(array, filterText) {\n this.all = array;\n this.filtered = array;\n this.filterText = filterText || \"\";\n this.exactMatch = false;\n};\n(function(){\n this.setFilter = function(str) {\n if (str.length > this.filterText && str.lastIndexOf(this.filterText, 0) === 0)\n var matches = this.filtered;\n else\n var matches = this.all;\n\n this.filterText = str;\n matches = this.filterCompletions(matches, this.filterText);\n matches = matches.sort(function(a, b) {\n return b.exactMatch - a.exactMatch || b.$score - a.$score \n || (a.caption || a.value) < (b.caption || b.value);\n });\n var prev = null;\n matches = matches.filter(function(item){\n var caption = item.snippet || item.caption || item.value;\n if (caption === prev) return false;\n prev = caption;\n return true;\n });\n\n this.filtered = matches;\n };\n this.filterCompletions = function(items, needle) {\n var results = [];\n var upper = needle.toUpperCase();\n var lower = needle.toLowerCase();\n loop: for (var i = 0, item; item = items[i]; i++) {\n var caption = item.caption || item.value || item.snippet;\n if (!caption) continue;\n var lastIndex = -1;\n var matchMask = 0;\n var penalty = 0;\n var index, distance;\n\n if (this.exactMatch) {\n if (needle !== caption.substr(0, needle.length))\n continue loop;\n } else {\n var fullMatchIndex = caption.toLowerCase().indexOf(lower);\n if (fullMatchIndex > -1) {\n penalty = fullMatchIndex;\n } else {\n for (var j = 0; j < needle.length; j++) {\n var i1 = caption.indexOf(lower[j], lastIndex + 1);\n var i2 = caption.indexOf(upper[j], lastIndex + 1);\n index = (i1 >= 0) ? ((i2 < 0 || i1 < i2) ? i1 : i2) : i2;\n if (index < 0)\n continue loop;\n distance = index - lastIndex - 1;\n if (distance > 0) {\n if (lastIndex === -1)\n penalty += 10;\n penalty += distance;\n matchMask = matchMask | (1 << j);\n }\n lastIndex = index;\n }\n }\n }\n item.matchMask = matchMask;\n item.exactMatch = penalty ? 0 : 1;\n item.$score = (item.score || 0) - penalty;\n results.push(item);\n }\n return results;\n };\n}).call(FilteredList.prototype);\n\nexports.Autocomplete = Autocomplete;\nexports.FilteredList = FilteredList;\n\n});\n\nace.define(\"ace/autocomplete/text_completer\",[\"require\",\"exports\",\"module\",\"ace/range\"], function(require, exports, module) {\n var Range = require(\"../range\").Range;\n \n var splitRegex = /[^a-zA-Z_0-9\\$\\-\\u00C0-\\u1FFF\\u2C00-\\uD7FF\\w]+/;\n\n function getWordIndex(doc, pos) {\n var textBefore = doc.getTextRange(Range.fromPoints({row: 0, column:0}, pos));\n return textBefore.split(splitRegex).length - 1;\n }\n function wordDistance(doc, pos) {\n var prefixPos = getWordIndex(doc, pos);\n var words = doc.getValue().split(splitRegex);\n var wordScores = Object.create(null);\n \n var currentWord = words[prefixPos];\n\n words.forEach(function(word, idx) {\n if (!word || word === currentWord) return;\n\n var distance = Math.abs(prefixPos - idx);\n var score = words.length - distance;\n if (wordScores[word]) {\n wordScores[word] = Math.max(score, wordScores[word]);\n } else {\n wordScores[word] = score;\n }\n });\n return wordScores;\n }\n\n exports.getCompletions = function(editor, session, pos, prefix, callback) {\n var wordScore = wordDistance(session, pos);\n var wordList = Object.keys(wordScore);\n callback(null, wordList.map(function(word) {\n return {\n caption: word,\n value: word,\n score: wordScore[word],\n meta: \"local\"\n };\n }));\n };\n});\n\nace.define(\"ace/ext/language_tools\",[\"require\",\"exports\",\"module\",\"ace/snippets\",\"ace/autocomplete\",\"ace/config\",\"ace/lib/lang\",\"ace/autocomplete/util\",\"ace/autocomplete/text_completer\",\"ace/editor\",\"ace/config\"], function(require, exports, module) {\n\"use strict\";\n\nvar snippetManager = require(\"../snippets\").snippetManager;\nvar Autocomplete = require(\"../autocomplete\").Autocomplete;\nvar config = require(\"../config\");\nvar lang = require(\"../lib/lang\");\nvar util = require(\"../autocomplete/util\");\n\nvar textCompleter = require(\"../autocomplete/text_completer\");\nvar keyWordCompleter = {\n getCompletions: function(editor, session, pos, prefix, callback) {\n if (session.$mode.completer) {\n return session.$mode.completer.getCompletions(editor, session, pos, prefix, callback);\n }\n var state = editor.session.getState(pos.row);\n var completions = session.$mode.getCompletions(state, session, pos, prefix);\n callback(null, completions);\n }\n};\n\nvar snippetCompleter = {\n getCompletions: function(editor, session, pos, prefix, callback) {\n var scopes = [];\n var token = session.getTokenAt(pos.row, pos.column);\n if (token && token.type.match(/(tag-name|tag-open|tag-whitespace|attribute-name|attribute-value)\\.xml$/))\n scopes.push('html-tag');\n else\n scopes = snippetManager.getActiveScopes(editor);\n\n var snippetMap = snippetManager.snippetMap;\n var completions = [];\n scopes.forEach(function(scope) {\n var snippets = snippetMap[scope] || [];\n for (var i = snippets.length; i--;) {\n var s = snippets[i];\n var caption = s.name || s.tabTrigger;\n if (!caption)\n continue;\n completions.push({\n caption: caption,\n snippet: s.content,\n meta: s.tabTrigger && !s.name ? s.tabTrigger + \"\\u21E5 \" : \"snippet\",\n type: \"snippet\"\n });\n }\n }, this);\n callback(null, completions);\n },\n getDocTooltip: function(item) {\n if (item.type == \"snippet\" && !item.docHTML) {\n item.docHTML = [\n \"\", lang.escapeHTML(item.caption), \"\", \"
\",\n lang.escapeHTML(item.snippet)\n ].join(\"\");\n }\n }\n};\n\nvar completers = [snippetCompleter, textCompleter, keyWordCompleter];\nexports.setCompleters = function(val) {\n completers.length = 0;\n if (val) completers.push.apply(completers, val);\n};\nexports.addCompleter = function(completer) {\n completers.push(completer);\n};\nexports.textCompleter = textCompleter;\nexports.keyWordCompleter = keyWordCompleter;\nexports.snippetCompleter = snippetCompleter;\n\nvar expandSnippet = {\n name: \"expandSnippet\",\n exec: function(editor) {\n return snippetManager.expandWithTab(editor);\n },\n bindKey: \"Tab\"\n};\n\nvar onChangeMode = function(e, editor) {\n loadSnippetsForMode(editor.session.$mode);\n};\n\nvar loadSnippetsForMode = function(mode) {\n var id = mode.$id;\n if (!snippetManager.files)\n snippetManager.files = {};\n loadSnippetFile(id);\n if (mode.modes)\n mode.modes.forEach(loadSnippetsForMode);\n};\n\nvar loadSnippetFile = function(id) {\n if (!id || snippetManager.files[id])\n return;\n var snippetFilePath = id.replace(\"mode\", \"snippets\");\n snippetManager.files[id] = {};\n config.loadModule(snippetFilePath, function(m) {\n if (m) {\n snippetManager.files[id] = m;\n if (!m.snippets && m.snippetText)\n m.snippets = snippetManager.parseSnippetFile(m.snippetText);\n snippetManager.register(m.snippets || [], m.scope);\n if (m.includeScopes) {\n snippetManager.snippetMap[m.scope].includeScopes = m.includeScopes;\n m.includeScopes.forEach(function(x) {\n loadSnippetFile(\"ace/mode/\" + x);\n });\n }\n }\n });\n};\n\nvar doLiveAutocomplete = function(e) {\n var editor = e.editor;\n var hasCompleter = editor.completer && editor.completer.activated;\n if (e.command.name === \"backspace\") {\n if (hasCompleter && !util.getCompletionPrefix(editor))\n editor.completer.detach();\n }\n else if (e.command.name === \"insertstring\") {\n var prefix = util.getCompletionPrefix(editor);\n if (prefix && !hasCompleter) {\n if (!editor.completer) {\n editor.completer = new Autocomplete();\n }\n editor.completer.autoInsert = false;\n editor.completer.showPopup(editor);\n }\n }\n};\n\nvar Editor = require(\"../editor\").Editor;\nrequire(\"../config\").defineOptions(Editor.prototype, \"editor\", {\n enableBasicAutocompletion: {\n set: function(val) {\n if (val) {\n if (!this.completers)\n this.completers = Array.isArray(val)? val: completers;\n this.commands.addCommand(Autocomplete.startCommand);\n } else {\n this.commands.removeCommand(Autocomplete.startCommand);\n }\n },\n value: false\n },\n enableLiveAutocompletion: {\n set: function(val) {\n if (val) {\n if (!this.completers)\n this.completers = Array.isArray(val)? val: completers;\n this.commands.on('afterExec', doLiveAutocomplete);\n } else {\n this.commands.removeListener('afterExec', doLiveAutocomplete);\n }\n },\n value: false\n },\n enableSnippets: {\n set: function(val) {\n if (val) {\n this.commands.addCommand(expandSnippet);\n this.on(\"changeMode\", onChangeMode);\n onChangeMode(null, this);\n } else {\n this.commands.removeCommand(expandSnippet);\n this.off(\"changeMode\", onChangeMode);\n }\n },\n value: false\n }\n});\n}); (function() {\n ace.require([\"ace/ext/language_tools\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file1b := &embedded.EmbeddedFile{ Filename: "189beba20287c2735ecb81efdd67d66c.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/css_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar supportType = exports.supportType = \"align-content|align-items|align-self|all|animation|animation-delay|animation-direction|animation-duration|animation-fill-mode|animation-iteration-count|animation-name|animation-play-state|animation-timing-function|backface-visibility|background|background-attachment|background-blend-mode|background-clip|background-color|background-image|background-origin|background-position|background-repeat|background-size|border|border-bottom|border-bottom-color|border-bottom-left-radius|border-bottom-right-radius|border-bottom-style|border-bottom-width|border-collapse|border-color|border-image|border-image-outset|border-image-repeat|border-image-slice|border-image-source|border-image-width|border-left|border-left-color|border-left-style|border-left-width|border-radius|border-right|border-right-color|border-right-style|border-right-width|border-spacing|border-style|border-top|border-top-color|border-top-left-radius|border-top-right-radius|border-top-style|border-top-width|border-width|bottom|box-shadow|box-sizing|caption-side|clear|clip|color|column-count|column-fill|column-gap|column-rule|column-rule-color|column-rule-style|column-rule-width|column-span|column-width|columns|content|counter-increment|counter-reset|cursor|direction|display|empty-cells|filter|flex|flex-basis|flex-direction|flex-flow|flex-grow|flex-shrink|flex-wrap|float|font|font-family|font-size|font-size-adjust|font-stretch|font-style|font-variant|font-weight|hanging-punctuation|height|justify-content|left|letter-spacing|line-height|list-style|list-style-image|list-style-position|list-style-type|margin|margin-bottom|margin-left|margin-right|margin-top|max-height|max-width|max-zoom|min-height|min-width|min-zoom|nav-down|nav-index|nav-left|nav-right|nav-up|opacity|order|outline|outline-color|outline-offset|outline-style|outline-width|overflow|overflow-x|overflow-y|padding|padding-bottom|padding-left|padding-right|padding-top|page-break-after|page-break-before|page-break-inside|perspective|perspective-origin|position|quotes|resize|right|tab-size|table-layout|text-align|text-align-last|text-decoration|text-decoration-color|text-decoration-line|text-decoration-style|text-indent|text-justify|text-overflow|text-shadow|text-transform|top|transform|transform-origin|transform-style|transition|transition-delay|transition-duration|transition-property|transition-timing-function|unicode-bidi|user-select|user-zoom|vertical-align|visibility|white-space|width|word-break|word-spacing|word-wrap|z-index\";\nvar supportFunction = exports.supportFunction = \"rgb|rgba|url|attr|counter|counters\";\nvar supportConstant = exports.supportConstant = \"absolute|after-edge|after|all-scroll|all|alphabetic|always|antialiased|armenian|auto|avoid-column|avoid-page|avoid|balance|baseline|before-edge|before|below|bidi-override|block-line-height|block|bold|bolder|border-box|both|bottom|box|break-all|break-word|capitalize|caps-height|caption|center|central|char|circle|cjk-ideographic|clone|close-quote|col-resize|collapse|column|consider-shifts|contain|content-box|cover|crosshair|cubic-bezier|dashed|decimal-leading-zero|decimal|default|disabled|disc|disregard-shifts|distribute-all-lines|distribute-letter|distribute-space|distribute|dotted|double|e-resize|ease-in|ease-in-out|ease-out|ease|ellipsis|end|exclude-ruby|fill|fixed|georgian|glyphs|grid-height|groove|hand|hanging|hebrew|help|hidden|hiragana-iroha|hiragana|horizontal|icon|ideograph-alpha|ideograph-numeric|ideograph-parenthesis|ideograph-space|ideographic|inactive|include-ruby|inherit|initial|inline-block|inline-box|inline-line-height|inline-table|inline|inset|inside|inter-ideograph|inter-word|invert|italic|justify|katakana-iroha|katakana|keep-all|last|left|lighter|line-edge|line-through|line|linear|list-item|local|loose|lower-alpha|lower-greek|lower-latin|lower-roman|lowercase|lr-tb|ltr|mathematical|max-height|max-size|medium|menu|message-box|middle|move|n-resize|ne-resize|newspaper|no-change|no-close-quote|no-drop|no-open-quote|no-repeat|none|normal|not-allowed|nowrap|nw-resize|oblique|open-quote|outset|outside|overline|padding-box|page|pointer|pre-line|pre-wrap|pre|preserve-3d|progress|relative|repeat-x|repeat-y|repeat|replaced|reset-size|ridge|right|round|row-resize|rtl|s-resize|scroll|se-resize|separate|slice|small-caps|small-caption|solid|space|square|start|static|status-bar|step-end|step-start|steps|stretch|strict|sub|super|sw-resize|table-caption|table-cell|table-column-group|table-column|table-footer-group|table-header-group|table-row-group|table-row|table|tb-rl|text-after-edge|text-before-edge|text-bottom|text-size|text-top|text|thick|thin|transparent|underline|upper-alpha|upper-latin|upper-roman|uppercase|use-script|vertical-ideographic|vertical-text|visible|w-resize|wait|whitespace|z-index|zero|zoom\";\nvar supportConstantColor = exports.supportConstantColor = \"aliceblue|antiquewhite|aqua|aquamarine|azure|beige|bisque|black|blanchedalmond|blue|blueviolet|brown|burlywood|cadetblue|chartreuse|chocolate|coral|cornflowerblue|cornsilk|crimson|cyan|darkblue|darkcyan|darkgoldenrod|darkgray|darkgreen|darkgrey|darkkhaki|darkmagenta|darkolivegreen|darkorange|darkorchid|darkred|darksalmon|darkseagreen|darkslateblue|darkslategray|darkslategrey|darkturquoise|darkviolet|deeppink|deepskyblue|dimgray|dimgrey|dodgerblue|firebrick|floralwhite|forestgreen|fuchsia|gainsboro|ghostwhite|gold|goldenrod|gray|green|greenyellow|grey|honeydew|hotpink|indianred|indigo|ivory|khaki|lavender|lavenderblush|lawngreen|lemonchiffon|lightblue|lightcoral|lightcyan|lightgoldenrodyellow|lightgray|lightgreen|lightgrey|lightpink|lightsalmon|lightseagreen|lightskyblue|lightslategray|lightslategrey|lightsteelblue|lightyellow|lime|limegreen|linen|magenta|maroon|mediumaquamarine|mediumblue|mediumorchid|mediumpurple|mediumseagreen|mediumslateblue|mediumspringgreen|mediumturquoise|mediumvioletred|midnightblue|mintcream|mistyrose|moccasin|navajowhite|navy|oldlace|olive|olivedrab|orange|orangered|orchid|palegoldenrod|palegreen|paleturquoise|palevioletred|papayawhip|peachpuff|peru|pink|plum|powderblue|purple|rebeccapurple|red|rosybrown|royalblue|saddlebrown|salmon|sandybrown|seagreen|seashell|sienna|silver|skyblue|slateblue|slategray|slategrey|snow|springgreen|steelblue|tan|teal|thistle|tomato|turquoise|violet|wheat|white|whitesmoke|yellow|yellowgreen\";\nvar supportConstantFonts = exports.supportConstantFonts = \"arial|century|comic|courier|cursive|fantasy|garamond|georgia|helvetica|impact|lucida|symbol|system|tahoma|times|trebuchet|utopia|verdana|webdings|sans-serif|serif|monospace\";\n\nvar numRe = exports.numRe = \"\\\\-?(?:(?:[0-9]+(?:\\\\.[0-9]+)?)|(?:\\\\.[0-9]+))\";\nvar pseudoElements = exports.pseudoElements = \"(\\\\:+)\\\\b(after|before|first-letter|first-line|moz-selection|selection)\\\\b\";\nvar pseudoClasses = exports.pseudoClasses = \"(:)\\\\b(active|checked|disabled|empty|enabled|first-child|first-of-type|focus|hover|indeterminate|invalid|last-child|last-of-type|link|not|nth-child|nth-last-child|nth-last-of-type|nth-of-type|only-child|only-of-type|required|root|target|valid|visited)\\\\b\";\n\nvar CssHighlightRules = function() {\n\n var keywordMapper = this.createKeywordMapper({\n \"support.function\": supportFunction,\n \"support.constant\": supportConstant,\n \"support.type\": supportType,\n \"support.constant.color\": supportConstantColor,\n \"support.constant.fonts\": supportConstantFonts\n }, \"text\", true);\n\n this.$rules = {\n \"start\" : [{\n include : [\"strings\", \"url\", \"comments\"]\n }, {\n token: \"paren.lparen\",\n regex: \"\\\\{\",\n next: \"ruleset\"\n }, {\n token: \"paren.rparen\",\n regex: \"\\\\}\"\n }, {\n token: \"string\",\n regex: \"@(?!viewport)\",\n next: \"media\"\n }, {\n token: \"keyword\",\n regex: \"#[a-z0-9-_]+\"\n }, {\n token: \"keyword\",\n regex: \"%\"\n }, {\n token: \"variable\",\n regex: \"\\\\.[a-z0-9-_]+\"\n }, {\n token: \"string\",\n regex: \":[a-z0-9-_]+\"\n }, {\n token : \"constant.numeric\",\n regex : numRe\n }, {\n token: \"constant\",\n regex: \"[a-z0-9-_]+\"\n }, {\n caseInsensitive: true\n }],\n\n \"media\": [{\n include : [\"strings\", \"url\", \"comments\"]\n }, {\n token: \"paren.lparen\",\n regex: \"\\\\{\",\n next: \"start\"\n }, {\n token: \"paren.rparen\",\n regex: \"\\\\}\",\n next: \"start\"\n }, {\n token: \"string\",\n regex: \";\",\n next: \"start\"\n }, {\n token: \"keyword\",\n regex: \"(?:media|supports|document|charset|import|namespace|media|supports|document\"\n + \"|page|font|keyframes|viewport|counter-style|font-feature-values\"\n + \"|swash|ornaments|annotation|stylistic|styleset|character-variant)\"\n }],\n\n \"comments\" : [{\n token: \"comment\", // multi line comment\n regex: \"\\\\/\\\\*\",\n push: [{\n token : \"comment\",\n regex : \"\\\\*\\\\/\",\n next : \"pop\"\n }, {\n defaultToken : \"comment\"\n }]\n }],\n\n \"ruleset\" : [{\n regex : \"-(webkit|ms|moz|o)-\",\n token : \"text\"\n }, {\n token : \"punctuation.operator\",\n regex : \"[:;]\"\n }, {\n token : \"paren.rparen\",\n regex : \"\\\\}\",\n next : \"start\"\n }, {\n include : [\"strings\", \"url\", \"comments\"]\n }, {\n token : [\"constant.numeric\", \"keyword\"],\n regex : \"(\" + numRe + \")(ch|cm|deg|em|ex|fr|gd|grad|Hz|in|kHz|mm|ms|pc|pt|px|rad|rem|s|turn|vh|vmax|vmin|vm|vw|%)\"\n }, {\n token : \"constant.numeric\",\n regex : numRe\n }, {\n token : \"constant.numeric\", // hex6 color\n regex : \"#[a-f0-9]{6}\"\n }, {\n token : \"constant.numeric\", // hex3 color\n regex : \"#[a-f0-9]{3}\"\n }, {\n token : [\"punctuation\", \"entity.other.attribute-name.pseudo-element.css\"],\n regex : pseudoElements\n }, {\n token : [\"punctuation\", \"entity.other.attribute-name.pseudo-class.css\"],\n regex : pseudoClasses\n }, {\n include: \"url\"\n }, {\n token : keywordMapper,\n regex : \"\\\\-?[a-zA-Z_][a-zA-Z0-9_\\\\-]*\"\n }, {\n caseInsensitive: true\n }],\n\n url: [{\n token : \"support.function\",\n regex : \"(?:url(:?-prefix)?|domain|regexp)\\\\(\",\n push: [{\n token : \"support.function\",\n regex : \"\\\\)\",\n next : \"pop\"\n }, {\n defaultToken: \"string\"\n }]\n }],\n\n strings: [{\n token : \"string.start\",\n regex : \"'\",\n push : [{\n token : \"string.end\",\n regex : \"'|$\",\n next: \"pop\"\n }, {\n include : \"escapes\"\n }, {\n token : \"constant.language.escape\",\n regex : /\\\\$/,\n consumeLineEnd: true\n }, {\n defaultToken: \"string\"\n }]\n }, {\n token : \"string.start\",\n regex : '\"',\n push : [{\n token : \"string.end\",\n regex : '\"|$',\n next: \"pop\"\n }, {\n include : \"escapes\"\n }, {\n token : \"constant.language.escape\",\n regex : /\\\\$/,\n consumeLineEnd: true\n }, {\n defaultToken: \"string\"\n }]\n }],\n escapes: [{\n token : \"constant.language.escape\",\n regex : /\\\\([a-fA-F\\d]{1,6}|[^a-fA-F\\d])/\n }]\n\n };\n\n this.normalizeRules();\n};\n\noop.inherits(CssHighlightRules, TextHighlightRules);\n\nexports.CssHighlightRules = CssHighlightRules;\n\n});\n\nace.define(\"ace/mode/doc_comment_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar DocCommentHighlightRules = function() {\n this.$rules = {\n \"start\" : [ {\n token : \"comment.doc.tag\",\n regex : \"@[\\\\w\\\\d_]+\" // TODO: fix email addresses\n }, \n DocCommentHighlightRules.getTagRule(),\n {\n defaultToken : \"comment.doc\",\n caseInsensitive: true\n }]\n };\n};\n\noop.inherits(DocCommentHighlightRules, TextHighlightRules);\n\nDocCommentHighlightRules.getTagRule = function(start) {\n return {\n token : \"comment.doc.tag.storage.type\",\n regex : \"\\\\b(?:TODO|FIXME|XXX|HACK)\\\\b\"\n };\n};\n\nDocCommentHighlightRules.getStartRule = function(start) {\n return {\n token : \"comment.doc\", // doc comment\n regex : \"\\\\/\\\\*(?=\\\\*)\",\n next : start\n };\n};\n\nDocCommentHighlightRules.getEndRule = function (start) {\n return {\n token : \"comment.doc\", // closing comment\n regex : \"\\\\*\\\\/\",\n next : start\n };\n};\n\n\nexports.DocCommentHighlightRules = DocCommentHighlightRules;\n\n});\n\nace.define(\"ace/mode/javascript_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/doc_comment_highlight_rules\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar DocCommentHighlightRules = require(\"./doc_comment_highlight_rules\").DocCommentHighlightRules;\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar identifierRe = \"[a-zA-Z\\\\$_\\u00a1-\\uffff][a-zA-Z\\\\d\\\\$_\\u00a1-\\uffff]*\";\n\nvar JavaScriptHighlightRules = function(options) {\n var keywordMapper = this.createKeywordMapper({\n \"variable.language\":\n \"Array|Boolean|Date|Function|Iterator|Number|Object|RegExp|String|Proxy|\" + // Constructors\n \"Namespace|QName|XML|XMLList|\" + // E4X\n \"ArrayBuffer|Float32Array|Float64Array|Int16Array|Int32Array|Int8Array|\" +\n \"Uint16Array|Uint32Array|Uint8Array|Uint8ClampedArray|\" +\n \"Error|EvalError|InternalError|RangeError|ReferenceError|StopIteration|\" + // Errors\n \"SyntaxError|TypeError|URIError|\" +\n \"decodeURI|decodeURIComponent|encodeURI|encodeURIComponent|eval|isFinite|\" + // Non-constructor functions\n \"isNaN|parseFloat|parseInt|\" +\n \"JSON|Math|\" + // Other\n \"this|arguments|prototype|window|document\" , // Pseudo\n \"keyword\":\n \"const|yield|import|get|set|async|await|\" +\n \"break|case|catch|continue|default|delete|do|else|finally|for|function|\" +\n \"if|in|of|instanceof|new|return|switch|throw|try|typeof|let|var|while|with|debugger|\" +\n \"__parent__|__count__|escape|unescape|with|__proto__|\" +\n \"class|enum|extends|super|export|implements|private|public|interface|package|protected|static\",\n \"storage.type\":\n \"const|let|var|function\",\n \"constant.language\":\n \"null|Infinity|NaN|undefined\",\n \"support.function\":\n \"alert\",\n \"constant.language.boolean\": \"true|false\"\n }, \"identifier\");\n var kwBeforeRe = \"case|do|else|finally|in|instanceof|return|throw|try|typeof|yield|void\";\n\n var escapedRe = \"\\\\\\\\(?:x[0-9a-fA-F]{2}|\" + // hex\n \"u[0-9a-fA-F]{4}|\" + // unicode\n \"u{[0-9a-fA-F]{1,6}}|\" + // es6 unicode\n \"[0-2][0-7]{0,2}|\" + // oct\n \"3[0-7][0-7]?|\" + // oct\n \"[4-7][0-7]?|\" + //oct\n \".)\";\n\n this.$rules = {\n \"no_regex\" : [\n DocCommentHighlightRules.getStartRule(\"doc-start\"),\n comments(\"no_regex\"),\n {\n token : \"string\",\n regex : \"'(?=.)\",\n next : \"qstring\"\n }, {\n token : \"string\",\n regex : '\"(?=.)',\n next : \"qqstring\"\n }, {\n token : \"constant.numeric\", // hexadecimal, octal and binary\n regex : /0(?:[xX][0-9a-fA-F]+|[oO][0-7]+|[bB][01]+)\\b/\n }, {\n token : \"constant.numeric\", // decimal integers and floats\n regex : /(?:\\d\\d*(?:\\.\\d*)?|\\.\\d+)(?:[eE][+-]?\\d+\\b)?/\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"support.function\",\n \"punctuation.operator\", \"entity.name.function\", \"text\",\"keyword.operator\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(prototype)(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"entity.name.function\", \"text\", \"keyword.operator\", \"text\", \"storage.type\",\n \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\",\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s+)(\\\\w+)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(function)(\\\\s+)(\" + identifierRe + \")(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"entity.name.function\", \"text\", \"punctuation.operator\",\n \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\s*)(:)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"text\", \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(:)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : \"keyword\",\n regex : \"from(?=\\\\s*('|\\\"))\"\n }, {\n token : \"keyword\",\n regex : \"(?:\" + kwBeforeRe + \")\\\\b\",\n next : \"start\"\n }, {\n token : [\"support.constant\"],\n regex : /that\\b/\n }, {\n token : [\"storage.type\", \"punctuation.operator\", \"support.function.firebug\"],\n regex : /(console)(\\.)(warn|info|log|error|time|trace|timeEnd|assert)\\b/\n }, {\n token : keywordMapper,\n regex : identifierRe\n }, {\n token : \"punctuation.operator\",\n regex : /[.](?![.])/,\n next : \"property\"\n }, {\n token : \"storage.type\",\n regex : /=>/,\n next : \"start\"\n }, {\n token : \"keyword.operator\",\n regex : /--|\\+\\+|\\.{3}|===|==|=|!=|!==|<+=?|>+=?|!|&&|\\|\\||\\?:|[!$%&*+\\-~\\/^]=?/,\n next : \"start\"\n }, {\n token : \"punctuation.operator\",\n regex : /[?:,;.]/,\n next : \"start\"\n }, {\n token : \"paren.lparen\",\n regex : /[\\[({]/,\n next : \"start\"\n }, {\n token : \"paren.rparen\",\n regex : /[\\])}]/\n }, {\n token: \"comment\",\n regex: /^#!.*$/\n }\n ],\n property: [{\n token : \"text\",\n regex : \"\\\\s+\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\",\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(?:(\\\\s+)(\\\\w+))?(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : \"punctuation.operator\",\n regex : /[.](?![.])/\n }, {\n token : \"support.function\",\n regex : /(s(?:h(?:ift|ow(?:Mod(?:elessDialog|alDialog)|Help))|croll(?:X|By(?:Pages|Lines)?|Y|To)?|t(?:op|rike)|i(?:n|zeToContent|debar|gnText)|ort|u(?:p|b(?:str(?:ing)?)?)|pli(?:ce|t)|e(?:nd|t(?:Re(?:sizable|questHeader)|M(?:i(?:nutes|lliseconds)|onth)|Seconds|Ho(?:tKeys|urs)|Year|Cursor|Time(?:out)?|Interval|ZOptions|Date|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Date|FullYear)|FullYear|Active)|arch)|qrt|lice|avePreferences|mall)|h(?:ome|andleEvent)|navigate|c(?:har(?:CodeAt|At)|o(?:s|n(?:cat|textual|firm)|mpile)|eil|lear(?:Timeout|Interval)?|a(?:ptureEvents|ll)|reate(?:StyleSheet|Popup|EventObject))|t(?:o(?:GMTString|S(?:tring|ource)|U(?:TCString|pperCase)|Lo(?:caleString|werCase))|est|a(?:n|int(?:Enabled)?))|i(?:s(?:NaN|Finite)|ndexOf|talics)|d(?:isableExternalCapture|ump|etachEvent)|u(?:n(?:shift|taint|escape|watch)|pdateCommands)|j(?:oin|avaEnabled)|p(?:o(?:p|w)|ush|lugins.refresh|a(?:ddings|rse(?:Int|Float)?)|r(?:int|ompt|eference))|e(?:scape|nableExternalCapture|val|lementFromPoint|x(?:p|ec(?:Script|Command)?))|valueOf|UTC|queryCommand(?:State|Indeterm|Enabled|Value)|f(?:i(?:nd|le(?:ModifiedDate|Size|CreatedDate|UpdatedDate)|xed)|o(?:nt(?:size|color)|rward)|loor|romCharCode)|watch|l(?:ink|o(?:ad|g)|astIndexOf)|a(?:sin|nchor|cos|t(?:tachEvent|ob|an(?:2)?)|pply|lert|b(?:s|ort))|r(?:ou(?:nd|teEvents)|e(?:size(?:By|To)|calc|turnValue|place|verse|l(?:oad|ease(?:Capture|Events)))|andom)|g(?:o|et(?:ResponseHeader|M(?:i(?:nutes|lliseconds)|onth)|Se(?:conds|lection)|Hours|Year|Time(?:zoneOffset)?|Da(?:y|te)|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Da(?:y|te)|FullYear)|FullYear|A(?:ttention|llResponseHeaders)))|m(?:in|ove(?:B(?:y|elow)|To(?:Absolute)?|Above)|ergeAttributes|a(?:tch|rgins|x))|b(?:toa|ig|o(?:ld|rderWidths)|link|ack))\\b(?=\\()/\n }, {\n token : \"support.function.dom\",\n regex : /(s(?:ub(?:stringData|mit)|plitText|e(?:t(?:NamedItem|Attribute(?:Node)?)|lect))|has(?:ChildNodes|Feature)|namedItem|c(?:l(?:ick|o(?:se|neNode))|reate(?:C(?:omment|DATASection|aption)|T(?:Head|extNode|Foot)|DocumentFragment|ProcessingInstruction|E(?:ntityReference|lement)|Attribute))|tabIndex|i(?:nsert(?:Row|Before|Cell|Data)|tem)|open|delete(?:Row|C(?:ell|aption)|T(?:Head|Foot)|Data)|focus|write(?:ln)?|a(?:dd|ppend(?:Child|Data))|re(?:set|place(?:Child|Data)|move(?:NamedItem|Child|Attribute(?:Node)?)?)|get(?:NamedItem|Element(?:sBy(?:Name|TagName|ClassName)|ById)|Attribute(?:Node)?)|blur)\\b(?=\\()/\n }, {\n token : \"support.constant\",\n regex : /(s(?:ystemLanguage|cr(?:ipts|ollbars|een(?:X|Y|Top|Left))|t(?:yle(?:Sheets)?|atus(?:Text|bar)?)|ibling(?:Below|Above)|ource|uffixes|e(?:curity(?:Policy)?|l(?:ection|f)))|h(?:istory|ost(?:name)?|as(?:h|Focus))|y|X(?:MLDocument|SLDocument)|n(?:ext|ame(?:space(?:s|URI)|Prop))|M(?:IN_VALUE|AX_VALUE)|c(?:haracterSet|o(?:n(?:structor|trollers)|okieEnabled|lorDepth|mp(?:onents|lete))|urrent|puClass|l(?:i(?:p(?:boardData)?|entInformation)|osed|asses)|alle(?:e|r)|rypto)|t(?:o(?:olbar|p)|ext(?:Transform|Indent|Decoration|Align)|ags)|SQRT(?:1_2|2)|i(?:n(?:ner(?:Height|Width)|put)|ds|gnoreCase)|zIndex|o(?:scpu|n(?:readystatechange|Line)|uter(?:Height|Width)|p(?:sProfile|ener)|ffscreenBuffering)|NEGATIVE_INFINITY|d(?:i(?:splay|alog(?:Height|Top|Width|Left|Arguments)|rectories)|e(?:scription|fault(?:Status|Ch(?:ecked|arset)|View)))|u(?:ser(?:Profile|Language|Agent)|n(?:iqueID|defined)|pdateInterval)|_content|p(?:ixelDepth|ort|ersonalbar|kcs11|l(?:ugins|atform)|a(?:thname|dding(?:Right|Bottom|Top|Left)|rent(?:Window|Layer)?|ge(?:X(?:Offset)?|Y(?:Offset)?))|r(?:o(?:to(?:col|type)|duct(?:Sub)?|mpter)|e(?:vious|fix)))|e(?:n(?:coding|abledPlugin)|x(?:ternal|pando)|mbeds)|v(?:isibility|endor(?:Sub)?|Linkcolor)|URLUnencoded|P(?:I|OSITIVE_INFINITY)|f(?:ilename|o(?:nt(?:Size|Family|Weight)|rmName)|rame(?:s|Element)|gColor)|E|whiteSpace|l(?:i(?:stStyleType|n(?:eHeight|kColor))|o(?:ca(?:tion(?:bar)?|lName)|wsrc)|e(?:ngth|ft(?:Context)?)|a(?:st(?:M(?:odified|atch)|Index|Paren)|yer(?:s|X)|nguage))|a(?:pp(?:MinorVersion|Name|Co(?:deName|re)|Version)|vail(?:Height|Top|Width|Left)|ll|r(?:ity|guments)|Linkcolor|bove)|r(?:ight(?:Context)?|e(?:sponse(?:XML|Text)|adyState))|global|x|m(?:imeTypes|ultiline|enubar|argin(?:Right|Bottom|Top|Left))|L(?:N(?:10|2)|OG(?:10E|2E))|b(?:o(?:ttom|rder(?:Width|RightWidth|BottomWidth|Style|Color|TopWidth|LeftWidth))|ufferDepth|elow|ackground(?:Color|Image)))\\b/\n }, {\n token : \"identifier\",\n regex : identifierRe\n }, {\n regex: \"\",\n token: \"empty\",\n next: \"no_regex\"\n }\n ],\n \"start\": [\n DocCommentHighlightRules.getStartRule(\"doc-start\"),\n comments(\"start\"),\n {\n token: \"string.regexp\",\n regex: \"\\\\/\",\n next: \"regex\"\n }, {\n token : \"text\",\n regex : \"\\\\s+|^$\",\n next : \"start\"\n }, {\n token: \"empty\",\n regex: \"\",\n next: \"no_regex\"\n }\n ],\n \"regex\": [\n {\n token: \"regexp.keyword.operator\",\n regex: \"\\\\\\\\(?:u[\\\\da-fA-F]{4}|x[\\\\da-fA-F]{2}|.)\"\n }, {\n token: \"string.regexp\",\n regex: \"/[sxngimy]*\",\n next: \"no_regex\"\n }, {\n token : \"invalid\",\n regex: /\\{\\d+\\b,?\\d*\\}[+*]|[+*$^?][+*]|[$^][?]|\\?{3,}/\n }, {\n token : \"constant.language.escape\",\n regex: /\\(\\?[:=!]|\\)|\\{\\d+\\b,?\\d*\\}|[+*]\\?|[()$^+*?.]/\n }, {\n token : \"constant.language.delimiter\",\n regex: /\\|/\n }, {\n token: \"constant.language.escape\",\n regex: /\\[\\^?/,\n next: \"regex_character_class\"\n }, {\n token: \"empty\",\n regex: \"$\",\n next: \"no_regex\"\n }, {\n defaultToken: \"string.regexp\"\n }\n ],\n \"regex_character_class\": [\n {\n token: \"regexp.charclass.keyword.operator\",\n regex: \"\\\\\\\\(?:u[\\\\da-fA-F]{4}|x[\\\\da-fA-F]{2}|.)\"\n }, {\n token: \"constant.language.escape\",\n regex: \"]\",\n next: \"regex\"\n }, {\n token: \"constant.language.escape\",\n regex: \"-\"\n }, {\n token: \"empty\",\n regex: \"$\",\n next: \"no_regex\"\n }, {\n defaultToken: \"string.regexp.charachterclass\"\n }\n ],\n \"function_arguments\": [\n {\n token: \"variable.parameter\",\n regex: identifierRe\n }, {\n token: \"punctuation.operator\",\n regex: \"[, ]+\"\n }, {\n token: \"punctuation.operator\",\n regex: \"$\"\n }, {\n token: \"empty\",\n regex: \"\",\n next: \"no_regex\"\n }\n ],\n \"qqstring\" : [\n {\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"string\",\n regex : \"\\\\\\\\$\",\n consumeLineEnd : true\n }, {\n token : \"string\",\n regex : '\"|$',\n next : \"no_regex\"\n }, {\n defaultToken: \"string\"\n }\n ],\n \"qstring\" : [\n {\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"string\",\n regex : \"\\\\\\\\$\",\n consumeLineEnd : true\n }, {\n token : \"string\",\n regex : \"'|$\",\n next : \"no_regex\"\n }, {\n defaultToken: \"string\"\n }\n ]\n };\n\n\n if (!options || !options.noES6) {\n this.$rules.no_regex.unshift({\n regex: \"[{}]\", onMatch: function(val, state, stack) {\n this.next = val == \"{\" ? this.nextState : \"\";\n if (val == \"{\" && stack.length) {\n stack.unshift(\"start\", state);\n }\n else if (val == \"}\" && stack.length) {\n stack.shift();\n this.next = stack.shift();\n if (this.next.indexOf(\"string\") != -1 || this.next.indexOf(\"jsx\") != -1)\n return \"paren.quasi.end\";\n }\n return val == \"{\" ? \"paren.lparen\" : \"paren.rparen\";\n },\n nextState: \"start\"\n }, {\n token : \"string.quasi.start\",\n regex : /`/,\n push : [{\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"paren.quasi.start\",\n regex : /\\${/,\n push : \"start\"\n }, {\n token : \"string.quasi.end\",\n regex : /`/,\n next : \"pop\"\n }, {\n defaultToken: \"string.quasi\"\n }]\n });\n\n if (!options || options.jsx != false)\n JSX.call(this);\n }\n\n this.embedRules(DocCommentHighlightRules, \"doc-\",\n [ DocCommentHighlightRules.getEndRule(\"no_regex\") ]);\n\n this.normalizeRules();\n};\n\noop.inherits(JavaScriptHighlightRules, TextHighlightRules);\n\nfunction JSX() {\n var tagRegex = identifierRe.replace(\"\\\\d\", \"\\\\d\\\\-\");\n var jsxTag = {\n onMatch : function(val, state, stack) {\n var offset = val.charAt(1) == \"/\" ? 2 : 1;\n if (offset == 1) {\n if (state != this.nextState)\n stack.unshift(this.next, this.nextState, 0);\n else\n stack.unshift(this.next);\n stack[2]++;\n } else if (offset == 2) {\n if (state == this.nextState) {\n stack[1]--;\n if (!stack[1] || stack[1] < 0) {\n stack.shift();\n stack.shift();\n }\n }\n }\n return [{\n type: \"meta.tag.punctuation.\" + (offset == 1 ? \"\" : \"end-\") + \"tag-open.xml\",\n value: val.slice(0, offset)\n }, {\n type: \"meta.tag.tag-name.xml\",\n value: val.substr(offset)\n }];\n },\n regex : \"\",\n onMatch : function(value, currentState, stack) {\n if (currentState == stack[0])\n stack.shift();\n if (value.length == 2) {\n if (stack[0] == this.nextState)\n stack[1]--;\n if (!stack[1] || stack[1] < 0) {\n stack.splice(0, 2);\n }\n }\n this.next = stack[0] || \"start\";\n return [{type: this.token, value: value}];\n },\n nextState: \"jsx\"\n },\n jsxJsRule,\n comments(\"jsxAttributes\"),\n {\n token : \"entity.other.attribute-name.xml\",\n regex : tagRegex\n }, {\n token : \"keyword.operator.attribute-equals.xml\",\n regex : \"=\"\n }, {\n token : \"text.tag-whitespace.xml\",\n regex : \"\\\\s+\"\n }, {\n token : \"string.attribute-value.xml\",\n regex : \"'\",\n stateName : \"jsx_attr_q\",\n push : [\n {token : \"string.attribute-value.xml\", regex: \"'\", next: \"pop\"},\n {include : \"reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n }, {\n token : \"string.attribute-value.xml\",\n regex : '\"',\n stateName : \"jsx_attr_qq\",\n push : [\n {token : \"string.attribute-value.xml\", regex: '\"', next: \"pop\"},\n {include : \"reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n },\n jsxTag\n ];\n this.$rules.reference = [{\n token : \"constant.language.escape.reference.xml\",\n regex : \"(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\\\.-]+;)\"\n }];\n}\n\nfunction comments(next) {\n return [\n {\n token : \"comment\", // multi line comment\n regex : /\\/\\*/,\n next: [\n DocCommentHighlightRules.getTagRule(),\n {token : \"comment\", regex : \"\\\\*\\\\/\", next : next || \"pop\"},\n {defaultToken : \"comment\", caseInsensitive: true}\n ]\n }, {\n token : \"comment\",\n regex : \"\\\\/\\\\/\",\n next: [\n DocCommentHighlightRules.getTagRule(),\n {token : \"comment\", regex : \"$|^\", next : next || \"pop\"},\n {defaultToken : \"comment\", caseInsensitive: true}\n ]\n }\n ];\n}\nexports.JavaScriptHighlightRules = JavaScriptHighlightRules;\n});\n\nace.define(\"ace/mode/xml_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar XmlHighlightRules = function(normalize) {\n var tagRegex = \"[_:a-zA-Z\\xc0-\\uffff][-_:.a-zA-Z0-9\\xc0-\\uffff]*\";\n\n this.$rules = {\n start : [\n {token : \"string.cdata.xml\", regex : \"<\\\\!\\\\[CDATA\\\\[\", next : \"cdata\"},\n {\n token : [\"punctuation.instruction.xml\", \"keyword.instruction.xml\"],\n regex : \"(<\\\\?)(\" + tagRegex + \")\", next : \"processing_instruction\"\n },\n {token : \"comment.start.xml\", regex : \"<\\\\!--\", next : \"comment\"},\n {\n token : [\"xml-pe.doctype.xml\", \"xml-pe.doctype.xml\"],\n regex : \"(<\\\\!)(DOCTYPE)(?=[\\\\s])\", next : \"doctype\", caseInsensitive: true\n },\n {include : \"tag\"},\n {token : \"text.end-tag-open.xml\", regex: \"\",\n next : \"start\"\n }],\n\n doctype : [\n {include : \"whitespace\"},\n {include : \"string\"},\n {token : \"xml-pe.doctype.xml\", regex : \">\", next : \"start\"},\n {token : \"xml-pe.xml\", regex : \"[-_a-zA-Z0-9:]+\"},\n {token : \"punctuation.int-subset\", regex : \"\\\\[\", push : \"int_subset\"}\n ],\n\n int_subset : [{\n token : \"text.xml\",\n regex : \"\\\\s+\"\n }, {\n token: \"punctuation.int-subset.xml\",\n regex: \"]\",\n next: \"pop\"\n }, {\n token : [\"punctuation.markup-decl.xml\", \"keyword.markup-decl.xml\"],\n regex : \"(<\\\\!)(\" + tagRegex + \")\",\n push : [{\n token : \"text\",\n regex : \"\\\\s+\"\n },\n {\n token : \"punctuation.markup-decl.xml\",\n regex : \">\",\n next : \"pop\"\n },\n {include : \"string\"}]\n }],\n\n cdata : [\n {token : \"string.cdata.xml\", regex : \"\\\\]\\\\]>\", next : \"start\"},\n {token : \"text.xml\", regex : \"\\\\s+\"},\n {token : \"text.xml\", regex : \"(?:[^\\\\]]|\\\\](?!\\\\]>))+\"}\n ],\n\n comment : [\n {token : \"comment.end.xml\", regex : \"-->\", next : \"start\"},\n {defaultToken : \"comment.xml\"}\n ],\n\n reference : [{\n token : \"constant.language.escape.reference.xml\",\n regex : \"(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\\\.-]+;)\"\n }],\n\n attr_reference : [{\n token : \"constant.language.escape.reference.attribute-value.xml\",\n regex : \"(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\\\.-]+;)\"\n }],\n\n tag : [{\n token : [\"meta.tag.punctuation.tag-open.xml\", \"meta.tag.punctuation.end-tag-open.xml\", \"meta.tag.tag-name.xml\"],\n regex : \"(?:(<)|(\", next : \"start\"}\n ]\n }],\n\n tag_whitespace : [\n {token : \"text.tag-whitespace.xml\", regex : \"\\\\s+\"}\n ],\n whitespace : [\n {token : \"text.whitespace.xml\", regex : \"\\\\s+\"}\n ],\n string: [{\n token : \"string.xml\",\n regex : \"'\",\n push : [\n {token : \"string.xml\", regex: \"'\", next: \"pop\"},\n {defaultToken : \"string.xml\"}\n ]\n }, {\n token : \"string.xml\",\n regex : '\"',\n push : [\n {token : \"string.xml\", regex: '\"', next: \"pop\"},\n {defaultToken : \"string.xml\"}\n ]\n }],\n\n attributes: [{\n token : \"entity.other.attribute-name.xml\",\n regex : tagRegex\n }, {\n token : \"keyword.operator.attribute-equals.xml\",\n regex : \"=\"\n }, {\n include: \"tag_whitespace\"\n }, {\n include: \"attribute_value\"\n }],\n\n attribute_value: [{\n token : \"string.attribute-value.xml\",\n regex : \"'\",\n push : [\n {token : \"string.attribute-value.xml\", regex: \"'\", next: \"pop\"},\n {include : \"attr_reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n }, {\n token : \"string.attribute-value.xml\",\n regex : '\"',\n push : [\n {token : \"string.attribute-value.xml\", regex: '\"', next: \"pop\"},\n {include : \"attr_reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n }]\n };\n\n if (this.constructor === XmlHighlightRules)\n this.normalizeRules();\n};\n\n\n(function() {\n\n this.embedTagRules = function(HighlightRules, prefix, tag){\n this.$rules.tag.unshift({\n token : [\"meta.tag.punctuation.tag-open.xml\", \"meta.tag.\" + tag + \".tag-name.xml\"],\n regex : \"(<)(\" + tag + \"(?=\\\\s|>|$))\",\n next: [\n {include : \"attributes\"},\n {token : \"meta.tag.punctuation.tag-close.xml\", regex : \"/?>\", next : prefix + \"start\"}\n ]\n });\n\n this.$rules[tag + \"-end\"] = [\n {include : \"attributes\"},\n {token : \"meta.tag.punctuation.tag-close.xml\", regex : \"/?>\", next: \"start\",\n onMatch : function(value, currentState, stack) {\n stack.splice(0);\n return this.token;\n }}\n ];\n\n this.embedRules(HighlightRules, prefix, [{\n token: [\"meta.tag.punctuation.end-tag-open.xml\", \"meta.tag.\" + tag + \".tag-name.xml\"],\n regex : \"(|$))\",\n next: tag + \"-end\"\n }, {\n token: \"string.cdata.xml\",\n regex : \"<\\\\!\\\\[CDATA\\\\[\"\n }, {\n token: \"string.cdata.xml\",\n regex : \"\\\\]\\\\]>\"\n }]);\n };\n\n}).call(TextHighlightRules.prototype);\n\noop.inherits(XmlHighlightRules, TextHighlightRules);\n\nexports.XmlHighlightRules = XmlHighlightRules;\n});\n\nace.define(\"ace/mode/html_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/css_highlight_rules\",\"ace/mode/javascript_highlight_rules\",\"ace/mode/xml_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar CssHighlightRules = require(\"./css_highlight_rules\").CssHighlightRules;\nvar JavaScriptHighlightRules = require(\"./javascript_highlight_rules\").JavaScriptHighlightRules;\nvar XmlHighlightRules = require(\"./xml_highlight_rules\").XmlHighlightRules;\n\nvar tagMap = lang.createMap({\n a : 'anchor',\n button \t : 'form',\n form : 'form',\n img : 'image',\n input : 'form',\n label : 'form',\n option : 'form',\n script : 'script',\n select : 'form',\n textarea : 'form',\n style : 'style',\n table : 'table',\n tbody : 'table',\n td : 'table',\n tfoot : 'table',\n th : 'table',\n tr : 'table'\n});\n\nvar HtmlHighlightRules = function() {\n XmlHighlightRules.call(this);\n\n this.addRules({\n attributes: [{\n include : \"tag_whitespace\"\n }, {\n token : \"entity.other.attribute-name.xml\",\n regex : \"[-_a-zA-Z0-9:.]+\"\n }, {\n token : \"keyword.operator.attribute-equals.xml\",\n regex : \"=\",\n push : [{\n include: \"tag_whitespace\"\n }, {\n token : \"string.unquoted.attribute-value.html\",\n regex : \"[^<>='\\\"`\\\\s]+\",\n next : \"pop\"\n }, {\n token : \"empty\",\n regex : \"\",\n next : \"pop\"\n }]\n }, {\n include : \"attribute_value\"\n }],\n tag: [{\n token : function(start, tag) {\n var group = tagMap[tag];\n return [\"meta.tag.punctuation.\" + (start == \"<\" ? \"\" : \"end-\") + \"tag-open.xml\",\n \"meta.tag\" + (group ? \".\" + group : \"\") + \".tag-name.xml\"];\n },\n regex : \"(\", next : \"start\"}\n ]\n });\n\n this.embedTagRules(CssHighlightRules, \"css-\", \"style\");\n this.embedTagRules(new JavaScriptHighlightRules({jsx: false}).getRules(), \"js-\", \"script\");\n\n if (this.constructor === HtmlHighlightRules)\n this.normalizeRules();\n};\n\noop.inherits(HtmlHighlightRules, XmlHighlightRules);\n\nexports.HtmlHighlightRules = HtmlHighlightRules;\n});\n\nace.define(\"ace/mode/ruby_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar constantOtherSymbol = exports.constantOtherSymbol = {\n token : \"constant.other.symbol.ruby\", // symbol\n regex : \"[:](?:[A-Za-z_]|[@$](?=[a-zA-Z0-9_]))[a-zA-Z0-9_]*[!=?]?\"\n};\n\nvar qString = exports.qString = {\n token : \"string\", // single line\n regex : \"['](?:(?:\\\\\\\\.)|(?:[^'\\\\\\\\]))*?[']\"\n};\n\nvar qqString = exports.qqString = {\n token : \"string\", // single line\n regex : '[\"](?:(?:\\\\\\\\.)|(?:[^\"\\\\\\\\]))*?[\"]'\n};\n\nvar tString = exports.tString = {\n token : \"string\", // backtick string\n regex : \"[`](?:(?:\\\\\\\\.)|(?:[^'\\\\\\\\]))*?[`]\"\n};\n\nvar constantNumericHex = exports.constantNumericHex = {\n token : \"constant.numeric\", // hex\n regex : \"0[xX][0-9a-fA-F](?:[0-9a-fA-F]|_(?=[0-9a-fA-F]))*\\\\b\"\n};\n\nvar constantNumericFloat = exports.constantNumericFloat = {\n token : \"constant.numeric\", // float\n regex : \"[+-]?\\\\d(?:\\\\d|_(?=\\\\d))*(?:(?:\\\\.\\\\d(?:\\\\d|_(?=\\\\d))*)?(?:[eE][+-]?\\\\d+)?)?\\\\b\"\n};\n\nvar instanceVariable = exports.instanceVariable = {\n token : \"variable.instance\", // instance variable\n regex : \"@{1,2}[a-zA-Z_\\\\d]+\"\n};\n\nvar RubyHighlightRules = function() {\n\n var builtinFunctions = (\n \"abort|Array|assert|assert_equal|assert_not_equal|assert_same|assert_not_same|\" +\n \"assert_nil|assert_not_nil|assert_match|assert_no_match|assert_in_delta|assert_throws|\" +\n \"assert_raise|assert_nothing_raised|assert_instance_of|assert_kind_of|assert_respond_to|\" +\n \"assert_operator|assert_send|assert_difference|assert_no_difference|assert_recognizes|\" +\n \"assert_generates|assert_response|assert_redirected_to|assert_template|assert_select|\" +\n \"assert_select_email|assert_select_rjs|assert_select_encoded|css_select|at_exit|\" +\n \"attr|attr_writer|attr_reader|attr_accessor|attr_accessible|autoload|binding|block_given?|callcc|\" +\n \"caller|catch|chomp|chomp!|chop|chop!|defined?|delete_via_redirect|eval|exec|exit|\" +\n \"exit!|fail|Float|flunk|follow_redirect!|fork|form_for|form_tag|format|gets|global_variables|gsub|\" +\n \"gsub!|get_via_redirect|host!|https?|https!|include|Integer|lambda|link_to|\" +\n \"link_to_unless_current|link_to_function|link_to_remote|load|local_variables|loop|open|open_session|\" +\n \"p|print|printf|proc|putc|puts|post_via_redirect|put_via_redirect|raise|rand|\" +\n \"raw|readline|readlines|redirect?|request_via_redirect|require|scan|select|\" +\n \"set_trace_func|sleep|split|sprintf|srand|String|stylesheet_link_tag|syscall|system|sub|sub!|test|\" +\n \"throw|trace_var|trap|untrace_var|atan2|cos|exp|frexp|ldexp|log|log10|sin|sqrt|tan|\" +\n \"render|javascript_include_tag|csrf_meta_tag|label_tag|text_field_tag|submit_tag|check_box_tag|\" +\n \"content_tag|radio_button_tag|text_area_tag|password_field_tag|hidden_field_tag|\" +\n \"fields_for|select_tag|options_for_select|options_from_collection_for_select|collection_select|\" +\n \"time_zone_select|select_date|select_time|select_datetime|date_select|time_select|datetime_select|\" +\n \"select_year|select_month|select_day|select_hour|select_minute|select_second|file_field_tag|\" +\n \"file_field|respond_to|skip_before_filter|around_filter|after_filter|verify|\" +\n \"protect_from_forgery|rescue_from|helper_method|redirect_to|before_filter|\" +\n \"send_data|send_file|validates_presence_of|validates_uniqueness_of|validates_length_of|\" +\n \"validates_format_of|validates_acceptance_of|validates_associated|validates_exclusion_of|\" +\n \"validates_inclusion_of|validates_numericality_of|validates_with|validates_each|\" +\n \"authenticate_or_request_with_http_basic|authenticate_or_request_with_http_digest|\" +\n \"filter_parameter_logging|match|get|post|resources|redirect|scope|assert_routing|\" +\n \"translate|localize|extract_locale_from_tld|caches_page|expire_page|caches_action|expire_action|\" +\n \"cache|expire_fragment|expire_cache_for|observe|cache_sweeper|\" +\n \"has_many|has_one|belongs_to|has_and_belongs_to_many\"\n );\n\n var keywords = (\n \"alias|and|BEGIN|begin|break|case|class|def|defined|do|else|elsif|END|end|ensure|\" +\n \"__FILE__|finally|for|gem|if|in|__LINE__|module|next|not|or|private|protected|public|\" +\n \"redo|rescue|retry|return|super|then|undef|unless|until|when|while|yield\"\n );\n\n var buildinConstants = (\n \"true|TRUE|false|FALSE|nil|NIL|ARGF|ARGV|DATA|ENV|RUBY_PLATFORM|RUBY_RELEASE_DATE|\" +\n \"RUBY_VERSION|STDERR|STDIN|STDOUT|TOPLEVEL_BINDING\"\n );\n\n var builtinVariables = (\n \"$DEBUG|$defout|$FILENAME|$LOAD_PATH|$SAFE|$stdin|$stdout|$stderr|$VERBOSE|\" +\n \"$!|root_url|flash|session|cookies|params|request|response|logger|self\"\n );\n\n var keywordMapper = this.$keywords = this.createKeywordMapper({\n \"keyword\": keywords,\n \"constant.language\": buildinConstants,\n \"variable.language\": builtinVariables,\n \"support.function\": builtinFunctions,\n \"invalid.deprecated\": \"debugger\" // TODO is this a remnant from js mode?\n }, \"identifier\");\n\n this.$rules = {\n \"start\" : [\n {\n token : \"comment\",\n regex : \"#.*$\"\n }, {\n token : \"comment\", // multi line comment\n regex : \"^=begin(?:$|\\\\s.*$)\",\n next : \"comment\"\n }, {\n token : \"string.regexp\",\n regex : \"[/](?:(?:\\\\[(?:\\\\\\\\]|[^\\\\]])+\\\\])|(?:\\\\\\\\/|[^\\\\]/]))*[/]\\\\w*\\\\s*(?=[).,;]|$)\"\n },\n\n [{\n regex: \"[{}]\", onMatch: function(val, state, stack) {\n this.next = val == \"{\" ? this.nextState : \"\";\n if (val == \"{\" && stack.length) {\n stack.unshift(\"start\", state);\n return \"paren.lparen\";\n }\n if (val == \"}\" && stack.length) {\n stack.shift();\n this.next = stack.shift();\n if (this.next.indexOf(\"string\") != -1)\n return \"paren.end\";\n }\n return val == \"{\" ? \"paren.lparen\" : \"paren.rparen\";\n },\n nextState: \"start\"\n }, {\n token : \"string.start\",\n regex : /\"/,\n push : [{\n token : \"constant.language.escape\",\n regex : /\\\\(?:[nsrtvfbae'\"\\\\]|c.|C-.|M-.(?:\\\\C-.)?|[0-7]{3}|x[\\da-fA-F]{2}|u[\\da-fA-F]{4})/\n }, {\n token : \"paren.start\",\n regex : /#{/,\n push : \"start\"\n }, {\n token : \"string.end\",\n regex : /\"/,\n next : \"pop\"\n }, {\n defaultToken: \"string\"\n }]\n }, {\n token : \"string.start\",\n regex : /`/,\n push : [{\n token : \"constant.language.escape\",\n regex : /\\\\(?:[nsrtvfbae'\"\\\\]|c.|C-.|M-.(?:\\\\C-.)?|[0-7]{3}|x[\\da-fA-F]{2}|u[\\da-fA-F]{4})/\n }, {\n token : \"paren.start\",\n regex : /#{/,\n push : \"start\"\n }, {\n token : \"string.end\",\n regex : /`/,\n next : \"pop\"\n }, {\n defaultToken: \"string\"\n }]\n }, {\n token : \"string.start\",\n regex : /'/,\n push : [{\n token : \"constant.language.escape\",\n regex : /\\\\['\\\\]/\n }, {\n token : \"string.end\",\n regex : /'/,\n next : \"pop\"\n }, {\n defaultToken: \"string\"\n }]\n }],\n\n {\n token : \"text\", // namespaces aren't symbols\n regex : \"::\"\n }, {\n token : \"variable.instance\", // instance variable\n regex : \"@{1,2}[a-zA-Z_\\\\d]+\"\n }, {\n token : \"support.class\", // class name\n regex : \"[A-Z][a-zA-Z_\\\\d]+\"\n },\n\n constantOtherSymbol,\n constantNumericHex,\n constantNumericFloat,\n\n {\n token : \"constant.language.boolean\",\n regex : \"(?:true|false)\\\\b\"\n }, {\n token : keywordMapper,\n regex : \"[a-zA-Z_$][a-zA-Z0-9_$]*\\\\b\"\n }, {\n token : \"punctuation.separator.key-value\",\n regex : \"=>\"\n }, {\n stateName: \"heredoc\",\n onMatch : function(value, currentState, stack) {\n var next = value[2] == '-' ? \"indentedHeredoc\" : \"heredoc\";\n var tokens = value.split(this.splitRegex);\n stack.push(next, tokens[3]);\n return [\n {type:\"constant\", value: tokens[1]},\n {type:\"string\", value: tokens[2]},\n {type:\"support.class\", value: tokens[3]},\n {type:\"string\", value: tokens[4]}\n ];\n },\n regex : \"(<<-?)(['\\\"`]?)([\\\\w]+)(['\\\"`]?)\",\n rules: {\n heredoc: [{\n onMatch: function(value, currentState, stack) {\n if (value === stack[1]) {\n stack.shift();\n stack.shift();\n this.next = stack[0] || \"start\";\n return \"support.class\";\n }\n this.next = \"\";\n return \"string\";\n },\n regex: \".*$\",\n next: \"start\"\n }],\n indentedHeredoc: [{\n token: \"string\",\n regex: \"^ +\"\n }, {\n onMatch: function(value, currentState, stack) {\n if (value === stack[1]) {\n stack.shift();\n stack.shift();\n this.next = stack[0] || \"start\";\n return \"support.class\";\n }\n this.next = \"\";\n return \"string\";\n },\n regex: \".*$\",\n next: \"start\"\n }]\n }\n }, {\n regex : \"$\",\n token : \"empty\",\n next : function(currentState, stack) {\n if (stack[0] === \"heredoc\" || stack[0] === \"indentedHeredoc\")\n return stack[0];\n return currentState;\n }\n }, {\n token : \"string.character\",\n regex : \"\\\\B\\\\?.\"\n }, {\n token : \"keyword.operator\",\n regex : \"!|\\\\$|%|&|\\\\*|\\\\-\\\\-|\\\\-|\\\\+\\\\+|\\\\+|~|===|==|=|!=|!==|<=|>=|<<=|>>=|>>>=|<>|<|>|!|&&|\\\\|\\\\||\\\\?\\\\:|\\\\*=|%=|\\\\+=|\\\\-=|&=|\\\\^=|\\\\b(?:in|instanceof|new|delete|typeof|void)\"\n }, {\n token : \"paren.lparen\",\n regex : \"[[({]\"\n }, {\n token : \"paren.rparen\",\n regex : \"[\\\\])}]\"\n }, {\n token : \"text\",\n regex : \"\\\\s+\"\n }\n ],\n \"comment\" : [\n {\n token : \"comment\", // closing comment\n regex : \"^=end(?:$|\\\\s.*$)\",\n next : \"start\"\n }, {\n token : \"comment\", // comment spanning whole line\n regex : \".+\"\n }\n ]\n };\n\n this.normalizeRules();\n};\n\noop.inherits(RubyHighlightRules, TextHighlightRules);\n\nexports.RubyHighlightRules = RubyHighlightRules;\n});\n\nace.define(\"ace/mode/haml_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/html_highlight_rules\",\"ace/mode/ruby_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar HtmlHighlightRules = require(\"./html_highlight_rules\").HtmlHighlightRules;\nvar RubyExports = require(\"./ruby_highlight_rules\");\nvar RubyHighlightRules = RubyExports.RubyHighlightRules;\n\nvar HamlHighlightRules = function() {\n HtmlHighlightRules.call(this);\n\n this.$rules = {\n \"start\": [\n {\n token: \"comment.block\", // multiline HTML comment\n regex: /^\\/$/,\n next: \"comment\"\n },\n {\n token: \"comment.block\", // multiline HAML comment\n regex: /^\\-#$/,\n next: \"comment\"\n },\n {\n token: \"comment.line\", // HTML comment\n regex: /\\/\\s*.*/\n },\n {\n token: \"comment.line\", // HAML comment\n regex: /-#\\s*.*/\n },\n {\n token: \"keyword.other.doctype\",\n regex: \"^!!!\\\\s*(?:[a-zA-Z0-9-_]+)?\"\n },\n RubyExports.qString,\n RubyExports.qqString,\n RubyExports.tString,\n {\n token: \"meta.tag.haml\",\n regex: /(%[\\w:\\-]+)/\n },\n {\n token: \"keyword.attribute-name.class.haml\",\n regex: /\\.[\\w-]+/\n },\n {\n token: \"keyword.attribute-name.id.haml\",\n regex: /#[\\w-]+/,\n next: \"element_class\"\n },\n RubyExports.constantNumericHex,\n RubyExports.constantNumericFloat,\n RubyExports.constantOtherSymbol,\n {\n token: \"text\",\n regex: /=|-|~/,\n next: \"embedded_ruby\"\n }\n ],\n \"element_class\": [\n {\n token: \"keyword.attribute-name.class.haml\",\n regex: /\\.[\\w-]+/\n },\n {\n token: \"punctuation.section\",\n regex: /\\{/,\n next: \"element_attributes\"\n },\n RubyExports.constantOtherSymbol,\n {\n token: \"empty\",\n regex: \"$|(?!\\\\.|#|\\\\{|\\\\[|=|-|~|\\\\/])\",\n next: \"start\"\n }\n ],\n \"element_attributes\": [\n RubyExports.constantOtherSymbol,\n RubyExports.qString,\n RubyExports.qqString,\n RubyExports.tString,\n RubyExports.constantNumericHex,\n RubyExports.constantNumericFloat,\n {\n token: \"punctuation.section\",\n regex: /$|\\}/,\n next: \"start\"\n }\n ],\n \"embedded_ruby\": [\n RubyExports.constantNumericHex,\n RubyExports.constantNumericFloat,\n RubyExports.instanceVariable,\n RubyExports.qString,\n RubyExports.qqString,\n RubyExports.tString,\n {\n token : \"support.class\", // class name\n regex : \"[A-Z][a-zA-Z_\\\\d]+\"\n },\n {\n token : new RubyHighlightRules().getKeywords(),\n regex : \"[a-zA-Z_$][a-zA-Z0-9_$]*\\\\b\"\n },\n {\n token : [\"keyword\", \"text\", \"text\"],\n regex : \"(?:do|\\\\{)(?: \\\\|[^|]+\\\\|)?$\",\n next : \"start\"\n },\n {\n token : [\"text\"],\n regex : \"^$\",\n next : \"start\"\n },\n {\n token : [\"text\"],\n regex : \"^(?!.*\\\\|\\\\s*$)\",\n next : \"start\"\n }\n ],\n \"comment\": [\n {\n token: \"comment.block\",\n regex: /^$/,\n next: \"start\"\n },\n {\n token: \"comment.block\", // comment spanning the whole line\n regex: /\\s+.*/\n }\n ]\n\n };\n\n this.normalizeRules();\n};\n\noop.inherits(HamlHighlightRules, HtmlHighlightRules);\n\nexports.HamlHighlightRules = HamlHighlightRules;\n});\n\nace.define(\"ace/mode/folding/coffee\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/folding/fold_mode\",\"ace/range\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\nvar Range = require(\"../../range\").Range;\n\nvar FoldMode = exports.FoldMode = function() {};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n\n this.getFoldWidgetRange = function(session, foldStyle, row) {\n var range = this.indentationBlock(session, row);\n if (range)\n return range;\n\n var re = /\\S/;\n var line = session.getLine(row);\n var startLevel = line.search(re);\n if (startLevel == -1 || line[startLevel] != \"#\")\n return;\n\n var startColumn = line.length;\n var maxRow = session.getLength();\n var startRow = row;\n var endRow = row;\n\n while (++row < maxRow) {\n line = session.getLine(row);\n var level = line.search(re);\n\n if (level == -1)\n continue;\n\n if (line[level] != \"#\")\n break;\n\n endRow = row;\n }\n\n if (endRow > startRow) {\n var endColumn = session.getLine(endRow).length;\n return new Range(startRow, startColumn, endRow, endColumn);\n }\n };\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n var indent = line.search(/\\S/);\n var next = session.getLine(row + 1);\n var prev = session.getLine(row - 1);\n var prevIndent = prev.search(/\\S/);\n var nextIndent = next.search(/\\S/);\n\n if (indent == -1) {\n session.foldWidgets[row - 1] = prevIndent!= -1 && prevIndent < nextIndent ? \"start\" : \"\";\n return \"\";\n }\n if (prevIndent == -1) {\n if (indent == nextIndent && line[indent] == \"#\" && next[indent] == \"#\") {\n session.foldWidgets[row - 1] = \"\";\n session.foldWidgets[row + 1] = \"\";\n return \"start\";\n }\n } else if (prevIndent == indent && line[indent] == \"#\" && prev[indent] == \"#\") {\n if (session.getLine(row - 2).search(/\\S/) == -1) {\n session.foldWidgets[row - 1] = \"start\";\n session.foldWidgets[row + 1] = \"\";\n return \"\";\n }\n }\n\n if (prevIndent!= -1 && prevIndent < indent)\n session.foldWidgets[row - 1] = \"start\";\n else\n session.foldWidgets[row - 1] = \"\";\n\n if (indent < nextIndent)\n return \"start\";\n else\n return \"\";\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/haml\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/haml_highlight_rules\",\"ace/mode/folding/coffee\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar HamlHighlightRules = require(\"./haml_highlight_rules\").HamlHighlightRules;\nvar FoldMode = require(\"./folding/coffee\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = HamlHighlightRules;\n this.foldingRules = new FoldMode();\n this.$behaviour = this.$defaultBehaviour;\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n this.lineCommentStart = \"//\";\n \n this.$id = \"ace/mode/haml\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/haml\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file1c := &embedded.EmbeddedFile{ Filename: "194e7c1e6dc06bec6fb0178f3fd90e24.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/lisp\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText =undefined;\nexports.scope = \"lisp\";\n\n}); (function() {\n ace.require([\"ace/snippets/lisp\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file1d := &embedded.EmbeddedFile{ Filename: "19573d26f286762809b86f935516c1ac.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/theme/dreamweaver\",[\"require\",\"exports\",\"module\",\"ace/lib/dom\"], function(require, exports, module) {\nexports.isDark = false;\nexports.cssClass = \"ace-dreamweaver\";\nexports.cssText = \".ace-dreamweaver .ace_gutter {\\\nbackground: #e8e8e8;\\\ncolor: #333;\\\n}\\\n.ace-dreamweaver .ace_print-margin {\\\nwidth: 1px;\\\nbackground: #e8e8e8;\\\n}\\\n.ace-dreamweaver {\\\nbackground-color: #FFFFFF;\\\ncolor: black;\\\n}\\\n.ace-dreamweaver .ace_fold {\\\nbackground-color: #757AD8;\\\n}\\\n.ace-dreamweaver .ace_cursor {\\\ncolor: black;\\\n}\\\n.ace-dreamweaver .ace_invisible {\\\ncolor: rgb(191, 191, 191);\\\n}\\\n.ace-dreamweaver .ace_storage,\\\n.ace-dreamweaver .ace_keyword {\\\ncolor: blue;\\\n}\\\n.ace-dreamweaver .ace_constant.ace_buildin {\\\ncolor: rgb(88, 72, 246);\\\n}\\\n.ace-dreamweaver .ace_constant.ace_language {\\\ncolor: rgb(88, 92, 246);\\\n}\\\n.ace-dreamweaver .ace_constant.ace_library {\\\ncolor: rgb(6, 150, 14);\\\n}\\\n.ace-dreamweaver .ace_invalid {\\\nbackground-color: rgb(153, 0, 0);\\\ncolor: white;\\\n}\\\n.ace-dreamweaver .ace_support.ace_function {\\\ncolor: rgb(60, 76, 114);\\\n}\\\n.ace-dreamweaver .ace_support.ace_constant {\\\ncolor: rgb(6, 150, 14);\\\n}\\\n.ace-dreamweaver .ace_support.ace_type,\\\n.ace-dreamweaver .ace_support.ace_class {\\\ncolor: #009;\\\n}\\\n.ace-dreamweaver .ace_support.ace_php_tag {\\\ncolor: #f00;\\\n}\\\n.ace-dreamweaver .ace_keyword.ace_operator {\\\ncolor: rgb(104, 118, 135);\\\n}\\\n.ace-dreamweaver .ace_string {\\\ncolor: #00F;\\\n}\\\n.ace-dreamweaver .ace_comment {\\\ncolor: rgb(76, 136, 107);\\\n}\\\n.ace-dreamweaver .ace_comment.ace_doc {\\\ncolor: rgb(0, 102, 255);\\\n}\\\n.ace-dreamweaver .ace_comment.ace_doc.ace_tag {\\\ncolor: rgb(128, 159, 191);\\\n}\\\n.ace-dreamweaver .ace_constant.ace_numeric {\\\ncolor: rgb(0, 0, 205);\\\n}\\\n.ace-dreamweaver .ace_variable {\\\ncolor: #06F\\\n}\\\n.ace-dreamweaver .ace_xml-pe {\\\ncolor: rgb(104, 104, 91);\\\n}\\\n.ace-dreamweaver .ace_entity.ace_name.ace_function {\\\ncolor: #00F;\\\n}\\\n.ace-dreamweaver .ace_heading {\\\ncolor: rgb(12, 7, 255);\\\n}\\\n.ace-dreamweaver .ace_list {\\\ncolor:rgb(185, 6, 144);\\\n}\\\n.ace-dreamweaver .ace_marker-layer .ace_selection {\\\nbackground: rgb(181, 213, 255);\\\n}\\\n.ace-dreamweaver .ace_marker-layer .ace_step {\\\nbackground: rgb(252, 255, 0);\\\n}\\\n.ace-dreamweaver .ace_marker-layer .ace_stack {\\\nbackground: rgb(164, 229, 101);\\\n}\\\n.ace-dreamweaver .ace_marker-layer .ace_bracket {\\\nmargin: -1px 0 0 -1px;\\\nborder: 1px solid rgb(192, 192, 192);\\\n}\\\n.ace-dreamweaver .ace_marker-layer .ace_active-line {\\\nbackground: rgba(0, 0, 0, 0.07);\\\n}\\\n.ace-dreamweaver .ace_gutter-active-line {\\\nbackground-color : #DCDCDC;\\\n}\\\n.ace-dreamweaver .ace_marker-layer .ace_selected-word {\\\nbackground: rgb(250, 250, 255);\\\nborder: 1px solid rgb(200, 200, 250);\\\n}\\\n.ace-dreamweaver .ace_meta.ace_tag {\\\ncolor:#009;\\\n}\\\n.ace-dreamweaver .ace_meta.ace_tag.ace_anchor {\\\ncolor:#060;\\\n}\\\n.ace-dreamweaver .ace_meta.ace_tag.ace_form {\\\ncolor:#F90;\\\n}\\\n.ace-dreamweaver .ace_meta.ace_tag.ace_image {\\\ncolor:#909;\\\n}\\\n.ace-dreamweaver .ace_meta.ace_tag.ace_script {\\\ncolor:#900;\\\n}\\\n.ace-dreamweaver .ace_meta.ace_tag.ace_style {\\\ncolor:#909;\\\n}\\\n.ace-dreamweaver .ace_meta.ace_tag.ace_table {\\\ncolor:#099;\\\n}\\\n.ace-dreamweaver .ace_string.ace_regex {\\\ncolor: rgb(255, 0, 0)\\\n}\\\n.ace-dreamweaver .ace_indent-guide {\\\nbackground: url(\\\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==\\\") right repeat-y;\\\n}\";\n\nvar dom = require(\"../lib/dom\");\ndom.importCssString(exports.cssText, exports.cssClass);\n}); (function() {\n ace.require([\"ace/theme/dreamweaver\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file1e := &embedded.EmbeddedFile{ Filename: "1997c82a11999e021909406a6e634fbb.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/doc_comment_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar DocCommentHighlightRules = function() {\n this.$rules = {\n \"start\" : [ {\n token : \"comment.doc.tag\",\n regex : \"@[\\\\w\\\\d_]+\" // TODO: fix email addresses\n }, \n DocCommentHighlightRules.getTagRule(),\n {\n defaultToken : \"comment.doc\",\n caseInsensitive: true\n }]\n };\n};\n\noop.inherits(DocCommentHighlightRules, TextHighlightRules);\n\nDocCommentHighlightRules.getTagRule = function(start) {\n return {\n token : \"comment.doc.tag.storage.type\",\n regex : \"\\\\b(?:TODO|FIXME|XXX|HACK)\\\\b\"\n };\n};\n\nDocCommentHighlightRules.getStartRule = function(start) {\n return {\n token : \"comment.doc\", // doc comment\n regex : \"\\\\/\\\\*(?=\\\\*)\",\n next : start\n };\n};\n\nDocCommentHighlightRules.getEndRule = function (start) {\n return {\n token : \"comment.doc\", // closing comment\n regex : \"\\\\*\\\\/\",\n next : start\n };\n};\n\n\nexports.DocCommentHighlightRules = DocCommentHighlightRules;\n\n});\n\nace.define(\"ace/mode/javascript_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/doc_comment_highlight_rules\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar DocCommentHighlightRules = require(\"./doc_comment_highlight_rules\").DocCommentHighlightRules;\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar identifierRe = \"[a-zA-Z\\\\$_\\u00a1-\\uffff][a-zA-Z\\\\d\\\\$_\\u00a1-\\uffff]*\";\n\nvar JavaScriptHighlightRules = function(options) {\n var keywordMapper = this.createKeywordMapper({\n \"variable.language\":\n \"Array|Boolean|Date|Function|Iterator|Number|Object|RegExp|String|Proxy|\" + // Constructors\n \"Namespace|QName|XML|XMLList|\" + // E4X\n \"ArrayBuffer|Float32Array|Float64Array|Int16Array|Int32Array|Int8Array|\" +\n \"Uint16Array|Uint32Array|Uint8Array|Uint8ClampedArray|\" +\n \"Error|EvalError|InternalError|RangeError|ReferenceError|StopIteration|\" + // Errors\n \"SyntaxError|TypeError|URIError|\" +\n \"decodeURI|decodeURIComponent|encodeURI|encodeURIComponent|eval|isFinite|\" + // Non-constructor functions\n \"isNaN|parseFloat|parseInt|\" +\n \"JSON|Math|\" + // Other\n \"this|arguments|prototype|window|document\" , // Pseudo\n \"keyword\":\n \"const|yield|import|get|set|async|await|\" +\n \"break|case|catch|continue|default|delete|do|else|finally|for|function|\" +\n \"if|in|of|instanceof|new|return|switch|throw|try|typeof|let|var|while|with|debugger|\" +\n \"__parent__|__count__|escape|unescape|with|__proto__|\" +\n \"class|enum|extends|super|export|implements|private|public|interface|package|protected|static\",\n \"storage.type\":\n \"const|let|var|function\",\n \"constant.language\":\n \"null|Infinity|NaN|undefined\",\n \"support.function\":\n \"alert\",\n \"constant.language.boolean\": \"true|false\"\n }, \"identifier\");\n var kwBeforeRe = \"case|do|else|finally|in|instanceof|return|throw|try|typeof|yield|void\";\n\n var escapedRe = \"\\\\\\\\(?:x[0-9a-fA-F]{2}|\" + // hex\n \"u[0-9a-fA-F]{4}|\" + // unicode\n \"u{[0-9a-fA-F]{1,6}}|\" + // es6 unicode\n \"[0-2][0-7]{0,2}|\" + // oct\n \"3[0-7][0-7]?|\" + // oct\n \"[4-7][0-7]?|\" + //oct\n \".)\";\n\n this.$rules = {\n \"no_regex\" : [\n DocCommentHighlightRules.getStartRule(\"doc-start\"),\n comments(\"no_regex\"),\n {\n token : \"string\",\n regex : \"'(?=.)\",\n next : \"qstring\"\n }, {\n token : \"string\",\n regex : '\"(?=.)',\n next : \"qqstring\"\n }, {\n token : \"constant.numeric\", // hexadecimal, octal and binary\n regex : /0(?:[xX][0-9a-fA-F]+|[oO][0-7]+|[bB][01]+)\\b/\n }, {\n token : \"constant.numeric\", // decimal integers and floats\n regex : /(?:\\d\\d*(?:\\.\\d*)?|\\.\\d+)(?:[eE][+-]?\\d+\\b)?/\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"support.function\",\n \"punctuation.operator\", \"entity.name.function\", \"text\",\"keyword.operator\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(prototype)(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"entity.name.function\", \"text\", \"keyword.operator\", \"text\", \"storage.type\",\n \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\",\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s+)(\\\\w+)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(function)(\\\\s+)(\" + identifierRe + \")(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"entity.name.function\", \"text\", \"punctuation.operator\",\n \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\s*)(:)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"text\", \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(:)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : \"keyword\",\n regex : \"from(?=\\\\s*('|\\\"))\"\n }, {\n token : \"keyword\",\n regex : \"(?:\" + kwBeforeRe + \")\\\\b\",\n next : \"start\"\n }, {\n token : [\"support.constant\"],\n regex : /that\\b/\n }, {\n token : [\"storage.type\", \"punctuation.operator\", \"support.function.firebug\"],\n regex : /(console)(\\.)(warn|info|log|error|time|trace|timeEnd|assert)\\b/\n }, {\n token : keywordMapper,\n regex : identifierRe\n }, {\n token : \"punctuation.operator\",\n regex : /[.](?![.])/,\n next : \"property\"\n }, {\n token : \"storage.type\",\n regex : /=>/,\n next : \"start\"\n }, {\n token : \"keyword.operator\",\n regex : /--|\\+\\+|\\.{3}|===|==|=|!=|!==|<+=?|>+=?|!|&&|\\|\\||\\?:|[!$%&*+\\-~\\/^]=?/,\n next : \"start\"\n }, {\n token : \"punctuation.operator\",\n regex : /[?:,;.]/,\n next : \"start\"\n }, {\n token : \"paren.lparen\",\n regex : /[\\[({]/,\n next : \"start\"\n }, {\n token : \"paren.rparen\",\n regex : /[\\])}]/\n }, {\n token: \"comment\",\n regex: /^#!.*$/\n }\n ],\n property: [{\n token : \"text\",\n regex : \"\\\\s+\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\",\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(?:(\\\\s+)(\\\\w+))?(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : \"punctuation.operator\",\n regex : /[.](?![.])/\n }, {\n token : \"support.function\",\n regex : /(s(?:h(?:ift|ow(?:Mod(?:elessDialog|alDialog)|Help))|croll(?:X|By(?:Pages|Lines)?|Y|To)?|t(?:op|rike)|i(?:n|zeToContent|debar|gnText)|ort|u(?:p|b(?:str(?:ing)?)?)|pli(?:ce|t)|e(?:nd|t(?:Re(?:sizable|questHeader)|M(?:i(?:nutes|lliseconds)|onth)|Seconds|Ho(?:tKeys|urs)|Year|Cursor|Time(?:out)?|Interval|ZOptions|Date|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Date|FullYear)|FullYear|Active)|arch)|qrt|lice|avePreferences|mall)|h(?:ome|andleEvent)|navigate|c(?:har(?:CodeAt|At)|o(?:s|n(?:cat|textual|firm)|mpile)|eil|lear(?:Timeout|Interval)?|a(?:ptureEvents|ll)|reate(?:StyleSheet|Popup|EventObject))|t(?:o(?:GMTString|S(?:tring|ource)|U(?:TCString|pperCase)|Lo(?:caleString|werCase))|est|a(?:n|int(?:Enabled)?))|i(?:s(?:NaN|Finite)|ndexOf|talics)|d(?:isableExternalCapture|ump|etachEvent)|u(?:n(?:shift|taint|escape|watch)|pdateCommands)|j(?:oin|avaEnabled)|p(?:o(?:p|w)|ush|lugins.refresh|a(?:ddings|rse(?:Int|Float)?)|r(?:int|ompt|eference))|e(?:scape|nableExternalCapture|val|lementFromPoint|x(?:p|ec(?:Script|Command)?))|valueOf|UTC|queryCommand(?:State|Indeterm|Enabled|Value)|f(?:i(?:nd|le(?:ModifiedDate|Size|CreatedDate|UpdatedDate)|xed)|o(?:nt(?:size|color)|rward)|loor|romCharCode)|watch|l(?:ink|o(?:ad|g)|astIndexOf)|a(?:sin|nchor|cos|t(?:tachEvent|ob|an(?:2)?)|pply|lert|b(?:s|ort))|r(?:ou(?:nd|teEvents)|e(?:size(?:By|To)|calc|turnValue|place|verse|l(?:oad|ease(?:Capture|Events)))|andom)|g(?:o|et(?:ResponseHeader|M(?:i(?:nutes|lliseconds)|onth)|Se(?:conds|lection)|Hours|Year|Time(?:zoneOffset)?|Da(?:y|te)|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Da(?:y|te)|FullYear)|FullYear|A(?:ttention|llResponseHeaders)))|m(?:in|ove(?:B(?:y|elow)|To(?:Absolute)?|Above)|ergeAttributes|a(?:tch|rgins|x))|b(?:toa|ig|o(?:ld|rderWidths)|link|ack))\\b(?=\\()/\n }, {\n token : \"support.function.dom\",\n regex : /(s(?:ub(?:stringData|mit)|plitText|e(?:t(?:NamedItem|Attribute(?:Node)?)|lect))|has(?:ChildNodes|Feature)|namedItem|c(?:l(?:ick|o(?:se|neNode))|reate(?:C(?:omment|DATASection|aption)|T(?:Head|extNode|Foot)|DocumentFragment|ProcessingInstruction|E(?:ntityReference|lement)|Attribute))|tabIndex|i(?:nsert(?:Row|Before|Cell|Data)|tem)|open|delete(?:Row|C(?:ell|aption)|T(?:Head|Foot)|Data)|focus|write(?:ln)?|a(?:dd|ppend(?:Child|Data))|re(?:set|place(?:Child|Data)|move(?:NamedItem|Child|Attribute(?:Node)?)?)|get(?:NamedItem|Element(?:sBy(?:Name|TagName|ClassName)|ById)|Attribute(?:Node)?)|blur)\\b(?=\\()/\n }, {\n token : \"support.constant\",\n regex : /(s(?:ystemLanguage|cr(?:ipts|ollbars|een(?:X|Y|Top|Left))|t(?:yle(?:Sheets)?|atus(?:Text|bar)?)|ibling(?:Below|Above)|ource|uffixes|e(?:curity(?:Policy)?|l(?:ection|f)))|h(?:istory|ost(?:name)?|as(?:h|Focus))|y|X(?:MLDocument|SLDocument)|n(?:ext|ame(?:space(?:s|URI)|Prop))|M(?:IN_VALUE|AX_VALUE)|c(?:haracterSet|o(?:n(?:structor|trollers)|okieEnabled|lorDepth|mp(?:onents|lete))|urrent|puClass|l(?:i(?:p(?:boardData)?|entInformation)|osed|asses)|alle(?:e|r)|rypto)|t(?:o(?:olbar|p)|ext(?:Transform|Indent|Decoration|Align)|ags)|SQRT(?:1_2|2)|i(?:n(?:ner(?:Height|Width)|put)|ds|gnoreCase)|zIndex|o(?:scpu|n(?:readystatechange|Line)|uter(?:Height|Width)|p(?:sProfile|ener)|ffscreenBuffering)|NEGATIVE_INFINITY|d(?:i(?:splay|alog(?:Height|Top|Width|Left|Arguments)|rectories)|e(?:scription|fault(?:Status|Ch(?:ecked|arset)|View)))|u(?:ser(?:Profile|Language|Agent)|n(?:iqueID|defined)|pdateInterval)|_content|p(?:ixelDepth|ort|ersonalbar|kcs11|l(?:ugins|atform)|a(?:thname|dding(?:Right|Bottom|Top|Left)|rent(?:Window|Layer)?|ge(?:X(?:Offset)?|Y(?:Offset)?))|r(?:o(?:to(?:col|type)|duct(?:Sub)?|mpter)|e(?:vious|fix)))|e(?:n(?:coding|abledPlugin)|x(?:ternal|pando)|mbeds)|v(?:isibility|endor(?:Sub)?|Linkcolor)|URLUnencoded|P(?:I|OSITIVE_INFINITY)|f(?:ilename|o(?:nt(?:Size|Family|Weight)|rmName)|rame(?:s|Element)|gColor)|E|whiteSpace|l(?:i(?:stStyleType|n(?:eHeight|kColor))|o(?:ca(?:tion(?:bar)?|lName)|wsrc)|e(?:ngth|ft(?:Context)?)|a(?:st(?:M(?:odified|atch)|Index|Paren)|yer(?:s|X)|nguage))|a(?:pp(?:MinorVersion|Name|Co(?:deName|re)|Version)|vail(?:Height|Top|Width|Left)|ll|r(?:ity|guments)|Linkcolor|bove)|r(?:ight(?:Context)?|e(?:sponse(?:XML|Text)|adyState))|global|x|m(?:imeTypes|ultiline|enubar|argin(?:Right|Bottom|Top|Left))|L(?:N(?:10|2)|OG(?:10E|2E))|b(?:o(?:ttom|rder(?:Width|RightWidth|BottomWidth|Style|Color|TopWidth|LeftWidth))|ufferDepth|elow|ackground(?:Color|Image)))\\b/\n }, {\n token : \"identifier\",\n regex : identifierRe\n }, {\n regex: \"\",\n token: \"empty\",\n next: \"no_regex\"\n }\n ],\n \"start\": [\n DocCommentHighlightRules.getStartRule(\"doc-start\"),\n comments(\"start\"),\n {\n token: \"string.regexp\",\n regex: \"\\\\/\",\n next: \"regex\"\n }, {\n token : \"text\",\n regex : \"\\\\s+|^$\",\n next : \"start\"\n }, {\n token: \"empty\",\n regex: \"\",\n next: \"no_regex\"\n }\n ],\n \"regex\": [\n {\n token: \"regexp.keyword.operator\",\n regex: \"\\\\\\\\(?:u[\\\\da-fA-F]{4}|x[\\\\da-fA-F]{2}|.)\"\n }, {\n token: \"string.regexp\",\n regex: \"/[sxngimy]*\",\n next: \"no_regex\"\n }, {\n token : \"invalid\",\n regex: /\\{\\d+\\b,?\\d*\\}[+*]|[+*$^?][+*]|[$^][?]|\\?{3,}/\n }, {\n token : \"constant.language.escape\",\n regex: /\\(\\?[:=!]|\\)|\\{\\d+\\b,?\\d*\\}|[+*]\\?|[()$^+*?.]/\n }, {\n token : \"constant.language.delimiter\",\n regex: /\\|/\n }, {\n token: \"constant.language.escape\",\n regex: /\\[\\^?/,\n next: \"regex_character_class\"\n }, {\n token: \"empty\",\n regex: \"$\",\n next: \"no_regex\"\n }, {\n defaultToken: \"string.regexp\"\n }\n ],\n \"regex_character_class\": [\n {\n token: \"regexp.charclass.keyword.operator\",\n regex: \"\\\\\\\\(?:u[\\\\da-fA-F]{4}|x[\\\\da-fA-F]{2}|.)\"\n }, {\n token: \"constant.language.escape\",\n regex: \"]\",\n next: \"regex\"\n }, {\n token: \"constant.language.escape\",\n regex: \"-\"\n }, {\n token: \"empty\",\n regex: \"$\",\n next: \"no_regex\"\n }, {\n defaultToken: \"string.regexp.charachterclass\"\n }\n ],\n \"function_arguments\": [\n {\n token: \"variable.parameter\",\n regex: identifierRe\n }, {\n token: \"punctuation.operator\",\n regex: \"[, ]+\"\n }, {\n token: \"punctuation.operator\",\n regex: \"$\"\n }, {\n token: \"empty\",\n regex: \"\",\n next: \"no_regex\"\n }\n ],\n \"qqstring\" : [\n {\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"string\",\n regex : \"\\\\\\\\$\",\n consumeLineEnd : true\n }, {\n token : \"string\",\n regex : '\"|$',\n next : \"no_regex\"\n }, {\n defaultToken: \"string\"\n }\n ],\n \"qstring\" : [\n {\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"string\",\n regex : \"\\\\\\\\$\",\n consumeLineEnd : true\n }, {\n token : \"string\",\n regex : \"'|$\",\n next : \"no_regex\"\n }, {\n defaultToken: \"string\"\n }\n ]\n };\n\n\n if (!options || !options.noES6) {\n this.$rules.no_regex.unshift({\n regex: \"[{}]\", onMatch: function(val, state, stack) {\n this.next = val == \"{\" ? this.nextState : \"\";\n if (val == \"{\" && stack.length) {\n stack.unshift(\"start\", state);\n }\n else if (val == \"}\" && stack.length) {\n stack.shift();\n this.next = stack.shift();\n if (this.next.indexOf(\"string\") != -1 || this.next.indexOf(\"jsx\") != -1)\n return \"paren.quasi.end\";\n }\n return val == \"{\" ? \"paren.lparen\" : \"paren.rparen\";\n },\n nextState: \"start\"\n }, {\n token : \"string.quasi.start\",\n regex : /`/,\n push : [{\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"paren.quasi.start\",\n regex : /\\${/,\n push : \"start\"\n }, {\n token : \"string.quasi.end\",\n regex : /`/,\n next : \"pop\"\n }, {\n defaultToken: \"string.quasi\"\n }]\n });\n\n if (!options || options.jsx != false)\n JSX.call(this);\n }\n\n this.embedRules(DocCommentHighlightRules, \"doc-\",\n [ DocCommentHighlightRules.getEndRule(\"no_regex\") ]);\n\n this.normalizeRules();\n};\n\noop.inherits(JavaScriptHighlightRules, TextHighlightRules);\n\nfunction JSX() {\n var tagRegex = identifierRe.replace(\"\\\\d\", \"\\\\d\\\\-\");\n var jsxTag = {\n onMatch : function(val, state, stack) {\n var offset = val.charAt(1) == \"/\" ? 2 : 1;\n if (offset == 1) {\n if (state != this.nextState)\n stack.unshift(this.next, this.nextState, 0);\n else\n stack.unshift(this.next);\n stack[2]++;\n } else if (offset == 2) {\n if (state == this.nextState) {\n stack[1]--;\n if (!stack[1] || stack[1] < 0) {\n stack.shift();\n stack.shift();\n }\n }\n }\n return [{\n type: \"meta.tag.punctuation.\" + (offset == 1 ? \"\" : \"end-\") + \"tag-open.xml\",\n value: val.slice(0, offset)\n }, {\n type: \"meta.tag.tag-name.xml\",\n value: val.substr(offset)\n }];\n },\n regex : \"\",\n onMatch : function(value, currentState, stack) {\n if (currentState == stack[0])\n stack.shift();\n if (value.length == 2) {\n if (stack[0] == this.nextState)\n stack[1]--;\n if (!stack[1] || stack[1] < 0) {\n stack.splice(0, 2);\n }\n }\n this.next = stack[0] || \"start\";\n return [{type: this.token, value: value}];\n },\n nextState: \"jsx\"\n },\n jsxJsRule,\n comments(\"jsxAttributes\"),\n {\n token : \"entity.other.attribute-name.xml\",\n regex : tagRegex\n }, {\n token : \"keyword.operator.attribute-equals.xml\",\n regex : \"=\"\n }, {\n token : \"text.tag-whitespace.xml\",\n regex : \"\\\\s+\"\n }, {\n token : \"string.attribute-value.xml\",\n regex : \"'\",\n stateName : \"jsx_attr_q\",\n push : [\n {token : \"string.attribute-value.xml\", regex: \"'\", next: \"pop\"},\n {include : \"reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n }, {\n token : \"string.attribute-value.xml\",\n regex : '\"',\n stateName : \"jsx_attr_qq\",\n push : [\n {token : \"string.attribute-value.xml\", regex: '\"', next: \"pop\"},\n {include : \"reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n },\n jsxTag\n ];\n this.$rules.reference = [{\n token : \"constant.language.escape.reference.xml\",\n regex : \"(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\\\.-]+;)\"\n }];\n}\n\nfunction comments(next) {\n return [\n {\n token : \"comment\", // multi line comment\n regex : /\\/\\*/,\n next: [\n DocCommentHighlightRules.getTagRule(),\n {token : \"comment\", regex : \"\\\\*\\\\/\", next : next || \"pop\"},\n {defaultToken : \"comment\", caseInsensitive: true}\n ]\n }, {\n token : \"comment\",\n regex : \"\\\\/\\\\/\",\n next: [\n DocCommentHighlightRules.getTagRule(),\n {token : \"comment\", regex : \"$|^\", next : next || \"pop\"},\n {defaultToken : \"comment\", caseInsensitive: true}\n ]\n }\n ];\n}\nexports.JavaScriptHighlightRules = JavaScriptHighlightRules;\n});\n\nace.define(\"ace/mode/matching_brace_outdent\",[\"require\",\"exports\",\"module\",\"ace/range\"], function(require, exports, module) {\n\"use strict\";\n\nvar Range = require(\"../range\").Range;\n\nvar MatchingBraceOutdent = function() {};\n\n(function() {\n\n this.checkOutdent = function(line, input) {\n if (! /^\\s+$/.test(line))\n return false;\n\n return /^\\s*\\}/.test(input);\n };\n\n this.autoOutdent = function(doc, row) {\n var line = doc.getLine(row);\n var match = line.match(/^(\\s*\\})/);\n\n if (!match) return 0;\n\n var column = match[1].length;\n var openBracePos = doc.findMatchingBracket({row: row, column: column});\n\n if (!openBracePos || openBracePos.row == row) return 0;\n\n var indent = this.$getIndent(doc.getLine(openBracePos.row));\n doc.replace(new Range(row, 0, row, column-1), indent);\n };\n\n this.$getIndent = function(line) {\n return line.match(/^\\s*/)[0];\n };\n\n}).call(MatchingBraceOutdent.prototype);\n\nexports.MatchingBraceOutdent = MatchingBraceOutdent;\n});\n\nace.define(\"ace/mode/folding/cstyle\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/range\",\"ace/mode/folding/fold_mode\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Range = require(\"../../range\").Range;\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function(commentRegex) {\n if (commentRegex) {\n this.foldingStartMarker = new RegExp(\n this.foldingStartMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.start)\n );\n this.foldingStopMarker = new RegExp(\n this.foldingStopMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.end)\n );\n }\n};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n \n this.foldingStartMarker = /([\\{\\[\\(])[^\\}\\]\\)]*$|^\\s*(\\/\\*)/;\n this.foldingStopMarker = /^[^\\[\\{\\(]*([\\}\\]\\)])|^[\\s\\*]*(\\*\\/)/;\n this.singleLineBlockCommentRe= /^\\s*(\\/\\*).*\\*\\/\\s*$/;\n this.tripleStarBlockCommentRe = /^\\s*(\\/\\*\\*\\*).*\\*\\/\\s*$/;\n this.startRegionRe = /^\\s*(\\/\\*|\\/\\/)#?region\\b/;\n this._getFoldWidgetBase = this.getFoldWidget;\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n \n if (this.singleLineBlockCommentRe.test(line)) {\n if (!this.startRegionRe.test(line) && !this.tripleStarBlockCommentRe.test(line))\n return \"\";\n }\n \n var fw = this._getFoldWidgetBase(session, foldStyle, row);\n \n if (!fw && this.startRegionRe.test(line))\n return \"start\"; // lineCommentRegionStart\n \n return fw;\n };\n\n this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {\n var line = session.getLine(row);\n \n if (this.startRegionRe.test(line))\n return this.getCommentRegionBlock(session, line, row);\n \n var match = line.match(this.foldingStartMarker);\n if (match) {\n var i = match.index;\n\n if (match[1])\n return this.openingBracketBlock(session, match[1], row, i);\n \n var range = session.getCommentFoldRange(row, i + match[0].length, 1);\n \n if (range && !range.isMultiLine()) {\n if (forceMultiline) {\n range = this.getSectionRange(session, row);\n } else if (foldStyle != \"all\")\n range = null;\n }\n \n return range;\n }\n\n if (foldStyle === \"markbegin\")\n return;\n\n var match = line.match(this.foldingStopMarker);\n if (match) {\n var i = match.index + match[0].length;\n\n if (match[1])\n return this.closingBracketBlock(session, match[1], row, i);\n\n return session.getCommentFoldRange(row, i, -1);\n }\n };\n \n this.getSectionRange = function(session, row) {\n var line = session.getLine(row);\n var startIndent = line.search(/\\S/);\n var startRow = row;\n var startColumn = line.length;\n row = row + 1;\n var endRow = row;\n var maxRow = session.getLength();\n while (++row < maxRow) {\n line = session.getLine(row);\n var indent = line.search(/\\S/);\n if (indent === -1)\n continue;\n if (startIndent > indent)\n break;\n var subRange = this.getFoldWidgetRange(session, \"all\", row);\n \n if (subRange) {\n if (subRange.start.row <= startRow) {\n break;\n } else if (subRange.isMultiLine()) {\n row = subRange.end.row;\n } else if (startIndent == indent) {\n break;\n }\n }\n endRow = row;\n }\n \n return new Range(startRow, startColumn, endRow, session.getLine(endRow).length);\n };\n this.getCommentRegionBlock = function(session, line, row) {\n var startColumn = line.search(/\\s*$/);\n var maxRow = session.getLength();\n var startRow = row;\n \n var re = /^\\s*(?:\\/\\*|\\/\\/|--)#?(end)?region\\b/;\n var depth = 1;\n while (++row < maxRow) {\n line = session.getLine(row);\n var m = re.exec(line);\n if (!m) continue;\n if (m[1]) depth--;\n else depth++;\n\n if (!depth) break;\n }\n\n var endRow = row;\n if (endRow > startRow) {\n return new Range(startRow, startColumn, endRow, line.length);\n }\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/javascript\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/javascript_highlight_rules\",\"ace/mode/matching_brace_outdent\",\"ace/worker/worker_client\",\"ace/mode/behaviour/cstyle\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar JavaScriptHighlightRules = require(\"./javascript_highlight_rules\").JavaScriptHighlightRules;\nvar MatchingBraceOutdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\nvar WorkerClient = require(\"../worker/worker_client\").WorkerClient;\nvar CstyleBehaviour = require(\"./behaviour/cstyle\").CstyleBehaviour;\nvar CStyleFoldMode = require(\"./folding/cstyle\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = JavaScriptHighlightRules;\n \n this.$outdent = new MatchingBraceOutdent();\n this.$behaviour = new CstyleBehaviour();\n this.foldingRules = new CStyleFoldMode();\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.lineCommentStart = \"//\";\n this.blockComment = {start: \"/*\", end: \"*/\"};\n this.$quotes = {'\"': '\"', \"'\": \"'\", \"`\": \"`\"};\n\n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n\n var tokenizedLine = this.getTokenizer().getLineTokens(line, state);\n var tokens = tokenizedLine.tokens;\n var endState = tokenizedLine.state;\n\n if (tokens.length && tokens[tokens.length-1].type == \"comment\") {\n return indent;\n }\n\n if (state == \"start\" || state == \"no_regex\") {\n var match = line.match(/^.*(?:\\bcase\\b.*:|[\\{\\(\\[])\\s*$/);\n if (match) {\n indent += tab;\n }\n } else if (state == \"doc-start\") {\n if (endState == \"start\" || endState == \"no_regex\") {\n return \"\";\n }\n var match = line.match(/^\\s*(\\/?)\\*/);\n if (match) {\n if (match[1]) {\n indent += \" \";\n }\n indent += \"* \";\n }\n }\n\n return indent;\n };\n\n this.checkOutdent = function(state, line, input) {\n return this.$outdent.checkOutdent(line, input);\n };\n\n this.autoOutdent = function(state, doc, row) {\n this.$outdent.autoOutdent(doc, row);\n };\n\n this.createWorker = function(session) {\n var worker = new WorkerClient([\"ace\"], \"ace/mode/javascript_worker\", \"JavaScriptWorker\");\n worker.attachToDocument(session.getDocument());\n\n worker.on(\"annotate\", function(results) {\n session.setAnnotations(results.data);\n });\n\n worker.on(\"terminate\", function() {\n session.clearAnnotations();\n });\n\n return worker;\n };\n\n this.$id = \"ace/mode/javascript\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/javascript\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file1f := &embedded.EmbeddedFile{ Filename: "1afbeca385b131cfc3ae515b89e552c7.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/theme/chrome\",[\"require\",\"exports\",\"module\",\"ace/lib/dom\"], function(require, exports, module) {\n\nexports.isDark = false;\nexports.cssClass = \"ace-chrome\";\nexports.cssText = \".ace-chrome .ace_gutter {\\\nbackground: #ebebeb;\\\ncolor: #333;\\\noverflow : hidden;\\\n}\\\n.ace-chrome .ace_print-margin {\\\nwidth: 1px;\\\nbackground: #e8e8e8;\\\n}\\\n.ace-chrome {\\\nbackground-color: #FFFFFF;\\\ncolor: black;\\\n}\\\n.ace-chrome .ace_cursor {\\\ncolor: black;\\\n}\\\n.ace-chrome .ace_invisible {\\\ncolor: rgb(191, 191, 191);\\\n}\\\n.ace-chrome .ace_constant.ace_buildin {\\\ncolor: rgb(88, 72, 246);\\\n}\\\n.ace-chrome .ace_constant.ace_language {\\\ncolor: rgb(88, 92, 246);\\\n}\\\n.ace-chrome .ace_constant.ace_library {\\\ncolor: rgb(6, 150, 14);\\\n}\\\n.ace-chrome .ace_invalid {\\\nbackground-color: rgb(153, 0, 0);\\\ncolor: white;\\\n}\\\n.ace-chrome .ace_fold {\\\n}\\\n.ace-chrome .ace_support.ace_function {\\\ncolor: rgb(60, 76, 114);\\\n}\\\n.ace-chrome .ace_support.ace_constant {\\\ncolor: rgb(6, 150, 14);\\\n}\\\n.ace-chrome .ace_support.ace_type,\\\n.ace-chrome .ace_support.ace_class\\\n.ace-chrome .ace_support.ace_other {\\\ncolor: rgb(109, 121, 222);\\\n}\\\n.ace-chrome .ace_variable.ace_parameter {\\\nfont-style:italic;\\\ncolor:#FD971F;\\\n}\\\n.ace-chrome .ace_keyword.ace_operator {\\\ncolor: rgb(104, 118, 135);\\\n}\\\n.ace-chrome .ace_comment {\\\ncolor: #236e24;\\\n}\\\n.ace-chrome .ace_comment.ace_doc {\\\ncolor: #236e24;\\\n}\\\n.ace-chrome .ace_comment.ace_doc.ace_tag {\\\ncolor: #236e24;\\\n}\\\n.ace-chrome .ace_constant.ace_numeric {\\\ncolor: rgb(0, 0, 205);\\\n}\\\n.ace-chrome .ace_variable {\\\ncolor: rgb(49, 132, 149);\\\n}\\\n.ace-chrome .ace_xml-pe {\\\ncolor: rgb(104, 104, 91);\\\n}\\\n.ace-chrome .ace_entity.ace_name.ace_function {\\\ncolor: #0000A2;\\\n}\\\n.ace-chrome .ace_heading {\\\ncolor: rgb(12, 7, 255);\\\n}\\\n.ace-chrome .ace_list {\\\ncolor:rgb(185, 6, 144);\\\n}\\\n.ace-chrome .ace_marker-layer .ace_selection {\\\nbackground: rgb(181, 213, 255);\\\n}\\\n.ace-chrome .ace_marker-layer .ace_step {\\\nbackground: rgb(252, 255, 0);\\\n}\\\n.ace-chrome .ace_marker-layer .ace_stack {\\\nbackground: rgb(164, 229, 101);\\\n}\\\n.ace-chrome .ace_marker-layer .ace_bracket {\\\nmargin: -1px 0 0 -1px;\\\nborder: 1px solid rgb(192, 192, 192);\\\n}\\\n.ace-chrome .ace_marker-layer .ace_active-line {\\\nbackground: rgba(0, 0, 0, 0.07);\\\n}\\\n.ace-chrome .ace_gutter-active-line {\\\nbackground-color : #dcdcdc;\\\n}\\\n.ace-chrome .ace_marker-layer .ace_selected-word {\\\nbackground: rgb(250, 250, 255);\\\nborder: 1px solid rgb(200, 200, 250);\\\n}\\\n.ace-chrome .ace_storage,\\\n.ace-chrome .ace_keyword,\\\n.ace-chrome .ace_meta.ace_tag {\\\ncolor: rgb(147, 15, 128);\\\n}\\\n.ace-chrome .ace_string.ace_regex {\\\ncolor: rgb(255, 0, 0)\\\n}\\\n.ace-chrome .ace_string {\\\ncolor: #1A1AA6;\\\n}\\\n.ace-chrome .ace_entity.ace_other.ace_attribute-name {\\\ncolor: #994409;\\\n}\\\n.ace-chrome .ace_indent-guide {\\\nbackground: url(\\\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==\\\") right repeat-y;\\\n}\\\n\";\n\nvar dom = require(\"../lib/dom\");\ndom.importCssString(exports.cssText, exports.cssClass);\n}); (function() {\n ace.require([\"ace/theme/chrome\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file1g := &embedded.EmbeddedFile{ Filename: "1c6bd172a3d95b49dce0229ddd5b94ed.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/doc_comment_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar DocCommentHighlightRules = function() {\n this.$rules = {\n \"start\" : [ {\n token : \"comment.doc.tag\",\n regex : \"@[\\\\w\\\\d_]+\" // TODO: fix email addresses\n }, \n DocCommentHighlightRules.getTagRule(),\n {\n defaultToken : \"comment.doc\",\n caseInsensitive: true\n }]\n };\n};\n\noop.inherits(DocCommentHighlightRules, TextHighlightRules);\n\nDocCommentHighlightRules.getTagRule = function(start) {\n return {\n token : \"comment.doc.tag.storage.type\",\n regex : \"\\\\b(?:TODO|FIXME|XXX|HACK)\\\\b\"\n };\n};\n\nDocCommentHighlightRules.getStartRule = function(start) {\n return {\n token : \"comment.doc\", // doc comment\n regex : \"\\\\/\\\\*(?=\\\\*)\",\n next : start\n };\n};\n\nDocCommentHighlightRules.getEndRule = function (start) {\n return {\n token : \"comment.doc\", // closing comment\n regex : \"\\\\*\\\\/\",\n next : start\n };\n};\n\n\nexports.DocCommentHighlightRules = DocCommentHighlightRules;\n\n});\n\nace.define(\"ace/mode/css_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar supportType = exports.supportType = \"align-content|align-items|align-self|all|animation|animation-delay|animation-direction|animation-duration|animation-fill-mode|animation-iteration-count|animation-name|animation-play-state|animation-timing-function|backface-visibility|background|background-attachment|background-blend-mode|background-clip|background-color|background-image|background-origin|background-position|background-repeat|background-size|border|border-bottom|border-bottom-color|border-bottom-left-radius|border-bottom-right-radius|border-bottom-style|border-bottom-width|border-collapse|border-color|border-image|border-image-outset|border-image-repeat|border-image-slice|border-image-source|border-image-width|border-left|border-left-color|border-left-style|border-left-width|border-radius|border-right|border-right-color|border-right-style|border-right-width|border-spacing|border-style|border-top|border-top-color|border-top-left-radius|border-top-right-radius|border-top-style|border-top-width|border-width|bottom|box-shadow|box-sizing|caption-side|clear|clip|color|column-count|column-fill|column-gap|column-rule|column-rule-color|column-rule-style|column-rule-width|column-span|column-width|columns|content|counter-increment|counter-reset|cursor|direction|display|empty-cells|filter|flex|flex-basis|flex-direction|flex-flow|flex-grow|flex-shrink|flex-wrap|float|font|font-family|font-size|font-size-adjust|font-stretch|font-style|font-variant|font-weight|hanging-punctuation|height|justify-content|left|letter-spacing|line-height|list-style|list-style-image|list-style-position|list-style-type|margin|margin-bottom|margin-left|margin-right|margin-top|max-height|max-width|max-zoom|min-height|min-width|min-zoom|nav-down|nav-index|nav-left|nav-right|nav-up|opacity|order|outline|outline-color|outline-offset|outline-style|outline-width|overflow|overflow-x|overflow-y|padding|padding-bottom|padding-left|padding-right|padding-top|page-break-after|page-break-before|page-break-inside|perspective|perspective-origin|position|quotes|resize|right|tab-size|table-layout|text-align|text-align-last|text-decoration|text-decoration-color|text-decoration-line|text-decoration-style|text-indent|text-justify|text-overflow|text-shadow|text-transform|top|transform|transform-origin|transform-style|transition|transition-delay|transition-duration|transition-property|transition-timing-function|unicode-bidi|user-select|user-zoom|vertical-align|visibility|white-space|width|word-break|word-spacing|word-wrap|z-index\";\nvar supportFunction = exports.supportFunction = \"rgb|rgba|url|attr|counter|counters\";\nvar supportConstant = exports.supportConstant = \"absolute|after-edge|after|all-scroll|all|alphabetic|always|antialiased|armenian|auto|avoid-column|avoid-page|avoid|balance|baseline|before-edge|before|below|bidi-override|block-line-height|block|bold|bolder|border-box|both|bottom|box|break-all|break-word|capitalize|caps-height|caption|center|central|char|circle|cjk-ideographic|clone|close-quote|col-resize|collapse|column|consider-shifts|contain|content-box|cover|crosshair|cubic-bezier|dashed|decimal-leading-zero|decimal|default|disabled|disc|disregard-shifts|distribute-all-lines|distribute-letter|distribute-space|distribute|dotted|double|e-resize|ease-in|ease-in-out|ease-out|ease|ellipsis|end|exclude-ruby|fill|fixed|georgian|glyphs|grid-height|groove|hand|hanging|hebrew|help|hidden|hiragana-iroha|hiragana|horizontal|icon|ideograph-alpha|ideograph-numeric|ideograph-parenthesis|ideograph-space|ideographic|inactive|include-ruby|inherit|initial|inline-block|inline-box|inline-line-height|inline-table|inline|inset|inside|inter-ideograph|inter-word|invert|italic|justify|katakana-iroha|katakana|keep-all|last|left|lighter|line-edge|line-through|line|linear|list-item|local|loose|lower-alpha|lower-greek|lower-latin|lower-roman|lowercase|lr-tb|ltr|mathematical|max-height|max-size|medium|menu|message-box|middle|move|n-resize|ne-resize|newspaper|no-change|no-close-quote|no-drop|no-open-quote|no-repeat|none|normal|not-allowed|nowrap|nw-resize|oblique|open-quote|outset|outside|overline|padding-box|page|pointer|pre-line|pre-wrap|pre|preserve-3d|progress|relative|repeat-x|repeat-y|repeat|replaced|reset-size|ridge|right|round|row-resize|rtl|s-resize|scroll|se-resize|separate|slice|small-caps|small-caption|solid|space|square|start|static|status-bar|step-end|step-start|steps|stretch|strict|sub|super|sw-resize|table-caption|table-cell|table-column-group|table-column|table-footer-group|table-header-group|table-row-group|table-row|table|tb-rl|text-after-edge|text-before-edge|text-bottom|text-size|text-top|text|thick|thin|transparent|underline|upper-alpha|upper-latin|upper-roman|uppercase|use-script|vertical-ideographic|vertical-text|visible|w-resize|wait|whitespace|z-index|zero|zoom\";\nvar supportConstantColor = exports.supportConstantColor = \"aliceblue|antiquewhite|aqua|aquamarine|azure|beige|bisque|black|blanchedalmond|blue|blueviolet|brown|burlywood|cadetblue|chartreuse|chocolate|coral|cornflowerblue|cornsilk|crimson|cyan|darkblue|darkcyan|darkgoldenrod|darkgray|darkgreen|darkgrey|darkkhaki|darkmagenta|darkolivegreen|darkorange|darkorchid|darkred|darksalmon|darkseagreen|darkslateblue|darkslategray|darkslategrey|darkturquoise|darkviolet|deeppink|deepskyblue|dimgray|dimgrey|dodgerblue|firebrick|floralwhite|forestgreen|fuchsia|gainsboro|ghostwhite|gold|goldenrod|gray|green|greenyellow|grey|honeydew|hotpink|indianred|indigo|ivory|khaki|lavender|lavenderblush|lawngreen|lemonchiffon|lightblue|lightcoral|lightcyan|lightgoldenrodyellow|lightgray|lightgreen|lightgrey|lightpink|lightsalmon|lightseagreen|lightskyblue|lightslategray|lightslategrey|lightsteelblue|lightyellow|lime|limegreen|linen|magenta|maroon|mediumaquamarine|mediumblue|mediumorchid|mediumpurple|mediumseagreen|mediumslateblue|mediumspringgreen|mediumturquoise|mediumvioletred|midnightblue|mintcream|mistyrose|moccasin|navajowhite|navy|oldlace|olive|olivedrab|orange|orangered|orchid|palegoldenrod|palegreen|paleturquoise|palevioletred|papayawhip|peachpuff|peru|pink|plum|powderblue|purple|rebeccapurple|red|rosybrown|royalblue|saddlebrown|salmon|sandybrown|seagreen|seashell|sienna|silver|skyblue|slateblue|slategray|slategrey|snow|springgreen|steelblue|tan|teal|thistle|tomato|turquoise|violet|wheat|white|whitesmoke|yellow|yellowgreen\";\nvar supportConstantFonts = exports.supportConstantFonts = \"arial|century|comic|courier|cursive|fantasy|garamond|georgia|helvetica|impact|lucida|symbol|system|tahoma|times|trebuchet|utopia|verdana|webdings|sans-serif|serif|monospace\";\n\nvar numRe = exports.numRe = \"\\\\-?(?:(?:[0-9]+(?:\\\\.[0-9]+)?)|(?:\\\\.[0-9]+))\";\nvar pseudoElements = exports.pseudoElements = \"(\\\\:+)\\\\b(after|before|first-letter|first-line|moz-selection|selection)\\\\b\";\nvar pseudoClasses = exports.pseudoClasses = \"(:)\\\\b(active|checked|disabled|empty|enabled|first-child|first-of-type|focus|hover|indeterminate|invalid|last-child|last-of-type|link|not|nth-child|nth-last-child|nth-last-of-type|nth-of-type|only-child|only-of-type|required|root|target|valid|visited)\\\\b\";\n\nvar CssHighlightRules = function() {\n\n var keywordMapper = this.createKeywordMapper({\n \"support.function\": supportFunction,\n \"support.constant\": supportConstant,\n \"support.type\": supportType,\n \"support.constant.color\": supportConstantColor,\n \"support.constant.fonts\": supportConstantFonts\n }, \"text\", true);\n\n this.$rules = {\n \"start\" : [{\n include : [\"strings\", \"url\", \"comments\"]\n }, {\n token: \"paren.lparen\",\n regex: \"\\\\{\",\n next: \"ruleset\"\n }, {\n token: \"paren.rparen\",\n regex: \"\\\\}\"\n }, {\n token: \"string\",\n regex: \"@(?!viewport)\",\n next: \"media\"\n }, {\n token: \"keyword\",\n regex: \"#[a-z0-9-_]+\"\n }, {\n token: \"keyword\",\n regex: \"%\"\n }, {\n token: \"variable\",\n regex: \"\\\\.[a-z0-9-_]+\"\n }, {\n token: \"string\",\n regex: \":[a-z0-9-_]+\"\n }, {\n token : \"constant.numeric\",\n regex : numRe\n }, {\n token: \"constant\",\n regex: \"[a-z0-9-_]+\"\n }, {\n caseInsensitive: true\n }],\n\n \"media\": [{\n include : [\"strings\", \"url\", \"comments\"]\n }, {\n token: \"paren.lparen\",\n regex: \"\\\\{\",\n next: \"start\"\n }, {\n token: \"paren.rparen\",\n regex: \"\\\\}\",\n next: \"start\"\n }, {\n token: \"string\",\n regex: \";\",\n next: \"start\"\n }, {\n token: \"keyword\",\n regex: \"(?:media|supports|document|charset|import|namespace|media|supports|document\"\n + \"|page|font|keyframes|viewport|counter-style|font-feature-values\"\n + \"|swash|ornaments|annotation|stylistic|styleset|character-variant)\"\n }],\n\n \"comments\" : [{\n token: \"comment\", // multi line comment\n regex: \"\\\\/\\\\*\",\n push: [{\n token : \"comment\",\n regex : \"\\\\*\\\\/\",\n next : \"pop\"\n }, {\n defaultToken : \"comment\"\n }]\n }],\n\n \"ruleset\" : [{\n regex : \"-(webkit|ms|moz|o)-\",\n token : \"text\"\n }, {\n token : \"punctuation.operator\",\n regex : \"[:;]\"\n }, {\n token : \"paren.rparen\",\n regex : \"\\\\}\",\n next : \"start\"\n }, {\n include : [\"strings\", \"url\", \"comments\"]\n }, {\n token : [\"constant.numeric\", \"keyword\"],\n regex : \"(\" + numRe + \")(ch|cm|deg|em|ex|fr|gd|grad|Hz|in|kHz|mm|ms|pc|pt|px|rad|rem|s|turn|vh|vmax|vmin|vm|vw|%)\"\n }, {\n token : \"constant.numeric\",\n regex : numRe\n }, {\n token : \"constant.numeric\", // hex6 color\n regex : \"#[a-f0-9]{6}\"\n }, {\n token : \"constant.numeric\", // hex3 color\n regex : \"#[a-f0-9]{3}\"\n }, {\n token : [\"punctuation\", \"entity.other.attribute-name.pseudo-element.css\"],\n regex : pseudoElements\n }, {\n token : [\"punctuation\", \"entity.other.attribute-name.pseudo-class.css\"],\n regex : pseudoClasses\n }, {\n include: \"url\"\n }, {\n token : keywordMapper,\n regex : \"\\\\-?[a-zA-Z_][a-zA-Z0-9_\\\\-]*\"\n }, {\n caseInsensitive: true\n }],\n\n url: [{\n token : \"support.function\",\n regex : \"(?:url(:?-prefix)?|domain|regexp)\\\\(\",\n push: [{\n token : \"support.function\",\n regex : \"\\\\)\",\n next : \"pop\"\n }, {\n defaultToken: \"string\"\n }]\n }],\n\n strings: [{\n token : \"string.start\",\n regex : \"'\",\n push : [{\n token : \"string.end\",\n regex : \"'|$\",\n next: \"pop\"\n }, {\n include : \"escapes\"\n }, {\n token : \"constant.language.escape\",\n regex : /\\\\$/,\n consumeLineEnd: true\n }, {\n defaultToken: \"string\"\n }]\n }, {\n token : \"string.start\",\n regex : '\"',\n push : [{\n token : \"string.end\",\n regex : '\"|$',\n next: \"pop\"\n }, {\n include : \"escapes\"\n }, {\n token : \"constant.language.escape\",\n regex : /\\\\$/,\n consumeLineEnd: true\n }, {\n defaultToken: \"string\"\n }]\n }],\n escapes: [{\n token : \"constant.language.escape\",\n regex : /\\\\([a-fA-F\\d]{1,6}|[^a-fA-F\\d])/\n }]\n\n };\n\n this.normalizeRules();\n};\n\noop.inherits(CssHighlightRules, TextHighlightRules);\n\nexports.CssHighlightRules = CssHighlightRules;\n\n});\n\nace.define(\"ace/mode/javascript_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/doc_comment_highlight_rules\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar DocCommentHighlightRules = require(\"./doc_comment_highlight_rules\").DocCommentHighlightRules;\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar identifierRe = \"[a-zA-Z\\\\$_\\u00a1-\\uffff][a-zA-Z\\\\d\\\\$_\\u00a1-\\uffff]*\";\n\nvar JavaScriptHighlightRules = function(options) {\n var keywordMapper = this.createKeywordMapper({\n \"variable.language\":\n \"Array|Boolean|Date|Function|Iterator|Number|Object|RegExp|String|Proxy|\" + // Constructors\n \"Namespace|QName|XML|XMLList|\" + // E4X\n \"ArrayBuffer|Float32Array|Float64Array|Int16Array|Int32Array|Int8Array|\" +\n \"Uint16Array|Uint32Array|Uint8Array|Uint8ClampedArray|\" +\n \"Error|EvalError|InternalError|RangeError|ReferenceError|StopIteration|\" + // Errors\n \"SyntaxError|TypeError|URIError|\" +\n \"decodeURI|decodeURIComponent|encodeURI|encodeURIComponent|eval|isFinite|\" + // Non-constructor functions\n \"isNaN|parseFloat|parseInt|\" +\n \"JSON|Math|\" + // Other\n \"this|arguments|prototype|window|document\" , // Pseudo\n \"keyword\":\n \"const|yield|import|get|set|async|await|\" +\n \"break|case|catch|continue|default|delete|do|else|finally|for|function|\" +\n \"if|in|of|instanceof|new|return|switch|throw|try|typeof|let|var|while|with|debugger|\" +\n \"__parent__|__count__|escape|unescape|with|__proto__|\" +\n \"class|enum|extends|super|export|implements|private|public|interface|package|protected|static\",\n \"storage.type\":\n \"const|let|var|function\",\n \"constant.language\":\n \"null|Infinity|NaN|undefined\",\n \"support.function\":\n \"alert\",\n \"constant.language.boolean\": \"true|false\"\n }, \"identifier\");\n var kwBeforeRe = \"case|do|else|finally|in|instanceof|return|throw|try|typeof|yield|void\";\n\n var escapedRe = \"\\\\\\\\(?:x[0-9a-fA-F]{2}|\" + // hex\n \"u[0-9a-fA-F]{4}|\" + // unicode\n \"u{[0-9a-fA-F]{1,6}}|\" + // es6 unicode\n \"[0-2][0-7]{0,2}|\" + // oct\n \"3[0-7][0-7]?|\" + // oct\n \"[4-7][0-7]?|\" + //oct\n \".)\";\n\n this.$rules = {\n \"no_regex\" : [\n DocCommentHighlightRules.getStartRule(\"doc-start\"),\n comments(\"no_regex\"),\n {\n token : \"string\",\n regex : \"'(?=.)\",\n next : \"qstring\"\n }, {\n token : \"string\",\n regex : '\"(?=.)',\n next : \"qqstring\"\n }, {\n token : \"constant.numeric\", // hexadecimal, octal and binary\n regex : /0(?:[xX][0-9a-fA-F]+|[oO][0-7]+|[bB][01]+)\\b/\n }, {\n token : \"constant.numeric\", // decimal integers and floats\n regex : /(?:\\d\\d*(?:\\.\\d*)?|\\.\\d+)(?:[eE][+-]?\\d+\\b)?/\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"support.function\",\n \"punctuation.operator\", \"entity.name.function\", \"text\",\"keyword.operator\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(prototype)(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"entity.name.function\", \"text\", \"keyword.operator\", \"text\", \"storage.type\",\n \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\",\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s+)(\\\\w+)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(function)(\\\\s+)(\" + identifierRe + \")(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"entity.name.function\", \"text\", \"punctuation.operator\",\n \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\s*)(:)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"text\", \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(:)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : \"keyword\",\n regex : \"from(?=\\\\s*('|\\\"))\"\n }, {\n token : \"keyword\",\n regex : \"(?:\" + kwBeforeRe + \")\\\\b\",\n next : \"start\"\n }, {\n token : [\"support.constant\"],\n regex : /that\\b/\n }, {\n token : [\"storage.type\", \"punctuation.operator\", \"support.function.firebug\"],\n regex : /(console)(\\.)(warn|info|log|error|time|trace|timeEnd|assert)\\b/\n }, {\n token : keywordMapper,\n regex : identifierRe\n }, {\n token : \"punctuation.operator\",\n regex : /[.](?![.])/,\n next : \"property\"\n }, {\n token : \"storage.type\",\n regex : /=>/,\n next : \"start\"\n }, {\n token : \"keyword.operator\",\n regex : /--|\\+\\+|\\.{3}|===|==|=|!=|!==|<+=?|>+=?|!|&&|\\|\\||\\?:|[!$%&*+\\-~\\/^]=?/,\n next : \"start\"\n }, {\n token : \"punctuation.operator\",\n regex : /[?:,;.]/,\n next : \"start\"\n }, {\n token : \"paren.lparen\",\n regex : /[\\[({]/,\n next : \"start\"\n }, {\n token : \"paren.rparen\",\n regex : /[\\])}]/\n }, {\n token: \"comment\",\n regex: /^#!.*$/\n }\n ],\n property: [{\n token : \"text\",\n regex : \"\\\\s+\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\",\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(?:(\\\\s+)(\\\\w+))?(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : \"punctuation.operator\",\n regex : /[.](?![.])/\n }, {\n token : \"support.function\",\n regex : /(s(?:h(?:ift|ow(?:Mod(?:elessDialog|alDialog)|Help))|croll(?:X|By(?:Pages|Lines)?|Y|To)?|t(?:op|rike)|i(?:n|zeToContent|debar|gnText)|ort|u(?:p|b(?:str(?:ing)?)?)|pli(?:ce|t)|e(?:nd|t(?:Re(?:sizable|questHeader)|M(?:i(?:nutes|lliseconds)|onth)|Seconds|Ho(?:tKeys|urs)|Year|Cursor|Time(?:out)?|Interval|ZOptions|Date|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Date|FullYear)|FullYear|Active)|arch)|qrt|lice|avePreferences|mall)|h(?:ome|andleEvent)|navigate|c(?:har(?:CodeAt|At)|o(?:s|n(?:cat|textual|firm)|mpile)|eil|lear(?:Timeout|Interval)?|a(?:ptureEvents|ll)|reate(?:StyleSheet|Popup|EventObject))|t(?:o(?:GMTString|S(?:tring|ource)|U(?:TCString|pperCase)|Lo(?:caleString|werCase))|est|a(?:n|int(?:Enabled)?))|i(?:s(?:NaN|Finite)|ndexOf|talics)|d(?:isableExternalCapture|ump|etachEvent)|u(?:n(?:shift|taint|escape|watch)|pdateCommands)|j(?:oin|avaEnabled)|p(?:o(?:p|w)|ush|lugins.refresh|a(?:ddings|rse(?:Int|Float)?)|r(?:int|ompt|eference))|e(?:scape|nableExternalCapture|val|lementFromPoint|x(?:p|ec(?:Script|Command)?))|valueOf|UTC|queryCommand(?:State|Indeterm|Enabled|Value)|f(?:i(?:nd|le(?:ModifiedDate|Size|CreatedDate|UpdatedDate)|xed)|o(?:nt(?:size|color)|rward)|loor|romCharCode)|watch|l(?:ink|o(?:ad|g)|astIndexOf)|a(?:sin|nchor|cos|t(?:tachEvent|ob|an(?:2)?)|pply|lert|b(?:s|ort))|r(?:ou(?:nd|teEvents)|e(?:size(?:By|To)|calc|turnValue|place|verse|l(?:oad|ease(?:Capture|Events)))|andom)|g(?:o|et(?:ResponseHeader|M(?:i(?:nutes|lliseconds)|onth)|Se(?:conds|lection)|Hours|Year|Time(?:zoneOffset)?|Da(?:y|te)|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Da(?:y|te)|FullYear)|FullYear|A(?:ttention|llResponseHeaders)))|m(?:in|ove(?:B(?:y|elow)|To(?:Absolute)?|Above)|ergeAttributes|a(?:tch|rgins|x))|b(?:toa|ig|o(?:ld|rderWidths)|link|ack))\\b(?=\\()/\n }, {\n token : \"support.function.dom\",\n regex : /(s(?:ub(?:stringData|mit)|plitText|e(?:t(?:NamedItem|Attribute(?:Node)?)|lect))|has(?:ChildNodes|Feature)|namedItem|c(?:l(?:ick|o(?:se|neNode))|reate(?:C(?:omment|DATASection|aption)|T(?:Head|extNode|Foot)|DocumentFragment|ProcessingInstruction|E(?:ntityReference|lement)|Attribute))|tabIndex|i(?:nsert(?:Row|Before|Cell|Data)|tem)|open|delete(?:Row|C(?:ell|aption)|T(?:Head|Foot)|Data)|focus|write(?:ln)?|a(?:dd|ppend(?:Child|Data))|re(?:set|place(?:Child|Data)|move(?:NamedItem|Child|Attribute(?:Node)?)?)|get(?:NamedItem|Element(?:sBy(?:Name|TagName|ClassName)|ById)|Attribute(?:Node)?)|blur)\\b(?=\\()/\n }, {\n token : \"support.constant\",\n regex : /(s(?:ystemLanguage|cr(?:ipts|ollbars|een(?:X|Y|Top|Left))|t(?:yle(?:Sheets)?|atus(?:Text|bar)?)|ibling(?:Below|Above)|ource|uffixes|e(?:curity(?:Policy)?|l(?:ection|f)))|h(?:istory|ost(?:name)?|as(?:h|Focus))|y|X(?:MLDocument|SLDocument)|n(?:ext|ame(?:space(?:s|URI)|Prop))|M(?:IN_VALUE|AX_VALUE)|c(?:haracterSet|o(?:n(?:structor|trollers)|okieEnabled|lorDepth|mp(?:onents|lete))|urrent|puClass|l(?:i(?:p(?:boardData)?|entInformation)|osed|asses)|alle(?:e|r)|rypto)|t(?:o(?:olbar|p)|ext(?:Transform|Indent|Decoration|Align)|ags)|SQRT(?:1_2|2)|i(?:n(?:ner(?:Height|Width)|put)|ds|gnoreCase)|zIndex|o(?:scpu|n(?:readystatechange|Line)|uter(?:Height|Width)|p(?:sProfile|ener)|ffscreenBuffering)|NEGATIVE_INFINITY|d(?:i(?:splay|alog(?:Height|Top|Width|Left|Arguments)|rectories)|e(?:scription|fault(?:Status|Ch(?:ecked|arset)|View)))|u(?:ser(?:Profile|Language|Agent)|n(?:iqueID|defined)|pdateInterval)|_content|p(?:ixelDepth|ort|ersonalbar|kcs11|l(?:ugins|atform)|a(?:thname|dding(?:Right|Bottom|Top|Left)|rent(?:Window|Layer)?|ge(?:X(?:Offset)?|Y(?:Offset)?))|r(?:o(?:to(?:col|type)|duct(?:Sub)?|mpter)|e(?:vious|fix)))|e(?:n(?:coding|abledPlugin)|x(?:ternal|pando)|mbeds)|v(?:isibility|endor(?:Sub)?|Linkcolor)|URLUnencoded|P(?:I|OSITIVE_INFINITY)|f(?:ilename|o(?:nt(?:Size|Family|Weight)|rmName)|rame(?:s|Element)|gColor)|E|whiteSpace|l(?:i(?:stStyleType|n(?:eHeight|kColor))|o(?:ca(?:tion(?:bar)?|lName)|wsrc)|e(?:ngth|ft(?:Context)?)|a(?:st(?:M(?:odified|atch)|Index|Paren)|yer(?:s|X)|nguage))|a(?:pp(?:MinorVersion|Name|Co(?:deName|re)|Version)|vail(?:Height|Top|Width|Left)|ll|r(?:ity|guments)|Linkcolor|bove)|r(?:ight(?:Context)?|e(?:sponse(?:XML|Text)|adyState))|global|x|m(?:imeTypes|ultiline|enubar|argin(?:Right|Bottom|Top|Left))|L(?:N(?:10|2)|OG(?:10E|2E))|b(?:o(?:ttom|rder(?:Width|RightWidth|BottomWidth|Style|Color|TopWidth|LeftWidth))|ufferDepth|elow|ackground(?:Color|Image)))\\b/\n }, {\n token : \"identifier\",\n regex : identifierRe\n }, {\n regex: \"\",\n token: \"empty\",\n next: \"no_regex\"\n }\n ],\n \"start\": [\n DocCommentHighlightRules.getStartRule(\"doc-start\"),\n comments(\"start\"),\n {\n token: \"string.regexp\",\n regex: \"\\\\/\",\n next: \"regex\"\n }, {\n token : \"text\",\n regex : \"\\\\s+|^$\",\n next : \"start\"\n }, {\n token: \"empty\",\n regex: \"\",\n next: \"no_regex\"\n }\n ],\n \"regex\": [\n {\n token: \"regexp.keyword.operator\",\n regex: \"\\\\\\\\(?:u[\\\\da-fA-F]{4}|x[\\\\da-fA-F]{2}|.)\"\n }, {\n token: \"string.regexp\",\n regex: \"/[sxngimy]*\",\n next: \"no_regex\"\n }, {\n token : \"invalid\",\n regex: /\\{\\d+\\b,?\\d*\\}[+*]|[+*$^?][+*]|[$^][?]|\\?{3,}/\n }, {\n token : \"constant.language.escape\",\n regex: /\\(\\?[:=!]|\\)|\\{\\d+\\b,?\\d*\\}|[+*]\\?|[()$^+*?.]/\n }, {\n token : \"constant.language.delimiter\",\n regex: /\\|/\n }, {\n token: \"constant.language.escape\",\n regex: /\\[\\^?/,\n next: \"regex_character_class\"\n }, {\n token: \"empty\",\n regex: \"$\",\n next: \"no_regex\"\n }, {\n defaultToken: \"string.regexp\"\n }\n ],\n \"regex_character_class\": [\n {\n token: \"regexp.charclass.keyword.operator\",\n regex: \"\\\\\\\\(?:u[\\\\da-fA-F]{4}|x[\\\\da-fA-F]{2}|.)\"\n }, {\n token: \"constant.language.escape\",\n regex: \"]\",\n next: \"regex\"\n }, {\n token: \"constant.language.escape\",\n regex: \"-\"\n }, {\n token: \"empty\",\n regex: \"$\",\n next: \"no_regex\"\n }, {\n defaultToken: \"string.regexp.charachterclass\"\n }\n ],\n \"function_arguments\": [\n {\n token: \"variable.parameter\",\n regex: identifierRe\n }, {\n token: \"punctuation.operator\",\n regex: \"[, ]+\"\n }, {\n token: \"punctuation.operator\",\n regex: \"$\"\n }, {\n token: \"empty\",\n regex: \"\",\n next: \"no_regex\"\n }\n ],\n \"qqstring\" : [\n {\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"string\",\n regex : \"\\\\\\\\$\",\n consumeLineEnd : true\n }, {\n token : \"string\",\n regex : '\"|$',\n next : \"no_regex\"\n }, {\n defaultToken: \"string\"\n }\n ],\n \"qstring\" : [\n {\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"string\",\n regex : \"\\\\\\\\$\",\n consumeLineEnd : true\n }, {\n token : \"string\",\n regex : \"'|$\",\n next : \"no_regex\"\n }, {\n defaultToken: \"string\"\n }\n ]\n };\n\n\n if (!options || !options.noES6) {\n this.$rules.no_regex.unshift({\n regex: \"[{}]\", onMatch: function(val, state, stack) {\n this.next = val == \"{\" ? this.nextState : \"\";\n if (val == \"{\" && stack.length) {\n stack.unshift(\"start\", state);\n }\n else if (val == \"}\" && stack.length) {\n stack.shift();\n this.next = stack.shift();\n if (this.next.indexOf(\"string\") != -1 || this.next.indexOf(\"jsx\") != -1)\n return \"paren.quasi.end\";\n }\n return val == \"{\" ? \"paren.lparen\" : \"paren.rparen\";\n },\n nextState: \"start\"\n }, {\n token : \"string.quasi.start\",\n regex : /`/,\n push : [{\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"paren.quasi.start\",\n regex : /\\${/,\n push : \"start\"\n }, {\n token : \"string.quasi.end\",\n regex : /`/,\n next : \"pop\"\n }, {\n defaultToken: \"string.quasi\"\n }]\n });\n\n if (!options || options.jsx != false)\n JSX.call(this);\n }\n\n this.embedRules(DocCommentHighlightRules, \"doc-\",\n [ DocCommentHighlightRules.getEndRule(\"no_regex\") ]);\n\n this.normalizeRules();\n};\n\noop.inherits(JavaScriptHighlightRules, TextHighlightRules);\n\nfunction JSX() {\n var tagRegex = identifierRe.replace(\"\\\\d\", \"\\\\d\\\\-\");\n var jsxTag = {\n onMatch : function(val, state, stack) {\n var offset = val.charAt(1) == \"/\" ? 2 : 1;\n if (offset == 1) {\n if (state != this.nextState)\n stack.unshift(this.next, this.nextState, 0);\n else\n stack.unshift(this.next);\n stack[2]++;\n } else if (offset == 2) {\n if (state == this.nextState) {\n stack[1]--;\n if (!stack[1] || stack[1] < 0) {\n stack.shift();\n stack.shift();\n }\n }\n }\n return [{\n type: \"meta.tag.punctuation.\" + (offset == 1 ? \"\" : \"end-\") + \"tag-open.xml\",\n value: val.slice(0, offset)\n }, {\n type: \"meta.tag.tag-name.xml\",\n value: val.substr(offset)\n }];\n },\n regex : \"\",\n onMatch : function(value, currentState, stack) {\n if (currentState == stack[0])\n stack.shift();\n if (value.length == 2) {\n if (stack[0] == this.nextState)\n stack[1]--;\n if (!stack[1] || stack[1] < 0) {\n stack.splice(0, 2);\n }\n }\n this.next = stack[0] || \"start\";\n return [{type: this.token, value: value}];\n },\n nextState: \"jsx\"\n },\n jsxJsRule,\n comments(\"jsxAttributes\"),\n {\n token : \"entity.other.attribute-name.xml\",\n regex : tagRegex\n }, {\n token : \"keyword.operator.attribute-equals.xml\",\n regex : \"=\"\n }, {\n token : \"text.tag-whitespace.xml\",\n regex : \"\\\\s+\"\n }, {\n token : \"string.attribute-value.xml\",\n regex : \"'\",\n stateName : \"jsx_attr_q\",\n push : [\n {token : \"string.attribute-value.xml\", regex: \"'\", next: \"pop\"},\n {include : \"reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n }, {\n token : \"string.attribute-value.xml\",\n regex : '\"',\n stateName : \"jsx_attr_qq\",\n push : [\n {token : \"string.attribute-value.xml\", regex: '\"', next: \"pop\"},\n {include : \"reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n },\n jsxTag\n ];\n this.$rules.reference = [{\n token : \"constant.language.escape.reference.xml\",\n regex : \"(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\\\.-]+;)\"\n }];\n}\n\nfunction comments(next) {\n return [\n {\n token : \"comment\", // multi line comment\n regex : /\\/\\*/,\n next: [\n DocCommentHighlightRules.getTagRule(),\n {token : \"comment\", regex : \"\\\\*\\\\/\", next : next || \"pop\"},\n {defaultToken : \"comment\", caseInsensitive: true}\n ]\n }, {\n token : \"comment\",\n regex : \"\\\\/\\\\/\",\n next: [\n DocCommentHighlightRules.getTagRule(),\n {token : \"comment\", regex : \"$|^\", next : next || \"pop\"},\n {defaultToken : \"comment\", caseInsensitive: true}\n ]\n }\n ];\n}\nexports.JavaScriptHighlightRules = JavaScriptHighlightRules;\n});\n\nace.define(\"ace/mode/xml_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar XmlHighlightRules = function(normalize) {\n var tagRegex = \"[_:a-zA-Z\\xc0-\\uffff][-_:.a-zA-Z0-9\\xc0-\\uffff]*\";\n\n this.$rules = {\n start : [\n {token : \"string.cdata.xml\", regex : \"<\\\\!\\\\[CDATA\\\\[\", next : \"cdata\"},\n {\n token : [\"punctuation.instruction.xml\", \"keyword.instruction.xml\"],\n regex : \"(<\\\\?)(\" + tagRegex + \")\", next : \"processing_instruction\"\n },\n {token : \"comment.start.xml\", regex : \"<\\\\!--\", next : \"comment\"},\n {\n token : [\"xml-pe.doctype.xml\", \"xml-pe.doctype.xml\"],\n regex : \"(<\\\\!)(DOCTYPE)(?=[\\\\s])\", next : \"doctype\", caseInsensitive: true\n },\n {include : \"tag\"},\n {token : \"text.end-tag-open.xml\", regex: \"\",\n next : \"start\"\n }],\n\n doctype : [\n {include : \"whitespace\"},\n {include : \"string\"},\n {token : \"xml-pe.doctype.xml\", regex : \">\", next : \"start\"},\n {token : \"xml-pe.xml\", regex : \"[-_a-zA-Z0-9:]+\"},\n {token : \"punctuation.int-subset\", regex : \"\\\\[\", push : \"int_subset\"}\n ],\n\n int_subset : [{\n token : \"text.xml\",\n regex : \"\\\\s+\"\n }, {\n token: \"punctuation.int-subset.xml\",\n regex: \"]\",\n next: \"pop\"\n }, {\n token : [\"punctuation.markup-decl.xml\", \"keyword.markup-decl.xml\"],\n regex : \"(<\\\\!)(\" + tagRegex + \")\",\n push : [{\n token : \"text\",\n regex : \"\\\\s+\"\n },\n {\n token : \"punctuation.markup-decl.xml\",\n regex : \">\",\n next : \"pop\"\n },\n {include : \"string\"}]\n }],\n\n cdata : [\n {token : \"string.cdata.xml\", regex : \"\\\\]\\\\]>\", next : \"start\"},\n {token : \"text.xml\", regex : \"\\\\s+\"},\n {token : \"text.xml\", regex : \"(?:[^\\\\]]|\\\\](?!\\\\]>))+\"}\n ],\n\n comment : [\n {token : \"comment.end.xml\", regex : \"-->\", next : \"start\"},\n {defaultToken : \"comment.xml\"}\n ],\n\n reference : [{\n token : \"constant.language.escape.reference.xml\",\n regex : \"(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\\\.-]+;)\"\n }],\n\n attr_reference : [{\n token : \"constant.language.escape.reference.attribute-value.xml\",\n regex : \"(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\\\.-]+;)\"\n }],\n\n tag : [{\n token : [\"meta.tag.punctuation.tag-open.xml\", \"meta.tag.punctuation.end-tag-open.xml\", \"meta.tag.tag-name.xml\"],\n regex : \"(?:(<)|(\", next : \"start\"}\n ]\n }],\n\n tag_whitespace : [\n {token : \"text.tag-whitespace.xml\", regex : \"\\\\s+\"}\n ],\n whitespace : [\n {token : \"text.whitespace.xml\", regex : \"\\\\s+\"}\n ],\n string: [{\n token : \"string.xml\",\n regex : \"'\",\n push : [\n {token : \"string.xml\", regex: \"'\", next: \"pop\"},\n {defaultToken : \"string.xml\"}\n ]\n }, {\n token : \"string.xml\",\n regex : '\"',\n push : [\n {token : \"string.xml\", regex: '\"', next: \"pop\"},\n {defaultToken : \"string.xml\"}\n ]\n }],\n\n attributes: [{\n token : \"entity.other.attribute-name.xml\",\n regex : tagRegex\n }, {\n token : \"keyword.operator.attribute-equals.xml\",\n regex : \"=\"\n }, {\n include: \"tag_whitespace\"\n }, {\n include: \"attribute_value\"\n }],\n\n attribute_value: [{\n token : \"string.attribute-value.xml\",\n regex : \"'\",\n push : [\n {token : \"string.attribute-value.xml\", regex: \"'\", next: \"pop\"},\n {include : \"attr_reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n }, {\n token : \"string.attribute-value.xml\",\n regex : '\"',\n push : [\n {token : \"string.attribute-value.xml\", regex: '\"', next: \"pop\"},\n {include : \"attr_reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n }]\n };\n\n if (this.constructor === XmlHighlightRules)\n this.normalizeRules();\n};\n\n\n(function() {\n\n this.embedTagRules = function(HighlightRules, prefix, tag){\n this.$rules.tag.unshift({\n token : [\"meta.tag.punctuation.tag-open.xml\", \"meta.tag.\" + tag + \".tag-name.xml\"],\n regex : \"(<)(\" + tag + \"(?=\\\\s|>|$))\",\n next: [\n {include : \"attributes\"},\n {token : \"meta.tag.punctuation.tag-close.xml\", regex : \"/?>\", next : prefix + \"start\"}\n ]\n });\n\n this.$rules[tag + \"-end\"] = [\n {include : \"attributes\"},\n {token : \"meta.tag.punctuation.tag-close.xml\", regex : \"/?>\", next: \"start\",\n onMatch : function(value, currentState, stack) {\n stack.splice(0);\n return this.token;\n }}\n ];\n\n this.embedRules(HighlightRules, prefix, [{\n token: [\"meta.tag.punctuation.end-tag-open.xml\", \"meta.tag.\" + tag + \".tag-name.xml\"],\n regex : \"(|$))\",\n next: tag + \"-end\"\n }, {\n token: \"string.cdata.xml\",\n regex : \"<\\\\!\\\\[CDATA\\\\[\"\n }, {\n token: \"string.cdata.xml\",\n regex : \"\\\\]\\\\]>\"\n }]);\n };\n\n}).call(TextHighlightRules.prototype);\n\noop.inherits(XmlHighlightRules, TextHighlightRules);\n\nexports.XmlHighlightRules = XmlHighlightRules;\n});\n\nace.define(\"ace/mode/html_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/css_highlight_rules\",\"ace/mode/javascript_highlight_rules\",\"ace/mode/xml_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar CssHighlightRules = require(\"./css_highlight_rules\").CssHighlightRules;\nvar JavaScriptHighlightRules = require(\"./javascript_highlight_rules\").JavaScriptHighlightRules;\nvar XmlHighlightRules = require(\"./xml_highlight_rules\").XmlHighlightRules;\n\nvar tagMap = lang.createMap({\n a : 'anchor',\n button \t : 'form',\n form : 'form',\n img : 'image',\n input : 'form',\n label : 'form',\n option : 'form',\n script : 'script',\n select : 'form',\n textarea : 'form',\n style : 'style',\n table : 'table',\n tbody : 'table',\n td : 'table',\n tfoot : 'table',\n th : 'table',\n tr : 'table'\n});\n\nvar HtmlHighlightRules = function() {\n XmlHighlightRules.call(this);\n\n this.addRules({\n attributes: [{\n include : \"tag_whitespace\"\n }, {\n token : \"entity.other.attribute-name.xml\",\n regex : \"[-_a-zA-Z0-9:.]+\"\n }, {\n token : \"keyword.operator.attribute-equals.xml\",\n regex : \"=\",\n push : [{\n include: \"tag_whitespace\"\n }, {\n token : \"string.unquoted.attribute-value.html\",\n regex : \"[^<>='\\\"`\\\\s]+\",\n next : \"pop\"\n }, {\n token : \"empty\",\n regex : \"\",\n next : \"pop\"\n }]\n }, {\n include : \"attribute_value\"\n }],\n tag: [{\n token : function(start, tag) {\n var group = tagMap[tag];\n return [\"meta.tag.punctuation.\" + (start == \"<\" ? \"\" : \"end-\") + \"tag-open.xml\",\n \"meta.tag\" + (group ? \".\" + group : \"\") + \".tag-name.xml\"];\n },\n regex : \"(\", next : \"start\"}\n ]\n });\n\n this.embedTagRules(CssHighlightRules, \"css-\", \"style\");\n this.embedTagRules(new JavaScriptHighlightRules({jsx: false}).getRules(), \"js-\", \"script\");\n\n if (this.constructor === HtmlHighlightRules)\n this.normalizeRules();\n};\n\noop.inherits(HtmlHighlightRules, XmlHighlightRules);\n\nexports.HtmlHighlightRules = HtmlHighlightRules;\n});\n\nace.define(\"ace/mode/php_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/doc_comment_highlight_rules\",\"ace/mode/text_highlight_rules\",\"ace/mode/html_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar DocCommentHighlightRules = require(\"./doc_comment_highlight_rules\").DocCommentHighlightRules;\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar HtmlHighlightRules = require(\"./html_highlight_rules\").HtmlHighlightRules;\n\nvar PhpLangHighlightRules = function() {\n var docComment = DocCommentHighlightRules;\n var builtinFunctions = lang.arrayToMap(\n'abs|acos|acosh|addcslashes|addslashes|aggregate|aggregate_info|aggregate_methods|aggregate_methods_by_list|aggregate_methods_by_regexp|\\\naggregate_properties|aggregate_properties_by_list|aggregate_properties_by_regexp|aggregation_info|amqpconnection|amqpexchange|amqpqueue|\\\napache_child_terminate|apache_get_modules|apache_get_version|apache_getenv|apache_lookup_uri|apache_note|apache_request_headers|\\\napache_reset_timeout|apache_response_headers|apache_setenv|apc_add|apc_bin_dump|apc_bin_dumpfile|apc_bin_load|apc_bin_loadfile|\\\napc_cache_info|apc_cas|apc_clear_cache|apc_compile_file|apc_dec|apc_define_constants|apc_delete|apc_delete_file|apc_exists|apc_fetch|\\\napc_inc|apc_load_constants|apc_sma_info|apc_store|apciterator|apd_breakpoint|apd_callstack|apd_clunk|apd_continue|apd_croak|\\\napd_dump_function_table|apd_dump_persistent_resources|apd_dump_regular_resources|apd_echo|apd_get_active_symbols|apd_set_pprof_trace|\\\napd_set_session|apd_set_session_trace|apd_set_session_trace_socket|appenditerator|array|array_change_key_case|array_chunk|array_combine|\\\narray_count_values|array_diff|array_diff_assoc|array_diff_key|array_diff_uassoc|array_diff_ukey|array_fill|array_fill_keys|array_filter|\\\narray_flip|array_intersect|array_intersect_assoc|array_intersect_key|array_intersect_uassoc|array_intersect_ukey|array_key_exists|\\\narray_keys|array_map|array_merge|array_merge_recursive|array_multisort|array_pad|array_pop|array_product|array_push|array_rand|\\\narray_reduce|array_replace|array_replace_recursive|array_reverse|array_search|array_shift|array_slice|array_splice|array_sum|array_udiff|\\\narray_udiff_assoc|array_udiff_uassoc|array_uintersect|array_uintersect_assoc|array_uintersect_uassoc|array_unique|array_unshift|\\\narray_values|array_walk|array_walk_recursive|arrayaccess|arrayiterator|arrayobject|arsort|asin|asinh|asort|assert|assert_options|atan|\\\natan2|atanh|audioproperties|badfunctioncallexception|badmethodcallexception|base64_decode|base64_encode|base_convert|basename|\\\nbbcode_add_element|bbcode_add_smiley|bbcode_create|bbcode_destroy|bbcode_parse|bbcode_set_arg_parser|bbcode_set_flags|bcadd|bccomp|bcdiv|\\\nbcmod|bcmul|bcompiler_load|bcompiler_load_exe|bcompiler_parse_class|bcompiler_read|bcompiler_write_class|bcompiler_write_constant|\\\nbcompiler_write_exe_footer|bcompiler_write_file|bcompiler_write_footer|bcompiler_write_function|bcompiler_write_functions_from_file|\\\nbcompiler_write_header|bcompiler_write_included_filename|bcpow|bcpowmod|bcscale|bcsqrt|bcsub|bin2hex|bind_textdomain_codeset|bindec|\\\nbindtextdomain|bson_decode|bson_encode|bumpValue|bzclose|bzcompress|bzdecompress|bzerrno|bzerror|bzerrstr|bzflush|bzopen|bzread|bzwrite|\\\ncachingiterator|cairo|cairo_create|cairo_font_face_get_type|cairo_font_face_status|cairo_font_options_create|cairo_font_options_equal|\\\ncairo_font_options_get_antialias|cairo_font_options_get_hint_metrics|cairo_font_options_get_hint_style|\\\ncairo_font_options_get_subpixel_order|cairo_font_options_hash|cairo_font_options_merge|cairo_font_options_set_antialias|\\\ncairo_font_options_set_hint_metrics|cairo_font_options_set_hint_style|cairo_font_options_set_subpixel_order|cairo_font_options_status|\\\ncairo_format_stride_for_width|cairo_image_surface_create|cairo_image_surface_create_for_data|cairo_image_surface_create_from_png|\\\ncairo_image_surface_get_data|cairo_image_surface_get_format|cairo_image_surface_get_height|cairo_image_surface_get_stride|\\\ncairo_image_surface_get_width|cairo_matrix_create_scale|cairo_matrix_create_translate|cairo_matrix_invert|cairo_matrix_multiply|\\\ncairo_matrix_rotate|cairo_matrix_transform_distance|cairo_matrix_transform_point|cairo_matrix_translate|cairo_pattern_add_color_stop_rgb|\\\ncairo_pattern_add_color_stop_rgba|cairo_pattern_create_for_surface|cairo_pattern_create_linear|cairo_pattern_create_radial|\\\ncairo_pattern_create_rgb|cairo_pattern_create_rgba|cairo_pattern_get_color_stop_count|cairo_pattern_get_color_stop_rgba|\\\ncairo_pattern_get_extend|cairo_pattern_get_filter|cairo_pattern_get_linear_points|cairo_pattern_get_matrix|\\\ncairo_pattern_get_radial_circles|cairo_pattern_get_rgba|cairo_pattern_get_surface|cairo_pattern_get_type|cairo_pattern_set_extend|\\\ncairo_pattern_set_filter|cairo_pattern_set_matrix|cairo_pattern_status|cairo_pdf_surface_create|cairo_pdf_surface_set_size|\\\ncairo_ps_get_levels|cairo_ps_level_to_string|cairo_ps_surface_create|cairo_ps_surface_dsc_begin_page_setup|\\\ncairo_ps_surface_dsc_begin_setup|cairo_ps_surface_dsc_comment|cairo_ps_surface_get_eps|cairo_ps_surface_restrict_to_level|\\\ncairo_ps_surface_set_eps|cairo_ps_surface_set_size|cairo_scaled_font_create|cairo_scaled_font_extents|cairo_scaled_font_get_ctm|\\\ncairo_scaled_font_get_font_face|cairo_scaled_font_get_font_matrix|cairo_scaled_font_get_font_options|cairo_scaled_font_get_scale_matrix|\\\ncairo_scaled_font_get_type|cairo_scaled_font_glyph_extents|cairo_scaled_font_status|cairo_scaled_font_text_extents|\\\ncairo_surface_copy_page|cairo_surface_create_similar|cairo_surface_finish|cairo_surface_flush|cairo_surface_get_content|\\\ncairo_surface_get_device_offset|cairo_surface_get_font_options|cairo_surface_get_type|cairo_surface_mark_dirty|\\\ncairo_surface_mark_dirty_rectangle|cairo_surface_set_device_offset|cairo_surface_set_fallback_resolution|cairo_surface_show_page|\\\ncairo_surface_status|cairo_surface_write_to_png|cairo_svg_surface_create|cairo_svg_surface_restrict_to_version|\\\ncairo_svg_version_to_string|cairoantialias|cairocontent|cairocontext|cairoexception|cairoextend|cairofillrule|cairofilter|cairofontface|\\\ncairofontoptions|cairofontslant|cairofonttype|cairofontweight|cairoformat|cairogradientpattern|cairohintmetrics|cairohintstyle|\\\ncairoimagesurface|cairolineargradient|cairolinecap|cairolinejoin|cairomatrix|cairooperator|cairopath|cairopattern|cairopatterntype|\\\ncairopdfsurface|cairopslevel|cairopssurface|cairoradialgradient|cairoscaledfont|cairosolidpattern|cairostatus|cairosubpixelorder|\\\ncairosurface|cairosurfacepattern|cairosurfacetype|cairosvgsurface|cairosvgversion|cairotoyfontface|cal_days_in_month|cal_from_jd|cal_info|\\\ncal_to_jd|calcul_hmac|calculhmac|call_user_func|call_user_func_array|call_user_method|call_user_method_array|callbackfilteriterator|ceil|\\\nchdb|chdb_create|chdir|checkdate|checkdnsrr|chgrp|chmod|chop|chown|chr|chroot|chunk_split|class_alias|class_exists|class_implements|\\\nclass_parents|class_uses|classkit_import|classkit_method_add|classkit_method_copy|classkit_method_redefine|classkit_method_remove|\\\nclasskit_method_rename|clearstatcache|clone|closedir|closelog|collator|com|com_addref|com_create_guid|com_event_sink|com_get|\\\ncom_get_active_object|com_invoke|com_isenum|com_load|com_load_typelib|com_message_pump|com_print_typeinfo|com_propget|com_propput|\\\ncom_propset|com_release|com_set|compact|connection_aborted|connection_status|connection_timeout|constant|construct|construct|construct|\\\nconvert_cyr_string|convert_uudecode|convert_uuencode|copy|cos|cosh|count|count_chars|countable|counter_bump|counter_bump_value|\\\ncounter_create|counter_get|counter_get_meta|counter_get_named|counter_get_value|counter_reset|counter_reset_value|crack_check|\\\ncrack_closedict|crack_getlastmessage|crack_opendict|crc32|create_function|crypt|ctype_alnum|ctype_alpha|ctype_cntrl|ctype_digit|\\\nctype_graph|ctype_lower|ctype_print|ctype_punct|ctype_space|ctype_upper|ctype_xdigit|cubrid_affected_rows|cubrid_bind|\\\ncubrid_client_encoding|cubrid_close|cubrid_close_prepare|cubrid_close_request|cubrid_col_get|cubrid_col_size|cubrid_column_names|\\\ncubrid_column_types|cubrid_commit|cubrid_connect|cubrid_connect_with_url|cubrid_current_oid|cubrid_data_seek|cubrid_db_name|\\\ncubrid_disconnect|cubrid_drop|cubrid_errno|cubrid_error|cubrid_error_code|cubrid_error_code_facility|cubrid_error_msg|cubrid_execute|\\\ncubrid_fetch|cubrid_fetch_array|cubrid_fetch_assoc|cubrid_fetch_field|cubrid_fetch_lengths|cubrid_fetch_object|cubrid_fetch_row|\\\ncubrid_field_flags|cubrid_field_len|cubrid_field_name|cubrid_field_seek|cubrid_field_table|cubrid_field_type|cubrid_free_result|\\\ncubrid_get|cubrid_get_autocommit|cubrid_get_charset|cubrid_get_class_name|cubrid_get_client_info|cubrid_get_db_parameter|\\\ncubrid_get_server_info|cubrid_insert_id|cubrid_is_instance|cubrid_list_dbs|cubrid_load_from_glo|cubrid_lob_close|cubrid_lob_export|\\\ncubrid_lob_get|cubrid_lob_send|cubrid_lob_size|cubrid_lock_read|cubrid_lock_write|cubrid_move_cursor|cubrid_new_glo|cubrid_next_result|\\\ncubrid_num_cols|cubrid_num_fields|cubrid_num_rows|cubrid_ping|cubrid_prepare|cubrid_put|cubrid_query|cubrid_real_escape_string|\\\ncubrid_result|cubrid_rollback|cubrid_save_to_glo|cubrid_schema|cubrid_send_glo|cubrid_seq_drop|cubrid_seq_insert|cubrid_seq_put|\\\ncubrid_set_add|cubrid_set_autocommit|cubrid_set_db_parameter|cubrid_set_drop|cubrid_unbuffered_query|cubrid_version|curl_close|\\\ncurl_copy_handle|curl_errno|curl_error|curl_exec|curl_getinfo|curl_init|curl_multi_add_handle|curl_multi_close|curl_multi_exec|\\\ncurl_multi_getcontent|curl_multi_info_read|curl_multi_init|curl_multi_remove_handle|curl_multi_select|curl_setopt|curl_setopt_array|\\\ncurl_version|current|cyrus_authenticate|cyrus_bind|cyrus_close|cyrus_connect|cyrus_query|cyrus_unbind|date|date_add|date_create|\\\ndate_create_from_format|date_date_set|date_default_timezone_get|date_default_timezone_set|date_diff|date_format|date_get_last_errors|\\\ndate_interval_create_from_date_string|date_interval_format|date_isodate_set|date_modify|date_offset_get|date_parse|date_parse_from_format|\\\ndate_sub|date_sun_info|date_sunrise|date_sunset|date_time_set|date_timestamp_get|date_timestamp_set|date_timezone_get|date_timezone_set|\\\ndateinterval|dateperiod|datetime|datetimezone|db2_autocommit|db2_bind_param|db2_client_info|db2_close|db2_column_privileges|db2_columns|\\\ndb2_commit|db2_conn_error|db2_conn_errormsg|db2_connect|db2_cursor_type|db2_escape_string|db2_exec|db2_execute|db2_fetch_array|\\\ndb2_fetch_assoc|db2_fetch_both|db2_fetch_object|db2_fetch_row|db2_field_display_size|db2_field_name|db2_field_num|db2_field_precision|\\\ndb2_field_scale|db2_field_type|db2_field_width|db2_foreign_keys|db2_free_result|db2_free_stmt|db2_get_option|db2_last_insert_id|\\\ndb2_lob_read|db2_next_result|db2_num_fields|db2_num_rows|db2_pclose|db2_pconnect|db2_prepare|db2_primary_keys|db2_procedure_columns|\\\ndb2_procedures|db2_result|db2_rollback|db2_server_info|db2_set_option|db2_special_columns|db2_statistics|db2_stmt_error|db2_stmt_errormsg|\\\ndb2_table_privileges|db2_tables|dba_close|dba_delete|dba_exists|dba_fetch|dba_firstkey|dba_handlers|dba_insert|dba_key_split|dba_list|\\\ndba_nextkey|dba_open|dba_optimize|dba_popen|dba_replace|dba_sync|dbase_add_record|dbase_close|dbase_create|dbase_delete_record|\\\ndbase_get_header_info|dbase_get_record|dbase_get_record_with_names|dbase_numfields|dbase_numrecords|dbase_open|dbase_pack|\\\ndbase_replace_record|dbplus_add|dbplus_aql|dbplus_chdir|dbplus_close|dbplus_curr|dbplus_errcode|dbplus_errno|dbplus_find|dbplus_first|\\\ndbplus_flush|dbplus_freealllocks|dbplus_freelock|dbplus_freerlocks|dbplus_getlock|dbplus_getunique|dbplus_info|dbplus_last|dbplus_lockrel|\\\ndbplus_next|dbplus_open|dbplus_prev|dbplus_rchperm|dbplus_rcreate|dbplus_rcrtexact|dbplus_rcrtlike|dbplus_resolve|dbplus_restorepos|\\\ndbplus_rkeys|dbplus_ropen|dbplus_rquery|dbplus_rrename|dbplus_rsecindex|dbplus_runlink|dbplus_rzap|dbplus_savepos|dbplus_setindex|\\\ndbplus_setindexbynumber|dbplus_sql|dbplus_tcl|dbplus_tremove|dbplus_undo|dbplus_undoprepare|dbplus_unlockrel|dbplus_unselect|\\\ndbplus_update|dbplus_xlockrel|dbplus_xunlockrel|dbx_close|dbx_compare|dbx_connect|dbx_error|dbx_escape_string|dbx_fetch_row|dbx_query|\\\ndbx_sort|dcgettext|dcngettext|deaggregate|debug_backtrace|debug_print_backtrace|debug_zval_dump|decbin|dechex|decoct|define|\\\ndefine_syslog_variables|defined|deg2rad|delete|dgettext|die|dio_close|dio_fcntl|dio_open|dio_read|dio_seek|dio_stat|dio_tcsetattr|\\\ndio_truncate|dio_write|dir|directoryiterator|dirname|disk_free_space|disk_total_space|diskfreespace|dl|dngettext|dns_check_record|\\\ndns_get_mx|dns_get_record|dom_import_simplexml|domainexception|domattr|domattribute_name|domattribute_set_value|domattribute_specified|\\\ndomattribute_value|domcharacterdata|domcomment|domdocument|domdocument_add_root|domdocument_create_attribute|\\\ndomdocument_create_cdata_section|domdocument_create_comment|domdocument_create_element|domdocument_create_element_ns|\\\ndomdocument_create_entity_reference|domdocument_create_processing_instruction|domdocument_create_text_node|domdocument_doctype|\\\ndomdocument_document_element|domdocument_dump_file|domdocument_dump_mem|domdocument_get_element_by_id|domdocument_get_elements_by_tagname|\\\ndomdocument_html_dump_mem|domdocument_xinclude|domdocumentfragment|domdocumenttype|domdocumenttype_entities|\\\ndomdocumenttype_internal_subset|domdocumenttype_name|domdocumenttype_notations|domdocumenttype_public_id|domdocumenttype_system_id|\\\ndomelement|domelement_get_attribute|domelement_get_attribute_node|domelement_get_elements_by_tagname|domelement_has_attribute|\\\ndomelement_remove_attribute|domelement_set_attribute|domelement_set_attribute_node|domelement_tagname|domentity|domentityreference|\\\ndomexception|domimplementation|domnamednodemap|domnode|domnode_add_namespace|domnode_append_child|domnode_append_sibling|\\\ndomnode_attributes|domnode_child_nodes|domnode_clone_node|domnode_dump_node|domnode_first_child|domnode_get_content|\\\ndomnode_has_attributes|domnode_has_child_nodes|domnode_insert_before|domnode_is_blank_node|domnode_last_child|domnode_next_sibling|\\\ndomnode_node_name|domnode_node_type|domnode_node_value|domnode_owner_document|domnode_parent_node|domnode_prefix|domnode_previous_sibling|\\\ndomnode_remove_child|domnode_replace_child|domnode_replace_node|domnode_set_content|domnode_set_name|domnode_set_namespace|\\\ndomnode_unlink_node|domnodelist|domnotation|domprocessinginstruction|domprocessinginstruction_data|domprocessinginstruction_target|\\\ndomtext|domxml_new_doc|domxml_open_file|domxml_open_mem|domxml_version|domxml_xmltree|domxml_xslt_stylesheet|domxml_xslt_stylesheet_doc|\\\ndomxml_xslt_stylesheet_file|domxml_xslt_version|domxpath|domxsltstylesheet_process|domxsltstylesheet_result_dump_file|\\\ndomxsltstylesheet_result_dump_mem|dotnet|dotnet_load|doubleval|each|easter_date|easter_days|echo|empty|emptyiterator|\\\nenchant_broker_describe|enchant_broker_dict_exists|enchant_broker_free|enchant_broker_free_dict|enchant_broker_get_error|\\\nenchant_broker_init|enchant_broker_list_dicts|enchant_broker_request_dict|enchant_broker_request_pwl_dict|enchant_broker_set_ordering|\\\nenchant_dict_add_to_personal|enchant_dict_add_to_session|enchant_dict_check|enchant_dict_describe|enchant_dict_get_error|\\\nenchant_dict_is_in_session|enchant_dict_quick_check|enchant_dict_store_replacement|enchant_dict_suggest|end|ereg|ereg_replace|eregi|\\\neregi_replace|error_get_last|error_log|error_reporting|errorexception|escapeshellarg|escapeshellcmd|eval|event_add|event_base_free|\\\nevent_base_loop|event_base_loopbreak|event_base_loopexit|event_base_new|event_base_priority_init|event_base_set|event_buffer_base_set|\\\nevent_buffer_disable|event_buffer_enable|event_buffer_fd_set|event_buffer_free|event_buffer_new|event_buffer_priority_set|\\\nevent_buffer_read|event_buffer_set_callback|event_buffer_timeout_set|event_buffer_watermark_set|event_buffer_write|event_del|event_free|\\\nevent_new|event_set|exception|exec|exif_imagetype|exif_read_data|exif_tagname|exif_thumbnail|exit|exp|expect_expectl|expect_popen|explode|\\\nexpm1|export|export|extension_loaded|extract|ezmlm_hash|fam_cancel_monitor|fam_close|fam_monitor_collection|fam_monitor_directory|\\\nfam_monitor_file|fam_next_event|fam_open|fam_pending|fam_resume_monitor|fam_suspend_monitor|fbsql_affected_rows|fbsql_autocommit|\\\nfbsql_blob_size|fbsql_change_user|fbsql_clob_size|fbsql_close|fbsql_commit|fbsql_connect|fbsql_create_blob|fbsql_create_clob|\\\nfbsql_create_db|fbsql_data_seek|fbsql_database|fbsql_database_password|fbsql_db_query|fbsql_db_status|fbsql_drop_db|fbsql_errno|\\\nfbsql_error|fbsql_fetch_array|fbsql_fetch_assoc|fbsql_fetch_field|fbsql_fetch_lengths|fbsql_fetch_object|fbsql_fetch_row|\\\nfbsql_field_flags|fbsql_field_len|fbsql_field_name|fbsql_field_seek|fbsql_field_table|fbsql_field_type|fbsql_free_result|\\\nfbsql_get_autostart_info|fbsql_hostname|fbsql_insert_id|fbsql_list_dbs|fbsql_list_fields|fbsql_list_tables|fbsql_next_result|\\\nfbsql_num_fields|fbsql_num_rows|fbsql_password|fbsql_pconnect|fbsql_query|fbsql_read_blob|fbsql_read_clob|fbsql_result|fbsql_rollback|\\\nfbsql_rows_fetched|fbsql_select_db|fbsql_set_characterset|fbsql_set_lob_mode|fbsql_set_password|fbsql_set_transaction|fbsql_start_db|\\\nfbsql_stop_db|fbsql_table_name|fbsql_tablename|fbsql_username|fbsql_warnings|fclose|fdf_add_doc_javascript|fdf_add_template|fdf_close|\\\nfdf_create|fdf_enum_values|fdf_errno|fdf_error|fdf_get_ap|fdf_get_attachment|fdf_get_encoding|fdf_get_file|fdf_get_flags|fdf_get_opt|\\\nfdf_get_status|fdf_get_value|fdf_get_version|fdf_header|fdf_next_field_name|fdf_open|fdf_open_string|fdf_remove_item|fdf_save|\\\nfdf_save_string|fdf_set_ap|fdf_set_encoding|fdf_set_file|fdf_set_flags|fdf_set_javascript_action|fdf_set_on_import_javascript|fdf_set_opt|\\\nfdf_set_status|fdf_set_submit_form_action|fdf_set_target_frame|fdf_set_value|fdf_set_version|feof|fflush|fgetc|fgetcsv|fgets|fgetss|file|\\\nfile_exists|file_get_contents|file_put_contents|fileatime|filectime|filegroup|fileinode|filemtime|fileowner|fileperms|filepro|\\\nfilepro_fieldcount|filepro_fieldname|filepro_fieldtype|filepro_fieldwidth|filepro_retrieve|filepro_rowcount|filesize|filesystemiterator|\\\nfiletype|filter_has_var|filter_id|filter_input|filter_input_array|filter_list|filter_var|filter_var_array|filteriterator|finfo_buffer|\\\nfinfo_close|finfo_file|finfo_open|finfo_set_flags|floatval|flock|floor|flush|fmod|fnmatch|fopen|forward_static_call|\\\nforward_static_call_array|fpassthru|fprintf|fputcsv|fputs|fread|frenchtojd|fribidi_log2vis|fscanf|fseek|fsockopen|fstat|ftell|ftok|\\\nftp_alloc|ftp_cdup|ftp_chdir|ftp_chmod|ftp_close|ftp_connect|ftp_delete|ftp_exec|ftp_fget|ftp_fput|ftp_get|ftp_get_option|ftp_login|\\\nftp_mdtm|ftp_mkdir|ftp_nb_continue|ftp_nb_fget|ftp_nb_fput|ftp_nb_get|ftp_nb_put|ftp_nlist|ftp_pasv|ftp_put|ftp_pwd|ftp_quit|ftp_raw|\\\nftp_rawlist|ftp_rename|ftp_rmdir|ftp_set_option|ftp_site|ftp_size|ftp_ssl_connect|ftp_systype|ftruncate|func_get_arg|func_get_args|\\\nfunc_num_args|function_exists|fwrite|gc_collect_cycles|gc_disable|gc_enable|gc_enabled|gd_info|gearmanclient|gearmanjob|gearmantask|\\\ngearmanworker|geoip_continent_code_by_name|geoip_country_code3_by_name|geoip_country_code_by_name|geoip_country_name_by_name|\\\ngeoip_database_info|geoip_db_avail|geoip_db_filename|geoip_db_get_all_info|geoip_id_by_name|geoip_isp_by_name|geoip_org_by_name|\\\ngeoip_record_by_name|geoip_region_by_name|geoip_region_name_by_code|geoip_time_zone_by_country_and_region|getMeta|getNamed|getValue|\\\nget_browser|get_called_class|get_cfg_var|get_class|get_class_methods|get_class_vars|get_current_user|get_declared_classes|\\\nget_declared_interfaces|get_declared_traits|get_defined_constants|get_defined_functions|get_defined_vars|get_extension_funcs|get_headers|\\\nget_html_translation_table|get_include_path|get_included_files|get_loaded_extensions|get_magic_quotes_gpc|get_magic_quotes_runtime|\\\nget_meta_tags|get_object_vars|get_parent_class|get_required_files|get_resource_type|getallheaders|getconstant|getconstants|getconstructor|\\\ngetcwd|getdate|getdefaultproperties|getdoccomment|getendline|getenv|getextension|getextensionname|getfilename|gethostbyaddr|gethostbyname|\\\ngethostbynamel|gethostname|getimagesize|getinterfacenames|getinterfaces|getlastmod|getmethod|getmethods|getmodifiers|getmxrr|getmygid|\\\ngetmyinode|getmypid|getmyuid|getname|getnamespacename|getopt|getparentclass|getproperties|getproperty|getprotobyname|getprotobynumber|\\\ngetrandmax|getrusage|getservbyname|getservbyport|getshortname|getstartline|getstaticproperties|getstaticpropertyvalue|gettext|\\\ngettimeofday|gettype|glob|globiterator|gmagick|gmagickdraw|gmagickpixel|gmdate|gmmktime|gmp_abs|gmp_add|gmp_and|gmp_clrbit|gmp_cmp|\\\ngmp_com|gmp_div|gmp_div_q|gmp_div_qr|gmp_div_r|gmp_divexact|gmp_fact|gmp_gcd|gmp_gcdext|gmp_hamdist|gmp_init|gmp_intval|gmp_invert|\\\ngmp_jacobi|gmp_legendre|gmp_mod|gmp_mul|gmp_neg|gmp_nextprime|gmp_or|gmp_perfect_square|gmp_popcount|gmp_pow|gmp_powm|gmp_prob_prime|\\\ngmp_random|gmp_scan0|gmp_scan1|gmp_setbit|gmp_sign|gmp_sqrt|gmp_sqrtrem|gmp_strval|gmp_sub|gmp_testbit|gmp_xor|gmstrftime|\\\ngnupg_adddecryptkey|gnupg_addencryptkey|gnupg_addsignkey|gnupg_cleardecryptkeys|gnupg_clearencryptkeys|gnupg_clearsignkeys|gnupg_decrypt|\\\ngnupg_decryptverify|gnupg_encrypt|gnupg_encryptsign|gnupg_export|gnupg_geterror|gnupg_getprotocol|gnupg_import|gnupg_init|gnupg_keyinfo|\\\ngnupg_setarmor|gnupg_seterrormode|gnupg_setsignmode|gnupg_sign|gnupg_verify|gopher_parsedir|grapheme_extract|grapheme_stripos|\\\ngrapheme_stristr|grapheme_strlen|grapheme_strpos|grapheme_strripos|grapheme_strrpos|grapheme_strstr|grapheme_substr|gregoriantojd|\\\ngupnp_context_get_host_ip|gupnp_context_get_port|gupnp_context_get_subscription_timeout|gupnp_context_host_path|gupnp_context_new|\\\ngupnp_context_set_subscription_timeout|gupnp_context_timeout_add|gupnp_context_unhost_path|gupnp_control_point_browse_start|\\\ngupnp_control_point_browse_stop|gupnp_control_point_callback_set|gupnp_control_point_new|gupnp_device_action_callback_set|\\\ngupnp_device_info_get|gupnp_device_info_get_service|gupnp_root_device_get_available|gupnp_root_device_get_relative_location|\\\ngupnp_root_device_new|gupnp_root_device_set_available|gupnp_root_device_start|gupnp_root_device_stop|gupnp_service_action_get|\\\ngupnp_service_action_return|gupnp_service_action_return_error|gupnp_service_action_set|gupnp_service_freeze_notify|gupnp_service_info_get|\\\ngupnp_service_info_get_introspection|gupnp_service_introspection_get_state_variable|gupnp_service_notify|gupnp_service_proxy_action_get|\\\ngupnp_service_proxy_action_set|gupnp_service_proxy_add_notify|gupnp_service_proxy_callback_set|gupnp_service_proxy_get_subscribed|\\\ngupnp_service_proxy_remove_notify|gupnp_service_proxy_set_subscribed|gupnp_service_thaw_notify|gzclose|gzcompress|gzdecode|gzdeflate|\\\ngzencode|gzeof|gzfile|gzgetc|gzgets|gzgetss|gzinflate|gzopen|gzpassthru|gzputs|gzread|gzrewind|gzseek|gztell|gzuncompress|gzwrite|\\\nhalt_compiler|haruannotation|haruannotation_setborderstyle|haruannotation_sethighlightmode|haruannotation_seticon|\\\nharuannotation_setopened|harudestination|harudestination_setfit|harudestination_setfitb|harudestination_setfitbh|harudestination_setfitbv|\\\nharudestination_setfith|harudestination_setfitr|harudestination_setfitv|harudestination_setxyz|harudoc|harudoc_addpage|\\\nharudoc_addpagelabel|harudoc_construct|harudoc_createoutline|harudoc_getcurrentencoder|harudoc_getcurrentpage|harudoc_getencoder|\\\nharudoc_getfont|harudoc_getinfoattr|harudoc_getpagelayout|harudoc_getpagemode|harudoc_getstreamsize|harudoc_insertpage|harudoc_loadjpeg|\\\nharudoc_loadpng|harudoc_loadraw|harudoc_loadttc|harudoc_loadttf|harudoc_loadtype1|harudoc_output|harudoc_readfromstream|\\\nharudoc_reseterror|harudoc_resetstream|harudoc_save|harudoc_savetostream|harudoc_setcompressionmode|harudoc_setcurrentencoder|\\\nharudoc_setencryptionmode|harudoc_setinfoattr|harudoc_setinfodateattr|harudoc_setopenaction|harudoc_setpagelayout|harudoc_setpagemode|\\\nharudoc_setpagesconfiguration|harudoc_setpassword|harudoc_setpermission|harudoc_usecnsencodings|harudoc_usecnsfonts|\\\nharudoc_usecntencodings|harudoc_usecntfonts|harudoc_usejpencodings|harudoc_usejpfonts|harudoc_usekrencodings|harudoc_usekrfonts|\\\nharuencoder|haruencoder_getbytetype|haruencoder_gettype|haruencoder_getunicode|haruencoder_getwritingmode|haruexception|harufont|\\\nharufont_getascent|harufont_getcapheight|harufont_getdescent|harufont_getencodingname|harufont_getfontname|harufont_gettextwidth|\\\nharufont_getunicodewidth|harufont_getxheight|harufont_measuretext|haruimage|haruimage_getbitspercomponent|haruimage_getcolorspace|\\\nharuimage_getheight|haruimage_getsize|haruimage_getwidth|haruimage_setcolormask|haruimage_setmaskimage|haruoutline|\\\nharuoutline_setdestination|haruoutline_setopened|harupage|harupage_arc|harupage_begintext|harupage_circle|harupage_closepath|\\\nharupage_concat|harupage_createdestination|harupage_createlinkannotation|harupage_createtextannotation|harupage_createurlannotation|\\\nharupage_curveto|harupage_curveto2|harupage_curveto3|harupage_drawimage|harupage_ellipse|harupage_endpath|harupage_endtext|\\\nharupage_eofill|harupage_eofillstroke|harupage_fill|harupage_fillstroke|harupage_getcharspace|harupage_getcmykfill|harupage_getcmykstroke|\\\nharupage_getcurrentfont|harupage_getcurrentfontsize|harupage_getcurrentpos|harupage_getcurrenttextpos|harupage_getdash|\\\nharupage_getfillingcolorspace|harupage_getflatness|harupage_getgmode|harupage_getgrayfill|harupage_getgraystroke|harupage_getheight|\\\nharupage_gethorizontalscaling|harupage_getlinecap|harupage_getlinejoin|harupage_getlinewidth|harupage_getmiterlimit|harupage_getrgbfill|\\\nharupage_getrgbstroke|harupage_getstrokingcolorspace|harupage_gettextleading|harupage_gettextmatrix|harupage_gettextrenderingmode|\\\nharupage_gettextrise|harupage_gettextwidth|harupage_gettransmatrix|harupage_getwidth|harupage_getwordspace|harupage_lineto|\\\nharupage_measuretext|harupage_movetextpos|harupage_moveto|harupage_movetonextline|harupage_rectangle|harupage_setcharspace|\\\nharupage_setcmykfill|harupage_setcmykstroke|harupage_setdash|harupage_setflatness|harupage_setfontandsize|harupage_setgrayfill|\\\nharupage_setgraystroke|harupage_setheight|harupage_sethorizontalscaling|harupage_setlinecap|harupage_setlinejoin|harupage_setlinewidth|\\\nharupage_setmiterlimit|harupage_setrgbfill|harupage_setrgbstroke|harupage_setrotate|harupage_setsize|harupage_setslideshow|\\\nharupage_settextleading|harupage_settextmatrix|harupage_settextrenderingmode|harupage_settextrise|harupage_setwidth|harupage_setwordspace|\\\nharupage_showtext|harupage_showtextnextline|harupage_stroke|harupage_textout|harupage_textrect|hasconstant|hash|hash_algos|hash_copy|\\\nhash_file|hash_final|hash_hmac|hash_hmac_file|hash_init|hash_update|hash_update_file|hash_update_stream|hasmethod|hasproperty|header|\\\nheader_register_callback|header_remove|headers_list|headers_sent|hebrev|hebrevc|hex2bin|hexdec|highlight_file|highlight_string|\\\nhtml_entity_decode|htmlentities|htmlspecialchars|htmlspecialchars_decode|http_build_cookie|http_build_query|http_build_str|http_build_url|\\\nhttp_cache_etag|http_cache_last_modified|http_chunked_decode|http_date|http_deflate|http_get|http_get_request_body|\\\nhttp_get_request_body_stream|http_get_request_headers|http_head|http_inflate|http_match_etag|http_match_modified|\\\nhttp_match_request_header|http_negotiate_charset|http_negotiate_content_type|http_negotiate_language|http_parse_cookie|http_parse_headers|\\\nhttp_parse_message|http_parse_params|http_persistent_handles_clean|http_persistent_handles_count|http_persistent_handles_ident|\\\nhttp_post_data|http_post_fields|http_put_data|http_put_file|http_put_stream|http_redirect|http_request|http_request_body_encode|\\\nhttp_request_method_exists|http_request_method_name|http_request_method_register|http_request_method_unregister|http_response_code|\\\nhttp_send_content_disposition|http_send_content_type|http_send_data|http_send_file|http_send_last_modified|http_send_status|\\\nhttp_send_stream|http_support|http_throttle|httpdeflatestream|httpdeflatestream_construct|httpdeflatestream_factory|\\\nhttpdeflatestream_finish|httpdeflatestream_flush|httpdeflatestream_update|httpinflatestream|httpinflatestream_construct|\\\nhttpinflatestream_factory|httpinflatestream_finish|httpinflatestream_flush|httpinflatestream_update|httpmessage|httpmessage_addheaders|\\\nhttpmessage_construct|httpmessage_detach|httpmessage_factory|httpmessage_fromenv|httpmessage_fromstring|httpmessage_getbody|\\\nhttpmessage_getheader|httpmessage_getheaders|httpmessage_gethttpversion|httpmessage_getparentmessage|httpmessage_getrequestmethod|\\\nhttpmessage_getrequesturl|httpmessage_getresponsecode|httpmessage_getresponsestatus|httpmessage_gettype|httpmessage_guesscontenttype|\\\nhttpmessage_prepend|httpmessage_reverse|httpmessage_send|httpmessage_setbody|httpmessage_setheaders|httpmessage_sethttpversion|\\\nhttpmessage_setrequestmethod|httpmessage_setrequesturl|httpmessage_setresponsecode|httpmessage_setresponsestatus|httpmessage_settype|\\\nhttpmessage_tomessagetypeobject|httpmessage_tostring|httpquerystring|httpquerystring_construct|httpquerystring_get|httpquerystring_mod|\\\nhttpquerystring_set|httpquerystring_singleton|httpquerystring_toarray|httpquerystring_tostring|httpquerystring_xlate|httprequest|\\\nhttprequest_addcookies|httprequest_addheaders|httprequest_addpostfields|httprequest_addpostfile|httprequest_addputdata|\\\nhttprequest_addquerydata|httprequest_addrawpostdata|httprequest_addssloptions|httprequest_clearhistory|httprequest_construct|\\\nhttprequest_enablecookies|httprequest_getcontenttype|httprequest_getcookies|httprequest_getheaders|httprequest_gethistory|\\\nhttprequest_getmethod|httprequest_getoptions|httprequest_getpostfields|httprequest_getpostfiles|httprequest_getputdata|\\\nhttprequest_getputfile|httprequest_getquerydata|httprequest_getrawpostdata|httprequest_getrawrequestmessage|\\\nhttprequest_getrawresponsemessage|httprequest_getrequestmessage|httprequest_getresponsebody|httprequest_getresponsecode|\\\nhttprequest_getresponsecookies|httprequest_getresponsedata|httprequest_getresponseheader|httprequest_getresponseinfo|\\\nhttprequest_getresponsemessage|httprequest_getresponsestatus|httprequest_getssloptions|httprequest_geturl|httprequest_resetcookies|\\\nhttprequest_send|httprequest_setcontenttype|httprequest_setcookies|httprequest_setheaders|httprequest_setmethod|httprequest_setoptions|\\\nhttprequest_setpostfields|httprequest_setpostfiles|httprequest_setputdata|httprequest_setputfile|httprequest_setquerydata|\\\nhttprequest_setrawpostdata|httprequest_setssloptions|httprequest_seturl|httprequestpool|httprequestpool_attach|httprequestpool_construct|\\\nhttprequestpool_destruct|httprequestpool_detach|httprequestpool_getattachedrequests|httprequestpool_getfinishedrequests|\\\nhttprequestpool_reset|httprequestpool_send|httprequestpool_socketperform|httprequestpool_socketselect|httpresponse|httpresponse_capture|\\\nhttpresponse_getbuffersize|httpresponse_getcache|httpresponse_getcachecontrol|httpresponse_getcontentdisposition|\\\nhttpresponse_getcontenttype|httpresponse_getdata|httpresponse_getetag|httpresponse_getfile|httpresponse_getgzip|httpresponse_getheader|\\\nhttpresponse_getlastmodified|httpresponse_getrequestbody|httpresponse_getrequestbodystream|httpresponse_getrequestheaders|\\\nhttpresponse_getstream|httpresponse_getthrottledelay|httpresponse_guesscontenttype|httpresponse_redirect|httpresponse_send|\\\nhttpresponse_setbuffersize|httpresponse_setcache|httpresponse_setcachecontrol|httpresponse_setcontentdisposition|\\\nhttpresponse_setcontenttype|httpresponse_setdata|httpresponse_setetag|httpresponse_setfile|httpresponse_setgzip|httpresponse_setheader|\\\nhttpresponse_setlastmodified|httpresponse_setstream|httpresponse_setthrottledelay|httpresponse_status|hw_array2objrec|hw_changeobject|\\\nhw_children|hw_childrenobj|hw_close|hw_connect|hw_connection_info|hw_cp|hw_deleteobject|hw_docbyanchor|hw_docbyanchorobj|\\\nhw_document_attributes|hw_document_bodytag|hw_document_content|hw_document_setcontent|hw_document_size|hw_dummy|hw_edittext|hw_error|\\\nhw_errormsg|hw_free_document|hw_getanchors|hw_getanchorsobj|hw_getandlock|hw_getchildcoll|hw_getchildcollobj|hw_getchilddoccoll|\\\nhw_getchilddoccollobj|hw_getobject|hw_getobjectbyquery|hw_getobjectbyquerycoll|hw_getobjectbyquerycollobj|hw_getobjectbyqueryobj|\\\nhw_getparents|hw_getparentsobj|hw_getrellink|hw_getremote|hw_getremotechildren|hw_getsrcbydestobj|hw_gettext|hw_getusername|hw_identify|\\\nhw_incollections|hw_info|hw_inscoll|hw_insdoc|hw_insertanchors|hw_insertdocument|hw_insertobject|hw_mapid|hw_modifyobject|hw_mv|\\\nhw_new_document|hw_objrec2array|hw_output_document|hw_pconnect|hw_pipedocument|hw_root|hw_setlinkroot|hw_stat|hw_unlock|hw_who|\\\nhwapi_attribute|hwapi_attribute_key|hwapi_attribute_langdepvalue|hwapi_attribute_value|hwapi_attribute_values|hwapi_checkin|\\\nhwapi_checkout|hwapi_children|hwapi_content|hwapi_content_mimetype|hwapi_content_read|hwapi_copy|hwapi_dbstat|hwapi_dcstat|\\\nhwapi_dstanchors|hwapi_dstofsrcanchor|hwapi_error_count|hwapi_error_reason|hwapi_find|hwapi_ftstat|hwapi_hgcsp|hwapi_hwstat|\\\nhwapi_identify|hwapi_info|hwapi_insert|hwapi_insertanchor|hwapi_insertcollection|hwapi_insertdocument|hwapi_link|hwapi_lock|hwapi_move|\\\nhwapi_new_content|hwapi_object|hwapi_object_assign|hwapi_object_attreditable|hwapi_object_count|hwapi_object_insert|hwapi_object_new|\\\nhwapi_object_remove|hwapi_object_title|hwapi_object_value|hwapi_objectbyanchor|hwapi_parents|hwapi_reason_description|hwapi_reason_type|\\\nhwapi_remove|hwapi_replace|hwapi_setcommittedversion|hwapi_srcanchors|hwapi_srcsofdst|hwapi_unlock|hwapi_user|hwapi_userlist|hypot|\\\nibase_add_user|ibase_affected_rows|ibase_backup|ibase_blob_add|ibase_blob_cancel|ibase_blob_close|ibase_blob_create|ibase_blob_echo|\\\nibase_blob_get|ibase_blob_import|ibase_blob_info|ibase_blob_open|ibase_close|ibase_commit|ibase_commit_ret|ibase_connect|ibase_db_info|\\\nibase_delete_user|ibase_drop_db|ibase_errcode|ibase_errmsg|ibase_execute|ibase_fetch_assoc|ibase_fetch_object|ibase_fetch_row|\\\nibase_field_info|ibase_free_event_handler|ibase_free_query|ibase_free_result|ibase_gen_id|ibase_maintain_db|ibase_modify_user|\\\nibase_name_result|ibase_num_fields|ibase_num_params|ibase_param_info|ibase_pconnect|ibase_prepare|ibase_query|ibase_restore|\\\nibase_rollback|ibase_rollback_ret|ibase_server_info|ibase_service_attach|ibase_service_detach|ibase_set_event_handler|ibase_timefmt|\\\nibase_trans|ibase_wait_event|iconv|iconv_get_encoding|iconv_mime_decode|iconv_mime_decode_headers|iconv_mime_encode|iconv_set_encoding|\\\niconv_strlen|iconv_strpos|iconv_strrpos|iconv_substr|id3_get_frame_long_name|id3_get_frame_short_name|id3_get_genre_id|id3_get_genre_list|\\\nid3_get_genre_name|id3_get_tag|id3_get_version|id3_remove_tag|id3_set_tag|id3v2attachedpictureframe|id3v2frame|id3v2tag|idate|\\\nidn_to_ascii|idn_to_unicode|idn_to_utf8|ifx_affected_rows|ifx_blobinfile_mode|ifx_byteasvarchar|ifx_close|ifx_connect|ifx_copy_blob|\\\nifx_create_blob|ifx_create_char|ifx_do|ifx_error|ifx_errormsg|ifx_fetch_row|ifx_fieldproperties|ifx_fieldtypes|ifx_free_blob|\\\nifx_free_char|ifx_free_result|ifx_get_blob|ifx_get_char|ifx_getsqlca|ifx_htmltbl_result|ifx_nullformat|ifx_num_fields|ifx_num_rows|\\\nifx_pconnect|ifx_prepare|ifx_query|ifx_textasvarchar|ifx_update_blob|ifx_update_char|ifxus_close_slob|ifxus_create_slob|ifxus_free_slob|\\\nifxus_open_slob|ifxus_read_slob|ifxus_seek_slob|ifxus_tell_slob|ifxus_write_slob|ignore_user_abort|iis_add_server|iis_get_dir_security|\\\niis_get_script_map|iis_get_server_by_comment|iis_get_server_by_path|iis_get_server_rights|iis_get_service_state|iis_remove_server|\\\niis_set_app_settings|iis_set_dir_security|iis_set_script_map|iis_set_server_rights|iis_start_server|iis_start_service|iis_stop_server|\\\niis_stop_service|image2wbmp|image_type_to_extension|image_type_to_mime_type|imagealphablending|imageantialias|imagearc|imagechar|\\\nimagecharup|imagecolorallocate|imagecolorallocatealpha|imagecolorat|imagecolorclosest|imagecolorclosestalpha|imagecolorclosesthwb|\\\nimagecolordeallocate|imagecolorexact|imagecolorexactalpha|imagecolormatch|imagecolorresolve|imagecolorresolvealpha|imagecolorset|\\\nimagecolorsforindex|imagecolorstotal|imagecolortransparent|imageconvolution|imagecopy|imagecopymerge|imagecopymergegray|\\\nimagecopyresampled|imagecopyresized|imagecreate|imagecreatefromgd|imagecreatefromgd2|imagecreatefromgd2part|imagecreatefromgif|\\\nimagecreatefromjpeg|imagecreatefrompng|imagecreatefromstring|imagecreatefromwbmp|imagecreatefromxbm|imagecreatefromxpm|\\\nimagecreatetruecolor|imagedashedline|imagedestroy|imageellipse|imagefill|imagefilledarc|imagefilledellipse|imagefilledpolygon|\\\nimagefilledrectangle|imagefilltoborder|imagefilter|imagefontheight|imagefontwidth|imageftbbox|imagefttext|imagegammacorrect|imagegd|\\\nimagegd2|imagegif|imagegrabscreen|imagegrabwindow|imageinterlace|imageistruecolor|imagejpeg|imagelayereffect|imageline|imageloadfont|\\\nimagepalettecopy|imagepng|imagepolygon|imagepsbbox|imagepsencodefont|imagepsextendfont|imagepsfreefont|imagepsloadfont|imagepsslantfont|\\\nimagepstext|imagerectangle|imagerotate|imagesavealpha|imagesetbrush|imagesetpixel|imagesetstyle|imagesetthickness|imagesettile|\\\nimagestring|imagestringup|imagesx|imagesy|imagetruecolortopalette|imagettfbbox|imagettftext|imagetypes|imagewbmp|imagexbm|imagick|\\\nimagick_adaptiveblurimage|imagick_adaptiveresizeimage|imagick_adaptivesharpenimage|imagick_adaptivethresholdimage|imagick_addimage|\\\nimagick_addnoiseimage|imagick_affinetransformimage|imagick_animateimages|imagick_annotateimage|imagick_appendimages|imagick_averageimages|\\\nimagick_blackthresholdimage|imagick_blurimage|imagick_borderimage|imagick_charcoalimage|imagick_chopimage|imagick_clear|imagick_clipimage|\\\nimagick_clippathimage|imagick_clone|imagick_clutimage|imagick_coalesceimages|imagick_colorfloodfillimage|imagick_colorizeimage|\\\nimagick_combineimages|imagick_commentimage|imagick_compareimagechannels|imagick_compareimagelayers|imagick_compareimages|\\\nimagick_compositeimage|imagick_construct|imagick_contrastimage|imagick_contraststretchimage|imagick_convolveimage|imagick_cropimage|\\\nimagick_cropthumbnailimage|imagick_current|imagick_cyclecolormapimage|imagick_decipherimage|imagick_deconstructimages|\\\nimagick_deleteimageartifact|imagick_despeckleimage|imagick_destroy|imagick_displayimage|imagick_displayimages|imagick_distortimage|\\\nimagick_drawimage|imagick_edgeimage|imagick_embossimage|imagick_encipherimage|imagick_enhanceimage|imagick_equalizeimage|\\\nimagick_evaluateimage|imagick_extentimage|imagick_flattenimages|imagick_flipimage|imagick_floodfillpaintimage|imagick_flopimage|\\\nimagick_frameimage|imagick_fximage|imagick_gammaimage|imagick_gaussianblurimage|imagick_getcolorspace|imagick_getcompression|\\\nimagick_getcompressionquality|imagick_getcopyright|imagick_getfilename|imagick_getfont|imagick_getformat|imagick_getgravity|\\\nimagick_gethomeurl|imagick_getimage|imagick_getimagealphachannel|imagick_getimageartifact|imagick_getimagebackgroundcolor|\\\nimagick_getimageblob|imagick_getimageblueprimary|imagick_getimagebordercolor|imagick_getimagechanneldepth|\\\nimagick_getimagechanneldistortion|imagick_getimagechanneldistortions|imagick_getimagechannelextrema|imagick_getimagechannelmean|\\\nimagick_getimagechannelrange|imagick_getimagechannelstatistics|imagick_getimageclipmask|imagick_getimagecolormapcolor|\\\nimagick_getimagecolors|imagick_getimagecolorspace|imagick_getimagecompose|imagick_getimagecompression|imagick_getimagecompressionquality|\\\nimagick_getimagedelay|imagick_getimagedepth|imagick_getimagedispose|imagick_getimagedistortion|imagick_getimageextrema|\\\nimagick_getimagefilename|imagick_getimageformat|imagick_getimagegamma|imagick_getimagegeometry|imagick_getimagegravity|\\\nimagick_getimagegreenprimary|imagick_getimageheight|imagick_getimagehistogram|imagick_getimageindex|imagick_getimageinterlacescheme|\\\nimagick_getimageinterpolatemethod|imagick_getimageiterations|imagick_getimagelength|imagick_getimagemagicklicense|imagick_getimagematte|\\\nimagick_getimagemattecolor|imagick_getimageorientation|imagick_getimagepage|imagick_getimagepixelcolor|imagick_getimageprofile|\\\nimagick_getimageprofiles|imagick_getimageproperties|imagick_getimageproperty|imagick_getimageredprimary|imagick_getimageregion|\\\nimagick_getimagerenderingintent|imagick_getimageresolution|imagick_getimagesblob|imagick_getimagescene|imagick_getimagesignature|\\\nimagick_getimagesize|imagick_getimagetickspersecond|imagick_getimagetotalinkdensity|imagick_getimagetype|imagick_getimageunits|\\\nimagick_getimagevirtualpixelmethod|imagick_getimagewhitepoint|imagick_getimagewidth|imagick_getinterlacescheme|imagick_getiteratorindex|\\\nimagick_getnumberimages|imagick_getoption|imagick_getpackagename|imagick_getpage|imagick_getpixeliterator|imagick_getpixelregioniterator|\\\nimagick_getpointsize|imagick_getquantumdepth|imagick_getquantumrange|imagick_getreleasedate|imagick_getresource|imagick_getresourcelimit|\\\nimagick_getsamplingfactors|imagick_getsize|imagick_getsizeoffset|imagick_getversion|imagick_hasnextimage|imagick_haspreviousimage|\\\nimagick_identifyimage|imagick_implodeimage|imagick_labelimage|imagick_levelimage|imagick_linearstretchimage|imagick_liquidrescaleimage|\\\nimagick_magnifyimage|imagick_mapimage|imagick_mattefloodfillimage|imagick_medianfilterimage|imagick_mergeimagelayers|imagick_minifyimage|\\\nimagick_modulateimage|imagick_montageimage|imagick_morphimages|imagick_mosaicimages|imagick_motionblurimage|imagick_negateimage|\\\nimagick_newimage|imagick_newpseudoimage|imagick_nextimage|imagick_normalizeimage|imagick_oilpaintimage|imagick_opaquepaintimage|\\\nimagick_optimizeimagelayers|imagick_orderedposterizeimage|imagick_paintfloodfillimage|imagick_paintopaqueimage|\\\nimagick_painttransparentimage|imagick_pingimage|imagick_pingimageblob|imagick_pingimagefile|imagick_polaroidimage|imagick_posterizeimage|\\\nimagick_previewimages|imagick_previousimage|imagick_profileimage|imagick_quantizeimage|imagick_quantizeimages|imagick_queryfontmetrics|\\\nimagick_queryfonts|imagick_queryformats|imagick_radialblurimage|imagick_raiseimage|imagick_randomthresholdimage|imagick_readimage|\\\nimagick_readimageblob|imagick_readimagefile|imagick_recolorimage|imagick_reducenoiseimage|imagick_removeimage|imagick_removeimageprofile|\\\nimagick_render|imagick_resampleimage|imagick_resetimagepage|imagick_resizeimage|imagick_rollimage|imagick_rotateimage|\\\nimagick_roundcorners|imagick_sampleimage|imagick_scaleimage|imagick_separateimagechannel|imagick_sepiatoneimage|\\\nimagick_setbackgroundcolor|imagick_setcolorspace|imagick_setcompression|imagick_setcompressionquality|imagick_setfilename|\\\nimagick_setfirstiterator|imagick_setfont|imagick_setformat|imagick_setgravity|imagick_setimage|imagick_setimagealphachannel|\\\nimagick_setimageartifact|imagick_setimagebackgroundcolor|imagick_setimagebias|imagick_setimageblueprimary|imagick_setimagebordercolor|\\\nimagick_setimagechanneldepth|imagick_setimageclipmask|imagick_setimagecolormapcolor|imagick_setimagecolorspace|imagick_setimagecompose|\\\nimagick_setimagecompression|imagick_setimagecompressionquality|imagick_setimagedelay|imagick_setimagedepth|imagick_setimagedispose|\\\nimagick_setimageextent|imagick_setimagefilename|imagick_setimageformat|imagick_setimagegamma|imagick_setimagegravity|\\\nimagick_setimagegreenprimary|imagick_setimageindex|imagick_setimageinterlacescheme|imagick_setimageinterpolatemethod|\\\nimagick_setimageiterations|imagick_setimagematte|imagick_setimagemattecolor|imagick_setimageopacity|imagick_setimageorientation|\\\nimagick_setimagepage|imagick_setimageprofile|imagick_setimageproperty|imagick_setimageredprimary|imagick_setimagerenderingintent|\\\nimagick_setimageresolution|imagick_setimagescene|imagick_setimagetickspersecond|imagick_setimagetype|imagick_setimageunits|\\\nimagick_setimagevirtualpixelmethod|imagick_setimagewhitepoint|imagick_setinterlacescheme|imagick_setiteratorindex|imagick_setlastiterator|\\\nimagick_setoption|imagick_setpage|imagick_setpointsize|imagick_setresolution|imagick_setresourcelimit|imagick_setsamplingfactors|\\\nimagick_setsize|imagick_setsizeoffset|imagick_settype|imagick_shadeimage|imagick_shadowimage|imagick_sharpenimage|imagick_shaveimage|\\\nimagick_shearimage|imagick_sigmoidalcontrastimage|imagick_sketchimage|imagick_solarizeimage|imagick_spliceimage|imagick_spreadimage|\\\nimagick_steganoimage|imagick_stereoimage|imagick_stripimage|imagick_swirlimage|imagick_textureimage|imagick_thresholdimage|\\\nimagick_thumbnailimage|imagick_tintimage|imagick_transformimage|imagick_transparentpaintimage|imagick_transposeimage|\\\nimagick_transverseimage|imagick_trimimage|imagick_uniqueimagecolors|imagick_unsharpmaskimage|imagick_valid|imagick_vignetteimage|\\\nimagick_waveimage|imagick_whitethresholdimage|imagick_writeimage|imagick_writeimagefile|imagick_writeimages|imagick_writeimagesfile|\\\nimagickdraw|imagickdraw_affine|imagickdraw_annotation|imagickdraw_arc|imagickdraw_bezier|imagickdraw_circle|imagickdraw_clear|\\\nimagickdraw_clone|imagickdraw_color|imagickdraw_comment|imagickdraw_composite|imagickdraw_construct|imagickdraw_destroy|\\\nimagickdraw_ellipse|imagickdraw_getclippath|imagickdraw_getcliprule|imagickdraw_getclipunits|imagickdraw_getfillcolor|\\\nimagickdraw_getfillopacity|imagickdraw_getfillrule|imagickdraw_getfont|imagickdraw_getfontfamily|imagickdraw_getfontsize|\\\nimagickdraw_getfontstyle|imagickdraw_getfontweight|imagickdraw_getgravity|imagickdraw_getstrokeantialias|imagickdraw_getstrokecolor|\\\nimagickdraw_getstrokedasharray|imagickdraw_getstrokedashoffset|imagickdraw_getstrokelinecap|imagickdraw_getstrokelinejoin|\\\nimagickdraw_getstrokemiterlimit|imagickdraw_getstrokeopacity|imagickdraw_getstrokewidth|imagickdraw_gettextalignment|\\\nimagickdraw_gettextantialias|imagickdraw_gettextdecoration|imagickdraw_gettextencoding|imagickdraw_gettextundercolor|\\\nimagickdraw_getvectorgraphics|imagickdraw_line|imagickdraw_matte|imagickdraw_pathclose|imagickdraw_pathcurvetoabsolute|\\\nimagickdraw_pathcurvetoquadraticbezierabsolute|imagickdraw_pathcurvetoquadraticbezierrelative|\\\nimagickdraw_pathcurvetoquadraticbeziersmoothabsolute|imagickdraw_pathcurvetoquadraticbeziersmoothrelative|imagickdraw_pathcurvetorelative|\\\nimagickdraw_pathcurvetosmoothabsolute|imagickdraw_pathcurvetosmoothrelative|imagickdraw_pathellipticarcabsolute|\\\nimagickdraw_pathellipticarcrelative|imagickdraw_pathfinish|imagickdraw_pathlinetoabsolute|imagickdraw_pathlinetohorizontalabsolute|\\\nimagickdraw_pathlinetohorizontalrelative|imagickdraw_pathlinetorelative|imagickdraw_pathlinetoverticalabsolute|\\\nimagickdraw_pathlinetoverticalrelative|imagickdraw_pathmovetoabsolute|imagickdraw_pathmovetorelative|imagickdraw_pathstart|\\\nimagickdraw_point|imagickdraw_polygon|imagickdraw_polyline|imagickdraw_pop|imagickdraw_popclippath|imagickdraw_popdefs|\\\nimagickdraw_poppattern|imagickdraw_push|imagickdraw_pushclippath|imagickdraw_pushdefs|imagickdraw_pushpattern|imagickdraw_rectangle|\\\nimagickdraw_render|imagickdraw_rotate|imagickdraw_roundrectangle|imagickdraw_scale|imagickdraw_setclippath|imagickdraw_setcliprule|\\\nimagickdraw_setclipunits|imagickdraw_setfillalpha|imagickdraw_setfillcolor|imagickdraw_setfillopacity|imagickdraw_setfillpatternurl|\\\nimagickdraw_setfillrule|imagickdraw_setfont|imagickdraw_setfontfamily|imagickdraw_setfontsize|imagickdraw_setfontstretch|\\\nimagickdraw_setfontstyle|imagickdraw_setfontweight|imagickdraw_setgravity|imagickdraw_setstrokealpha|imagickdraw_setstrokeantialias|\\\nimagickdraw_setstrokecolor|imagickdraw_setstrokedasharray|imagickdraw_setstrokedashoffset|imagickdraw_setstrokelinecap|\\\nimagickdraw_setstrokelinejoin|imagickdraw_setstrokemiterlimit|imagickdraw_setstrokeopacity|imagickdraw_setstrokepatternurl|\\\nimagickdraw_setstrokewidth|imagickdraw_settextalignment|imagickdraw_settextantialias|imagickdraw_settextdecoration|\\\nimagickdraw_settextencoding|imagickdraw_settextundercolor|imagickdraw_setvectorgraphics|imagickdraw_setviewbox|imagickdraw_skewx|\\\nimagickdraw_skewy|imagickdraw_translate|imagickpixel|imagickpixel_clear|imagickpixel_construct|imagickpixel_destroy|imagickpixel_getcolor|\\\nimagickpixel_getcolorasstring|imagickpixel_getcolorcount|imagickpixel_getcolorvalue|imagickpixel_gethsl|imagickpixel_issimilar|\\\nimagickpixel_setcolor|imagickpixel_setcolorvalue|imagickpixel_sethsl|imagickpixeliterator|imagickpixeliterator_clear|\\\nimagickpixeliterator_construct|imagickpixeliterator_destroy|imagickpixeliterator_getcurrentiteratorrow|\\\nimagickpixeliterator_getiteratorrow|imagickpixeliterator_getnextiteratorrow|imagickpixeliterator_getpreviousiteratorrow|\\\nimagickpixeliterator_newpixeliterator|imagickpixeliterator_newpixelregioniterator|imagickpixeliterator_resetiterator|\\\nimagickpixeliterator_setiteratorfirstrow|imagickpixeliterator_setiteratorlastrow|imagickpixeliterator_setiteratorrow|\\\nimagickpixeliterator_synciterator|imap_8bit|imap_alerts|imap_append|imap_base64|imap_binary|imap_body|imap_bodystruct|imap_check|\\\nimap_clearflag_full|imap_close|imap_create|imap_createmailbox|imap_delete|imap_deletemailbox|imap_errors|imap_expunge|imap_fetch_overview|\\\nimap_fetchbody|imap_fetchheader|imap_fetchmime|imap_fetchstructure|imap_fetchtext|imap_gc|imap_get_quota|imap_get_quotaroot|imap_getacl|\\\nimap_getmailboxes|imap_getsubscribed|imap_header|imap_headerinfo|imap_headers|imap_last_error|imap_list|imap_listmailbox|imap_listscan|\\\nimap_listsubscribed|imap_lsub|imap_mail|imap_mail_compose|imap_mail_copy|imap_mail_move|imap_mailboxmsginfo|imap_mime_header_decode|\\\nimap_msgno|imap_num_msg|imap_num_recent|imap_open|imap_ping|imap_qprint|imap_rename|imap_renamemailbox|imap_reopen|\\\nimap_rfc822_parse_adrlist|imap_rfc822_parse_headers|imap_rfc822_write_address|imap_savebody|imap_scan|imap_scanmailbox|imap_search|\\\nimap_set_quota|imap_setacl|imap_setflag_full|imap_sort|imap_status|imap_subscribe|imap_thread|imap_timeout|imap_uid|imap_undelete|\\\nimap_unsubscribe|imap_utf7_decode|imap_utf7_encode|imap_utf8|implementsinterface|implode|import_request_variables|in_array|include|\\\ninclude_once|inclued_get_data|inet_ntop|inet_pton|infiniteiterator|ingres_autocommit|ingres_autocommit_state|ingres_charset|ingres_close|\\\ningres_commit|ingres_connect|ingres_cursor|ingres_errno|ingres_error|ingres_errsqlstate|ingres_escape_string|ingres_execute|\\\ningres_fetch_array|ingres_fetch_assoc|ingres_fetch_object|ingres_fetch_proc_return|ingres_fetch_row|ingres_field_length|ingres_field_name|\\\ningres_field_nullable|ingres_field_precision|ingres_field_scale|ingres_field_type|ingres_free_result|ingres_next_error|ingres_num_fields|\\\ningres_num_rows|ingres_pconnect|ingres_prepare|ingres_query|ingres_result_seek|ingres_rollback|ingres_set_environment|\\\ningres_unbuffered_query|ini_alter|ini_get|ini_get_all|ini_restore|ini_set|innamespace|inotify_add_watch|inotify_init|inotify_queue_len|\\\ninotify_read|inotify_rm_watch|interface_exists|intl_error_name|intl_get_error_code|intl_get_error_message|intl_is_failure|\\\nintldateformatter|intval|invalidargumentexception|invoke|invokeargs|ip2long|iptcembed|iptcparse|is_a|is_array|is_bool|is_callable|is_dir|\\\nis_double|is_executable|is_file|is_finite|is_float|is_infinite|is_int|is_integer|is_link|is_long|is_nan|is_null|is_numeric|is_object|\\\nis_readable|is_real|is_resource|is_scalar|is_soap_fault|is_string|is_subclass_of|is_uploaded_file|is_writable|is_writeable|isabstract|\\\niscloneable|isdisabled|isfinal|isinstance|isinstantiable|isinterface|isinternal|isiterateable|isset|issubclassof|isuserdefined|iterator|\\\niterator_apply|iterator_count|iterator_to_array|iteratoraggregate|iteratoriterator|java_last_exception_clear|java_last_exception_get|\\\njddayofweek|jdmonthname|jdtofrench|jdtogregorian|jdtojewish|jdtojulian|jdtounix|jewishtojd|join|jpeg2wbmp|json_decode|json_encode|\\\njson_last_error|jsonserializable|judy|judy_type|judy_version|juliantojd|kadm5_chpass_principal|kadm5_create_principal|\\\nkadm5_delete_principal|kadm5_destroy|kadm5_flush|kadm5_get_policies|kadm5_get_principal|kadm5_get_principals|kadm5_init_with_password|\\\nkadm5_modify_principal|key|krsort|ksort|lcfirst|lcg_value|lchgrp|lchown|ldap_8859_to_t61|ldap_add|ldap_bind|ldap_close|ldap_compare|\\\nldap_connect|ldap_count_entries|ldap_delete|ldap_dn2ufn|ldap_err2str|ldap_errno|ldap_error|ldap_explode_dn|ldap_first_attribute|\\\nldap_first_entry|ldap_first_reference|ldap_free_result|ldap_get_attributes|ldap_get_dn|ldap_get_entries|ldap_get_option|ldap_get_values|\\\nldap_get_values_len|ldap_list|ldap_mod_add|ldap_mod_del|ldap_mod_replace|ldap_modify|ldap_next_attribute|ldap_next_entry|\\\nldap_next_reference|ldap_parse_reference|ldap_parse_result|ldap_read|ldap_rename|ldap_sasl_bind|ldap_search|ldap_set_option|\\\nldap_set_rebind_proc|ldap_sort|ldap_start_tls|ldap_t61_to_8859|ldap_unbind|lengthexception|levenshtein|libxml_clear_errors|\\\nlibxml_disable_entity_loader|libxml_get_errors|libxml_get_last_error|libxml_set_streams_context|libxml_use_internal_errors|libxmlerror|\\\nlimititerator|link|linkinfo|list|locale|localeconv|localtime|log|log10|log1p|logicexception|long2ip|lstat|ltrim|lzf_compress|\\\nlzf_decompress|lzf_optimized_for|m_checkstatus|m_completeauthorizations|m_connect|m_connectionerror|m_deletetrans|m_destroyconn|\\\nm_destroyengine|m_getcell|m_getcellbynum|m_getcommadelimited|m_getheader|m_initconn|m_initengine|m_iscommadelimited|m_maxconntimeout|\\\nm_monitor|m_numcolumns|m_numrows|m_parsecommadelimited|m_responsekeys|m_responseparam|m_returnstatus|m_setblocking|m_setdropfile|m_setip|\\\nm_setssl|m_setssl_cafile|m_setssl_files|m_settimeout|m_sslcert_gen_hash|m_transactionssent|m_transinqueue|m_transkeyval|m_transnew|\\\nm_transsend|m_uwait|m_validateidentifier|m_verifyconnection|m_verifysslcert|magic_quotes_runtime|mail|\\\nmailparse_determine_best_xfer_encoding|mailparse_msg_create|mailparse_msg_extract_part|mailparse_msg_extract_part_file|\\\nmailparse_msg_extract_whole_part_file|mailparse_msg_free|mailparse_msg_get_part|mailparse_msg_get_part_data|mailparse_msg_get_structure|\\\nmailparse_msg_parse|mailparse_msg_parse_file|mailparse_rfc822_parse_addresses|mailparse_stream_encode|mailparse_uudecode_all|main|max|\\\nmaxdb_affected_rows|maxdb_autocommit|maxdb_bind_param|maxdb_bind_result|maxdb_change_user|maxdb_character_set_name|maxdb_client_encoding|\\\nmaxdb_close|maxdb_close_long_data|maxdb_commit|maxdb_connect|maxdb_connect_errno|maxdb_connect_error|maxdb_data_seek|maxdb_debug|\\\nmaxdb_disable_reads_from_master|maxdb_disable_rpl_parse|maxdb_dump_debug_info|maxdb_embedded_connect|maxdb_enable_reads_from_master|\\\nmaxdb_enable_rpl_parse|maxdb_errno|maxdb_error|maxdb_escape_string|maxdb_execute|maxdb_fetch|maxdb_fetch_array|maxdb_fetch_assoc|\\\nmaxdb_fetch_field|maxdb_fetch_field_direct|maxdb_fetch_fields|maxdb_fetch_lengths|maxdb_fetch_object|maxdb_fetch_row|maxdb_field_count|\\\nmaxdb_field_seek|maxdb_field_tell|maxdb_free_result|maxdb_get_client_info|maxdb_get_client_version|maxdb_get_host_info|maxdb_get_metadata|\\\nmaxdb_get_proto_info|maxdb_get_server_info|maxdb_get_server_version|maxdb_info|maxdb_init|maxdb_insert_id|maxdb_kill|maxdb_master_query|\\\nmaxdb_more_results|maxdb_multi_query|maxdb_next_result|maxdb_num_fields|maxdb_num_rows|maxdb_options|maxdb_param_count|maxdb_ping|\\\nmaxdb_prepare|maxdb_query|maxdb_real_connect|maxdb_real_escape_string|maxdb_real_query|maxdb_report|maxdb_rollback|\\\nmaxdb_rpl_parse_enabled|maxdb_rpl_probe|maxdb_rpl_query_type|maxdb_select_db|maxdb_send_long_data|maxdb_send_query|maxdb_server_end|\\\nmaxdb_server_init|maxdb_set_opt|maxdb_sqlstate|maxdb_ssl_set|maxdb_stat|maxdb_stmt_affected_rows|maxdb_stmt_bind_param|\\\nmaxdb_stmt_bind_result|maxdb_stmt_close|maxdb_stmt_close_long_data|maxdb_stmt_data_seek|maxdb_stmt_errno|maxdb_stmt_error|\\\nmaxdb_stmt_execute|maxdb_stmt_fetch|maxdb_stmt_free_result|maxdb_stmt_init|maxdb_stmt_num_rows|maxdb_stmt_param_count|maxdb_stmt_prepare|\\\nmaxdb_stmt_reset|maxdb_stmt_result_metadata|maxdb_stmt_send_long_data|maxdb_stmt_sqlstate|maxdb_stmt_store_result|maxdb_store_result|\\\nmaxdb_thread_id|maxdb_thread_safe|maxdb_use_result|maxdb_warning_count|mb_check_encoding|mb_convert_case|mb_convert_encoding|\\\nmb_convert_kana|mb_convert_variables|mb_decode_mimeheader|mb_decode_numericentity|mb_detect_encoding|mb_detect_order|mb_encode_mimeheader|\\\nmb_encode_numericentity|mb_encoding_aliases|mb_ereg|mb_ereg_match|mb_ereg_replace|mb_ereg_search|mb_ereg_search_getpos|\\\nmb_ereg_search_getregs|mb_ereg_search_init|mb_ereg_search_pos|mb_ereg_search_regs|mb_ereg_search_setpos|mb_eregi|mb_eregi_replace|\\\nmb_get_info|mb_http_input|mb_http_output|mb_internal_encoding|mb_language|mb_list_encodings|mb_output_handler|mb_parse_str|\\\nmb_preferred_mime_name|mb_regex_encoding|mb_regex_set_options|mb_send_mail|mb_split|mb_strcut|mb_strimwidth|mb_stripos|mb_stristr|\\\nmb_strlen|mb_strpos|mb_strrchr|mb_strrichr|mb_strripos|mb_strrpos|mb_strstr|mb_strtolower|mb_strtoupper|mb_strwidth|\\\nmb_substitute_character|mb_substr|mb_substr_count|mcrypt_cbc|mcrypt_cfb|mcrypt_create_iv|mcrypt_decrypt|mcrypt_ecb|\\\nmcrypt_enc_get_algorithms_name|mcrypt_enc_get_block_size|mcrypt_enc_get_iv_size|mcrypt_enc_get_key_size|mcrypt_enc_get_modes_name|\\\nmcrypt_enc_get_supported_key_sizes|mcrypt_enc_is_block_algorithm|mcrypt_enc_is_block_algorithm_mode|mcrypt_enc_is_block_mode|\\\nmcrypt_enc_self_test|mcrypt_encrypt|mcrypt_generic|mcrypt_generic_deinit|mcrypt_generic_end|mcrypt_generic_init|mcrypt_get_block_size|\\\nmcrypt_get_cipher_name|mcrypt_get_iv_size|mcrypt_get_key_size|mcrypt_list_algorithms|mcrypt_list_modes|mcrypt_module_close|\\\nmcrypt_module_get_algo_block_size|mcrypt_module_get_algo_key_size|mcrypt_module_get_supported_key_sizes|mcrypt_module_is_block_algorithm|\\\nmcrypt_module_is_block_algorithm_mode|mcrypt_module_is_block_mode|mcrypt_module_open|mcrypt_module_self_test|mcrypt_ofb|md5|md5_file|\\\nmdecrypt_generic|memcache|memcache_debug|memcached|memory_get_peak_usage|memory_get_usage|messageformatter|metaphone|method_exists|mhash|\\\nmhash_count|mhash_get_block_size|mhash_get_hash_name|mhash_keygen_s2k|microtime|mime_content_type|min|ming_keypress|\\\nming_setcubicthreshold|ming_setscale|ming_setswfcompression|ming_useconstants|ming_useswfversion|mkdir|mktime|money_format|mongo|\\\nmongobindata|mongocode|mongocollection|mongoconnectionexception|mongocursor|mongocursorexception|mongocursortimeoutexception|mongodate|\\\nmongodb|mongodbref|mongoexception|mongogridfs|mongogridfscursor|mongogridfsexception|mongogridfsfile|mongoid|mongoint32|mongoint64|\\\nmongomaxkey|mongominkey|mongoregex|mongotimestamp|move_uploaded_file|mpegfile|mqseries_back|mqseries_begin|mqseries_close|mqseries_cmit|\\\nmqseries_conn|mqseries_connx|mqseries_disc|mqseries_get|mqseries_inq|mqseries_open|mqseries_put|mqseries_put1|mqseries_set|\\\nmqseries_strerror|msession_connect|msession_count|msession_create|msession_destroy|msession_disconnect|msession_find|msession_get|\\\nmsession_get_array|msession_get_data|msession_inc|msession_list|msession_listvar|msession_lock|msession_plugin|msession_randstr|\\\nmsession_set|msession_set_array|msession_set_data|msession_timeout|msession_uniq|msession_unlock|msg_get_queue|msg_queue_exists|\\\nmsg_receive|msg_remove_queue|msg_send|msg_set_queue|msg_stat_queue|msql|msql_affected_rows|msql_close|msql_connect|msql_create_db|\\\nmsql_createdb|msql_data_seek|msql_db_query|msql_dbname|msql_drop_db|msql_error|msql_fetch_array|msql_fetch_field|msql_fetch_object|\\\nmsql_fetch_row|msql_field_flags|msql_field_len|msql_field_name|msql_field_seek|msql_field_table|msql_field_type|msql_fieldflags|\\\nmsql_fieldlen|msql_fieldname|msql_fieldtable|msql_fieldtype|msql_free_result|msql_list_dbs|msql_list_fields|msql_list_tables|\\\nmsql_num_fields|msql_num_rows|msql_numfields|msql_numrows|msql_pconnect|msql_query|msql_regcase|msql_result|msql_select_db|msql_tablename|\\\nmssql_bind|mssql_close|mssql_connect|mssql_data_seek|mssql_execute|mssql_fetch_array|mssql_fetch_assoc|mssql_fetch_batch|\\\nmssql_fetch_field|mssql_fetch_object|mssql_fetch_row|mssql_field_length|mssql_field_name|mssql_field_seek|mssql_field_type|\\\nmssql_free_result|mssql_free_statement|mssql_get_last_message|mssql_guid_string|mssql_init|mssql_min_error_severity|\\\nmssql_min_message_severity|mssql_next_result|mssql_num_fields|mssql_num_rows|mssql_pconnect|mssql_query|mssql_result|mssql_rows_affected|\\\nmssql_select_db|mt_getrandmax|mt_rand|mt_srand|multipleiterator|mysql_affected_rows|mysql_client_encoding|mysql_close|mysql_connect|\\\nmysql_create_db|mysql_data_seek|mysql_db_name|mysql_db_query|mysql_drop_db|mysql_errno|mysql_error|mysql_escape_string|mysql_fetch_array|\\\nmysql_fetch_assoc|mysql_fetch_field|mysql_fetch_lengths|mysql_fetch_object|mysql_fetch_row|mysql_field_flags|mysql_field_len|\\\nmysql_field_name|mysql_field_seek|mysql_field_table|mysql_field_type|mysql_free_result|mysql_get_client_info|mysql_get_host_info|\\\nmysql_get_proto_info|mysql_get_server_info|mysql_info|mysql_insert_id|mysql_list_dbs|mysql_list_fields|mysql_list_processes|\\\nmysql_list_tables|mysql_num_fields|mysql_num_rows|mysql_pconnect|mysql_ping|mysql_query|mysql_real_escape_string|mysql_result|\\\nmysql_select_db|mysql_set_charset|mysql_stat|mysql_tablename|mysql_thread_id|mysql_unbuffered_query|mysqli|mysqli_affected_rows|\\\nmysqli_autocommit|mysqli_bind_param|mysqli_bind_result|mysqli_cache_stats|mysqli_change_user|mysqli_character_set_name|\\\nmysqli_client_encoding|mysqli_close|mysqli_commit|mysqli_connect|mysqli_connect_errno|mysqli_connect_error|mysqli_data_seek|\\\nmysqli_debug|mysqli_disable_reads_from_master|mysqli_disable_rpl_parse|mysqli_driver|mysqli_dump_debug_info|mysqli_embedded_server_end|\\\nmysqli_embedded_server_start|mysqli_enable_reads_from_master|mysqli_enable_rpl_parse|mysqli_errno|mysqli_error|mysqli_escape_string|\\\nmysqli_execute|mysqli_fetch|mysqli_fetch_all|mysqli_fetch_array|mysqli_fetch_assoc|mysqli_fetch_field|mysqli_fetch_field_direct|\\\nmysqli_fetch_fields|mysqli_fetch_lengths|mysqli_fetch_object|mysqli_fetch_row|mysqli_field_count|mysqli_field_seek|mysqli_field_tell|\\\nmysqli_free_result|mysqli_get_charset|mysqli_get_client_info|mysqli_get_client_stats|mysqli_get_client_version|mysqli_get_connection_stats|\\\nmysqli_get_host_info|mysqli_get_metadata|mysqli_get_proto_info|mysqli_get_server_info|mysqli_get_server_version|mysqli_get_warnings|\\\nmysqli_info|mysqli_init|mysqli_insert_id|mysqli_kill|mysqli_link_construct|mysqli_master_query|mysqli_more_results|mysqli_multi_query|\\\nmysqli_next_result|mysqli_num_fields|mysqli_num_rows|mysqli_options|mysqli_param_count|mysqli_ping|mysqli_poll|mysqli_prepare|\\\nmysqli_query|mysqli_real_connect|mysqli_real_escape_string|mysqli_real_query|mysqli_reap_async_query|mysqli_refresh|mysqli_report|\\\nmysqli_result|mysqli_rollback|mysqli_rpl_parse_enabled|mysqli_rpl_probe|mysqli_rpl_query_type|mysqli_select_db|mysqli_send_long_data|\\\nmysqli_send_query|mysqli_set_charset|mysqli_set_local_infile_default|mysqli_set_local_infile_handler|mysqli_set_opt|mysqli_slave_query|\\\nmysqli_sqlstate|mysqli_ssl_set|mysqli_stat|mysqli_stmt|mysqli_stmt_affected_rows|mysqli_stmt_attr_get|mysqli_stmt_attr_set|\\\nmysqli_stmt_bind_param|mysqli_stmt_bind_result|mysqli_stmt_close|mysqli_stmt_data_seek|mysqli_stmt_errno|mysqli_stmt_error|\\\nmysqli_stmt_execute|mysqli_stmt_fetch|mysqli_stmt_field_count|mysqli_stmt_free_result|mysqli_stmt_get_result|mysqli_stmt_get_warnings|\\\nmysqli_stmt_init|mysqli_stmt_insert_id|mysqli_stmt_next_result|mysqli_stmt_num_rows|mysqli_stmt_param_count|mysqli_stmt_prepare|\\\nmysqli_stmt_reset|mysqli_stmt_result_metadata|mysqli_stmt_send_long_data|mysqli_stmt_sqlstate|mysqli_stmt_store_result|mysqli_store_result|\\\nmysqli_thread_id|mysqli_thread_safe|mysqli_use_result|mysqli_warning|mysqli_warning_count|mysqlnd_ms_get_stats|\\\nmysqlnd_ms_query_is_select|mysqlnd_ms_set_user_pick_server|mysqlnd_qc_change_handler|mysqlnd_qc_clear_cache|mysqlnd_qc_get_cache_info|\\\nmysqlnd_qc_get_core_stats|mysqlnd_qc_get_handler|mysqlnd_qc_get_query_trace_log|mysqlnd_qc_set_user_handlers|natcasesort|natsort|\\\nncurses_addch|ncurses_addchnstr|ncurses_addchstr|ncurses_addnstr|ncurses_addstr|ncurses_assume_default_colors|ncurses_attroff|\\\nncurses_attron|ncurses_attrset|ncurses_baudrate|ncurses_beep|ncurses_bkgd|ncurses_bkgdset|ncurses_border|ncurses_bottom_panel|\\\nncurses_can_change_color|ncurses_cbreak|ncurses_clear|ncurses_clrtobot|ncurses_clrtoeol|ncurses_color_content|ncurses_color_set|\\\nncurses_curs_set|ncurses_def_prog_mode|ncurses_def_shell_mode|ncurses_define_key|ncurses_del_panel|ncurses_delay_output|ncurses_delch|\\\nncurses_deleteln|ncurses_delwin|ncurses_doupdate|ncurses_echo|ncurses_echochar|ncurses_end|ncurses_erase|ncurses_erasechar|ncurses_filter|\\\nncurses_flash|ncurses_flushinp|ncurses_getch|ncurses_getmaxyx|ncurses_getmouse|ncurses_getyx|ncurses_halfdelay|ncurses_has_colors|\\\nncurses_has_ic|ncurses_has_il|ncurses_has_key|ncurses_hide_panel|ncurses_hline|ncurses_inch|ncurses_init|ncurses_init_color|\\\nncurses_init_pair|ncurses_insch|ncurses_insdelln|ncurses_insertln|ncurses_insstr|ncurses_instr|ncurses_isendwin|ncurses_keyok|\\\nncurses_keypad|ncurses_killchar|ncurses_longname|ncurses_meta|ncurses_mouse_trafo|ncurses_mouseinterval|ncurses_mousemask|ncurses_move|\\\nncurses_move_panel|ncurses_mvaddch|ncurses_mvaddchnstr|ncurses_mvaddchstr|ncurses_mvaddnstr|ncurses_mvaddstr|ncurses_mvcur|\\\nncurses_mvdelch|ncurses_mvgetch|ncurses_mvhline|ncurses_mvinch|ncurses_mvvline|ncurses_mvwaddstr|ncurses_napms|ncurses_new_panel|\\\nncurses_newpad|ncurses_newwin|ncurses_nl|ncurses_nocbreak|ncurses_noecho|ncurses_nonl|ncurses_noqiflush|ncurses_noraw|\\\nncurses_pair_content|ncurses_panel_above|ncurses_panel_below|ncurses_panel_window|ncurses_pnoutrefresh|ncurses_prefresh|ncurses_putp|\\\nncurses_qiflush|ncurses_raw|ncurses_refresh|ncurses_replace_panel|ncurses_reset_prog_mode|ncurses_reset_shell_mode|ncurses_resetty|\\\nncurses_savetty|ncurses_scr_dump|ncurses_scr_init|ncurses_scr_restore|ncurses_scr_set|ncurses_scrl|ncurses_show_panel|ncurses_slk_attr|\\\nncurses_slk_attroff|ncurses_slk_attron|ncurses_slk_attrset|ncurses_slk_clear|ncurses_slk_color|ncurses_slk_init|ncurses_slk_noutrefresh|\\\nncurses_slk_refresh|ncurses_slk_restore|ncurses_slk_set|ncurses_slk_touch|ncurses_standend|ncurses_standout|ncurses_start_color|\\\nncurses_termattrs|ncurses_termname|ncurses_timeout|ncurses_top_panel|ncurses_typeahead|ncurses_ungetch|ncurses_ungetmouse|\\\nncurses_update_panels|ncurses_use_default_colors|ncurses_use_env|ncurses_use_extended_names|ncurses_vidattr|ncurses_vline|ncurses_waddch|\\\nncurses_waddstr|ncurses_wattroff|ncurses_wattron|ncurses_wattrset|ncurses_wborder|ncurses_wclear|ncurses_wcolor_set|ncurses_werase|\\\nncurses_wgetch|ncurses_whline|ncurses_wmouse_trafo|ncurses_wmove|ncurses_wnoutrefresh|ncurses_wrefresh|ncurses_wstandend|\\\nncurses_wstandout|ncurses_wvline|newinstance|newinstanceargs|newt_bell|newt_button|newt_button_bar|newt_centered_window|newt_checkbox|\\\nnewt_checkbox_get_value|newt_checkbox_set_flags|newt_checkbox_set_value|newt_checkbox_tree|newt_checkbox_tree_add_item|\\\nnewt_checkbox_tree_find_item|newt_checkbox_tree_get_current|newt_checkbox_tree_get_entry_value|newt_checkbox_tree_get_multi_selection|\\\nnewt_checkbox_tree_get_selection|newt_checkbox_tree_multi|newt_checkbox_tree_set_current|newt_checkbox_tree_set_entry|\\\nnewt_checkbox_tree_set_entry_value|newt_checkbox_tree_set_width|newt_clear_key_buffer|newt_cls|newt_compact_button|\\\nnewt_component_add_callback|newt_component_takes_focus|newt_create_grid|newt_cursor_off|newt_cursor_on|newt_delay|newt_draw_form|\\\nnewt_draw_root_text|newt_entry|newt_entry_get_value|newt_entry_set|newt_entry_set_filter|newt_entry_set_flags|newt_finished|newt_form|\\\nnewt_form_add_component|newt_form_add_components|newt_form_add_hot_key|newt_form_destroy|newt_form_get_current|newt_form_run|\\\nnewt_form_set_background|newt_form_set_height|newt_form_set_size|newt_form_set_timer|newt_form_set_width|newt_form_watch_fd|\\\nnewt_get_screen_size|newt_grid_add_components_to_form|newt_grid_basic_window|newt_grid_free|newt_grid_get_size|newt_grid_h_close_stacked|\\\nnewt_grid_h_stacked|newt_grid_place|newt_grid_set_field|newt_grid_simple_window|newt_grid_v_close_stacked|newt_grid_v_stacked|\\\nnewt_grid_wrapped_window|newt_grid_wrapped_window_at|newt_init|newt_label|newt_label_set_text|newt_listbox|newt_listbox_append_entry|\\\nnewt_listbox_clear|newt_listbox_clear_selection|newt_listbox_delete_entry|newt_listbox_get_current|newt_listbox_get_selection|\\\nnewt_listbox_insert_entry|newt_listbox_item_count|newt_listbox_select_item|newt_listbox_set_current|newt_listbox_set_current_by_key|\\\nnewt_listbox_set_data|newt_listbox_set_entry|newt_listbox_set_width|newt_listitem|newt_listitem_get_data|newt_listitem_set|\\\nnewt_open_window|newt_pop_help_line|newt_pop_window|newt_push_help_line|newt_radio_get_current|newt_radiobutton|newt_redraw_help_line|\\\nnewt_reflow_text|newt_refresh|newt_resize_screen|newt_resume|newt_run_form|newt_scale|newt_scale_set|newt_scrollbar_set|\\\nnewt_set_help_callback|newt_set_suspend_callback|newt_suspend|newt_textbox|newt_textbox_get_num_lines|newt_textbox_reflowed|\\\nnewt_textbox_set_height|newt_textbox_set_text|newt_vertical_scrollbar|newt_wait_for_key|newt_win_choice|newt_win_entries|newt_win_menu|\\\nnewt_win_message|newt_win_messagev|newt_win_ternary|next|ngettext|nl2br|nl_langinfo|norewinditerator|normalizer|notes_body|notes_copy_db|\\\nnotes_create_db|notes_create_note|notes_drop_db|notes_find_note|notes_header_info|notes_list_msgs|notes_mark_read|notes_mark_unread|\\\nnotes_nav_create|notes_search|notes_unread|notes_version|nsapi_request_headers|nsapi_response_headers|nsapi_virtual|nthmac|number_format|\\\nnumberformatter|oauth|oauth_get_sbs|oauth_urlencode|oauthexception|oauthprovider|ob_clean|ob_deflatehandler|ob_end_clean|ob_end_flush|\\\nob_etaghandler|ob_flush|ob_get_clean|ob_get_contents|ob_get_flush|ob_get_length|ob_get_level|ob_get_status|ob_gzhandler|ob_iconv_handler|\\\nob_implicit_flush|ob_inflatehandler|ob_list_handlers|ob_start|ob_tidyhandler|oci_bind_array_by_name|oci_bind_by_name|oci_cancel|\\\noci_client_version|oci_close|oci_collection_append|oci_collection_assign|oci_collection_element_assign|oci_collection_element_get|\\\noci_collection_free|oci_collection_max|oci_collection_size|oci_collection_trim|oci_commit|oci_connect|oci_define_by_name|oci_error|\\\noci_execute|oci_fetch|oci_fetch_all|oci_fetch_array|oci_fetch_assoc|oci_fetch_object|oci_fetch_row|oci_field_is_null|oci_field_name|\\\noci_field_precision|oci_field_scale|oci_field_size|oci_field_type|oci_field_type_raw|oci_free_statement|oci_internal_debug|oci_lob_append|\\\noci_lob_close|oci_lob_copy|oci_lob_eof|oci_lob_erase|oci_lob_export|oci_lob_flush|oci_lob_free|oci_lob_getbuffering|oci_lob_import|\\\noci_lob_is_equal|oci_lob_load|oci_lob_read|oci_lob_rewind|oci_lob_save|oci_lob_savefile|oci_lob_seek|oci_lob_setbuffering|oci_lob_size|\\\noci_lob_tell|oci_lob_truncate|oci_lob_write|oci_lob_writetemporary|oci_lob_writetofile|oci_new_collection|oci_new_connect|oci_new_cursor|\\\noci_new_descriptor|oci_num_fields|oci_num_rows|oci_parse|oci_password_change|oci_pconnect|oci_result|oci_rollback|oci_server_version|\\\noci_set_action|oci_set_client_identifier|oci_set_client_info|oci_set_edition|oci_set_module_name|oci_set_prefetch|oci_statement_type|\\\nocibindbyname|ocicancel|ocicloselob|ocicollappend|ocicollassign|ocicollassignelem|ocicollgetelem|ocicollmax|ocicollsize|ocicolltrim|\\\nocicolumnisnull|ocicolumnname|ocicolumnprecision|ocicolumnscale|ocicolumnsize|ocicolumntype|ocicolumntyperaw|ocicommit|ocidefinebyname|\\\nocierror|ociexecute|ocifetch|ocifetchinto|ocifetchstatement|ocifreecollection|ocifreecursor|ocifreedesc|ocifreestatement|ociinternaldebug|\\\nociloadlob|ocilogoff|ocilogon|ocinewcollection|ocinewcursor|ocinewdescriptor|ocinlogon|ocinumcols|ociparse|ociplogon|ociresult|\\\nocirollback|ocirowcount|ocisavelob|ocisavelobfile|ociserverversion|ocisetprefetch|ocistatementtype|ociwritelobtofile|ociwritetemporarylob|\\\noctdec|odbc_autocommit|odbc_binmode|odbc_close|odbc_close_all|odbc_columnprivileges|odbc_columns|odbc_commit|odbc_connect|odbc_cursor|\\\nodbc_data_source|odbc_do|odbc_error|odbc_errormsg|odbc_exec|odbc_execute|odbc_fetch_array|odbc_fetch_into|odbc_fetch_object|\\\nodbc_fetch_row|odbc_field_len|odbc_field_name|odbc_field_num|odbc_field_precision|odbc_field_scale|odbc_field_type|odbc_foreignkeys|\\\nodbc_free_result|odbc_gettypeinfo|odbc_longreadlen|odbc_next_result|odbc_num_fields|odbc_num_rows|odbc_pconnect|odbc_prepare|\\\nodbc_primarykeys|odbc_procedurecolumns|odbc_procedures|odbc_result|odbc_result_all|odbc_rollback|odbc_setoption|odbc_specialcolumns|\\\nodbc_statistics|odbc_tableprivileges|odbc_tables|openal_buffer_create|openal_buffer_data|openal_buffer_destroy|openal_buffer_get|\\\nopenal_buffer_loadwav|openal_context_create|openal_context_current|openal_context_destroy|openal_context_process|openal_context_suspend|\\\nopenal_device_close|openal_device_open|openal_listener_get|openal_listener_set|openal_source_create|openal_source_destroy|\\\nopenal_source_get|openal_source_pause|openal_source_play|openal_source_rewind|openal_source_set|openal_source_stop|openal_stream|opendir|\\\nopenlog|openssl_cipher_iv_length|openssl_csr_export|openssl_csr_export_to_file|openssl_csr_get_public_key|openssl_csr_get_subject|\\\nopenssl_csr_new|openssl_csr_sign|openssl_decrypt|openssl_dh_compute_key|openssl_digest|openssl_encrypt|openssl_error_string|\\\nopenssl_free_key|openssl_get_cipher_methods|openssl_get_md_methods|openssl_get_privatekey|openssl_get_publickey|openssl_open|\\\nopenssl_pkcs12_export|openssl_pkcs12_export_to_file|openssl_pkcs12_read|openssl_pkcs7_decrypt|openssl_pkcs7_encrypt|openssl_pkcs7_sign|\\\nopenssl_pkcs7_verify|openssl_pkey_export|openssl_pkey_export_to_file|openssl_pkey_free|openssl_pkey_get_details|openssl_pkey_get_private|\\\nopenssl_pkey_get_public|openssl_pkey_new|openssl_private_decrypt|openssl_private_encrypt|openssl_public_decrypt|openssl_public_encrypt|\\\nopenssl_random_pseudo_bytes|openssl_seal|openssl_sign|openssl_verify|openssl_x509_check_private_key|openssl_x509_checkpurpose|\\\nopenssl_x509_export|openssl_x509_export_to_file|openssl_x509_free|openssl_x509_parse|openssl_x509_read|ord|outeriterator|\\\noutofboundsexception|outofrangeexception|output_add_rewrite_var|output_reset_rewrite_vars|overflowexception|overload|override_function|\\\novrimos_close|ovrimos_commit|ovrimos_connect|ovrimos_cursor|ovrimos_exec|ovrimos_execute|ovrimos_fetch_into|ovrimos_fetch_row|\\\novrimos_field_len|ovrimos_field_name|ovrimos_field_num|ovrimos_field_type|ovrimos_free_result|ovrimos_longreadlen|ovrimos_num_fields|\\\novrimos_num_rows|ovrimos_prepare|ovrimos_result|ovrimos_result_all|ovrimos_rollback|pack|parentiterator|parse_ini_file|parse_ini_string|\\\nparse_str|parse_url|parsekit_compile_file|parsekit_compile_string|parsekit_func_arginfo|passthru|pathinfo|pclose|pcntl_alarm|pcntl_exec|\\\npcntl_fork|pcntl_getpriority|pcntl_setpriority|pcntl_signal|pcntl_signal_dispatch|pcntl_sigprocmask|pcntl_sigtimedwait|pcntl_sigwaitinfo|\\\npcntl_wait|pcntl_waitpid|pcntl_wexitstatus|pcntl_wifexited|pcntl_wifsignaled|pcntl_wifstopped|pcntl_wstopsig|pcntl_wtermsig|\\\npdf_activate_item|pdf_add_annotation|pdf_add_bookmark|pdf_add_launchlink|pdf_add_locallink|pdf_add_nameddest|pdf_add_note|pdf_add_outline|\\\npdf_add_pdflink|pdf_add_table_cell|pdf_add_textflow|pdf_add_thumbnail|pdf_add_weblink|pdf_arc|pdf_arcn|pdf_attach_file|pdf_begin_document|\\\npdf_begin_font|pdf_begin_glyph|pdf_begin_item|pdf_begin_layer|pdf_begin_page|pdf_begin_page_ext|pdf_begin_pattern|pdf_begin_template|\\\npdf_begin_template_ext|pdf_circle|pdf_clip|pdf_close|pdf_close_image|pdf_close_pdi|pdf_close_pdi_page|pdf_closepath|\\\npdf_closepath_fill_stroke|pdf_closepath_stroke|pdf_concat|pdf_continue_text|pdf_create_3dview|pdf_create_action|pdf_create_annotation|\\\npdf_create_bookmark|pdf_create_field|pdf_create_fieldgroup|pdf_create_gstate|pdf_create_pvf|pdf_create_textflow|pdf_curveto|\\\npdf_define_layer|pdf_delete|pdf_delete_pvf|pdf_delete_table|pdf_delete_textflow|pdf_encoding_set_char|pdf_end_document|pdf_end_font|\\\npdf_end_glyph|pdf_end_item|pdf_end_layer|pdf_end_page|pdf_end_page_ext|pdf_end_pattern|pdf_end_template|pdf_endpath|pdf_fill|\\\npdf_fill_imageblock|pdf_fill_pdfblock|pdf_fill_stroke|pdf_fill_textblock|pdf_findfont|pdf_fit_image|pdf_fit_pdi_page|pdf_fit_table|\\\npdf_fit_textflow|pdf_fit_textline|pdf_get_apiname|pdf_get_buffer|pdf_get_errmsg|pdf_get_errnum|pdf_get_font|pdf_get_fontname|\\\npdf_get_fontsize|pdf_get_image_height|pdf_get_image_width|pdf_get_majorversion|pdf_get_minorversion|pdf_get_parameter|\\\npdf_get_pdi_parameter|pdf_get_pdi_value|pdf_get_value|pdf_info_font|pdf_info_matchbox|pdf_info_table|pdf_info_textflow|pdf_info_textline|\\\npdf_initgraphics|pdf_lineto|pdf_load_3ddata|pdf_load_font|pdf_load_iccprofile|pdf_load_image|pdf_makespotcolor|pdf_moveto|pdf_new|\\\npdf_open_ccitt|pdf_open_file|pdf_open_gif|pdf_open_image|pdf_open_image_file|pdf_open_jpeg|pdf_open_memory_image|pdf_open_pdi|\\\npdf_open_pdi_document|pdf_open_pdi_page|pdf_open_tiff|pdf_pcos_get_number|pdf_pcos_get_stream|pdf_pcos_get_string|pdf_place_image|\\\npdf_place_pdi_page|pdf_process_pdi|pdf_rect|pdf_restore|pdf_resume_page|pdf_rotate|pdf_save|pdf_scale|pdf_set_border_color|\\\npdf_set_border_dash|pdf_set_border_style|pdf_set_char_spacing|pdf_set_duration|pdf_set_gstate|pdf_set_horiz_scaling|pdf_set_info|\\\npdf_set_info_author|pdf_set_info_creator|pdf_set_info_keywords|pdf_set_info_subject|pdf_set_info_title|pdf_set_layer_dependency|\\\npdf_set_leading|pdf_set_parameter|pdf_set_text_matrix|pdf_set_text_pos|pdf_set_text_rendering|pdf_set_text_rise|pdf_set_value|\\\npdf_set_word_spacing|pdf_setcolor|pdf_setdash|pdf_setdashpattern|pdf_setflat|pdf_setfont|pdf_setgray|pdf_setgray_fill|pdf_setgray_stroke|\\\npdf_setlinecap|pdf_setlinejoin|pdf_setlinewidth|pdf_setmatrix|pdf_setmiterlimit|pdf_setpolydash|pdf_setrgbcolor|pdf_setrgbcolor_fill|\\\npdf_setrgbcolor_stroke|pdf_shading|pdf_shading_pattern|pdf_shfill|pdf_show|pdf_show_boxed|pdf_show_xy|pdf_skew|pdf_stringwidth|pdf_stroke|\\\npdf_suspend_page|pdf_translate|pdf_utf16_to_utf8|pdf_utf32_to_utf16|pdf_utf8_to_utf16|pdo|pdo_cubrid_schema|pdo_pgsqllobcreate|\\\npdo_pgsqllobopen|pdo_pgsqllobunlink|pdo_sqlitecreateaggregate|pdo_sqlitecreatefunction|pdoexception|pdostatement|pfsockopen|\\\npg_affected_rows|pg_cancel_query|pg_client_encoding|pg_close|pg_connect|pg_connection_busy|pg_connection_reset|pg_connection_status|\\\npg_convert|pg_copy_from|pg_copy_to|pg_dbname|pg_delete|pg_end_copy|pg_escape_bytea|pg_escape_string|pg_execute|pg_fetch_all|\\\npg_fetch_all_columns|pg_fetch_array|pg_fetch_assoc|pg_fetch_object|pg_fetch_result|pg_fetch_row|pg_field_is_null|pg_field_name|\\\npg_field_num|pg_field_prtlen|pg_field_size|pg_field_table|pg_field_type|pg_field_type_oid|pg_free_result|pg_get_notify|pg_get_pid|\\\npg_get_result|pg_host|pg_insert|pg_last_error|pg_last_notice|pg_last_oid|pg_lo_close|pg_lo_create|pg_lo_export|pg_lo_import|pg_lo_open|\\\npg_lo_read|pg_lo_read_all|pg_lo_seek|pg_lo_tell|pg_lo_unlink|pg_lo_write|pg_meta_data|pg_num_fields|pg_num_rows|pg_options|\\\npg_parameter_status|pg_pconnect|pg_ping|pg_port|pg_prepare|pg_put_line|pg_query|pg_query_params|pg_result_error|pg_result_error_field|\\\npg_result_seek|pg_result_status|pg_select|pg_send_execute|pg_send_prepare|pg_send_query|pg_send_query_params|pg_set_client_encoding|\\\npg_set_error_verbosity|pg_trace|pg_transaction_status|pg_tty|pg_unescape_bytea|pg_untrace|pg_update|pg_version|php_check_syntax|\\\nphp_ini_loaded_file|php_ini_scanned_files|php_logo_guid|php_sapi_name|php_strip_whitespace|php_uname|phpcredits|phpinfo|phpversion|pi|\\\npng2wbmp|popen|pos|posix_access|posix_ctermid|posix_errno|posix_get_last_error|posix_getcwd|posix_getegid|posix_geteuid|posix_getgid|\\\nposix_getgrgid|posix_getgrnam|posix_getgroups|posix_getlogin|posix_getpgid|posix_getpgrp|posix_getpid|posix_getppid|posix_getpwnam|\\\nposix_getpwuid|posix_getrlimit|posix_getsid|posix_getuid|posix_initgroups|posix_isatty|posix_kill|posix_mkfifo|posix_mknod|posix_setegid|\\\nposix_seteuid|posix_setgid|posix_setpgid|posix_setsid|posix_setuid|posix_strerror|posix_times|posix_ttyname|posix_uname|pow|preg_filter|\\\npreg_grep|preg_last_error|preg_match|preg_match_all|preg_quote|preg_replace|preg_replace_callback|preg_split|prev|print|print_r|\\\nprinter_abort|printer_close|printer_create_brush|printer_create_dc|printer_create_font|printer_create_pen|printer_delete_brush|\\\nprinter_delete_dc|printer_delete_font|printer_delete_pen|printer_draw_bmp|printer_draw_chord|printer_draw_elipse|printer_draw_line|\\\nprinter_draw_pie|printer_draw_rectangle|printer_draw_roundrect|printer_draw_text|printer_end_doc|printer_end_page|printer_get_option|\\\nprinter_list|printer_logical_fontheight|printer_open|printer_select_brush|printer_select_font|printer_select_pen|printer_set_option|\\\nprinter_start_doc|printer_start_page|printer_write|printf|proc_close|proc_get_status|proc_nice|proc_open|proc_terminate|property_exists|\\\nps_add_bookmark|ps_add_launchlink|ps_add_locallink|ps_add_note|ps_add_pdflink|ps_add_weblink|ps_arc|ps_arcn|ps_begin_page|\\\nps_begin_pattern|ps_begin_template|ps_circle|ps_clip|ps_close|ps_close_image|ps_closepath|ps_closepath_stroke|ps_continue_text|ps_curveto|\\\nps_delete|ps_end_page|ps_end_pattern|ps_end_template|ps_fill|ps_fill_stroke|ps_findfont|ps_get_buffer|ps_get_parameter|ps_get_value|\\\nps_hyphenate|ps_include_file|ps_lineto|ps_makespotcolor|ps_moveto|ps_new|ps_open_file|ps_open_image|ps_open_image_file|\\\nps_open_memory_image|ps_place_image|ps_rect|ps_restore|ps_rotate|ps_save|ps_scale|ps_set_border_color|ps_set_border_dash|\\\nps_set_border_style|ps_set_info|ps_set_parameter|ps_set_text_pos|ps_set_value|ps_setcolor|ps_setdash|ps_setflat|ps_setfont|ps_setgray|\\\nps_setlinecap|ps_setlinejoin|ps_setlinewidth|ps_setmiterlimit|ps_setoverprintmode|ps_setpolydash|ps_shading|ps_shading_pattern|ps_shfill|\\\nps_show|ps_show2|ps_show_boxed|ps_show_xy|ps_show_xy2|ps_string_geometry|ps_stringwidth|ps_stroke|ps_symbol|ps_symbol_name|\\\nps_symbol_width|ps_translate|pspell_add_to_personal|pspell_add_to_session|pspell_check|pspell_clear_session|pspell_config_create|\\\npspell_config_data_dir|pspell_config_dict_dir|pspell_config_ignore|pspell_config_mode|pspell_config_personal|pspell_config_repl|\\\npspell_config_runtogether|pspell_config_save_repl|pspell_new|pspell_new_config|pspell_new_personal|pspell_save_wordlist|\\\npspell_store_replacement|pspell_suggest|putenv|px_close|px_create_fp|px_date2string|px_delete|px_delete_record|px_get_field|px_get_info|\\\npx_get_parameter|px_get_record|px_get_schema|px_get_value|px_insert_record|px_new|px_numfields|px_numrecords|px_open_fp|px_put_record|\\\npx_retrieve_record|px_set_blob_file|px_set_parameter|px_set_tablename|px_set_targetencoding|px_set_value|px_timestamp2string|\\\npx_update_record|qdom_error|qdom_tree|quoted_printable_decode|quoted_printable_encode|quotemeta|rad2deg|radius_acct_open|\\\nradius_add_server|radius_auth_open|radius_close|radius_config|radius_create_request|radius_cvt_addr|radius_cvt_int|radius_cvt_string|\\\nradius_demangle|radius_demangle_mppe_key|radius_get_attr|radius_get_vendor_attr|radius_put_addr|radius_put_attr|radius_put_int|\\\nradius_put_string|radius_put_vendor_addr|radius_put_vendor_attr|radius_put_vendor_int|radius_put_vendor_string|\\\nradius_request_authenticator|radius_send_request|radius_server_secret|radius_strerror|rand|range|rangeexception|rar_wrapper_cache_stats|\\\nrararchive|rarentry|rarexception|rawurldecode|rawurlencode|read_exif_data|readdir|readfile|readgzfile|readline|readline_add_history|\\\nreadline_callback_handler_install|readline_callback_handler_remove|readline_callback_read_char|readline_clear_history|\\\nreadline_completion_function|readline_info|readline_list_history|readline_on_new_line|readline_read_history|readline_redisplay|\\\nreadline_write_history|readlink|realpath|realpath_cache_get|realpath_cache_size|recode|recode_file|recode_string|recursivearrayiterator|\\\nrecursivecachingiterator|recursivecallbackfilteriterator|recursivedirectoryiterator|recursivefilteriterator|recursiveiterator|\\\nrecursiveiteratoriterator|recursiveregexiterator|recursivetreeiterator|reflection|reflectionclass|reflectionexception|reflectionextension|\\\nreflectionfunction|reflectionfunctionabstract|reflectionmethod|reflectionobject|reflectionparameter|reflectionproperty|reflector|\\\nregexiterator|register_shutdown_function|register_tick_function|rename|rename_function|require|require_once|reset|resetValue|\\\nresourcebundle|restore_error_handler|restore_exception_handler|restore_include_path|return|rewind|rewinddir|rmdir|round|rpm_close|\\\nrpm_get_tag|rpm_is_valid|rpm_open|rpm_version|rrd_create|rrd_error|rrd_fetch|rrd_first|rrd_graph|rrd_info|rrd_last|rrd_lastupdate|\\\nrrd_restore|rrd_tune|rrd_update|rrd_xport|rrdcreator|rrdgraph|rrdupdater|rsort|rtrim|runkit_class_adopt|runkit_class_emancipate|\\\nrunkit_constant_add|runkit_constant_redefine|runkit_constant_remove|runkit_function_add|runkit_function_copy|runkit_function_redefine|\\\nrunkit_function_remove|runkit_function_rename|runkit_import|runkit_lint|runkit_lint_file|runkit_method_add|runkit_method_copy|\\\nrunkit_method_redefine|runkit_method_remove|runkit_method_rename|runkit_return_value_used|runkit_sandbox_output_handler|\\\nrunkit_superglobals|runtimeexception|samconnection_commit|samconnection_connect|samconnection_constructor|samconnection_disconnect|\\\nsamconnection_errno|samconnection_error|samconnection_isconnected|samconnection_peek|samconnection_peekall|samconnection_receive|\\\nsamconnection_remove|samconnection_rollback|samconnection_send|samconnection_setDebug|samconnection_subscribe|samconnection_unsubscribe|\\\nsammessage_body|sammessage_constructor|sammessage_header|sca_createdataobject|sca_getservice|sca_localproxy_createdataobject|\\\nsca_soapproxy_createdataobject|scandir|sdo_das_changesummary_beginlogging|sdo_das_changesummary_endlogging|\\\nsdo_das_changesummary_getchangeddataobjects|sdo_das_changesummary_getchangetype|sdo_das_changesummary_getoldcontainer|\\\nsdo_das_changesummary_getoldvalues|sdo_das_changesummary_islogging|sdo_das_datafactory_addpropertytotype|sdo_das_datafactory_addtype|\\\nsdo_das_datafactory_getdatafactory|sdo_das_dataobject_getchangesummary|sdo_das_relational_applychanges|sdo_das_relational_construct|\\\nsdo_das_relational_createrootdataobject|sdo_das_relational_executepreparedquery|sdo_das_relational_executequery|\\\nsdo_das_setting_getlistindex|sdo_das_setting_getpropertyindex|sdo_das_setting_getpropertyname|sdo_das_setting_getvalue|\\\nsdo_das_setting_isset|sdo_das_xml_addtypes|sdo_das_xml_create|sdo_das_xml_createdataobject|sdo_das_xml_createdocument|\\\nsdo_das_xml_document_getrootdataobject|sdo_das_xml_document_getrootelementname|sdo_das_xml_document_getrootelementuri|\\\nsdo_das_xml_document_setencoding|sdo_das_xml_document_setxmldeclaration|sdo_das_xml_document_setxmlversion|sdo_das_xml_loadfile|\\\nsdo_das_xml_loadstring|sdo_das_xml_savefile|sdo_das_xml_savestring|sdo_datafactory_create|sdo_dataobject_clear|\\\nsdo_dataobject_createdataobject|sdo_dataobject_getcontainer|sdo_dataobject_getsequence|sdo_dataobject_gettypename|\\\nsdo_dataobject_gettypenamespaceuri|sdo_exception_getcause|sdo_list_insert|sdo_model_property_getcontainingtype|\\\nsdo_model_property_getdefault|sdo_model_property_getname|sdo_model_property_gettype|sdo_model_property_iscontainment|\\\nsdo_model_property_ismany|sdo_model_reflectiondataobject_construct|sdo_model_reflectiondataobject_export|\\\nsdo_model_reflectiondataobject_getcontainmentproperty|sdo_model_reflectiondataobject_getinstanceproperties|\\\nsdo_model_reflectiondataobject_gettype|sdo_model_type_getbasetype|sdo_model_type_getname|sdo_model_type_getnamespaceuri|\\\nsdo_model_type_getproperties|sdo_model_type_getproperty|sdo_model_type_isabstracttype|sdo_model_type_isdatatype|sdo_model_type_isinstance|\\\nsdo_model_type_isopentype|sdo_model_type_issequencedtype|sdo_sequence_getproperty|sdo_sequence_insert|sdo_sequence_move|seekableiterator|\\\nsem_acquire|sem_get|sem_release|sem_remove|serializable|serialize|session_cache_expire|session_cache_limiter|session_commit|\\\nsession_decode|session_destroy|session_encode|session_get_cookie_params|session_id|session_is_registered|session_module_name|session_name|\\\nsession_pgsql_add_error|session_pgsql_get_error|session_pgsql_get_field|session_pgsql_reset|session_pgsql_set_field|session_pgsql_status|\\\nsession_regenerate_id|session_register|session_save_path|session_set_cookie_params|session_set_save_handler|session_start|\\\nsession_unregister|session_unset|session_write_close|setCounterClass|set_error_handler|set_exception_handler|set_file_buffer|\\\nset_include_path|set_magic_quotes_runtime|set_socket_blocking|set_time_limit|setcookie|setlocale|setproctitle|setrawcookie|\\\nsetstaticpropertyvalue|setthreadtitle|settype|sha1|sha1_file|shell_exec|shm_attach|shm_detach|shm_get_var|shm_has_var|shm_put_var|\\\nshm_remove|shm_remove_var|shmop_close|shmop_delete|shmop_open|shmop_read|shmop_size|shmop_write|show_source|shuffle|signeurlpaiement|\\\nsimilar_text|simplexml_import_dom|simplexml_load_file|simplexml_load_string|simplexmlelement|simplexmliterator|sin|sinh|sizeof|sleep|snmp|\\\nsnmp2_get|snmp2_getnext|snmp2_real_walk|snmp2_set|snmp2_walk|snmp3_get|snmp3_getnext|snmp3_real_walk|snmp3_set|snmp3_walk|\\\nsnmp_get_quick_print|snmp_get_valueretrieval|snmp_read_mib|snmp_set_enum_print|snmp_set_oid_numeric_print|snmp_set_oid_output_format|\\\nsnmp_set_quick_print|snmp_set_valueretrieval|snmpget|snmpgetnext|snmprealwalk|snmpset|snmpwalk|snmpwalkoid|soapclient|soapfault|\\\nsoapheader|soapparam|soapserver|soapvar|socket_accept|socket_bind|socket_clear_error|socket_close|socket_connect|socket_create|\\\nsocket_create_listen|socket_create_pair|socket_get_option|socket_get_status|socket_getpeername|socket_getsockname|socket_last_error|\\\nsocket_listen|socket_read|socket_recv|socket_recvfrom|socket_select|socket_send|socket_sendto|socket_set_block|socket_set_blocking|\\\nsocket_set_nonblock|socket_set_option|socket_set_timeout|socket_shutdown|socket_strerror|socket_write|solr_get_version|solrclient|\\\nsolrclientexception|solrdocument|solrdocumentfield|solrexception|solrgenericresponse|solrillegalargumentexception|\\\nsolrillegaloperationexception|solrinputdocument|solrmodifiableparams|solrobject|solrparams|solrpingresponse|solrquery|solrqueryresponse|\\\nsolrresponse|solrupdateresponse|solrutils|sort|soundex|sphinxclient|spl_autoload|spl_autoload_call|spl_autoload_extensions|\\\nspl_autoload_functions|spl_autoload_register|spl_autoload_unregister|spl_classes|spl_object_hash|splbool|spldoublylinkedlist|splenum|\\\nsplfileinfo|splfileobject|splfixedarray|splfloat|splheap|splint|split|spliti|splmaxheap|splminheap|splobjectstorage|splobserver|\\\nsplpriorityqueue|splqueue|splstack|splstring|splsubject|spltempfileobject|spoofchecker|sprintf|sql_regcase|sqlite3|sqlite3result|\\\nsqlite3stmt|sqlite_array_query|sqlite_busy_timeout|sqlite_changes|sqlite_close|sqlite_column|sqlite_create_aggregate|\\\nsqlite_create_function|sqlite_current|sqlite_error_string|sqlite_escape_string|sqlite_exec|sqlite_factory|sqlite_fetch_all|\\\nsqlite_fetch_array|sqlite_fetch_column_types|sqlite_fetch_object|sqlite_fetch_single|sqlite_fetch_string|sqlite_field_name|\\\nsqlite_has_more|sqlite_has_prev|sqlite_key|sqlite_last_error|sqlite_last_insert_rowid|sqlite_libencoding|sqlite_libversion|sqlite_next|\\\nsqlite_num_fields|sqlite_num_rows|sqlite_open|sqlite_popen|sqlite_prev|sqlite_query|sqlite_rewind|sqlite_seek|sqlite_single_query|\\\nsqlite_udf_decode_binary|sqlite_udf_encode_binary|sqlite_unbuffered_query|sqlite_valid|sqrt|srand|sscanf|ssdeep_fuzzy_compare|\\\nssdeep_fuzzy_hash|ssdeep_fuzzy_hash_filename|ssh2_auth_hostbased_file|ssh2_auth_none|ssh2_auth_password|ssh2_auth_pubkey_file|\\\nssh2_connect|ssh2_exec|ssh2_fetch_stream|ssh2_fingerprint|ssh2_methods_negotiated|ssh2_publickey_add|ssh2_publickey_init|\\\nssh2_publickey_list|ssh2_publickey_remove|ssh2_scp_recv|ssh2_scp_send|ssh2_sftp|ssh2_sftp_lstat|ssh2_sftp_mkdir|ssh2_sftp_readlink|\\\nssh2_sftp_realpath|ssh2_sftp_rename|ssh2_sftp_rmdir|ssh2_sftp_stat|ssh2_sftp_symlink|ssh2_sftp_unlink|ssh2_shell|ssh2_tunnel|stat|\\\nstats_absolute_deviation|stats_cdf_beta|stats_cdf_binomial|stats_cdf_cauchy|stats_cdf_chisquare|stats_cdf_exponential|stats_cdf_f|\\\nstats_cdf_gamma|stats_cdf_laplace|stats_cdf_logistic|stats_cdf_negative_binomial|stats_cdf_noncentral_chisquare|stats_cdf_noncentral_f|\\\nstats_cdf_poisson|stats_cdf_t|stats_cdf_uniform|stats_cdf_weibull|stats_covariance|stats_den_uniform|stats_dens_beta|stats_dens_cauchy|\\\nstats_dens_chisquare|stats_dens_exponential|stats_dens_f|stats_dens_gamma|stats_dens_laplace|stats_dens_logistic|\\\nstats_dens_negative_binomial|stats_dens_normal|stats_dens_pmf_binomial|stats_dens_pmf_hypergeometric|stats_dens_pmf_poisson|stats_dens_t|\\\nstats_dens_weibull|stats_harmonic_mean|stats_kurtosis|stats_rand_gen_beta|stats_rand_gen_chisquare|stats_rand_gen_exponential|\\\nstats_rand_gen_f|stats_rand_gen_funiform|stats_rand_gen_gamma|stats_rand_gen_ibinomial|stats_rand_gen_ibinomial_negative|\\\nstats_rand_gen_int|stats_rand_gen_ipoisson|stats_rand_gen_iuniform|stats_rand_gen_noncenral_chisquare|stats_rand_gen_noncentral_f|\\\nstats_rand_gen_noncentral_t|stats_rand_gen_normal|stats_rand_gen_t|stats_rand_get_seeds|stats_rand_phrase_to_seeds|stats_rand_ranf|\\\nstats_rand_setall|stats_skew|stats_standard_deviation|stats_stat_binomial_coef|stats_stat_correlation|stats_stat_gennch|\\\nstats_stat_independent_t|stats_stat_innerproduct|stats_stat_noncentral_t|stats_stat_paired_t|stats_stat_percentile|stats_stat_powersum|\\\nstats_variance|stomp|stomp_connect_error|stomp_version|stompexception|stompframe|str_getcsv|str_ireplace|str_pad|str_repeat|str_replace|\\\nstr_rot13|str_shuffle|str_split|str_word_count|strcasecmp|strchr|strcmp|strcoll|strcspn|stream_bucket_append|stream_bucket_make_writeable|\\\nstream_bucket_new|stream_bucket_prepend|stream_context_create|stream_context_get_default|stream_context_get_options|\\\nstream_context_get_params|stream_context_set_default|stream_context_set_option|stream_context_set_params|stream_copy_to_stream|\\\nstream_encoding|stream_filter_append|stream_filter_prepend|stream_filter_register|stream_filter_remove|stream_get_contents|\\\nstream_get_filters|stream_get_line|stream_get_meta_data|stream_get_transports|stream_get_wrappers|stream_is_local|\\\nstream_notification_callback|stream_register_wrapper|stream_resolve_include_path|stream_select|stream_set_blocking|stream_set_read_buffer|\\\nstream_set_timeout|stream_set_write_buffer|stream_socket_accept|stream_socket_client|stream_socket_enable_crypto|stream_socket_get_name|\\\nstream_socket_pair|stream_socket_recvfrom|stream_socket_sendto|stream_socket_server|stream_socket_shutdown|stream_supports_lock|\\\nstream_wrapper_register|stream_wrapper_restore|stream_wrapper_unregister|streamwrapper|strftime|strip_tags|stripcslashes|stripos|\\\nstripslashes|stristr|strlen|strnatcasecmp|strnatcmp|strncasecmp|strncmp|strpbrk|strpos|strptime|strrchr|strrev|strripos|strrpos|strspn|\\\nstrstr|strtok|strtolower|strtotime|strtoupper|strtr|strval|substr|substr_compare|substr_count|substr_replace|svm|svmmodel|svn_add|\\\nsvn_auth_get_parameter|svn_auth_set_parameter|svn_blame|svn_cat|svn_checkout|svn_cleanup|svn_client_version|svn_commit|svn_delete|\\\nsvn_diff|svn_export|svn_fs_abort_txn|svn_fs_apply_text|svn_fs_begin_txn2|svn_fs_change_node_prop|svn_fs_check_path|\\\nsvn_fs_contents_changed|svn_fs_copy|svn_fs_delete|svn_fs_dir_entries|svn_fs_file_contents|svn_fs_file_length|svn_fs_is_dir|svn_fs_is_file|\\\nsvn_fs_make_dir|svn_fs_make_file|svn_fs_node_created_rev|svn_fs_node_prop|svn_fs_props_changed|svn_fs_revision_prop|svn_fs_revision_root|\\\nsvn_fs_txn_root|svn_fs_youngest_rev|svn_import|svn_log|svn_ls|svn_mkdir|svn_repos_create|svn_repos_fs|svn_repos_fs_begin_txn_for_commit|\\\nsvn_repos_fs_commit_txn|svn_repos_hotcopy|svn_repos_open|svn_repos_recover|svn_revert|svn_status|svn_update|swf_actiongeturl|\\\nswf_actiongotoframe|swf_actiongotolabel|swf_actionnextframe|swf_actionplay|swf_actionprevframe|swf_actionsettarget|swf_actionstop|\\\nswf_actiontogglequality|swf_actionwaitforframe|swf_addbuttonrecord|swf_addcolor|swf_closefile|swf_definebitmap|swf_definefont|\\\nswf_defineline|swf_definepoly|swf_definerect|swf_definetext|swf_endbutton|swf_enddoaction|swf_endshape|swf_endsymbol|swf_fontsize|\\\nswf_fontslant|swf_fonttracking|swf_getbitmapinfo|swf_getfontinfo|swf_getframe|swf_labelframe|swf_lookat|swf_modifyobject|swf_mulcolor|\\\nswf_nextid|swf_oncondition|swf_openfile|swf_ortho|swf_ortho2|swf_perspective|swf_placeobject|swf_polarview|swf_popmatrix|swf_posround|\\\nswf_pushmatrix|swf_removeobject|swf_rotate|swf_scale|swf_setfont|swf_setframe|swf_shapearc|swf_shapecurveto|swf_shapecurveto3|\\\nswf_shapefillbitmapclip|swf_shapefillbitmaptile|swf_shapefilloff|swf_shapefillsolid|swf_shapelinesolid|swf_shapelineto|swf_shapemoveto|\\\nswf_showframe|swf_startbutton|swf_startdoaction|swf_startshape|swf_startsymbol|swf_textwidth|swf_translate|swf_viewport|swfaction|\\\nswfbitmap|swfbutton|swfdisplayitem|swffill|swffont|swffontchar|swfgradient|swfmorph|swfmovie|swfprebuiltclip|swfshape|swfsound|\\\nswfsoundinstance|swfsprite|swftext|swftextfield|swfvideostream|swish_construct|swish_getmetalist|swish_getpropertylist|swish_prepare|\\\nswish_query|swishresult_getmetalist|swishresult_stem|swishresults_getparsedwords|swishresults_getremovedstopwords|swishresults_nextresult|\\\nswishresults_seekresult|swishsearch_execute|swishsearch_resetlimit|swishsearch_setlimit|swishsearch_setphrasedelimiter|\\\nswishsearch_setsort|swishsearch_setstructure|sybase_affected_rows|sybase_close|sybase_connect|sybase_data_seek|\\\nsybase_deadlock_retry_count|sybase_fetch_array|sybase_fetch_assoc|sybase_fetch_field|sybase_fetch_object|sybase_fetch_row|\\\nsybase_field_seek|sybase_free_result|sybase_get_last_message|sybase_min_client_severity|sybase_min_error_severity|\\\nsybase_min_message_severity|sybase_min_server_severity|sybase_num_fields|sybase_num_rows|sybase_pconnect|sybase_query|sybase_result|\\\nsybase_select_db|sybase_set_message_handler|sybase_unbuffered_query|symlink|sys_get_temp_dir|sys_getloadavg|syslog|system|tag|tan|tanh|\\\ntcpwrap_check|tempnam|textdomain|tidy|tidy_access_count|tidy_config_count|tidy_diagnose|tidy_error_count|tidy_get_error_buffer|\\\ntidy_get_output|tidy_load_config|tidy_reset_config|tidy_save_config|tidy_set_encoding|tidy_setopt|tidy_warning_count|tidynode|time|\\\ntime_nanosleep|time_sleep_until|timezone_abbreviations_list|timezone_identifiers_list|timezone_location_get|timezone_name_from_abbr|\\\ntimezone_name_get|timezone_offset_get|timezone_open|timezone_transitions_get|timezone_version_get|tmpfile|token_get_all|token_name|\\\ntokyotyrant|tokyotyrantquery|tokyotyranttable|tostring|tostring|touch|trait_exists|transliterator|traversable|trigger_error|trim|uasort|ucfirst|\\\nucwords|udm_add_search_limit|udm_alloc_agent|udm_alloc_agent_array|udm_api_version|udm_cat_list|udm_cat_path|udm_check_charset|\\\nudm_check_stored|udm_clear_search_limits|udm_close_stored|udm_crc32|udm_errno|udm_error|udm_find|udm_free_agent|udm_free_ispell_data|\\\nudm_free_res|udm_get_doc_count|udm_get_res_field|udm_get_res_param|udm_hash32|udm_load_ispell_data|udm_open_stored|udm_set_agent_param|\\\nuksort|umask|underflowexception|unexpectedvalueexception|uniqid|unixtojd|unlink|unpack|unregister_tick_function|unserialize|unset|\\\nurldecode|urlencode|use_soap_error_handler|user_error|usleep|usort|utf8_decode|utf8_encode|v8js|v8jsexception|var_dump|var_export|variant|\\\nvariant_abs|variant_add|variant_and|variant_cast|variant_cat|variant_cmp|variant_date_from_timestamp|variant_date_to_timestamp|\\\nvariant_div|variant_eqv|variant_fix|variant_get_type|variant_idiv|variant_imp|variant_int|variant_mod|variant_mul|variant_neg|variant_not|\\\nvariant_or|variant_pow|variant_round|variant_set|variant_set_type|variant_sub|variant_xor|version_compare|vfprintf|virtual|\\\nvpopmail_add_alias_domain|vpopmail_add_alias_domain_ex|vpopmail_add_domain|vpopmail_add_domain_ex|vpopmail_add_user|vpopmail_alias_add|\\\nvpopmail_alias_del|vpopmail_alias_del_domain|vpopmail_alias_get|vpopmail_alias_get_all|vpopmail_auth_user|vpopmail_del_domain|\\\nvpopmail_del_domain_ex|vpopmail_del_user|vpopmail_error|vpopmail_passwd|vpopmail_set_user_quota|vprintf|vsprintf|w32api_deftype|\\\nw32api_init_dtype|w32api_invoke_function|w32api_register_function|w32api_set_call_method|wddx_add_vars|wddx_deserialize|wddx_packet_end|\\\nwddx_packet_start|wddx_serialize_value|wddx_serialize_vars|win32_continue_service|win32_create_service|win32_delete_service|\\\nwin32_get_last_control_message|win32_pause_service|win32_ps_list_procs|win32_ps_stat_mem|win32_ps_stat_proc|win32_query_service_status|\\\nwin32_set_service_status|win32_start_service|win32_start_service_ctrl_dispatcher|win32_stop_service|wincache_fcache_fileinfo|\\\nwincache_fcache_meminfo|wincache_lock|wincache_ocache_fileinfo|wincache_ocache_meminfo|wincache_refresh_if_changed|\\\nwincache_rplist_fileinfo|wincache_rplist_meminfo|wincache_scache_info|wincache_scache_meminfo|wincache_ucache_add|wincache_ucache_cas|\\\nwincache_ucache_clear|wincache_ucache_dec|wincache_ucache_delete|wincache_ucache_exists|wincache_ucache_get|wincache_ucache_inc|\\\nwincache_ucache_info|wincache_ucache_meminfo|wincache_ucache_set|wincache_unlock|wordwrap|xattr_get|xattr_list|xattr_remove|xattr_set|\\\nxattr_supported|xdiff_file_bdiff|xdiff_file_bdiff_size|xdiff_file_bpatch|xdiff_file_diff|xdiff_file_diff_binary|xdiff_file_merge3|\\\nxdiff_file_patch|xdiff_file_patch_binary|xdiff_file_rabdiff|xdiff_string_bdiff|xdiff_string_bdiff_size|xdiff_string_bpatch|\\\nxdiff_string_diff|xdiff_string_diff_binary|xdiff_string_merge3|xdiff_string_patch|xdiff_string_patch_binary|xdiff_string_rabdiff|\\\nxhprof_disable|xhprof_enable|xhprof_sample_disable|xhprof_sample_enable|xml_error_string|xml_get_current_byte_index|\\\nxml_get_current_column_number|xml_get_current_line_number|xml_get_error_code|xml_parse|xml_parse_into_struct|xml_parser_create|\\\nxml_parser_create_ns|xml_parser_free|xml_parser_get_option|xml_parser_set_option|xml_set_character_data_handler|xml_set_default_handler|\\\nxml_set_element_handler|xml_set_end_namespace_decl_handler|xml_set_external_entity_ref_handler|xml_set_notation_decl_handler|\\\nxml_set_object|xml_set_processing_instruction_handler|xml_set_start_namespace_decl_handler|xml_set_unparsed_entity_decl_handler|xmlreader|\\\nxmlrpc_decode|xmlrpc_decode_request|xmlrpc_encode|xmlrpc_encode_request|xmlrpc_get_type|xmlrpc_is_fault|xmlrpc_parse_method_descriptions|\\\nxmlrpc_server_add_introspection_data|xmlrpc_server_call_method|xmlrpc_server_create|xmlrpc_server_destroy|\\\nxmlrpc_server_register_introspection_callback|xmlrpc_server_register_method|xmlrpc_set_type|xmlwriter_end_attribute|xmlwriter_end_cdata|\\\nxmlwriter_end_comment|xmlwriter_end_document|xmlwriter_end_dtd|xmlwriter_end_dtd_attlist|xmlwriter_end_dtd_element|\\\nxmlwriter_end_dtd_entity|xmlwriter_end_element|xmlwriter_end_pi|xmlwriter_flush|xmlwriter_full_end_element|xmlwriter_open_memory|\\\nxmlwriter_open_uri|xmlwriter_output_memory|xmlwriter_set_indent|xmlwriter_set_indent_string|xmlwriter_start_attribute|\\\nxmlwriter_start_attribute_ns|xmlwriter_start_cdata|xmlwriter_start_comment|xmlwriter_start_document|xmlwriter_start_dtd|\\\nxmlwriter_start_dtd_attlist|xmlwriter_start_dtd_element|xmlwriter_start_dtd_entity|xmlwriter_start_element|xmlwriter_start_element_ns|\\\nxmlwriter_start_pi|xmlwriter_text|xmlwriter_write_attribute|xmlwriter_write_attribute_ns|xmlwriter_write_cdata|xmlwriter_write_comment|\\\nxmlwriter_write_dtd|xmlwriter_write_dtd_attlist|xmlwriter_write_dtd_element|xmlwriter_write_dtd_entity|xmlwriter_write_element|\\\nxmlwriter_write_element_ns|xmlwriter_write_pi|xmlwriter_write_raw|xpath_eval|xpath_eval_expression|xpath_new_context|xpath_register_ns|\\\nxpath_register_ns_auto|xptr_eval|xptr_new_context|xslt_backend_info|xslt_backend_name|xslt_backend_version|xslt_create|xslt_errno|\\\nxslt_error|xslt_free|xslt_getopt|xslt_process|xslt_set_base|xslt_set_encoding|xslt_set_error_handler|xslt_set_log|xslt_set_object|\\\nxslt_set_sax_handler|xslt_set_sax_handlers|xslt_set_scheme_handler|xslt_set_scheme_handlers|xslt_setopt|xsltprocessor|yaml_emit|\\\nyaml_emit_file|yaml_parse|yaml_parse_file|yaml_parse_url|yaz_addinfo|yaz_ccl_conf|yaz_ccl_parse|yaz_close|yaz_connect|yaz_database|\\\nyaz_element|yaz_errno|yaz_error|yaz_es|yaz_es_result|yaz_get_option|yaz_hits|yaz_itemorder|yaz_present|yaz_range|yaz_record|yaz_scan|\\\nyaz_scan_result|yaz_schema|yaz_search|yaz_set_option|yaz_sort|yaz_syntax|yaz_wait|yp_all|yp_cat|yp_err_string|yp_errno|yp_first|\\\nyp_get_default_domain|yp_master|yp_match|yp_next|yp_order|zend_logo_guid|zend_thread_id|zend_version|zip_close|zip_entry_close|\\\nzip_entry_compressedsize|zip_entry_compressionmethod|zip_entry_filesize|zip_entry_name|zip_entry_open|zip_entry_read|zip_open|zip_read|\\\nziparchive|ziparchive_addemptydir|ziparchive_addfile|ziparchive_addfromstring|ziparchive_close|ziparchive_deleteindex|\\\nziparchive_deletename|ziparchive_extractto|ziparchive_getarchivecomment|ziparchive_getcommentindex|ziparchive_getcommentname|\\\nziparchive_getfromindex|ziparchive_getfromname|ziparchive_getnameindex|ziparchive_getstatusstring|ziparchive_getstream|\\\nziparchive_locatename|ziparchive_open|ziparchive_renameindex|ziparchive_renamename|ziparchive_setCommentName|ziparchive_setarchivecomment|\\\nziparchive_setcommentindex|ziparchive_statindex|ziparchive_statname|ziparchive_unchangeall|ziparchive_unchangearchive|\\\nziparchive_unchangeindex|ziparchive_unchangename|zlib_get_coding_type'.split('|')\n );\n var keywords = lang.arrayToMap(\n'abstract|and|array|as|break|callable|case|catch|class|clone|const|continue|declare|default|do|else|elseif|enddeclare|endfor|endforeach|\\\nendif|endswitch|endwhile|extends|final|finally|for|foreach|function|global|goto|if|implements|instanceof|insteadof|interface|namespace|new|or|private|protected|\\\npublic|static|switch|throw|trait|try|use|var|while|xor|yield'.split('|')\n );\n var languageConstructs = lang.arrayToMap(\n ('__halt_compiler|die|echo|empty|exit|eval|include|include_once|isset|list|require|require_once|return|print|unset').split('|')\n );\n\n var builtinConstants = lang.arrayToMap(\n ('true|TRUE|false|FALSE|null|NULL|__CLASS__|__DIR__|__FILE__|__LINE__|__METHOD__|__FUNCTION__|__NAMESPACE__|__TRAIT__').split('|')\n );\n\n var builtinVariables = lang.arrayToMap(\n'$GLOBALS|$_SERVER|$_GET|$_POST|$_FILES|$_REQUEST|$_SESSION|$_ENV|$_COOKIE|$php_errormsg|$HTTP_RAW_POST_DATA|\\\n$http_response_header|$argc|$argv'.split('|')\n );\n var builtinFunctionsDeprecated = lang.arrayToMap(\n'key_exists|cairo_matrix_create_scale|cairo_matrix_create_translate|call_user_method|call_user_method_array|com_addref|com_get|\\\ncom_invoke|com_isenum|com_load|com_release|com_set|connection_timeout|cubrid_load_from_glo|cubrid_new_glo|cubrid_save_to_glo|\\\ncubrid_send_glo|define_syslog_variables|dl|ereg|ereg_replace|eregi|eregi_replace|hw_documentattributes|hw_documentbodytag|\\\nhw_documentsize|hw_outputdocument|imagedashedline|maxdb_bind_param|maxdb_bind_result|maxdb_client_encoding|maxdb_close_long_data|\\\nmaxdb_execute|maxdb_fetch|maxdb_get_metadata|maxdb_param_count|maxdb_send_long_data|mcrypt_ecb|mcrypt_generic_end|mime_content_type|\\\nmysql_createdb|mysql_dbname|mysql_db_query|mysql_drop_db|mysql_dropdb|mysql_escape_string|mysql_fieldflags|mysql_fieldflags|\\\nmysql_fieldname|mysql_fieldtable|mysql_fieldtype|mysql_freeresult|mysql_listdbs|mysql_list_fields|mysql_listfields|mysql_list_tables|\\\nmysql_listtables|mysql_numfields|mysql_numrows|mysql_selectdb|mysql_tablename|mysqli_bind_param|mysqli_bind_result|\\\nmysqli_disable_reads_from_master|mysqli_disable_rpl_parse|mysqli_enable_reads_from_master|mysqli_enable_rpl_parse|mysqli_execute|\\\nmysqli_fetch|mysqli_get_metadata|mysqli_master_query|mysqli_param_count|mysqli_rpl_parse_enabled|mysqli_rpl_probe|mysqli_rpl_query_type|\\\nmysqli_send_long_data|mysqli_send_query|mysqli_slave_query|ocibindbyname|ocicancel|ocicloselob|ocicollappend|ocicollassign|\\\nocicollassignelem|ocicollgetelem|ocicollmax|ocicollsize|ocicolltrim|ocicolumnisnull|ocicolumnname|ocicolumnprecision|ocicolumnscale|\\\nocicolumnsize|ocicolumntype|ocicolumntyperaw|ocicommit|ocidefinebyname|ocierror|ociexecute|ocifetch|ocifetchinto|ocifetchstatement|\\\nocifreecollection|ocifreecursor|ocifreedesc|ocifreestatement|ociinternaldebug|ociloadlob|ocilogoff|ocilogon|ocinewcollection|\\\nocinewcursor|ocinewdescriptor|ocinlogon|ocinumcols|ociparse|ociplogon|ociresult|ocirollback|ocirowcount|ocisavelob|ocisavelobfile|\\\nociserverversion|ocisetprefetch|ocistatementtype|ociwritelobtofile|ociwritetemporarylob|PDF_add_annotation|PDF_add_bookmark|\\\nPDF_add_launchlink|PDF_add_locallink|PDF_add_note|PDF_add_outline|PDF_add_pdflink|PDF_add_weblink|PDF_attach_file|PDF_begin_page|\\\nPDF_begin_template|PDF_close_pdi|PDF_close|PDF_findfont|PDF_get_font|PDF_get_fontname|PDF_get_fontsize|PDF_get_image_height|\\\nPDF_get_image_width|PDF_get_majorversion|PDF_get_minorversion|PDF_get_pdi_parameter|PDF_get_pdi_value|PDF_open_ccitt|PDF_open_file|\\\nPDF_open_gif|PDF_open_image_file|PDF_open_image|PDF_open_jpeg|PDF_open_pdi|PDF_open_tiff|PDF_place_image|PDF_place_pdi_page|\\\nPDF_set_border_color|PDF_set_border_dash|PDF_set_border_style|PDF_set_char_spacing|PDF_set_duration|PDF_set_horiz_scaling|\\\nPDF_set_info_author|PDF_set_info_creator|PDF_set_info_keywords|PDF_set_info_subject|PDF_set_info_title|PDF_set_leading|\\\nPDF_set_text_matrix|PDF_set_text_rendering|PDF_set_text_rise|PDF_set_word_spacing|PDF_setgray_fill|PDF_setgray_stroke|PDF_setgray|\\\nPDF_setpolydash|PDF_setrgbcolor_fill|PDF_setrgbcolor_stroke|PDF_setrgbcolor|PDF_show_boxed|php_check_syntax|px_set_tablename|\\\npx_set_targetencoding|runkit_sandbox_output_handler|session_is_registered|session_register|session_unregister\\\nset_magic_quotes_runtime|magic_quotes_runtime|set_socket_blocking|socket_set_blocking|set_socket_timeout|socket_set_timeout|split|spliti|\\\nsql_regcase'.split('|')\n );\n\n var keywordsDeprecated = lang.arrayToMap(\n ('cfunction|old_function').split('|')\n );\n\n var futureReserved = lang.arrayToMap([]);\n\n this.$rules = {\n \"start\" : [\n {\n token : \"comment\",\n regex : /(?:#|\\/\\/)(?:[^?]|\\?[^>])*/\n },\n docComment.getStartRule(\"doc-start\"),\n {\n token : \"comment\", // multi line comment\n regex : \"\\\\/\\\\*\",\n next : \"comment\"\n }, {\n token : \"string.regexp\",\n regex : \"[/](?:(?:\\\\[(?:\\\\\\\\]|[^\\\\]])+\\\\])|(?:\\\\\\\\/|[^\\\\]/]))*[/][gimy]*\\\\s*(?=[).,;]|$)\"\n }, {\n token : \"string\", // \" string start\n regex : '\"',\n next : \"qqstring\"\n }, {\n token : \"string\", // ' string start\n regex : \"'\",\n next : \"qstring\"\n }, {\n token : \"constant.numeric\", // hex\n regex : \"0[xX][0-9a-fA-F]+\\\\b\"\n }, {\n token : \"constant.numeric\", // float\n regex : \"[+-]?\\\\d+(?:(?:\\\\.\\\\d*)?(?:[eE][+-]?\\\\d+)?)?\\\\b\"\n }, {\n token : \"constant.language\", // constants\n regex : \"\\\\b(?:DEFAULT_INCLUDE_PATH|E_(?:ALL|CO(?:MPILE_(?:ERROR|WARNING)|RE_(?:ERROR|WARNING))|\" +\n \"ERROR|NOTICE|PARSE|STRICT|USER_(?:ERROR|NOTICE|WARNING)|WARNING)|P(?:EAR_(?:EXTENSION_DIR|INSTALL_DIR)|\" +\n \"HP_(?:BINDIR|CONFIG_FILE_(?:PATH|SCAN_DIR)|DATADIR|E(?:OL|XTENSION_DIR)|INT_(?:MAX|SIZE)|\" +\n \"L(?:IBDIR|OCALSTATEDIR)|O(?:S|UTPUT_HANDLER_(?:CONT|END|START))|PREFIX|S(?:API|HLIB_SUFFIX|YSCONFDIR)|\" +\n \"VERSION))|__COMPILER_HALT_OFFSET__)\\\\b\"\n }, {\n token : [\"keyword\", \"text\", \"support.class\"],\n regex : \"\\\\b(new)(\\\\s+)(\\\\w+)\"\n }, {\n token : [\"support.class\", \"keyword.operator\"],\n regex : \"\\\\b(\\\\w+)(::)\"\n }, {\n token : \"constant.language\", // constants\n regex : \"\\\\b(?:A(?:B(?:DAY_(?:1|2|3|4|5|6|7)|MON_(?:1(?:0|1|2|)|2|3|4|5|6|7|8|9))|LT_DIGITS|M_STR|\" +\n \"SSERT_(?:ACTIVE|BAIL|CALLBACK|QUIET_EVAL|WARNING))|C(?:ASE_(?:LOWER|UPPER)|HAR_MAX|\" +\n \"O(?:DESET|NNECTION_(?:ABORTED|NORMAL|TIMEOUT)|UNT_(?:NORMAL|RECURSIVE))|\" +\n \"R(?:EDITS_(?:ALL|DOCS|FULLPAGE|G(?:ENERAL|ROUP)|MODULES|QA|SAPI)|NCYSTR|\" +\n \"YPT_(?:BLOWFISH|EXT_DES|MD5|S(?:ALT_LENGTH|TD_DES)))|URRENCY_SYMBOL)|D(?:AY_(?:1|2|3|4|5|6|7)|\" +\n \"ECIMAL_POINT|IRECTORY_SEPARATOR|_(?:FMT|T_FMT))|E(?:NT_(?:COMPAT|NOQUOTES|QUOTES)|RA(?:_(?:D_(?:FMT|T_FMT)|\" +\n \"T_FMT|YEAR)|)|XTR_(?:IF_EXISTS|OVERWRITE|PREFIX_(?:ALL|I(?:F_EXISTS|NVALID)|SAME)|SKIP))|FRAC_DIGITS|GROUPING|\" +\n \"HTML_(?:ENTITIES|SPECIALCHARS)|IN(?:FO_(?:ALL|C(?:ONFIGURATION|REDITS)|ENVIRONMENT|GENERAL|LICENSE|MODULES|VARIABLES)|\" +\n \"I_(?:ALL|PERDIR|SYSTEM|USER)|T_(?:CURR_SYMBOL|FRAC_DIGITS))|L(?:C_(?:ALL|C(?:OLLATE|TYPE)|M(?:ESSAGES|ONETARY)|NUMERIC|TIME)|\" +\n \"O(?:CK_(?:EX|NB|SH|UN)|G_(?:A(?:LERT|UTH(?:PRIV|))|C(?:ONS|R(?:IT|ON))|D(?:AEMON|EBUG)|E(?:MERG|RR)|INFO|KERN|\" +\n \"L(?:OCAL(?:0|1|2|3|4|5|6|7)|PR)|MAIL|N(?:DELAY|EWS|O(?:TICE|WAIT))|ODELAY|P(?:ERROR|ID)|SYSLOG|U(?:SER|UCP)|WARNING)))|\" +\n \"M(?:ON_(?:1(?:0|1|2|)|2|3|4|5|6|7|8|9|DECIMAL_POINT|GROUPING|THOUSANDS_SEP)|_(?:1_PI|2_(?:PI|SQRTPI)|E|L(?:N(?:10|2)|\" +\n \"OG(?:10E|2E))|PI(?:_(?:2|4)|)|SQRT(?:1_2|2)))|N(?:EGATIVE_SIGN|O(?:EXPR|STR)|_(?:CS_PRECEDES|S(?:EP_BY_SPACE|IGN_POSN)))|\" +\n \"P(?:ATH(?:INFO_(?:BASENAME|DIRNAME|EXTENSION)|_SEPARATOR)|M_STR|OSITIVE_SIGN|_(?:CS_PRECEDES|S(?:EP_BY_SPACE|IGN_POSN)))|\" +\n \"RADIXCHAR|S(?:EEK_(?:CUR|END|SET)|ORT_(?:ASC|DESC|NUMERIC|REGULAR|STRING)|TR_PAD_(?:BOTH|LEFT|RIGHT))|\" +\n \"T(?:HOUS(?:ANDS_SEP|EP)|_FMT(?:_AMPM|))|YES(?:EXPR|STR)|STD(?:IN|OUT|ERR))\\\\b\"\n }, {\n token : function(value) {\n if (keywords.hasOwnProperty(value))\n return \"keyword\";\n else if (builtinConstants.hasOwnProperty(value))\n return \"constant.language\";\n else if (builtinVariables.hasOwnProperty(value))\n return \"variable.language\";\n else if (futureReserved.hasOwnProperty(value))\n return \"invalid.illegal\";\n else if (builtinFunctions.hasOwnProperty(value))\n return \"support.function\";\n else if (value == \"debugger\")\n return \"invalid.deprecated\";\n else\n if(value.match(/^(\\$[a-zA-Z_\\x7f-\\uffff][a-zA-Z0-9_\\x7f-\\uffff]*|self|parent)$/))\n return \"variable\";\n return \"identifier\";\n },\n regex : /[a-zA-Z_$\\x7f-\\uffff][a-zA-Z0-9_\\x7f-\\uffff]*/\n }, {\n onMatch : function(value, currentSate, state) {\n value = value.substr(3);\n if (value[0] == \"'\" || value[0] == '\"')\n value = value.slice(1, -1);\n state.unshift(this.next, value);\n return \"markup.list\";\n },\n regex : /<<<(?:\\w+|'\\w+'|\"\\w+\")$/,\n next: \"heredoc\"\n }, {\n token : \"keyword.operator\",\n regex : \"::|!|\\\\$|%|&|\\\\*|\\\\-\\\\-|\\\\-|\\\\+\\\\+|\\\\+|~|===|==|!=|!==|<=|>=|=>|<<=|>>=|>>>=|<>|<|>|\\\\.=|=|!|&&|\\\\|\\\\||\\\\?\\\\:|\\\\*=|/=|%=|\\\\+=|\\\\-=|&=|\\\\^=|\\\\b(?:in|instanceof|new|delete|typeof|void)\"\n }, {\n token : \"punctuation.operator\",\n regex : /[,;]/\n }, {\n token : \"paren.lparen\",\n regex : \"[[({]\"\n }, {\n token : \"paren.rparen\",\n regex : \"[\\\\])}]\"\n }, {\n token : \"text\",\n regex : \"\\\\s+\"\n }\n ],\n \"heredoc\" : [\n {\n onMatch : function(value, currentSate, stack) {\n if (stack[1] != value)\n return \"string\";\n stack.shift();\n stack.shift();\n return \"markup.list\";\n },\n regex : \"^\\\\w+(?=;?$)\",\n next: \"start\"\n }, {\n token: \"string\",\n regex : \".*\"\n }\n ],\n \"comment\" : [\n {\n token : \"comment\",\n regex : \"\\\\*\\\\/\",\n next : \"start\"\n }, {\n defaultToken : \"comment\"\n }\n ],\n \"qqstring\" : [\n {\n token : \"constant.language.escape\",\n regex : '\\\\\\\\(?:[nrtvef\\\\\\\\\"$]|[0-7]{1,3}|x[0-9A-Fa-f]{1,2})'\n }, {\n token : \"variable\",\n regex : /\\$[\\w]+(?:\\[[\\w\\]+]|[=\\-]>\\w+)?/\n }, {\n token : \"variable\",\n regex : /\\$\\{[^\"\\}]+\\}?/ // this is wrong but ok for now\n },\n {token : \"string\", regex : '\"', next : \"start\"},\n {defaultToken : \"string\"}\n ],\n \"qstring\" : [\n {token : \"constant.language.escape\", regex : /\\\\['\\\\]/},\n {token : \"string\", regex : \"'\", next : \"start\"},\n {defaultToken : \"string\"}\n ]\n };\n\n this.embedRules(DocCommentHighlightRules, \"doc-\",\n [ DocCommentHighlightRules.getEndRule(\"start\") ]);\n};\n\noop.inherits(PhpLangHighlightRules, TextHighlightRules);\n\n\nvar PhpHighlightRules = function() {\n HtmlHighlightRules.call(this);\n\n var startRules = [\n {\n token : \"support.php_tag\", // php open tag\n regex : \"<\\\\?(?:php|=)?\",\n push : \"php-start\"\n }\n ];\n\n var endRules = [\n {\n token : \"support.php_tag\", // php close tag\n regex : \"\\\\?>\",\n next : \"pop\"\n }\n ];\n\n for (var key in this.$rules)\n this.$rules[key].unshift.apply(this.$rules[key], startRules);\n\n this.embedRules(PhpLangHighlightRules, \"php-\", endRules, [\"start\"]);\n\n this.normalizeRules();\n};\n\noop.inherits(PhpHighlightRules, HtmlHighlightRules);\n\nexports.PhpHighlightRules = PhpHighlightRules;\nexports.PhpLangHighlightRules = PhpLangHighlightRules;\n});\n\nace.define(\"ace/mode/php_laravel_blade_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/php_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar PhpHighlightRules = require(\"./php_highlight_rules\").PhpHighlightRules;\n\nvar PHPLaravelBladeHighlightRules = function() {\n PhpHighlightRules.call(this);\n\n var bladeRules = {\n start: [{\n include: \"comments\"\n }, {\n include: \"directives\"\n }, {\n include: \"parenthesis\"\n }],\n comments: [{\n token: \"punctuation.definition.comment.blade\",\n regex: \"(\\\\/\\\\/(.)*)|(\\\\#(.)*)\",\n next: \"pop\"\n }, {\n token: \"punctuation.definition.comment.begin.php\",\n regex: \"(?:\\\\/\\\\*)\",\n push: [{\n token: \"punctuation.definition.comment.end.php\",\n regex: \"(?:\\\\*\\\\/)\",\n next: \"pop\"\n }, {\n defaultToken: \"comment.block.blade\"\n }]\n }, {\n token: \"punctuation.definition.comment.begin.blade\",\n regex: \"(?:\\\\{\\\\{\\\\-\\\\-)\",\n push: [{\n token: \"punctuation.definition.comment.end.blade\",\n regex: \"(?:\\\\-\\\\-\\\\}\\\\})\",\n next: \"pop\"\n }, {\n defaultToken: \"comment.block.blade\"\n }]\n }],\n parenthesis: [{\n token: \"parenthesis.begin.blade\",\n regex: \"\\\\(\",\n push: [{\n token: \"parenthesis.end.blade\",\n regex: \"\\\\)\",\n next: \"pop\"\n }, {\n include: \"strings\"\n }, {\n include: \"variables\"\n }, {\n include: \"lang\"\n }, {\n include: \"parenthesis\"\n }, {\n defaultToken: \"source.blade\"\n }]\n }],\n directives: [{\n token: [\"directive.declaration.blade\", \"keyword.directives.blade\"],\n regex: \"(@)(endunless|endisset|endempty|endauth|endguest|endcomponent|endslot|endalert|endverbatim|endsection|show|php|endphp|endpush|endprepend|endenv|endforelse|isset|empty|component|slot|alert|json|verbatim|section|auth|guest|hasSection|forelse|includeIf|includeWhen|includeFirst|each|push|stack|prepend|inject|env|elseenv|unless|yield|extends|parent|include|acfrepeater|block|can|cannot|choice|debug|elsecan|elsecannot|embed|hipchat|lang|layout|macro|macrodef|minify|partial|render|servers|set|slack|story|task|unset|wpposts|acfend|after|append|breakpoint|endafter|endcan|endcannot|endembed|endmacro|endmarkdown|endminify|endpartial|endsetup|endstory|endtask|endunless|markdown|overwrite|setup|stop|wpempty|wpend|wpquery)\"\n\n }, {\n token: [\"directive.declaration.blade\", \"keyword.control.blade\"],\n regex: \"(@)(if|else|elseif|endif|foreach|endforeach|switch|case|break|default|endswitch|for|endfor|while|endwhile|continue)\"\n }, {\n token: [\"directive.ignore.blade\", \"injections.begin.blade\"],\n regex: \"(@?)(\\\\{\\\\{)\",\n push: [{\n token: \"injections.end.blade\",\n regex: \"\\\\}\\\\}\",\n next: \"pop\"\n }, {\n include: \"strings\"\n }, {\n include: \"variables\"\n }, {\n defaultToken: \"source.blade\"\n }]\n }, {\n token: \"injections.unescaped.begin.blade\",\n regex: \"\\\\{\\\\!\\\\!\",\n push: [{\n token: \"injections.unescaped.end.blade\",\n regex: \"\\\\!\\\\!\\\\}\",\n next: \"pop\"\n }, {\n include: \"strings\"\n }, {\n include: \"variables\"\n }, {\n defaultToken: \"source.blade\"\n }]\n }\n\n ],\n\n lang: [{\n token: \"keyword.operator.blade\",\n regex: \"(?:!=|!|<=|>=|<|>|===|==|=|\\\\+\\\\+|\\\\;|\\\\,|%|&&|\\\\|\\\\|)|\\\\b(?:and|or|eq|neq|ne|gte|gt|ge|lte|lt|le|not|mod|as)\\\\b\"\n }, {\n token: \"constant.language.blade\",\n regex: \"\\\\b(?:TRUE|FALSE|true|false)\\\\b\"\n }],\n strings: [{\n token: \"punctuation.definition.string.begin.blade\",\n regex: \"\\\"\",\n push: [{\n token: \"punctuation.definition.string.end.blade\",\n regex: \"\\\"\",\n next: \"pop\"\n }, {\n token: \"string.character.escape.blade\",\n regex: \"\\\\\\\\.\"\n }, {\n defaultToken: \"string.quoted.single.blade\"\n }]\n }, {\n token: \"punctuation.definition.string.begin.blade\",\n regex: \"'\",\n push: [{\n token: \"punctuation.definition.string.end.blade\",\n regex: \"'\",\n next: \"pop\"\n }, {\n token: \"string.character.escape.blade\",\n regex: \"\\\\\\\\.\"\n }, {\n defaultToken: \"string.quoted.double.blade\"\n }]\n }],\n variables: [{\n token: \"variable.blade\",\n regex: \"\\\\$([a-zA-Z_][a-zA-Z0-9_]*)\\\\b\"\n }, {\n token: [\"keyword.operator.blade\", \"constant.other.property.blade\"],\n regex: \"(->)([a-zA-Z_][a-zA-Z0-9_]*)\\\\b\"\n }, {\n token: [\"keyword.operator.blade\",\n \"meta.function-call.object.blade\",\n \"punctuation.definition.variable.blade\",\n \"variable.blade\",\n \"punctuation.definition.variable.blade\"\n ],\n regex: \"(->)([a-zA-Z_][a-zA-Z0-9_]*)(\\\\()(.*?)(\\\\))\"\n }]\n };\n\n var bladeStart = bladeRules.start;\n\n for (var rule in this.$rules) {\n this.$rules[rule].unshift.apply(this.$rules[rule], bladeStart);\n }\n\n Object.keys(bladeRules).forEach(function(x) {\n if (!this.$rules[x])\n this.$rules[x] = bladeRules[x];\n }, this);\n\n this.normalizeRules();\n};\n\n\noop.inherits(PHPLaravelBladeHighlightRules, PhpHighlightRules);\n\nexports.PHPLaravelBladeHighlightRules = PHPLaravelBladeHighlightRules;\n});\n\nace.define(\"ace/mode/matching_brace_outdent\",[\"require\",\"exports\",\"module\",\"ace/range\"], function(require, exports, module) {\n\"use strict\";\n\nvar Range = require(\"../range\").Range;\n\nvar MatchingBraceOutdent = function() {};\n\n(function() {\n\n this.checkOutdent = function(line, input) {\n if (! /^\\s+$/.test(line))\n return false;\n\n return /^\\s*\\}/.test(input);\n };\n\n this.autoOutdent = function(doc, row) {\n var line = doc.getLine(row);\n var match = line.match(/^(\\s*\\})/);\n\n if (!match) return 0;\n\n var column = match[1].length;\n var openBracePos = doc.findMatchingBracket({row: row, column: column});\n\n if (!openBracePos || openBracePos.row == row) return 0;\n\n var indent = this.$getIndent(doc.getLine(openBracePos.row));\n doc.replace(new Range(row, 0, row, column-1), indent);\n };\n\n this.$getIndent = function(line) {\n return line.match(/^\\s*/)[0];\n };\n\n}).call(MatchingBraceOutdent.prototype);\n\nexports.MatchingBraceOutdent = MatchingBraceOutdent;\n});\n\nace.define(\"ace/mode/php_completions\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nvar functionMap = {\n \"abs\": [\n \"int abs(int number)\",\n \"Return the absolute value of the number\"\n ],\n \"acos\": [\n \"float acos(float number)\",\n \"Return the arc cosine of the number in radians\"\n ],\n \"acosh\": [\n \"float acosh(float number)\",\n \"Returns the inverse hyperbolic cosine of the number, i.e. the value whose hyperbolic cosine is number\"\n ],\n \"addGlob\": [\n \"bool addGlob(string pattern[,int flags [, array options]])\",\n \"Add files matching the glob pattern. See php's glob for the pattern syntax.\"\n ],\n \"addPattern\": [\n \"bool addPattern(string pattern[, string path [, array options]])\",\n \"Add files matching the pcre pattern. See php's pcre for the pattern syntax.\"\n ],\n \"addcslashes\": [\n \"string addcslashes(string str, string charlist)\",\n \"Escapes all chars mentioned in charlist with backslash. It creates octal representations if asked to backslash characters with 8th bit set or with ASCII<32 (except '\\\\n', '\\\\r', '\\\\t' etc...)\"\n ],\n \"addslashes\": [\n \"string addslashes(string str)\",\n \"Escapes single quote, double quotes and backslash characters in a string with backslashes\"\n ],\n \"apache_child_terminate\": [\n \"bool apache_child_terminate(void)\",\n \"Terminate apache process after this request\"\n ],\n \"apache_get_modules\": [\n \"array apache_get_modules(void)\",\n \"Get a list of loaded Apache modules\"\n ],\n \"apache_get_version\": [\n \"string apache_get_version(void)\",\n \"Fetch Apache version\"\n ],\n \"apache_getenv\": [\n \"bool apache_getenv(string variable [, bool walk_to_top])\",\n \"Get an Apache subprocess_env variable\"\n ],\n \"apache_lookup_uri\": [\n \"object apache_lookup_uri(string URI)\",\n \"Perform a partial request of the given URI to obtain information about it\"\n ],\n \"apache_note\": [\n \"string apache_note(string note_name [, string note_value])\",\n \"Get and set Apache request notes\"\n ],\n \"apache_request_auth_name\": [\n \"string apache_request_auth_name()\",\n \"\"\n ],\n \"apache_request_auth_type\": [\n \"string apache_request_auth_type()\",\n \"\"\n ],\n \"apache_request_discard_request_body\": [\n \"long apache_request_discard_request_body()\",\n \"\"\n ],\n \"apache_request_err_headers_out\": [\n \"array apache_request_err_headers_out([{string name|array list} [, string value [, bool replace = false]]])\",\n \"* fetch all headers that go out in case of an error or a subrequest\"\n ],\n \"apache_request_headers\": [\n \"array apache_request_headers(void)\",\n \"Fetch all HTTP request headers\"\n ],\n \"apache_request_headers_in\": [\n \"array apache_request_headers_in()\",\n \"* fetch all incoming request headers\"\n ],\n \"apache_request_headers_out\": [\n \"array apache_request_headers_out([{string name|array list} [, string value [, bool replace = false]]])\",\n \"* fetch all outgoing request headers\"\n ],\n \"apache_request_is_initial_req\": [\n \"bool apache_request_is_initial_req()\",\n \"\"\n ],\n \"apache_request_log_error\": [\n \"boolean apache_request_log_error(string message, [long facility])\",\n \"\"\n ],\n \"apache_request_meets_conditions\": [\n \"long apache_request_meets_conditions()\",\n \"\"\n ],\n \"apache_request_remote_host\": [\n \"int apache_request_remote_host([int type])\",\n \"\"\n ],\n \"apache_request_run\": [\n \"long apache_request_run()\",\n \"This is a wrapper for ap_sub_run_req and ap_destory_sub_req. It takes sub_request, runs it, destroys it, and returns it's status.\"\n ],\n \"apache_request_satisfies\": [\n \"long apache_request_satisfies()\",\n \"\"\n ],\n \"apache_request_server_port\": [\n \"int apache_request_server_port()\",\n \"\"\n ],\n \"apache_request_set_etag\": [\n \"void apache_request_set_etag()\",\n \"\"\n ],\n \"apache_request_set_last_modified\": [\n \"void apache_request_set_last_modified()\",\n \"\"\n ],\n \"apache_request_some_auth_required\": [\n \"bool apache_request_some_auth_required()\",\n \"\"\n ],\n \"apache_request_sub_req_lookup_file\": [\n \"object apache_request_sub_req_lookup_file(string file)\",\n \"Returns sub-request for the specified file. You would need to run it yourself with run().\"\n ],\n \"apache_request_sub_req_lookup_uri\": [\n \"object apache_request_sub_req_lookup_uri(string uri)\",\n \"Returns sub-request for the specified uri. You would need to run it yourself with run()\"\n ],\n \"apache_request_sub_req_method_uri\": [\n \"object apache_request_sub_req_method_uri(string method, string uri)\",\n \"Returns sub-request for the specified file. You would need to run it yourself with run().\"\n ],\n \"apache_request_update_mtime\": [\n \"long apache_request_update_mtime([int dependency_mtime])\",\n \"\"\n ],\n \"apache_reset_timeout\": [\n \"bool apache_reset_timeout(void)\",\n \"Reset the Apache write timer\"\n ],\n \"apache_response_headers\": [\n \"array apache_response_headers(void)\",\n \"Fetch all HTTP response headers\"\n ],\n \"apache_setenv\": [\n \"bool apache_setenv(string variable, string value [, bool walk_to_top])\",\n \"Set an Apache subprocess_env variable\"\n ],\n \"array_change_key_case\": [\n \"array array_change_key_case(array input [, int case=CASE_LOWER])\",\n \"Retuns an array with all string keys lowercased [or uppercased]\"\n ],\n \"array_chunk\": [\n \"array array_chunk(array input, int size [, bool preserve_keys])\",\n \"Split array into chunks\"\n ],\n \"array_combine\": [\n \"array array_combine(array keys, array values)\",\n \"Creates an array by using the elements of the first parameter as keys and the elements of the second as the corresponding values\"\n ],\n \"array_count_values\": [\n \"array array_count_values(array input)\",\n \"Return the value as key and the frequency of that value in input as value\"\n ],\n \"array_diff\": [\n \"array array_diff(array arr1, array arr2 [, array ...])\",\n \"Returns the entries of arr1 that have values which are not present in any of the others arguments.\"\n ],\n \"array_diff_assoc\": [\n \"array array_diff_assoc(array arr1, array arr2 [, array ...])\",\n \"Returns the entries of arr1 that have values which are not present in any of the others arguments but do additional checks whether the keys are equal\"\n ],\n \"array_diff_key\": [\n \"array array_diff_key(array arr1, array arr2 [, array ...])\",\n \"Returns the entries of arr1 that have keys which are not present in any of the others arguments. This function is like array_diff() but works on the keys instead of the values. The associativity is preserved.\"\n ],\n \"array_diff_uassoc\": [\n \"array array_diff_uassoc(array arr1, array arr2 [, array ...], callback data_comp_func)\",\n \"Returns the entries of arr1 that have values which are not present in any of the others arguments but do additional checks whether the keys are equal. Elements are compared by user supplied function.\"\n ],\n \"array_diff_ukey\": [\n \"array array_diff_ukey(array arr1, array arr2 [, array ...], callback key_comp_func)\",\n \"Returns the entries of arr1 that have keys which are not present in any of the others arguments. User supplied function is used for comparing the keys. This function is like array_udiff() but works on the keys instead of the values. The associativity is preserved.\"\n ],\n \"array_fill\": [\n \"array array_fill(int start_key, int num, mixed val)\",\n \"Create an array containing num elements starting with index start_key each initialized to val\"\n ],\n \"array_fill_keys\": [\n \"array array_fill_keys(array keys, mixed val)\",\n \"Create an array using the elements of the first parameter as keys each initialized to val\"\n ],\n \"array_filter\": [\n \"array array_filter(array input [, mixed callback])\",\n \"Filters elements from the array via the callback.\"\n ],\n \"array_flip\": [\n \"array array_flip(array input)\",\n \"Return array with key <-> value flipped\"\n ],\n \"array_intersect\": [\n \"array array_intersect(array arr1, array arr2 [, array ...])\",\n \"Returns the entries of arr1 that have values which are present in all the other arguments\"\n ],\n \"array_intersect_assoc\": [\n \"array array_intersect_assoc(array arr1, array arr2 [, array ...])\",\n \"Returns the entries of arr1 that have values which are present in all the other arguments. Keys are used to do more restrictive check\"\n ],\n \"array_intersect_key\": [\n \"array array_intersect_key(array arr1, array arr2 [, array ...])\",\n \"Returns the entries of arr1 that have keys which are present in all the other arguments. Kind of equivalent to array_diff(array_keys($arr1), array_keys($arr2)[,array_keys(...)]). Equivalent of array_intersect_assoc() but does not do compare of the data.\"\n ],\n \"array_intersect_uassoc\": [\n \"array array_intersect_uassoc(array arr1, array arr2 [, array ...], callback key_compare_func)\",\n \"Returns the entries of arr1 that have values which are present in all the other arguments. Keys are used to do more restrictive check and they are compared by using an user-supplied callback.\"\n ],\n \"array_intersect_ukey\": [\n \"array array_intersect_ukey(array arr1, array arr2 [, array ...], callback key_compare_func)\",\n \"Returns the entries of arr1 that have keys which are present in all the other arguments. Kind of equivalent to array_diff(array_keys($arr1), array_keys($arr2)[,array_keys(...)]). The comparison of the keys is performed by a user supplied function. Equivalent of array_intersect_uassoc() but does not do compare of the data.\"\n ],\n \"array_key_exists\": [\n \"bool array_key_exists(mixed key, array search)\",\n \"Checks if the given key or index exists in the array\"\n ],\n \"array_keys\": [\n \"array array_keys(array input [, mixed search_value[, bool strict]])\",\n \"Return just the keys from the input array, optionally only for the specified search_value\"\n ],\n \"array_map\": [\n \"array array_map(mixed callback, array input1 [, array input2 ,...])\",\n \"Applies the callback to the elements in given arrays.\"\n ],\n \"array_merge\": [\n \"array array_merge(array arr1, array arr2 [, array ...])\",\n \"Merges elements from passed arrays into one array\"\n ],\n \"array_merge_recursive\": [\n \"array array_merge_recursive(array arr1, array arr2 [, array ...])\",\n \"Recursively merges elements from passed arrays into one array\"\n ],\n \"array_multisort\": [\n \"bool array_multisort(array ar1 [, SORT_ASC|SORT_DESC [, SORT_REGULAR|SORT_NUMERIC|SORT_STRING]] [, array ar2 [, SORT_ASC|SORT_DESC [, SORT_REGULAR|SORT_NUMERIC|SORT_STRING]], ...])\",\n \"Sort multiple arrays at once similar to how ORDER BY clause works in SQL\"\n ],\n \"array_pad\": [\n \"array array_pad(array input, int pad_size, mixed pad_value)\",\n \"Returns a copy of input array padded with pad_value to size pad_size\"\n ],\n \"array_pop\": [\n \"mixed array_pop(array stack)\",\n \"Pops an element off the end of the array\"\n ],\n \"array_product\": [\n \"mixed array_product(array input)\",\n \"Returns the product of the array entries\"\n ],\n \"array_push\": [\n \"int array_push(array stack, mixed var [, mixed ...])\",\n \"Pushes elements onto the end of the array\"\n ],\n \"array_rand\": [\n \"mixed array_rand(array input [, int num_req])\",\n \"Return key/keys for random entry/entries in the array\"\n ],\n \"array_reduce\": [\n \"mixed array_reduce(array input, mixed callback [, mixed initial])\",\n \"Iteratively reduce the array to a single value via the callback.\"\n ],\n \"array_replace\": [\n \"array array_replace(array arr1, array arr2 [, array ...])\",\n \"Replaces elements from passed arrays into one array\"\n ],\n \"array_replace_recursive\": [\n \"array array_replace_recursive(array arr1, array arr2 [, array ...])\",\n \"Recursively replaces elements from passed arrays into one array\"\n ],\n \"array_reverse\": [\n \"array array_reverse(array input [, bool preserve keys])\",\n \"Return input as a new array with the order of the entries reversed\"\n ],\n \"array_search\": [\n \"mixed array_search(mixed needle, array haystack [, bool strict])\",\n \"Searches the array for a given value and returns the corresponding key if successful\"\n ],\n \"array_shift\": [\n \"mixed array_shift(array stack)\",\n \"Pops an element off the beginning of the array\"\n ],\n \"array_slice\": [\n \"array array_slice(array input, int offset [, int length [, bool preserve_keys]])\",\n \"Returns elements specified by offset and length\"\n ],\n \"array_splice\": [\n \"array array_splice(array input, int offset [, int length [, array replacement]])\",\n \"Removes the elements designated by offset and length and replace them with supplied array\"\n ],\n \"array_sum\": [\n \"mixed array_sum(array input)\",\n \"Returns the sum of the array entries\"\n ],\n \"array_udiff\": [\n \"array array_udiff(array arr1, array arr2 [, array ...], callback data_comp_func)\",\n \"Returns the entries of arr1 that have values which are not present in any of the others arguments. Elements are compared by user supplied function.\"\n ],\n \"array_udiff_assoc\": [\n \"array array_udiff_assoc(array arr1, array arr2 [, array ...], callback key_comp_func)\",\n \"Returns the entries of arr1 that have values which are not present in any of the others arguments but do additional checks whether the keys are equal. Keys are compared by user supplied function.\"\n ],\n \"array_udiff_uassoc\": [\n \"array array_udiff_uassoc(array arr1, array arr2 [, array ...], callback data_comp_func, callback key_comp_func)\",\n \"Returns the entries of arr1 that have values which are not present in any of the others arguments but do additional checks whether the keys are equal. Keys and elements are compared by user supplied functions.\"\n ],\n \"array_uintersect\": [\n \"array array_uintersect(array arr1, array arr2 [, array ...], callback data_compare_func)\",\n \"Returns the entries of arr1 that have values which are present in all the other arguments. Data is compared by using an user-supplied callback.\"\n ],\n \"array_uintersect_assoc\": [\n \"array array_uintersect_assoc(array arr1, array arr2 [, array ...], callback data_compare_func)\",\n \"Returns the entries of arr1 that have values which are present in all the other arguments. Keys are used to do more restrictive check. Data is compared by using an user-supplied callback.\"\n ],\n \"array_uintersect_uassoc\": [\n \"array array_uintersect_uassoc(array arr1, array arr2 [, array ...], callback data_compare_func, callback key_compare_func)\",\n \"Returns the entries of arr1 that have values which are present in all the other arguments. Keys are used to do more restrictive check. Both data and keys are compared by using user-supplied callbacks.\"\n ],\n \"array_unique\": [\n \"array array_unique(array input [, int sort_flags])\",\n \"Removes duplicate values from array\"\n ],\n \"array_unshift\": [\n \"int array_unshift(array stack, mixed var [, mixed ...])\",\n \"Pushes elements onto the beginning of the array\"\n ],\n \"array_values\": [\n \"array array_values(array input)\",\n \"Return just the values from the input array\"\n ],\n \"array_walk\": [\n \"bool array_walk(array input, string funcname [, mixed userdata])\",\n \"Apply a user function to every member of an array\"\n ],\n \"array_walk_recursive\": [\n \"bool array_walk_recursive(array input, string funcname [, mixed userdata])\",\n \"Apply a user function recursively to every member of an array\"\n ],\n \"arsort\": [\n \"bool arsort(array &array_arg [, int sort_flags])\",\n \"Sort an array in reverse order and maintain index association\"\n ],\n \"asin\": [\n \"float asin(float number)\",\n \"Returns the arc sine of the number in radians\"\n ],\n \"asinh\": [\n \"float asinh(float number)\",\n \"Returns the inverse hyperbolic sine of the number, i.e. the value whose hyperbolic sine is number\"\n ],\n \"asort\": [\n \"bool asort(array &array_arg [, int sort_flags])\",\n \"Sort an array and maintain index association\"\n ],\n \"assert\": [\n \"int assert(string|bool assertion)\",\n \"Checks if assertion is false\"\n ],\n \"assert_options\": [\n \"mixed assert_options(int what [, mixed value])\",\n \"Set/get the various assert flags\"\n ],\n \"atan\": [\n \"float atan(float number)\",\n \"Returns the arc tangent of the number in radians\"\n ],\n \"atan2\": [\n \"float atan2(float y, float x)\",\n \"Returns the arc tangent of y/x, with the resulting quadrant determined by the signs of y and x\"\n ],\n \"atanh\": [\n \"float atanh(float number)\",\n \"Returns the inverse hyperbolic tangent of the number, i.e. the value whose hyperbolic tangent is number\"\n ],\n \"attachIterator\": [\n \"void attachIterator(Iterator iterator[, mixed info])\",\n \"Attach a new iterator\"\n ],\n \"base64_decode\": [\n \"string base64_decode(string str[, bool strict])\",\n \"Decodes string using MIME base64 algorithm\"\n ],\n \"base64_encode\": [\n \"string base64_encode(string str)\",\n \"Encodes string using MIME base64 algorithm\"\n ],\n \"base_convert\": [\n \"string base_convert(string number, int frombase, int tobase)\",\n \"Converts a number in a string from any base <= 36 to any base <= 36\"\n ],\n \"basename\": [\n \"string basename(string path [, string suffix])\",\n \"Returns the filename component of the path\"\n ],\n \"bcadd\": [\n \"string bcadd(string left_operand, string right_operand [, int scale])\",\n \"Returns the sum of two arbitrary precision numbers\"\n ],\n \"bccomp\": [\n \"int bccomp(string left_operand, string right_operand [, int scale])\",\n \"Compares two arbitrary precision numbers\"\n ],\n \"bcdiv\": [\n \"string bcdiv(string left_operand, string right_operand [, int scale])\",\n \"Returns the quotient of two arbitrary precision numbers (division)\"\n ],\n \"bcmod\": [\n \"string bcmod(string left_operand, string right_operand)\",\n \"Returns the modulus of the two arbitrary precision operands\"\n ],\n \"bcmul\": [\n \"string bcmul(string left_operand, string right_operand [, int scale])\",\n \"Returns the multiplication of two arbitrary precision numbers\"\n ],\n \"bcpow\": [\n \"string bcpow(string x, string y [, int scale])\",\n \"Returns the value of an arbitrary precision number raised to the power of another\"\n ],\n \"bcpowmod\": [\n \"string bcpowmod(string x, string y, string mod [, int scale])\",\n \"Returns the value of an arbitrary precision number raised to the power of another reduced by a modulous\"\n ],\n \"bcscale\": [\n \"bool bcscale(int scale)\",\n \"Sets default scale parameter for all bc math functions\"\n ],\n \"bcsqrt\": [\n \"string bcsqrt(string operand [, int scale])\",\n \"Returns the square root of an arbitray precision number\"\n ],\n \"bcsub\": [\n \"string bcsub(string left_operand, string right_operand [, int scale])\",\n \"Returns the difference between two arbitrary precision numbers\"\n ],\n \"bin2hex\": [\n \"string bin2hex(string data)\",\n \"Converts the binary representation of data to hex\"\n ],\n \"bind_textdomain_codeset\": [\n \"string bind_textdomain_codeset (string domain, string codeset)\",\n \"Specify the character encoding in which the messages from the DOMAIN message catalog will be returned.\"\n ],\n \"bindec\": [\n \"int bindec(string binary_number)\",\n \"Returns the decimal equivalent of the binary number\"\n ],\n \"bindtextdomain\": [\n \"string bindtextdomain(string domain_name, string dir)\",\n \"Bind to the text domain domain_name, looking for translations in dir. Returns the current domain\"\n ],\n \"birdstep_autocommit\": [\n \"bool birdstep_autocommit(int index)\",\n \"\"\n ],\n \"birdstep_close\": [\n \"bool birdstep_close(int id)\",\n \"\"\n ],\n \"birdstep_commit\": [\n \"bool birdstep_commit(int index)\",\n \"\"\n ],\n \"birdstep_connect\": [\n \"int birdstep_connect(string server, string user, string pass)\",\n \"\"\n ],\n \"birdstep_exec\": [\n \"int birdstep_exec(int index, string exec_str)\",\n \"\"\n ],\n \"birdstep_fetch\": [\n \"bool birdstep_fetch(int index)\",\n \"\"\n ],\n \"birdstep_fieldname\": [\n \"string birdstep_fieldname(int index, int col)\",\n \"\"\n ],\n \"birdstep_fieldnum\": [\n \"int birdstep_fieldnum(int index)\",\n \"\"\n ],\n \"birdstep_freeresult\": [\n \"bool birdstep_freeresult(int index)\",\n \"\"\n ],\n \"birdstep_off_autocommit\": [\n \"bool birdstep_off_autocommit(int index)\",\n \"\"\n ],\n \"birdstep_result\": [\n \"mixed birdstep_result(int index, mixed col)\",\n \"\"\n ],\n \"birdstep_rollback\": [\n \"bool birdstep_rollback(int index)\",\n \"\"\n ],\n \"bzcompress\": [\n \"string bzcompress(string source [, int blocksize100k [, int workfactor]])\",\n \"Compresses a string into BZip2 encoded data\"\n ],\n \"bzdecompress\": [\n \"string bzdecompress(string source [, int small])\",\n \"Decompresses BZip2 compressed data\"\n ],\n \"bzerrno\": [\n \"int bzerrno(resource bz)\",\n \"Returns the error number\"\n ],\n \"bzerror\": [\n \"array bzerror(resource bz)\",\n \"Returns the error number and error string in an associative array\"\n ],\n \"bzerrstr\": [\n \"string bzerrstr(resource bz)\",\n \"Returns the error string\"\n ],\n \"bzopen\": [\n \"resource bzopen(string|int file|fp, string mode)\",\n \"Opens a new BZip2 stream\"\n ],\n \"bzread\": [\n \"string bzread(resource bz[, int length])\",\n \"Reads up to length bytes from a BZip2 stream, or 1024 bytes if length is not specified\"\n ],\n \"cal_days_in_month\": [\n \"int cal_days_in_month(int calendar, int month, int year)\",\n \"Returns the number of days in a month for a given year and calendar\"\n ],\n \"cal_from_jd\": [\n \"array cal_from_jd(int jd, int calendar)\",\n \"Converts from Julian Day Count to a supported calendar and return extended information\"\n ],\n \"cal_info\": [\n \"array cal_info([int calendar])\",\n \"Returns information about a particular calendar\"\n ],\n \"cal_to_jd\": [\n \"int cal_to_jd(int calendar, int month, int day, int year)\",\n \"Converts from a supported calendar to Julian Day Count\"\n ],\n \"call_user_func\": [\n \"mixed call_user_func(mixed function_name [, mixed parmeter] [, mixed ...])\",\n \"Call a user function which is the first parameter\"\n ],\n \"call_user_func_array\": [\n \"mixed call_user_func_array(string function_name, array parameters)\",\n \"Call a user function which is the first parameter with the arguments contained in array\"\n ],\n \"call_user_method\": [\n \"mixed call_user_method(string method_name, mixed object [, mixed parameter] [, mixed ...])\",\n \"Call a user method on a specific object or class\"\n ],\n \"call_user_method_array\": [\n \"mixed call_user_method_array(string method_name, mixed object, array params)\",\n \"Call a user method on a specific object or class using a parameter array\"\n ],\n \"ceil\": [\n \"float ceil(float number)\",\n \"Returns the next highest integer value of the number\"\n ],\n \"chdir\": [\n \"bool chdir(string directory)\",\n \"Change the current directory\"\n ],\n \"checkdate\": [\n \"bool checkdate(int month, int day, int year)\",\n \"Returns true(1) if it is a valid date in gregorian calendar\"\n ],\n \"chgrp\": [\n \"bool chgrp(string filename, mixed group)\",\n \"Change file group\"\n ],\n \"chmod\": [\n \"bool chmod(string filename, int mode)\",\n \"Change file mode\"\n ],\n \"chown\": [\n \"bool chown (string filename, mixed user)\",\n \"Change file owner\"\n ],\n \"chr\": [\n \"string chr(int ascii)\",\n \"Converts ASCII code to a character\"\n ],\n \"chroot\": [\n \"bool chroot(string directory)\",\n \"Change root directory\"\n ],\n \"chunk_split\": [\n \"string chunk_split(string str [, int chunklen [, string ending]])\",\n \"Returns split line\"\n ],\n \"class_alias\": [\n \"bool class_alias(string user_class_name , string alias_name [, bool autoload])\",\n \"Creates an alias for user defined class\"\n ],\n \"class_exists\": [\n \"bool class_exists(string classname [, bool autoload])\",\n \"Checks if the class exists\"\n ],\n \"class_implements\": [\n \"array class_implements(mixed what [, bool autoload ])\",\n \"Return all classes and interfaces implemented by SPL\"\n ],\n \"class_parents\": [\n \"array class_parents(object instance [, boolean autoload = true])\",\n \"Return an array containing the names of all parent classes\"\n ],\n \"clearstatcache\": [\n \"void clearstatcache([bool clear_realpath_cache[, string filename]])\",\n \"Clear file stat cache\"\n ],\n \"closedir\": [\n \"void closedir([resource dir_handle])\",\n \"Close directory connection identified by the dir_handle\"\n ],\n \"closelog\": [\n \"bool closelog(void)\",\n \"Close connection to system logger\"\n ],\n \"collator_asort\": [\n \"bool collator_asort( Collator $coll, array(string) $arr )\",\n \"* Sort array using specified collator, maintaining index association.\"\n ],\n \"collator_compare\": [\n \"int collator_compare( Collator $coll, string $str1, string $str2 )\",\n \"* Compare two strings.\"\n ],\n \"collator_create\": [\n \"Collator collator_create( string $locale )\",\n \"* Create collator.\"\n ],\n \"collator_get_attribute\": [\n \"int collator_get_attribute( Collator $coll, int $attr )\",\n \"* Get collation attribute value.\"\n ],\n \"collator_get_error_code\": [\n \"int collator_get_error_code( Collator $coll )\",\n \"* Get collator's last error code.\"\n ],\n \"collator_get_error_message\": [\n \"string collator_get_error_message( Collator $coll )\",\n \"* Get text description for collator's last error code.\"\n ],\n \"collator_get_locale\": [\n \"string collator_get_locale( Collator $coll, int $type )\",\n \"* Gets the locale name of the collator.\"\n ],\n \"collator_get_sort_key\": [\n \"bool collator_get_sort_key( Collator $coll, string $str )\",\n \"* Get a sort key for a string from a Collator. }}}\"\n ],\n \"collator_get_strength\": [\n \"int collator_get_strength(Collator coll)\",\n \"* Returns the current collation strength.\"\n ],\n \"collator_set_attribute\": [\n \"bool collator_set_attribute( Collator $coll, int $attr, int $val )\",\n \"* Set collation attribute.\"\n ],\n \"collator_set_strength\": [\n \"bool collator_set_strength(Collator coll, int strength)\",\n \"* Set the collation strength.\"\n ],\n \"collator_sort\": [\n \"bool collator_sort( Collator $coll, array(string) $arr [, int $sort_flags] )\",\n \"* Sort array using specified collator.\"\n ],\n \"collator_sort_with_sort_keys\": [\n \"bool collator_sort_with_sort_keys( Collator $coll, array(string) $arr )\",\n \"* Equivalent to standard PHP sort using Collator. * Uses ICU ucol_getSortKey for performance.\"\n ],\n \"com_create_guid\": [\n \"string com_create_guid()\",\n \"Generate a globally unique identifier (GUID)\"\n ],\n \"com_event_sink\": [\n \"bool com_event_sink(object comobject, object sinkobject [, mixed sinkinterface])\",\n \"Connect events from a COM object to a PHP object\"\n ],\n \"com_get_active_object\": [\n \"object com_get_active_object(string progid [, int code_page ])\",\n \"Returns a handle to an already running instance of a COM object\"\n ],\n \"com_load_typelib\": [\n \"bool com_load_typelib(string typelib_name [, int case_insensitive])\",\n \"Loads a Typelibrary and registers its constants\"\n ],\n \"com_message_pump\": [\n \"bool com_message_pump([int timeoutms])\",\n \"Process COM messages, sleeping for up to timeoutms milliseconds\"\n ],\n \"com_print_typeinfo\": [\n \"bool com_print_typeinfo(object comobject | string typelib, string dispinterface, bool wantsink)\",\n \"Print out a PHP class definition for a dispatchable interface\"\n ],\n \"compact\": [\n \"array compact(mixed var_names [, mixed ...])\",\n \"Creates a hash containing variables and their values\"\n ],\n \"compose_locale\": [\n \"static string compose_locale($array)\",\n \"* Creates a locale by combining the parts of locale-ID passed * }}}\"\n ],\n \"confirm_extname_compiled\": [\n \"string confirm_extname_compiled(string arg)\",\n \"Return a string to confirm that the module is compiled in\"\n ],\n \"connection_aborted\": [\n \"int connection_aborted(void)\",\n \"Returns true if client disconnected\"\n ],\n \"connection_status\": [\n \"int connection_status(void)\",\n \"Returns the connection status bitfield\"\n ],\n \"constant\": [\n \"mixed constant(string const_name)\",\n \"Given the name of a constant this function will return the constant's associated value\"\n ],\n \"convert_cyr_string\": [\n \"string convert_cyr_string(string str, string from, string to)\",\n \"Convert from one Cyrillic character set to another\"\n ],\n \"convert_uudecode\": [\n \"string convert_uudecode(string data)\",\n \"decode a uuencoded string\"\n ],\n \"convert_uuencode\": [\n \"string convert_uuencode(string data)\",\n \"uuencode a string\"\n ],\n \"copy\": [\n \"bool copy(string source_file, string destination_file [, resource context])\",\n \"Copy a file\"\n ],\n \"cos\": [\n \"float cos(float number)\",\n \"Returns the cosine of the number in radians\"\n ],\n \"cosh\": [\n \"float cosh(float number)\",\n \"Returns the hyperbolic cosine of the number, defined as (exp(number) + exp(-number))/2\"\n ],\n \"count\": [\n \"int count(mixed var [, int mode])\",\n \"Count the number of elements in a variable (usually an array)\"\n ],\n \"count_chars\": [\n \"mixed count_chars(string input [, int mode])\",\n \"Returns info about what characters are used in input\"\n ],\n \"crc32\": [\n \"string crc32(string str)\",\n \"Calculate the crc32 polynomial of a string\"\n ],\n \"create_function\": [\n \"string create_function(string args, string code)\",\n \"Creates an anonymous function, and returns its name (funny, eh?)\"\n ],\n \"crypt\": [\n \"string crypt(string str [, string salt])\",\n \"Hash a string\"\n ],\n \"ctype_alnum\": [\n \"bool ctype_alnum(mixed c)\",\n \"Checks for alphanumeric character(s)\"\n ],\n \"ctype_alpha\": [\n \"bool ctype_alpha(mixed c)\",\n \"Checks for alphabetic character(s)\"\n ],\n \"ctype_cntrl\": [\n \"bool ctype_cntrl(mixed c)\",\n \"Checks for control character(s)\"\n ],\n \"ctype_digit\": [\n \"bool ctype_digit(mixed c)\",\n \"Checks for numeric character(s)\"\n ],\n \"ctype_graph\": [\n \"bool ctype_graph(mixed c)\",\n \"Checks for any printable character(s) except space\"\n ],\n \"ctype_lower\": [\n \"bool ctype_lower(mixed c)\",\n \"Checks for lowercase character(s)\"\n ],\n \"ctype_print\": [\n \"bool ctype_print(mixed c)\",\n \"Checks for printable character(s)\"\n ],\n \"ctype_punct\": [\n \"bool ctype_punct(mixed c)\",\n \"Checks for any printable character which is not whitespace or an alphanumeric character\"\n ],\n \"ctype_space\": [\n \"bool ctype_space(mixed c)\",\n \"Checks for whitespace character(s)\"\n ],\n \"ctype_upper\": [\n \"bool ctype_upper(mixed c)\",\n \"Checks for uppercase character(s)\"\n ],\n \"ctype_xdigit\": [\n \"bool ctype_xdigit(mixed c)\",\n \"Checks for character(s) representing a hexadecimal digit\"\n ],\n \"curl_close\": [\n \"void curl_close(resource ch)\",\n \"Close a cURL session\"\n ],\n \"curl_copy_handle\": [\n \"resource curl_copy_handle(resource ch)\",\n \"Copy a cURL handle along with all of it's preferences\"\n ],\n \"curl_errno\": [\n \"int curl_errno(resource ch)\",\n \"Return an integer containing the last error number\"\n ],\n \"curl_error\": [\n \"string curl_error(resource ch)\",\n \"Return a string contain the last error for the current session\"\n ],\n \"curl_exec\": [\n \"bool curl_exec(resource ch)\",\n \"Perform a cURL session\"\n ],\n \"curl_getinfo\": [\n \"mixed curl_getinfo(resource ch [, int option])\",\n \"Get information regarding a specific transfer\"\n ],\n \"curl_init\": [\n \"resource curl_init([string url])\",\n \"Initialize a cURL session\"\n ],\n \"curl_multi_add_handle\": [\n \"int curl_multi_add_handle(resource mh, resource ch)\",\n \"Add a normal cURL handle to a cURL multi handle\"\n ],\n \"curl_multi_close\": [\n \"void curl_multi_close(resource mh)\",\n \"Close a set of cURL handles\"\n ],\n \"curl_multi_exec\": [\n \"int curl_multi_exec(resource mh, int &still_running)\",\n \"Run the sub-connections of the current cURL handle\"\n ],\n \"curl_multi_getcontent\": [\n \"string curl_multi_getcontent(resource ch)\",\n \"Return the content of a cURL handle if CURLOPT_RETURNTRANSFER is set\"\n ],\n \"curl_multi_info_read\": [\n \"array curl_multi_info_read(resource mh [, long msgs_in_queue])\",\n \"Get information about the current transfers\"\n ],\n \"curl_multi_init\": [\n \"resource curl_multi_init(void)\",\n \"Returns a new cURL multi handle\"\n ],\n \"curl_multi_remove_handle\": [\n \"int curl_multi_remove_handle(resource mh, resource ch)\",\n \"Remove a multi handle from a set of cURL handles\"\n ],\n \"curl_multi_select\": [\n \"int curl_multi_select(resource mh[, double timeout])\",\n \"Get all the sockets associated with the cURL extension, which can then be \\\"selected\\\"\"\n ],\n \"curl_setopt\": [\n \"bool curl_setopt(resource ch, int option, mixed value)\",\n \"Set an option for a cURL transfer\"\n ],\n \"curl_setopt_array\": [\n \"bool curl_setopt_array(resource ch, array options)\",\n \"Set an array of option for a cURL transfer\"\n ],\n \"curl_version\": [\n \"array curl_version([int version])\",\n \"Return cURL version information.\"\n ],\n \"current\": [\n \"mixed current(array array_arg)\",\n \"Return the element currently pointed to by the internal array pointer\"\n ],\n \"date\": [\n \"string date(string format [, long timestamp])\",\n \"Format a local date/time\"\n ],\n \"date_add\": [\n \"DateTime date_add(DateTime object, DateInterval interval)\",\n \"Adds an interval to the current date in object.\"\n ],\n \"date_create\": [\n \"DateTime date_create([string time[, DateTimeZone object]])\",\n \"Returns new DateTime object\"\n ],\n \"date_create_from_format\": [\n \"DateTime date_create_from_format(string format, string time[, DateTimeZone object])\",\n \"Returns new DateTime object formatted according to the specified format\"\n ],\n \"date_date_set\": [\n \"DateTime date_date_set(DateTime object, long year, long month, long day)\",\n \"Sets the date.\"\n ],\n \"date_default_timezone_get\": [\n \"string date_default_timezone_get()\",\n \"Gets the default timezone used by all date/time functions in a script\"\n ],\n \"date_default_timezone_set\": [\n \"bool date_default_timezone_set(string timezone_identifier)\",\n \"Sets the default timezone used by all date/time functions in a script\"\n ],\n \"date_diff\": [\n \"DateInterval date_diff(DateTime object [, bool absolute])\",\n \"Returns the difference between two DateTime objects.\"\n ],\n \"date_format\": [\n \"string date_format(DateTime object, string format)\",\n \"Returns date formatted according to given format\"\n ],\n \"date_get_last_errors\": [\n \"array date_get_last_errors()\",\n \"Returns the warnings and errors found while parsing a date/time string.\"\n ],\n \"date_interval_create_from_date_string\": [\n \"DateInterval date_interval_create_from_date_string(string time)\",\n \"Uses the normal date parsers and sets up a DateInterval from the relative parts of the parsed string\"\n ],\n \"date_interval_format\": [\n \"string date_interval_format(DateInterval object, string format)\",\n \"Formats the interval.\"\n ],\n \"date_isodate_set\": [\n \"DateTime date_isodate_set(DateTime object, long year, long week[, long day])\",\n \"Sets the ISO date.\"\n ],\n \"date_modify\": [\n \"DateTime date_modify(DateTime object, string modify)\",\n \"Alters the timestamp.\"\n ],\n \"date_offset_get\": [\n \"long date_offset_get(DateTime object)\",\n \"Returns the DST offset.\"\n ],\n \"date_parse\": [\n \"array date_parse(string date)\",\n \"Returns associative array with detailed info about given date\"\n ],\n \"date_parse_from_format\": [\n \"array date_parse_from_format(string format, string date)\",\n \"Returns associative array with detailed info about given date\"\n ],\n \"date_sub\": [\n \"DateTime date_sub(DateTime object, DateInterval interval)\",\n \"Subtracts an interval to the current date in object.\"\n ],\n \"date_sun_info\": [\n \"array date_sun_info(long time, float latitude, float longitude)\",\n \"Returns an array with information about sun set/rise and twilight begin/end\"\n ],\n \"date_sunrise\": [\n \"mixed date_sunrise(mixed time [, int format [, float latitude [, float longitude [, float zenith [, float gmt_offset]]]]])\",\n \"Returns time of sunrise for a given day and location\"\n ],\n \"date_sunset\": [\n \"mixed date_sunset(mixed time [, int format [, float latitude [, float longitude [, float zenith [, float gmt_offset]]]]])\",\n \"Returns time of sunset for a given day and location\"\n ],\n \"date_time_set\": [\n \"DateTime date_time_set(DateTime object, long hour, long minute[, long second])\",\n \"Sets the time.\"\n ],\n \"date_timestamp_get\": [\n \"long date_timestamp_get(DateTime object)\",\n \"Gets the Unix timestamp.\"\n ],\n \"date_timestamp_set\": [\n \"DateTime date_timestamp_set(DateTime object, long unixTimestamp)\",\n \"Sets the date and time based on an Unix timestamp.\"\n ],\n \"date_timezone_get\": [\n \"DateTimeZone date_timezone_get(DateTime object)\",\n \"Return new DateTimeZone object relative to give DateTime\"\n ],\n \"date_timezone_set\": [\n \"DateTime date_timezone_set(DateTime object, DateTimeZone object)\",\n \"Sets the timezone for the DateTime object.\"\n ],\n \"datefmt_create\": [\n \"IntlDateFormatter datefmt_create(string $locale, long date_type, long time_type[, string $timezone_str, long $calendar, string $pattern] )\",\n \"* Create formatter.\"\n ],\n \"datefmt_format\": [\n \"string datefmt_format( [mixed]int $args or array $args )\",\n \"* Format the time value as a string. }}}\"\n ],\n \"datefmt_get_calendar\": [\n \"string datefmt_get_calendar( IntlDateFormatter $mf )\",\n \"* Get formatter calendar.\"\n ],\n \"datefmt_get_datetype\": [\n \"string datefmt_get_datetype( IntlDateFormatter $mf )\",\n \"* Get formatter datetype.\"\n ],\n \"datefmt_get_error_code\": [\n \"int datefmt_get_error_code( IntlDateFormatter $nf )\",\n \"* Get formatter's last error code.\"\n ],\n \"datefmt_get_error_message\": [\n \"string datefmt_get_error_message( IntlDateFormatter $coll )\",\n \"* Get text description for formatter's last error code.\"\n ],\n \"datefmt_get_locale\": [\n \"string datefmt_get_locale(IntlDateFormatter $mf)\",\n \"* Get formatter locale.\"\n ],\n \"datefmt_get_pattern\": [\n \"string datefmt_get_pattern( IntlDateFormatter $mf )\",\n \"* Get formatter pattern.\"\n ],\n \"datefmt_get_timetype\": [\n \"string datefmt_get_timetype( IntlDateFormatter $mf )\",\n \"* Get formatter timetype.\"\n ],\n \"datefmt_get_timezone_id\": [\n \"string datefmt_get_timezone_id( IntlDateFormatter $mf )\",\n \"* Get formatter timezone_id.\"\n ],\n \"datefmt_isLenient\": [\n \"string datefmt_isLenient(IntlDateFormatter $mf)\",\n \"* Get formatter locale.\"\n ],\n \"datefmt_localtime\": [\n \"integer datefmt_localtime( IntlDateFormatter $fmt, string $text_to_parse[, int $parse_pos ])\",\n \"* Parse the string $value to a localtime array }}}\"\n ],\n \"datefmt_parse\": [\n \"integer datefmt_parse( IntlDateFormatter $fmt, string $text_to_parse [, int $parse_pos] )\",\n \"* Parse the string $value starting at parse_pos to a Unix timestamp -int }}}\"\n ],\n \"datefmt_setLenient\": [\n \"string datefmt_setLenient(IntlDateFormatter $mf)\",\n \"* Set formatter lenient.\"\n ],\n \"datefmt_set_calendar\": [\n \"bool datefmt_set_calendar( IntlDateFormatter $mf, int $calendar )\",\n \"* Set formatter calendar.\"\n ],\n \"datefmt_set_pattern\": [\n \"bool datefmt_set_pattern( IntlDateFormatter $mf, string $pattern )\",\n \"* Set formatter pattern.\"\n ],\n \"datefmt_set_timezone_id\": [\n \"boolean datefmt_set_timezone_id( IntlDateFormatter $mf,$timezone_id)\",\n \"* Set formatter timezone_id.\"\n ],\n \"dba_close\": [\n \"void dba_close(resource handle)\",\n \"Closes database\"\n ],\n \"dba_delete\": [\n \"bool dba_delete(string key, resource handle)\",\n \"Deletes the entry associated with key If inifile: remove all other key lines\"\n ],\n \"dba_exists\": [\n \"bool dba_exists(string key, resource handle)\",\n \"Checks, if the specified key exists\"\n ],\n \"dba_fetch\": [\n \"string dba_fetch(string key, [int skip ,] resource handle)\",\n \"Fetches the data associated with key\"\n ],\n \"dba_firstkey\": [\n \"string dba_firstkey(resource handle)\",\n \"Resets the internal key pointer and returns the first key\"\n ],\n \"dba_handlers\": [\n \"array dba_handlers([bool full_info])\",\n \"List configured database handlers\"\n ],\n \"dba_insert\": [\n \"bool dba_insert(string key, string value, resource handle)\",\n \"If not inifile: Insert value as key, return false, if key exists already If inifile: Add vakue as key (next instance of key)\"\n ],\n \"dba_key_split\": [\n \"array|false dba_key_split(string key)\",\n \"Splits an inifile key into an array of the form array(0=>group,1=>value_name) but returns false if input is false or null\"\n ],\n \"dba_list\": [\n \"array dba_list()\",\n \"List opened databases\"\n ],\n \"dba_nextkey\": [\n \"string dba_nextkey(resource handle)\",\n \"Returns the next key\"\n ],\n \"dba_open\": [\n \"resource dba_open(string path, string mode [, string handlername, string ...])\",\n \"Opens path using the specified handler in mode\"\n ],\n \"dba_optimize\": [\n \"bool dba_optimize(resource handle)\",\n \"Optimizes (e.g. clean up, vacuum) database\"\n ],\n \"dba_popen\": [\n \"resource dba_popen(string path, string mode [, string handlername, string ...])\",\n \"Opens path using the specified handler in mode persistently\"\n ],\n \"dba_replace\": [\n \"bool dba_replace(string key, string value, resource handle)\",\n \"Inserts value as key, replaces key, if key exists already If inifile: remove all other key lines\"\n ],\n \"dba_sync\": [\n \"bool dba_sync(resource handle)\",\n \"Synchronizes database\"\n ],\n \"dcgettext\": [\n \"string dcgettext(string domain_name, string msgid, long category)\",\n \"Return the translation of msgid for domain_name and category, or msgid unaltered if a translation does not exist\"\n ],\n \"dcngettext\": [\n \"string dcngettext (string domain, string msgid1, string msgid2, int n, int category)\",\n \"Plural version of dcgettext()\"\n ],\n \"debug_backtrace\": [\n \"array debug_backtrace([bool provide_object])\",\n \"Return backtrace as array\"\n ],\n \"debug_print_backtrace\": [\n \"void debug_print_backtrace(void) */\",\n \"ZEND_FUNCTION(debug_print_backtrace) { zend_execute_data *ptr, *skip; int lineno; char *function_name; char *filename; char *class_name = NULL; char *call_type; char *include_filename = NULL; zval *arg_array = NULL; int indent = 0; if (zend_parse_parameters_none() == FAILURE) { return; } ptr = EG(current_execute_data);\",\n \"PHP_FUNCTION(dom_document_relaxNG_validate_file) { _dom_document_relaxNG_validate(INTERNAL_FUNCTION_PARAM_PASSTHRU, DOM_LOAD_FILE); } /* }}} end dom_document_relaxNG_validate_file\"\n ],\n \"dom_document_relaxNG_validate_xml\": [\n \"boolean dom_document_relaxNG_validate_xml(string source); */\",\n \"PHP_FUNCTION(dom_document_relaxNG_validate_xml) { _dom_document_relaxNG_validate(INTERNAL_FUNCTION_PARAM_PASSTHRU, DOM_LOAD_STRING); } /* }}} end dom_document_relaxNG_validate_xml\"\n ],\n \"dom_document_rename_node\": [\n \"DOMNode dom_document_rename_node(node n, string namespaceURI, string qualifiedName);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-Document3-renameNode Since: DOM Level 3\"\n ],\n \"dom_document_save\": [\n \"int dom_document_save(string file);\",\n \"Convenience method to save to file\"\n ],\n \"dom_document_save_html\": [\n \"string dom_document_save_html();\",\n \"Convenience method to output as html\"\n ],\n \"dom_document_save_html_file\": [\n \"int dom_document_save_html_file(string file);\",\n \"Convenience method to save to file as html\"\n ],\n \"dom_document_savexml\": [\n \"string dom_document_savexml([node n]);\",\n \"URL: http://www.w3.org/TR/DOM-Level-3-LS/load-save.html#LS-DocumentLS-saveXML Since: DOM Level 3\"\n ],\n \"dom_document_schema_validate\": [\n \"boolean dom_document_schema_validate(string source); */\",\n \"PHP_FUNCTION(dom_document_schema_validate_xml) { _dom_document_schema_validate(INTERNAL_FUNCTION_PARAM_PASSTHRU, DOM_LOAD_STRING); } /* }}} end dom_document_schema_validate\"\n ],\n \"dom_document_schema_validate_file\": [\n \"boolean dom_document_schema_validate_file(string filename); */\",\n \"PHP_FUNCTION(dom_document_schema_validate_file) { _dom_document_schema_validate(INTERNAL_FUNCTION_PARAM_PASSTHRU, DOM_LOAD_FILE); } /* }}} end dom_document_schema_validate_file\"\n ],\n \"dom_document_validate\": [\n \"boolean dom_document_validate();\",\n \"Since: DOM extended\"\n ],\n \"dom_document_xinclude\": [\n \"int dom_document_xinclude([int options])\",\n \"Substitutues xincludes in a DomDocument\"\n ],\n \"dom_domconfiguration_can_set_parameter\": [\n \"boolean dom_domconfiguration_can_set_parameter(string name, domuserdata value);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMConfiguration-canSetParameter Since:\"\n ],\n \"dom_domconfiguration_get_parameter\": [\n \"domdomuserdata dom_domconfiguration_get_parameter(string name);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMConfiguration-getParameter Since:\"\n ],\n \"dom_domconfiguration_set_parameter\": [\n \"dom_void dom_domconfiguration_set_parameter(string name, domuserdata value);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMConfiguration-property Since:\"\n ],\n \"dom_domerrorhandler_handle_error\": [\n \"dom_boolean dom_domerrorhandler_handle_error(domerror error);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-ERRORS-DOMErrorHandler-handleError Since:\"\n ],\n \"dom_domimplementation_create_document\": [\n \"DOMDocument dom_domimplementation_create_document(string namespaceURI, string qualifiedName, DOMDocumentType doctype);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Level-2-Core-DOM-createDocument Since: DOM Level 2\"\n ],\n \"dom_domimplementation_create_document_type\": [\n \"DOMDocumentType dom_domimplementation_create_document_type(string qualifiedName, string publicId, string systemId);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Level-2-Core-DOM-createDocType Since: DOM Level 2\"\n ],\n \"dom_domimplementation_get_feature\": [\n \"DOMNode dom_domimplementation_get_feature(string feature, string version);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMImplementation3-getFeature Since: DOM Level 3\"\n ],\n \"dom_domimplementation_has_feature\": [\n \"boolean dom_domimplementation_has_feature(string feature, string version);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-5CED94D7 Since:\"\n ],\n \"dom_domimplementationlist_item\": [\n \"domdomimplementation dom_domimplementationlist_item(int index);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMImplementationList-item Since:\"\n ],\n \"dom_domimplementationsource_get_domimplementation\": [\n \"domdomimplementation dom_domimplementationsource_get_domimplementation(string features);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-getDOMImpl Since:\"\n ],\n \"dom_domimplementationsource_get_domimplementations\": [\n \"domimplementationlist dom_domimplementationsource_get_domimplementations(string features);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-getDOMImpls Since:\"\n ],\n \"dom_domstringlist_item\": [\n \"domstring dom_domstringlist_item(int index);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMStringList-item Since:\"\n ],\n \"dom_element_get_attribute\": [\n \"string dom_element_get_attribute(string name);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-666EE0F9 Since:\"\n ],\n \"dom_element_get_attribute_node\": [\n \"DOMAttr dom_element_get_attribute_node(string name);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-217A91B8 Since:\"\n ],\n \"dom_element_get_attribute_node_ns\": [\n \"DOMAttr dom_element_get_attribute_node_ns(string namespaceURI, string localName);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-ElGetAtNodeNS Since: DOM Level 2\"\n ],\n \"dom_element_get_attribute_ns\": [\n \"string dom_element_get_attribute_ns(string namespaceURI, string localName);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-ElGetAttrNS Since: DOM Level 2\"\n ],\n \"dom_element_get_elements_by_tag_name\": [\n \"DOMNodeList dom_element_get_elements_by_tag_name(string name);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-1938918D Since:\"\n ],\n \"dom_element_get_elements_by_tag_name_ns\": [\n \"DOMNodeList dom_element_get_elements_by_tag_name_ns(string namespaceURI, string localName);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-A6C90942 Since: DOM Level 2\"\n ],\n \"dom_element_has_attribute\": [\n \"boolean dom_element_has_attribute(string name);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-ElHasAttr Since: DOM Level 2\"\n ],\n \"dom_element_has_attribute_ns\": [\n \"boolean dom_element_has_attribute_ns(string namespaceURI, string localName);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-ElHasAttrNS Since: DOM Level 2\"\n ],\n \"dom_element_remove_attribute\": [\n \"void dom_element_remove_attribute(string name);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-6D6AC0F9 Since:\"\n ],\n \"dom_element_remove_attribute_node\": [\n \"DOMAttr dom_element_remove_attribute_node(DOMAttr oldAttr);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-D589198 Since:\"\n ],\n \"dom_element_remove_attribute_ns\": [\n \"void dom_element_remove_attribute_ns(string namespaceURI, string localName);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-ElRemAtNS Since: DOM Level 2\"\n ],\n \"dom_element_set_attribute\": [\n \"void dom_element_set_attribute(string name, string value);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-F68F082 Since:\"\n ],\n \"dom_element_set_attribute_node\": [\n \"DOMAttr dom_element_set_attribute_node(DOMAttr newAttr);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-887236154 Since:\"\n ],\n \"dom_element_set_attribute_node_ns\": [\n \"DOMAttr dom_element_set_attribute_node_ns(DOMAttr newAttr);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-ElSetAtNodeNS Since: DOM Level 2\"\n ],\n \"dom_element_set_attribute_ns\": [\n \"void dom_element_set_attribute_ns(string namespaceURI, string qualifiedName, string value);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-ElSetAttrNS Since: DOM Level 2\"\n ],\n \"dom_element_set_id_attribute\": [\n \"void dom_element_set_id_attribute(string name, boolean isId);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-ElSetIdAttr Since: DOM Level 3\"\n ],\n \"dom_element_set_id_attribute_node\": [\n \"void dom_element_set_id_attribute_node(attr idAttr, boolean isId);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-ElSetIdAttrNode Since: DOM Level 3\"\n ],\n \"dom_element_set_id_attribute_ns\": [\n \"void dom_element_set_id_attribute_ns(string namespaceURI, string localName, boolean isId);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-ElSetIdAttrNS Since: DOM Level 3\"\n ],\n \"dom_import_simplexml\": [\n \"somNode dom_import_simplexml(sxeobject node)\",\n \"Get a simplexml_element object from dom to allow for processing\"\n ],\n \"dom_namednodemap_get_named_item\": [\n \"DOMNode dom_namednodemap_get_named_item(string name);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-1074577549 Since:\"\n ],\n \"dom_namednodemap_get_named_item_ns\": [\n \"DOMNode dom_namednodemap_get_named_item_ns(string namespaceURI, string localName);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-getNamedItemNS Since: DOM Level 2\"\n ],\n \"dom_namednodemap_item\": [\n \"DOMNode dom_namednodemap_item(int index);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-349467F9 Since:\"\n ],\n \"dom_namednodemap_remove_named_item\": [\n \"DOMNode dom_namednodemap_remove_named_item(string name);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-D58B193 Since:\"\n ],\n \"dom_namednodemap_remove_named_item_ns\": [\n \"DOMNode dom_namednodemap_remove_named_item_ns(string namespaceURI, string localName);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-removeNamedItemNS Since: DOM Level 2\"\n ],\n \"dom_namednodemap_set_named_item\": [\n \"DOMNode dom_namednodemap_set_named_item(DOMNode arg);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-1025163788 Since:\"\n ],\n \"dom_namednodemap_set_named_item_ns\": [\n \"DOMNode dom_namednodemap_set_named_item_ns(DOMNode arg);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-setNamedItemNS Since: DOM Level 2\"\n ],\n \"dom_namelist_get_name\": [\n \"string dom_namelist_get_name(int index);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#NameList-getName Since:\"\n ],\n \"dom_namelist_get_namespace_uri\": [\n \"string dom_namelist_get_namespace_uri(int index);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#NameList-getNamespaceURI Since:\"\n ],\n \"dom_node_append_child\": [\n \"DomNode dom_node_append_child(DomNode newChild);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-184E7107 Since:\"\n ],\n \"dom_node_clone_node\": [\n \"DomNode dom_node_clone_node(boolean deep);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-3A0ED0A4 Since:\"\n ],\n \"dom_node_compare_document_position\": [\n \"short dom_node_compare_document_position(DomNode other);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Node3-compareDocumentPosition Since: DOM Level 3\"\n ],\n \"dom_node_get_feature\": [\n \"DomNode dom_node_get_feature(string feature, string version);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Node3-getFeature Since: DOM Level 3\"\n ],\n \"dom_node_get_user_data\": [\n \"mixed dom_node_get_user_data(string key);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Node3-getUserData Since: DOM Level 3\"\n ],\n \"dom_node_has_attributes\": [\n \"boolean dom_node_has_attributes();\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-NodeHasAttrs Since: DOM Level 2\"\n ],\n \"dom_node_has_child_nodes\": [\n \"boolean dom_node_has_child_nodes();\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-810594187 Since:\"\n ],\n \"dom_node_insert_before\": [\n \"domnode dom_node_insert_before(DomNode newChild, DomNode refChild);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-952280727 Since:\"\n ],\n \"dom_node_is_default_namespace\": [\n \"boolean dom_node_is_default_namespace(string namespaceURI);\",\n \"URL: http://www.w3.org/TR/DOM-Level-3-Core/core.html#Node3-isDefaultNamespace Since: DOM Level 3\"\n ],\n \"dom_node_is_equal_node\": [\n \"boolean dom_node_is_equal_node(DomNode arg);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Node3-isEqualNode Since: DOM Level 3\"\n ],\n \"dom_node_is_same_node\": [\n \"boolean dom_node_is_same_node(DomNode other);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Node3-isSameNode Since: DOM Level 3\"\n ],\n \"dom_node_is_supported\": [\n \"boolean dom_node_is_supported(string feature, string version);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-Level-2-Core-Node-supports Since: DOM Level 2\"\n ],\n \"dom_node_lookup_namespace_uri\": [\n \"string dom_node_lookup_namespace_uri(string prefix);\",\n \"URL: http://www.w3.org/TR/DOM-Level-3-Core/core.html#Node3-lookupNamespaceURI Since: DOM Level 3\"\n ],\n \"dom_node_lookup_prefix\": [\n \"string dom_node_lookup_prefix(string namespaceURI);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Node3-lookupNamespacePrefix Since: DOM Level 3\"\n ],\n \"dom_node_normalize\": [\n \"void dom_node_normalize();\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-normalize Since:\"\n ],\n \"dom_node_remove_child\": [\n \"DomNode dom_node_remove_child(DomNode oldChild);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-1734834066 Since:\"\n ],\n \"dom_node_replace_child\": [\n \"DomNode dom_node_replace_child(DomNode newChild, DomNode oldChild);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-785887307 Since:\"\n ],\n \"dom_node_set_user_data\": [\n \"mixed dom_node_set_user_data(string key, mixed data, userdatahandler handler);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Node3-setUserData Since: DOM Level 3\"\n ],\n \"dom_nodelist_item\": [\n \"DOMNode dom_nodelist_item(int index);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-844377136 Since:\"\n ],\n \"dom_string_extend_find_offset16\": [\n \"int dom_string_extend_find_offset16(int offset32);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#i18n-methods-StringExtend-findOffset16 Since:\"\n ],\n \"dom_string_extend_find_offset32\": [\n \"int dom_string_extend_find_offset32(int offset16);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#i18n-methods-StringExtend-findOffset32 Since:\"\n ],\n \"dom_text_is_whitespace_in_element_content\": [\n \"boolean dom_text_is_whitespace_in_element_content();\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-Text3-isWhitespaceInElementContent Since: DOM Level 3\"\n ],\n \"dom_text_replace_whole_text\": [\n \"DOMText dom_text_replace_whole_text(string content);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-Text3-replaceWholeText Since: DOM Level 3\"\n ],\n \"dom_text_split_text\": [\n \"DOMText dom_text_split_text(int offset);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-38853C1D Since:\"\n ],\n \"dom_userdatahandler_handle\": [\n \"dom_void dom_userdatahandler_handle(short operation, string key, domobject data, node src, node dst);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-handleUserDataEvent Since:\"\n ],\n \"dom_xpath_evaluate\": [\n \"mixed dom_xpath_evaluate(string expr [,DOMNode context]); */\",\n \"PHP_FUNCTION(dom_xpath_evaluate) { php_xpath_eval(INTERNAL_FUNCTION_PARAM_PASSTHRU, PHP_DOM_XPATH_EVALUATE); } /* }}} end dom_xpath_evaluate\"\n ],\n \"dom_xpath_query\": [\n \"DOMNodeList dom_xpath_query(string expr [,DOMNode context]); */\",\n \"PHP_FUNCTION(dom_xpath_query) { php_xpath_eval(INTERNAL_FUNCTION_PARAM_PASSTHRU, PHP_DOM_XPATH_QUERY); } /* }}} end dom_xpath_query\"\n ],\n \"dom_xpath_register_ns\": [\n \"boolean dom_xpath_register_ns(string prefix, string uri); */\",\n \"PHP_FUNCTION(dom_xpath_register_ns) { zval *id; xmlXPathContextPtr ctxp; int prefix_len, ns_uri_len; dom_xpath_object *intern; unsigned char *prefix, *ns_uri; if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), \\\"Oss\\\", &id, dom_xpath_class_entry, &prefix, &prefix_len, &ns_uri, &ns_uri_len) == FAILURE) { return; } intern = (dom_xpath_object *)zend_object_store_get_object(id TSRMLS_CC); ctxp = (xmlXPathContextPtr) intern->ptr; if (ctxp == NULL) { php_error_docref(NULL TSRMLS_CC, E_WARNING, \\\"Invalid XPath Context\\\"); RETURN_FALSE; } if (xmlXPathRegisterNs(ctxp, prefix, ns_uri) != 0) { RETURN_FALSE } RETURN_TRUE; } /* }}}\"\n ],\n \"dom_xpath_register_php_functions\": [\n \"void dom_xpath_register_php_functions() */\",\n \"PHP_FUNCTION(dom_xpath_register_php_functions) { zval *id; dom_xpath_object *intern; zval *array_value, **entry, *new_string; int name_len = 0; char *name; DOM_GET_THIS(id); if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS() TSRMLS_CC, \\\"a\\\", &array_value) == SUCCESS) { intern = (dom_xpath_object *)zend_object_store_get_object(id TSRMLS_CC); zend_hash_internal_pointer_reset(Z_ARRVAL_P(array_value)); while (zend_hash_get_current_data(Z_ARRVAL_P(array_value), (void **)&entry) == SUCCESS) { SEPARATE_ZVAL(entry); convert_to_string_ex(entry); MAKE_STD_ZVAL(new_string); ZVAL_LONG(new_string,1); zend_hash_update(intern->registered_phpfunctions, Z_STRVAL_PP(entry), Z_STRLEN_PP(entry) + 1, &new_string, sizeof(zval*), NULL); zend_hash_move_forward(Z_ARRVAL_P(array_value)); } intern->registerPhpFunctions = 2; RETURN_TRUE; } else if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS() TSRMLS_CC, \\\"s\\\", &name, &name_len) == SUCCESS) { intern = (dom_xpath_object *)zend_object_store_get_object(id TSRMLS_CC); MAKE_STD_ZVAL(new_string); ZVAL_LONG(new_string,1); zend_hash_update(intern->registered_phpfunctions, name, name_len + 1, &new_string, sizeof(zval*), NULL); intern->registerPhpFunctions = 2; } else { intern = (dom_xpath_object *)zend_object_store_get_object(id TSRMLS_CC); intern->registerPhpFunctions = 1; } } /* }}} end dom_xpath_register_php_functions\"\n ],\n \"each\": [\n \"array each(array arr)\",\n \"Return the currently pointed key..value pair in the passed array, and advance the pointer to the next element\"\n ],\n \"easter_date\": [\n \"int easter_date([int year])\",\n \"Return the timestamp of midnight on Easter of a given year (defaults to current year)\"\n ],\n \"easter_days\": [\n \"int easter_days([int year, [int method]])\",\n \"Return the number of days after March 21 that Easter falls on for a given year (defaults to current year)\"\n ],\n \"echo\": [\n \"void echo(string arg1 [, string ...])\",\n \"Output one or more strings\"\n ],\n \"empty\": [\n \"bool empty( mixed var )\",\n \"Determine whether a variable is empty\"\n ],\n \"enchant_broker_describe\": [\n \"array enchant_broker_describe(resource broker)\",\n \"Enumerates the Enchant providers and tells you some rudimentary information about them. The same info is provided through phpinfo()\"\n ],\n \"enchant_broker_dict_exists\": [\n \"bool enchant_broker_dict_exists(resource broker, string tag)\",\n \"Whether a dictionary exists or not. Using non-empty tag\"\n ],\n \"enchant_broker_free\": [\n \"boolean enchant_broker_free(resource broker)\",\n \"Destroys the broker object and its dictionnaries\"\n ],\n \"enchant_broker_free_dict\": [\n \"resource enchant_broker_free_dict(resource dict)\",\n \"Free the dictionary resource\"\n ],\n \"enchant_broker_get_dict_path\": [\n \"string enchant_broker_get_dict_path(resource broker, int dict_type)\",\n \"Get the directory path for a given backend, works with ispell and myspell\"\n ],\n \"enchant_broker_get_error\": [\n \"string enchant_broker_get_error(resource broker)\",\n \"Returns the last error of the broker\"\n ],\n \"enchant_broker_init\": [\n \"resource enchant_broker_init()\",\n \"create a new broker object capable of requesting\"\n ],\n \"enchant_broker_list_dicts\": [\n \"string enchant_broker_list_dicts(resource broker)\",\n \"Lists the dictionaries available for the given broker\"\n ],\n \"enchant_broker_request_dict\": [\n \"resource enchant_broker_request_dict(resource broker, string tag)\",\n \"create a new dictionary using tag, the non-empty language tag you wish to request a dictionary for (\\\"en_US\\\", \\\"de_DE\\\", ...)\"\n ],\n \"enchant_broker_request_pwl_dict\": [\n \"resource enchant_broker_request_pwl_dict(resource broker, string filename)\",\n \"creates a dictionary using a PWL file. A PWL file is personal word file one word per line. It must exist before the call.\"\n ],\n \"enchant_broker_set_dict_path\": [\n \"bool enchant_broker_set_dict_path(resource broker, int dict_type, string value)\",\n \"Set the directory path for a given backend, works with ispell and myspell\"\n ],\n \"enchant_broker_set_ordering\": [\n \"bool enchant_broker_set_ordering(resource broker, string tag, string ordering)\",\n \"Declares a preference of dictionaries to use for the language described/referred to by 'tag'. The ordering is a comma delimited list of provider names. As a special exception, the \\\"*\\\" tag can be used as a language tag to declare a default ordering for any language that does not explictly declare an ordering.\"\n ],\n \"enchant_dict_add_to_personal\": [\n \"void enchant_dict_add_to_personal(resource dict, string word)\",\n \"add 'word' to personal word list\"\n ],\n \"enchant_dict_add_to_session\": [\n \"void enchant_dict_add_to_session(resource dict, string word)\",\n \"add 'word' to this spell-checking session\"\n ],\n \"enchant_dict_check\": [\n \"bool enchant_dict_check(resource dict, string word)\",\n \"If the word is correctly spelled return true, otherwise return false\"\n ],\n \"enchant_dict_describe\": [\n \"array enchant_dict_describe(resource dict)\",\n \"Describes an individual dictionary 'dict'\"\n ],\n \"enchant_dict_get_error\": [\n \"string enchant_dict_get_error(resource dict)\",\n \"Returns the last error of the current spelling-session\"\n ],\n \"enchant_dict_is_in_session\": [\n \"bool enchant_dict_is_in_session(resource dict, string word)\",\n \"whether or not 'word' exists in this spelling-session\"\n ],\n \"enchant_dict_quick_check\": [\n \"bool enchant_dict_quick_check(resource dict, string word [, array &suggestions])\",\n \"If the word is correctly spelled return true, otherwise return false, if suggestions variable is provided, fill it with spelling alternatives.\"\n ],\n \"enchant_dict_store_replacement\": [\n \"void enchant_dict_store_replacement(resource dict, string mis, string cor)\",\n \"add a correction for 'mis' using 'cor'. Notes that you replaced @mis with @cor, so it's possibly more likely that future occurrences of @mis will be replaced with @cor. So it might bump @cor up in the suggestion list.\"\n ],\n \"enchant_dict_suggest\": [\n \"array enchant_dict_suggest(resource dict, string word)\",\n \"Will return a list of values if any of those pre-conditions are not met.\"\n ],\n \"end\": [\n \"mixed end(array array_arg)\",\n \"Advances array argument's internal pointer to the last element and return it\"\n ],\n \"ereg\": [\n \"int ereg(string pattern, string string [, array registers])\",\n \"Regular expression match\"\n ],\n \"ereg_replace\": [\n \"string ereg_replace(string pattern, string replacement, string string)\",\n \"Replace regular expression\"\n ],\n \"eregi\": [\n \"int eregi(string pattern, string string [, array registers])\",\n \"Case-insensitive regular expression match\"\n ],\n \"eregi_replace\": [\n \"string eregi_replace(string pattern, string replacement, string string)\",\n \"Case insensitive replace regular expression\"\n ],\n \"error_get_last\": [\n \"array error_get_last()\",\n \"Get the last occurred error as associative array. Returns NULL if there hasn't been an error yet.\"\n ],\n \"error_log\": [\n \"bool error_log(string message [, int message_type [, string destination [, string extra_headers]]])\",\n \"Send an error message somewhere\"\n ],\n \"error_reporting\": [\n \"int error_reporting([int new_error_level])\",\n \"Return the current error_reporting level, and if an argument was passed - change to the new level\"\n ],\n \"escapeshellarg\": [\n \"string escapeshellarg(string arg)\",\n \"Quote and escape an argument for use in a shell command\"\n ],\n \"escapeshellcmd\": [\n \"string escapeshellcmd(string command)\",\n \"Escape shell metacharacters\"\n ],\n \"exec\": [\n \"string exec(string command [, array &output [, int &return_value]])\",\n \"Execute an external program\"\n ],\n \"exif_imagetype\": [\n \"int exif_imagetype(string imagefile)\",\n \"Get the type of an image\"\n ],\n \"exif_read_data\": [\n \"array exif_read_data(string filename [, sections_needed [, sub_arrays[, read_thumbnail]]])\",\n \"Reads header data from the JPEG/TIFF image filename and optionally reads the internal thumbnails\"\n ],\n \"exif_tagname\": [\n \"string exif_tagname(index)\",\n \"Get headername for index or false if not defined\"\n ],\n \"exif_thumbnail\": [\n \"string exif_thumbnail(string filename [, &width, &height [, &imagetype]])\",\n \"Reads the embedded thumbnail\"\n ],\n \"exit\": [\n \"void exit([mixed status])\",\n \"Output a message and terminate the current script\"\n ],\n \"exp\": [\n \"float exp(float number)\",\n \"Returns e raised to the power of the number\"\n ],\n \"explode\": [\n \"array explode(string separator, string str [, int limit])\",\n \"Splits a string on string separator and return array of components. If limit is positive only limit number of components is returned. If limit is negative all components except the last abs(limit) are returned.\"\n ],\n \"expm1\": [\n \"float expm1(float number)\",\n \"Returns exp(number) - 1, computed in a way that accurate even when the value of number is close to zero\"\n ],\n \"extension_loaded\": [\n \"bool extension_loaded(string extension_name)\",\n \"Returns true if the named extension is loaded\"\n ],\n \"extract\": [\n \"int extract(array var_array [, int extract_type [, string prefix]])\",\n \"Imports variables into symbol table from an array\"\n ],\n \"ezmlm_hash\": [\n \"int ezmlm_hash(string addr)\",\n \"Calculate EZMLM list hash value.\"\n ],\n \"fclose\": [\n \"bool fclose(resource fp)\",\n \"Close an open file pointer\"\n ],\n \"feof\": [\n \"bool feof(resource fp)\",\n \"Test for end-of-file on a file pointer\"\n ],\n \"fflush\": [\n \"bool fflush(resource fp)\",\n \"Flushes output\"\n ],\n \"fgetc\": [\n \"string fgetc(resource fp)\",\n \"Get a character from file pointer\"\n ],\n \"fgetcsv\": [\n \"array fgetcsv(resource fp [,int length [, string delimiter [, string enclosure [, string escape]]]])\",\n \"Get line from file pointer and parse for CSV fields\"\n ],\n \"fgets\": [\n \"string fgets(resource fp[, int length])\",\n \"Get a line from file pointer\"\n ],\n \"fgetss\": [\n \"string fgetss(resource fp [, int length [, string allowable_tags]])\",\n \"Get a line from file pointer and strip HTML tags\"\n ],\n \"file\": [\n \"array file(string filename [, int flags[, resource context]])\",\n \"Read entire file into an array\"\n ],\n \"file_exists\": [\n \"bool file_exists(string filename)\",\n \"Returns true if filename exists\"\n ],\n \"file_get_contents\": [\n \"string file_get_contents(string filename [, bool use_include_path [, resource context [, long offset [, long maxlen]]]])\",\n \"Read the entire file into a string\"\n ],\n \"file_put_contents\": [\n \"int file_put_contents(string file, mixed data [, int flags [, resource context]])\",\n \"Write/Create a file with contents data and return the number of bytes written\"\n ],\n \"fileatime\": [\n \"int fileatime(string filename)\",\n \"Get last access time of file\"\n ],\n \"filectime\": [\n \"int filectime(string filename)\",\n \"Get inode modification time of file\"\n ],\n \"filegroup\": [\n \"int filegroup(string filename)\",\n \"Get file group\"\n ],\n \"fileinode\": [\n \"int fileinode(string filename)\",\n \"Get file inode\"\n ],\n \"filemtime\": [\n \"int filemtime(string filename)\",\n \"Get last modification time of file\"\n ],\n \"fileowner\": [\n \"int fileowner(string filename)\",\n \"Get file owner\"\n ],\n \"fileperms\": [\n \"int fileperms(string filename)\",\n \"Get file permissions\"\n ],\n \"filesize\": [\n \"int filesize(string filename)\",\n \"Get file size\"\n ],\n \"filetype\": [\n \"string filetype(string filename)\",\n \"Get file type\"\n ],\n \"filter_has_var\": [\n \"mixed filter_has_var(constant type, string variable_name)\",\n \"* Returns true if the variable with the name 'name' exists in source.\"\n ],\n \"filter_input\": [\n \"mixed filter_input(constant type, string variable_name [, long filter [, mixed options]])\",\n \"* Returns the filtered variable 'name'* from source `type`.\"\n ],\n \"filter_input_array\": [\n \"mixed filter_input_array(constant type, [, mixed options]])\",\n \"* Returns an array with all arguments defined in 'definition'.\"\n ],\n \"filter_var\": [\n \"mixed filter_var(mixed variable [, long filter [, mixed options]])\",\n \"* Returns the filtered version of the vriable.\"\n ],\n \"filter_var_array\": [\n \"mixed filter_var_array(array data, [, mixed options]])\",\n \"* Returns an array with all arguments defined in 'definition'.\"\n ],\n \"finfo_buffer\": [\n \"string finfo_buffer(resource finfo, char *string [, int options [, resource context]])\",\n \"Return infromation about a string buffer.\"\n ],\n \"finfo_close\": [\n \"resource finfo_close(resource finfo)\",\n \"Close fileinfo resource.\"\n ],\n \"finfo_file\": [\n \"string finfo_file(resource finfo, char *file_name [, int options [, resource context]])\",\n \"Return information about a file.\"\n ],\n \"finfo_open\": [\n \"resource finfo_open([int options [, string arg]])\",\n \"Create a new fileinfo resource.\"\n ],\n \"finfo_set_flags\": [\n \"bool finfo_set_flags(resource finfo, int options)\",\n \"Set libmagic configuration options.\"\n ],\n \"floatval\": [\n \"float floatval(mixed var)\",\n \"Get the float value of a variable\"\n ],\n \"flock\": [\n \"bool flock(resource fp, int operation [, int &wouldblock])\",\n \"Portable file locking\"\n ],\n \"floor\": [\n \"float floor(float number)\",\n \"Returns the next lowest integer value from the number\"\n ],\n \"flush\": [\n \"void flush(void)\",\n \"Flush the output buffer\"\n ],\n \"fmod\": [\n \"float fmod(float x, float y)\",\n \"Returns the remainder of dividing x by y as a float\"\n ],\n \"fnmatch\": [\n \"bool fnmatch(string pattern, string filename [, int flags])\",\n \"Match filename against pattern\"\n ],\n \"fopen\": [\n \"resource fopen(string filename, string mode [, bool use_include_path [, resource context]])\",\n \"Open a file or a URL and return a file pointer\"\n ],\n \"forward_static_call\": [\n \"mixed forward_static_call(mixed function_name [, mixed parmeter] [, mixed ...])\",\n \"Call a user function which is the first parameter\"\n ],\n \"fpassthru\": [\n \"int fpassthru(resource fp)\",\n \"Output all remaining data from a file pointer\"\n ],\n \"fprintf\": [\n \"int fprintf(resource stream, string format [, mixed arg1 [, mixed ...]])\",\n \"Output a formatted string into a stream\"\n ],\n \"fputcsv\": [\n \"int fputcsv(resource fp, array fields [, string delimiter [, string enclosure]])\",\n \"Format line as CSV and write to file pointer\"\n ],\n \"fread\": [\n \"string fread(resource fp, int length)\",\n \"Binary-safe file read\"\n ],\n \"frenchtojd\": [\n \"int frenchtojd(int month, int day, int year)\",\n \"Converts a french republic calendar date to julian day count\"\n ],\n \"fscanf\": [\n \"mixed fscanf(resource stream, string format [, string ...])\",\n \"Implements a mostly ANSI compatible fscanf()\"\n ],\n \"fseek\": [\n \"int fseek(resource fp, int offset [, int whence])\",\n \"Seek on a file pointer\"\n ],\n \"fsockopen\": [\n \"resource fsockopen(string hostname, int port [, int errno [, string errstr [, float timeout]]])\",\n \"Open Internet or Unix domain socket connection\"\n ],\n \"fstat\": [\n \"array fstat(resource fp)\",\n \"Stat() on a filehandle\"\n ],\n \"ftell\": [\n \"int ftell(resource fp)\",\n \"Get file pointer's read/write position\"\n ],\n \"ftok\": [\n \"int ftok(string pathname, string proj)\",\n \"Convert a pathname and a project identifier to a System V IPC key\"\n ],\n \"ftp_alloc\": [\n \"bool ftp_alloc(resource stream, int size[, &response])\",\n \"Attempt to allocate space on the remote FTP server\"\n ],\n \"ftp_cdup\": [\n \"bool ftp_cdup(resource stream)\",\n \"Changes to the parent directory\"\n ],\n \"ftp_chdir\": [\n \"bool ftp_chdir(resource stream, string directory)\",\n \"Changes directories\"\n ],\n \"ftp_chmod\": [\n \"int ftp_chmod(resource stream, int mode, string filename)\",\n \"Sets permissions on a file\"\n ],\n \"ftp_close\": [\n \"bool ftp_close(resource stream)\",\n \"Closes the FTP stream\"\n ],\n \"ftp_connect\": [\n \"resource ftp_connect(string host [, int port [, int timeout]])\",\n \"Opens a FTP stream\"\n ],\n \"ftp_delete\": [\n \"bool ftp_delete(resource stream, string file)\",\n \"Deletes a file\"\n ],\n \"ftp_exec\": [\n \"bool ftp_exec(resource stream, string command)\",\n \"Requests execution of a program on the FTP server\"\n ],\n \"ftp_fget\": [\n \"bool ftp_fget(resource stream, resource fp, string remote_file, int mode[, int resumepos])\",\n \"Retrieves a file from the FTP server and writes it to an open file\"\n ],\n \"ftp_fput\": [\n \"bool ftp_fput(resource stream, string remote_file, resource fp, int mode[, int startpos])\",\n \"Stores a file from an open file to the FTP server\"\n ],\n \"ftp_get\": [\n \"bool ftp_get(resource stream, string local_file, string remote_file, int mode[, int resume_pos])\",\n \"Retrieves a file from the FTP server and writes it to a local file\"\n ],\n \"ftp_get_option\": [\n \"mixed ftp_get_option(resource stream, int option)\",\n \"Gets an FTP option\"\n ],\n \"ftp_login\": [\n \"bool ftp_login(resource stream, string username, string password)\",\n \"Logs into the FTP server\"\n ],\n \"ftp_mdtm\": [\n \"int ftp_mdtm(resource stream, string filename)\",\n \"Returns the last modification time of the file, or -1 on error\"\n ],\n \"ftp_mkdir\": [\n \"string ftp_mkdir(resource stream, string directory)\",\n \"Creates a directory and returns the absolute path for the new directory or false on error\"\n ],\n \"ftp_nb_continue\": [\n \"int ftp_nb_continue(resource stream)\",\n \"Continues retrieving/sending a file nbronously\"\n ],\n \"ftp_nb_fget\": [\n \"int ftp_nb_fget(resource stream, resource fp, string remote_file, int mode[, int resumepos])\",\n \"Retrieves a file from the FTP server asynchronly and writes it to an open file\"\n ],\n \"ftp_nb_fput\": [\n \"int ftp_nb_fput(resource stream, string remote_file, resource fp, int mode[, int startpos])\",\n \"Stores a file from an open file to the FTP server nbronly\"\n ],\n \"ftp_nb_get\": [\n \"int ftp_nb_get(resource stream, string local_file, string remote_file, int mode[, int resume_pos])\",\n \"Retrieves a file from the FTP server nbhronly and writes it to a local file\"\n ],\n \"ftp_nb_put\": [\n \"int ftp_nb_put(resource stream, string remote_file, string local_file, int mode[, int startpos])\",\n \"Stores a file on the FTP server\"\n ],\n \"ftp_nlist\": [\n \"array ftp_nlist(resource stream, string directory)\",\n \"Returns an array of filenames in the given directory\"\n ],\n \"ftp_pasv\": [\n \"bool ftp_pasv(resource stream, bool pasv)\",\n \"Turns passive mode on or off\"\n ],\n \"ftp_put\": [\n \"bool ftp_put(resource stream, string remote_file, string local_file, int mode[, int startpos])\",\n \"Stores a file on the FTP server\"\n ],\n \"ftp_pwd\": [\n \"string ftp_pwd(resource stream)\",\n \"Returns the present working directory\"\n ],\n \"ftp_raw\": [\n \"array ftp_raw(resource stream, string command)\",\n \"Sends a literal command to the FTP server\"\n ],\n \"ftp_rawlist\": [\n \"array ftp_rawlist(resource stream, string directory [, bool recursive])\",\n \"Returns a detailed listing of a directory as an array of output lines\"\n ],\n \"ftp_rename\": [\n \"bool ftp_rename(resource stream, string src, string dest)\",\n \"Renames the given file to a new path\"\n ],\n \"ftp_rmdir\": [\n \"bool ftp_rmdir(resource stream, string directory)\",\n \"Removes a directory\"\n ],\n \"ftp_set_option\": [\n \"bool ftp_set_option(resource stream, int option, mixed value)\",\n \"Sets an FTP option\"\n ],\n \"ftp_site\": [\n \"bool ftp_site(resource stream, string cmd)\",\n \"Sends a SITE command to the server\"\n ],\n \"ftp_size\": [\n \"int ftp_size(resource stream, string filename)\",\n \"Returns the size of the file, or -1 on error\"\n ],\n \"ftp_ssl_connect\": [\n \"resource ftp_ssl_connect(string host [, int port [, int timeout]])\",\n \"Opens a FTP-SSL stream\"\n ],\n \"ftp_systype\": [\n \"string ftp_systype(resource stream)\",\n \"Returns the system type identifier\"\n ],\n \"ftruncate\": [\n \"bool ftruncate(resource fp, int size)\",\n \"Truncate file to 'size' length\"\n ],\n \"func_get_arg\": [\n \"mixed func_get_arg(int arg_num)\",\n \"Get the $arg_num'th argument that was passed to the function\"\n ],\n \"func_get_args\": [\n \"array func_get_args()\",\n \"Get an array of the arguments that were passed to the function\"\n ],\n \"func_num_args\": [\n \"int func_num_args(void)\",\n \"Get the number of arguments that were passed to the function\"\n ],\n \"function \": [\"\", \"\"],\n \"foreach \": [\"\", \"\"],\n \"function_exists\": [\n \"bool function_exists(string function_name)\",\n \"Checks if the function exists\"\n ],\n \"fwrite\": [\n \"int fwrite(resource fp, string str [, int length])\",\n \"Binary-safe file write\"\n ],\n \"gc_collect_cycles\": [\n \"int gc_collect_cycles(void)\",\n \"Forces collection of any existing garbage cycles. Returns number of freed zvals\"\n ],\n \"gc_disable\": [\n \"void gc_disable(void)\",\n \"Deactivates the circular reference collector\"\n ],\n \"gc_enable\": [\n \"void gc_enable(void)\",\n \"Activates the circular reference collector\"\n ],\n \"gc_enabled\": [\n \"void gc_enabled(void)\",\n \"Returns status of the circular reference collector\"\n ],\n \"gd_info\": [\n \"array gd_info()\",\n \"\"\n ],\n \"getKeywords\": [\n \"static array getKeywords(string $locale) {\",\n \"* return an associative array containing keyword-value * pairs for this locale. The keys are keys to the array (doh!) * }}}\"\n ],\n \"get_browser\": [\n \"mixed get_browser([string browser_name [, bool return_array]])\",\n \"Get information about the capabilities of a browser. If browser_name is omitted or null, HTTP_USER_AGENT is used. Returns an object by default; if return_array is true, returns an array.\"\n ],\n \"get_called_class\": [\n \"string get_called_class()\",\n \"Retrieves the \\\"Late Static Binding\\\" class name\"\n ],\n \"get_cfg_var\": [\n \"mixed get_cfg_var(string option_name)\",\n \"Get the value of a PHP configuration option\"\n ],\n \"get_class\": [\n \"string get_class([object object])\",\n \"Retrieves the class name\"\n ],\n \"get_class_methods\": [\n \"array get_class_methods(mixed class)\",\n \"Returns an array of method names for class or class instance.\"\n ],\n \"get_class_vars\": [\n \"array get_class_vars(string class_name)\",\n \"Returns an array of default properties of the class.\"\n ],\n \"get_current_user\": [\n \"string get_current_user(void)\",\n \"Get the name of the owner of the current PHP script\"\n ],\n \"get_declared_classes\": [\n \"array get_declared_classes()\",\n \"Returns an array of all declared classes.\"\n ],\n \"get_declared_interfaces\": [\n \"array get_declared_interfaces()\",\n \"Returns an array of all declared interfaces.\"\n ],\n \"get_defined_constants\": [\n \"array get_defined_constants([bool categorize])\",\n \"Return an array containing the names and values of all defined constants\"\n ],\n \"get_defined_functions\": [\n \"array get_defined_functions(void)\",\n \"Returns an array of all defined functions\"\n ],\n \"get_defined_vars\": [\n \"array get_defined_vars(void)\",\n \"Returns an associative array of names and values of all currently defined variable names (variables in the current scope)\"\n ],\n \"get_display_language\": [\n \"static string get_display_language($locale[, $in_locale = null])\",\n \"* gets the language for the $locale in $in_locale or default_locale\"\n ],\n \"get_display_name\": [\n \"static string get_display_name($locale[, $in_locale = null])\",\n \"* gets the name for the $locale in $in_locale or default_locale\"\n ],\n \"get_display_region\": [\n \"static string get_display_region($locale, $in_locale = null)\",\n \"* gets the region for the $locale in $in_locale or default_locale\"\n ],\n \"get_display_script\": [\n \"static string get_display_script($locale, $in_locale = null)\",\n \"* gets the script for the $locale in $in_locale or default_locale\"\n ],\n \"get_extension_funcs\": [\n \"array get_extension_funcs(string extension_name)\",\n \"Returns an array with the names of functions belonging to the named extension\"\n ],\n \"get_headers\": [\n \"array get_headers(string url[, int format])\",\n \"fetches all the headers sent by the server in response to a HTTP request\"\n ],\n \"get_html_translation_table\": [\n \"array get_html_translation_table([int table [, int quote_style]])\",\n \"Returns the internal translation table used by htmlspecialchars and htmlentities\"\n ],\n \"get_include_path\": [\n \"string get_include_path()\",\n \"Get the current include_path configuration option\"\n ],\n \"get_included_files\": [\n \"array get_included_files(void)\",\n \"Returns an array with the file names that were include_once()'d\"\n ],\n \"get_loaded_extensions\": [\n \"array get_loaded_extensions([bool zend_extensions])\",\n \"Return an array containing names of loaded extensions\"\n ],\n \"get_magic_quotes_gpc\": [\n \"int get_magic_quotes_gpc(void)\",\n \"Get the current active configuration setting of magic_quotes_gpc\"\n ],\n \"get_magic_quotes_runtime\": [\n \"int get_magic_quotes_runtime(void)\",\n \"Get the current active configuration setting of magic_quotes_runtime\"\n ],\n \"get_meta_tags\": [\n \"array get_meta_tags(string filename [, bool use_include_path])\",\n \"Extracts all meta tag content attributes from a file and returns an array\"\n ],\n \"get_object_vars\": [\n \"array get_object_vars(object obj)\",\n \"Returns an array of object properties\"\n ],\n \"get_parent_class\": [\n \"string get_parent_class([mixed object])\",\n \"Retrieves the parent class name for object or class or current scope.\"\n ],\n \"get_resource_type\": [\n \"string get_resource_type(resource res)\",\n \"Get the resource type name for a given resource\"\n ],\n \"getallheaders\": [\n \"array getallheaders(void)\",\n \"\"\n ],\n \"getcwd\": [\n \"mixed getcwd(void)\",\n \"Gets the current directory\"\n ],\n \"getdate\": [\n \"array getdate([int timestamp])\",\n \"Get date/time information\"\n ],\n \"getenv\": [\n \"string getenv(string varname)\",\n \"Get the value of an environment variable\"\n ],\n \"gethostbyaddr\": [\n \"string gethostbyaddr(string ip_address)\",\n \"Get the Internet host name corresponding to a given IP address\"\n ],\n \"gethostbyname\": [\n \"string gethostbyname(string hostname)\",\n \"Get the IP address corresponding to a given Internet host name\"\n ],\n \"gethostbynamel\": [\n \"array gethostbynamel(string hostname)\",\n \"Return a list of IP addresses that a given hostname resolves to.\"\n ],\n \"gethostname\": [\n \"string gethostname()\",\n \"Get the host name of the current machine\"\n ],\n \"getimagesize\": [\n \"array getimagesize(string imagefile [, array info])\",\n \"Get the size of an image as 4-element array\"\n ],\n \"getlastmod\": [\n \"int getlastmod(void)\",\n \"Get time of last page modification\"\n ],\n \"getmygid\": [\n \"int getmygid(void)\",\n \"Get PHP script owner's GID\"\n ],\n \"getmyinode\": [\n \"int getmyinode(void)\",\n \"Get the inode of the current script being parsed\"\n ],\n \"getmypid\": [\n \"int getmypid(void)\",\n \"Get current process ID\"\n ],\n \"getmyuid\": [\n \"int getmyuid(void)\",\n \"Get PHP script owner's UID\"\n ],\n \"getopt\": [\n \"array getopt(string options [, array longopts])\",\n \"Get options from the command line argument list\"\n ],\n \"getprotobyname\": [\n \"int getprotobyname(string name)\",\n \"Returns protocol number associated with name as per /etc/protocols\"\n ],\n \"getprotobynumber\": [\n \"string getprotobynumber(int proto)\",\n \"Returns protocol name associated with protocol number proto\"\n ],\n \"getrandmax\": [\n \"int getrandmax(void)\",\n \"Returns the maximum value a random number can have\"\n ],\n \"getrusage\": [\n \"array getrusage([int who])\",\n \"Returns an array of usage statistics\"\n ],\n \"getservbyname\": [\n \"int getservbyname(string service, string protocol)\",\n \"Returns port associated with service. Protocol must be \\\"tcp\\\" or \\\"udp\\\"\"\n ],\n \"getservbyport\": [\n \"string getservbyport(int port, string protocol)\",\n \"Returns service name associated with port. Protocol must be \\\"tcp\\\" or \\\"udp\\\"\"\n ],\n \"gettext\": [\n \"string gettext(string msgid)\",\n \"Return the translation of msgid for the current domain, or msgid unaltered if a translation does not exist\"\n ],\n \"gettimeofday\": [\n \"array gettimeofday([bool get_as_float])\",\n \"Returns the current time as array\"\n ],\n \"gettype\": [\n \"string gettype(mixed var)\",\n \"Returns the type of the variable\"\n ],\n \"glob\": [\n \"array glob(string pattern [, int flags])\",\n \"Find pathnames matching a pattern\"\n ],\n \"gmdate\": [\n \"string gmdate(string format [, long timestamp])\",\n \"Format a GMT date/time\"\n ],\n \"gmmktime\": [\n \"int gmmktime([int hour [, int min [, int sec [, int mon [, int day [, int year]]]]]])\",\n \"Get UNIX timestamp for a GMT date\"\n ],\n \"gmp_abs\": [\n \"resource gmp_abs(resource a)\",\n \"Calculates absolute value\"\n ],\n \"gmp_add\": [\n \"resource gmp_add(resource a, resource b)\",\n \"Add a and b\"\n ],\n \"gmp_and\": [\n \"resource gmp_and(resource a, resource b)\",\n \"Calculates logical AND of a and b\"\n ],\n \"gmp_clrbit\": [\n \"void gmp_clrbit(resource &a, int index)\",\n \"Clears bit in a\"\n ],\n \"gmp_cmp\": [\n \"int gmp_cmp(resource a, resource b)\",\n \"Compares two numbers\"\n ],\n \"gmp_com\": [\n \"resource gmp_com(resource a)\",\n \"Calculates one's complement of a\"\n ],\n \"gmp_div_q\": [\n \"resource gmp_div_q(resource a, resource b [, int round])\",\n \"Divide a by b, returns quotient only\"\n ],\n \"gmp_div_qr\": [\n \"array gmp_div_qr(resource a, resource b [, int round])\",\n \"Divide a by b, returns quotient and reminder\"\n ],\n \"gmp_div_r\": [\n \"resource gmp_div_r(resource a, resource b [, int round])\",\n \"Divide a by b, returns reminder only\"\n ],\n \"gmp_divexact\": [\n \"resource gmp_divexact(resource a, resource b)\",\n \"Divide a by b using exact division algorithm\"\n ],\n \"gmp_fact\": [\n \"resource gmp_fact(int a)\",\n \"Calculates factorial function\"\n ],\n \"gmp_gcd\": [\n \"resource gmp_gcd(resource a, resource b)\",\n \"Computes greatest common denominator (gcd) of a and b\"\n ],\n \"gmp_gcdext\": [\n \"array gmp_gcdext(resource a, resource b)\",\n \"Computes G, S, and T, such that AS + BT = G = `gcd' (A, B)\"\n ],\n \"gmp_hamdist\": [\n \"int gmp_hamdist(resource a, resource b)\",\n \"Calculates hamming distance between a and b\"\n ],\n \"gmp_init\": [\n \"resource gmp_init(mixed number [, int base])\",\n \"Initializes GMP number\"\n ],\n \"gmp_intval\": [\n \"int gmp_intval(resource gmpnumber)\",\n \"Gets signed long value of GMP number\"\n ],\n \"gmp_invert\": [\n \"resource gmp_invert(resource a, resource b)\",\n \"Computes the inverse of a modulo b\"\n ],\n \"gmp_jacobi\": [\n \"int gmp_jacobi(resource a, resource b)\",\n \"Computes Jacobi symbol\"\n ],\n \"gmp_legendre\": [\n \"int gmp_legendre(resource a, resource b)\",\n \"Computes Legendre symbol\"\n ],\n \"gmp_mod\": [\n \"resource gmp_mod(resource a, resource b)\",\n \"Computes a modulo b\"\n ],\n \"gmp_mul\": [\n \"resource gmp_mul(resource a, resource b)\",\n \"Multiply a and b\"\n ],\n \"gmp_neg\": [\n \"resource gmp_neg(resource a)\",\n \"Negates a number\"\n ],\n \"gmp_nextprime\": [\n \"resource gmp_nextprime(resource a)\",\n \"Finds next prime of a\"\n ],\n \"gmp_or\": [\n \"resource gmp_or(resource a, resource b)\",\n \"Calculates logical OR of a and b\"\n ],\n \"gmp_perfect_square\": [\n \"bool gmp_perfect_square(resource a)\",\n \"Checks if a is an exact square\"\n ],\n \"gmp_popcount\": [\n \"int gmp_popcount(resource a)\",\n \"Calculates the population count of a\"\n ],\n \"gmp_pow\": [\n \"resource gmp_pow(resource base, int exp)\",\n \"Raise base to power exp\"\n ],\n \"gmp_powm\": [\n \"resource gmp_powm(resource base, resource exp, resource mod)\",\n \"Raise base to power exp and take result modulo mod\"\n ],\n \"gmp_prob_prime\": [\n \"int gmp_prob_prime(resource a[, int reps])\",\n \"Checks if a is \\\"probably prime\\\"\"\n ],\n \"gmp_random\": [\n \"resource gmp_random([int limiter])\",\n \"Gets random number\"\n ],\n \"gmp_scan0\": [\n \"int gmp_scan0(resource a, int start)\",\n \"Finds first zero bit\"\n ],\n \"gmp_scan1\": [\n \"int gmp_scan1(resource a, int start)\",\n \"Finds first non-zero bit\"\n ],\n \"gmp_setbit\": [\n \"void gmp_setbit(resource &a, int index[, bool set_clear])\",\n \"Sets or clear bit in a\"\n ],\n \"gmp_sign\": [\n \"int gmp_sign(resource a)\",\n \"Gets the sign of the number\"\n ],\n \"gmp_sqrt\": [\n \"resource gmp_sqrt(resource a)\",\n \"Takes integer part of square root of a\"\n ],\n \"gmp_sqrtrem\": [\n \"array gmp_sqrtrem(resource a)\",\n \"Square root with remainder\"\n ],\n \"gmp_strval\": [\n \"string gmp_strval(resource gmpnumber [, int base])\",\n \"Gets string representation of GMP number\"\n ],\n \"gmp_sub\": [\n \"resource gmp_sub(resource a, resource b)\",\n \"Subtract b from a\"\n ],\n \"gmp_testbit\": [\n \"bool gmp_testbit(resource a, int index)\",\n \"Tests if bit is set in a\"\n ],\n \"gmp_xor\": [\n \"resource gmp_xor(resource a, resource b)\",\n \"Calculates logical exclusive OR of a and b\"\n ],\n \"gmstrftime\": [\n \"string gmstrftime(string format [, int timestamp])\",\n \"Format a GMT/UCT time/date according to locale settings\"\n ],\n \"grapheme_extract\": [\n \"string grapheme_extract(string str, int size[, int extract_type[, int start[, int next]]])\",\n \"Function to extract a sequence of default grapheme clusters\"\n ],\n \"grapheme_stripos\": [\n \"int grapheme_stripos(string haystack, string needle [, int offset ])\",\n \"Find position of first occurrence of a string within another, ignoring case differences\"\n ],\n \"grapheme_stristr\": [\n \"string grapheme_stristr(string haystack, string needle[, bool part])\",\n \"Finds first occurrence of a string within another\"\n ],\n \"grapheme_strlen\": [\n \"int grapheme_strlen(string str)\",\n \"Get number of graphemes in a string\"\n ],\n \"grapheme_strpos\": [\n \"int grapheme_strpos(string haystack, string needle [, int offset ])\",\n \"Find position of first occurrence of a string within another\"\n ],\n \"grapheme_strripos\": [\n \"int grapheme_strripos(string haystack, string needle [, int offset])\",\n \"Find position of last occurrence of a string within another, ignoring case\"\n ],\n \"grapheme_strrpos\": [\n \"int grapheme_strrpos(string haystack, string needle [, int offset])\",\n \"Find position of last occurrence of a string within another\"\n ],\n \"grapheme_strstr\": [\n \"string grapheme_strstr(string haystack, string needle[, bool part])\",\n \"Finds first occurrence of a string within another\"\n ],\n \"grapheme_substr\": [\n \"string grapheme_substr(string str, int start [, int length])\",\n \"Returns part of a string\"\n ],\n \"gregoriantojd\": [\n \"int gregoriantojd(int month, int day, int year)\",\n \"Converts a gregorian calendar date to julian day count\"\n ],\n \"gzcompress\": [\n \"string gzcompress(string data [, int level])\",\n \"Gzip-compress a string\"\n ],\n \"gzdeflate\": [\n \"string gzdeflate(string data [, int level])\",\n \"Gzip-compress a string\"\n ],\n \"gzencode\": [\n \"string gzencode(string data [, int level [, int encoding_mode]])\",\n \"GZ encode a string\"\n ],\n \"gzfile\": [\n \"array gzfile(string filename [, int use_include_path])\",\n \"Read und uncompress entire .gz-file into an array\"\n ],\n \"gzinflate\": [\n \"string gzinflate(string data [, int length])\",\n \"Unzip a gzip-compressed string\"\n ],\n \"gzopen\": [\n \"resource gzopen(string filename, string mode [, int use_include_path])\",\n \"Open a .gz-file and return a .gz-file pointer\"\n ],\n \"gzuncompress\": [\n \"string gzuncompress(string data [, int length])\",\n \"Unzip a gzip-compressed string\"\n ],\n \"hash\": [\n \"string hash(string algo, string data[, bool raw_output = false])\",\n \"Generate a hash of a given input string Returns lowercase hexits by default\"\n ],\n \"hash_algos\": [\n \"array hash_algos(void)\",\n \"Return a list of registered hashing algorithms\"\n ],\n \"hash_copy\": [\n \"resource hash_copy(resource context)\",\n \"Copy hash resource\"\n ],\n \"hash_file\": [\n \"string hash_file(string algo, string filename[, bool raw_output = false])\",\n \"Generate a hash of a given file Returns lowercase hexits by default\"\n ],\n \"hash_final\": [\n \"string hash_final(resource context[, bool raw_output=false])\",\n \"Output resulting digest\"\n ],\n \"hash_hmac\": [\n \"string hash_hmac(string algo, string data, string key[, bool raw_output = false])\",\n \"Generate a hash of a given input string with a key using HMAC Returns lowercase hexits by default\"\n ],\n \"hash_hmac_file\": [\n \"string hash_hmac_file(string algo, string filename, string key[, bool raw_output = false])\",\n \"Generate a hash of a given file with a key using HMAC Returns lowercase hexits by default\"\n ],\n \"hash_init\": [\n \"resource hash_init(string algo[, int options, string key])\",\n \"Initialize a hashing context\"\n ],\n \"hash_update\": [\n \"bool hash_update(resource context, string data)\",\n \"Pump data into the hashing algorithm\"\n ],\n \"hash_update_file\": [\n \"bool hash_update_file(resource context, string filename[, resource context])\",\n \"Pump data into the hashing algorithm from a file\"\n ],\n \"hash_update_stream\": [\n \"int hash_update_stream(resource context, resource handle[, integer length])\",\n \"Pump data into the hashing algorithm from an open stream\"\n ],\n \"header\": [\n \"void header(string header [, bool replace, [int http_response_code]])\",\n \"Sends a raw HTTP header\"\n ],\n \"header_remove\": [\n \"void header_remove([string name])\",\n \"Removes an HTTP header previously set using header()\"\n ],\n \"headers_list\": [\n \"array headers_list(void)\",\n \"Return list of headers to be sent / already sent\"\n ],\n \"headers_sent\": [\n \"bool headers_sent([string &$file [, int &$line]])\",\n \"Returns true if headers have already been sent, false otherwise\"\n ],\n \"hebrev\": [\n \"string hebrev(string str [, int max_chars_per_line])\",\n \"Converts logical Hebrew text to visual text\"\n ],\n \"hebrevc\": [\n \"string hebrevc(string str [, int max_chars_per_line])\",\n \"Converts logical Hebrew text to visual text with newline conversion\"\n ],\n \"hexdec\": [\n \"int hexdec(string hexadecimal_number)\",\n \"Returns the decimal equivalent of the hexadecimal number\"\n ],\n \"highlight_file\": [\n \"bool highlight_file(string file_name [, bool return] )\",\n \"Syntax highlight a source file\"\n ],\n \"highlight_string\": [\n \"bool highlight_string(string string [, bool return] )\",\n \"Syntax highlight a string or optionally return it\"\n ],\n \"html_entity_decode\": [\n \"string html_entity_decode(string string [, int quote_style][, string charset])\",\n \"Convert all HTML entities to their applicable characters\"\n ],\n \"htmlentities\": [\n \"string htmlentities(string string [, int quote_style[, string charset[, bool double_encode]]])\",\n \"Convert all applicable characters to HTML entities\"\n ],\n \"htmlspecialchars\": [\n \"string htmlspecialchars(string string [, int quote_style[, string charset[, bool double_encode]]])\",\n \"Convert special characters to HTML entities\"\n ],\n \"htmlspecialchars_decode\": [\n \"string htmlspecialchars_decode(string string [, int quote_style])\",\n \"Convert special HTML entities back to characters\"\n ],\n \"http_build_query\": [\n \"string http_build_query(mixed formdata [, string prefix [, string arg_separator]])\",\n \"Generates a form-encoded query string from an associative array or object.\"\n ],\n \"hypot\": [\n \"float hypot(float num1, float num2)\",\n \"Returns sqrt(num1*num1 + num2*num2)\"\n ],\n \"ibase_add_user\": [\n \"bool ibase_add_user(resource service_handle, string user_name, string password [, string first_name [, string middle_name [, string last_name]]])\",\n \"Add a user to security database\"\n ],\n \"ibase_affected_rows\": [\n \"int ibase_affected_rows( [ resource link_identifier ] )\",\n \"Returns the number of rows affected by the previous INSERT, UPDATE or DELETE statement\"\n ],\n \"ibase_backup\": [\n \"mixed ibase_backup(resource service_handle, string source_db, string dest_file [, int options [, bool verbose]])\",\n \"Initiates a backup task in the service manager and returns immediately\"\n ],\n \"ibase_blob_add\": [\n \"bool ibase_blob_add(resource blob_handle, string data)\",\n \"Add data into created blob\"\n ],\n \"ibase_blob_cancel\": [\n \"bool ibase_blob_cancel(resource blob_handle)\",\n \"Cancel creating blob\"\n ],\n \"ibase_blob_close\": [\n \"string ibase_blob_close(resource blob_handle)\",\n \"Close blob\"\n ],\n \"ibase_blob_create\": [\n \"resource ibase_blob_create([resource link_identifier])\",\n \"Create blob for adding data\"\n ],\n \"ibase_blob_echo\": [\n \"bool ibase_blob_echo([ resource link_identifier, ] string blob_id)\",\n \"Output blob contents to browser\"\n ],\n \"ibase_blob_get\": [\n \"string ibase_blob_get(resource blob_handle, int len)\",\n \"Get len bytes data from open blob\"\n ],\n \"ibase_blob_import\": [\n \"string ibase_blob_import([ resource link_identifier, ] resource file)\",\n \"Create blob, copy file in it, and close it\"\n ],\n \"ibase_blob_info\": [\n \"array ibase_blob_info([ resource link_identifier, ] string blob_id)\",\n \"Return blob length and other useful info\"\n ],\n \"ibase_blob_open\": [\n \"resource ibase_blob_open([ resource link_identifier, ] string blob_id)\",\n \"Open blob for retrieving data parts\"\n ],\n \"ibase_close\": [\n \"bool ibase_close([resource link_identifier])\",\n \"Close an InterBase connection\"\n ],\n \"ibase_commit\": [\n \"bool ibase_commit( resource link_identifier )\",\n \"Commit transaction\"\n ],\n \"ibase_commit_ret\": [\n \"bool ibase_commit_ret( resource link_identifier )\",\n \"Commit transaction and retain the transaction context\"\n ],\n \"ibase_connect\": [\n \"resource ibase_connect(string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role]]]]]])\",\n \"Open a connection to an InterBase database\"\n ],\n \"ibase_db_info\": [\n \"string ibase_db_info(resource service_handle, string db, int action [, int argument])\",\n \"Request statistics about a database\"\n ],\n \"ibase_delete_user\": [\n \"bool ibase_delete_user(resource service_handle, string user_name, string password [, string first_name [, string middle_name [, string last_name]]])\",\n \"Delete a user from security database\"\n ],\n \"ibase_drop_db\": [\n \"bool ibase_drop_db([resource link_identifier])\",\n \"Drop an InterBase database\"\n ],\n \"ibase_errcode\": [\n \"int ibase_errcode(void)\",\n \"Return error code\"\n ],\n \"ibase_errmsg\": [\n \"string ibase_errmsg(void)\",\n \"Return error message\"\n ],\n \"ibase_execute\": [\n \"mixed ibase_execute(resource query [, mixed bind_arg [, mixed bind_arg [, ...]]])\",\n \"Execute a previously prepared query\"\n ],\n \"ibase_fetch_assoc\": [\n \"array ibase_fetch_assoc(resource result [, int fetch_flags])\",\n \"Fetch a row from the results of a query\"\n ],\n \"ibase_fetch_object\": [\n \"object ibase_fetch_object(resource result [, int fetch_flags])\",\n \"Fetch a object from the results of a query\"\n ],\n \"ibase_fetch_row\": [\n \"array ibase_fetch_row(resource result [, int fetch_flags])\",\n \"Fetch a row from the results of a query\"\n ],\n \"ibase_field_info\": [\n \"array ibase_field_info(resource query_result, int field_number)\",\n \"Get information about a field\"\n ],\n \"ibase_free_event_handler\": [\n \"bool ibase_free_event_handler(resource event)\",\n \"Frees the event handler set by ibase_set_event_handler()\"\n ],\n \"ibase_free_query\": [\n \"bool ibase_free_query(resource query)\",\n \"Free memory used by a query\"\n ],\n \"ibase_free_result\": [\n \"bool ibase_free_result(resource result)\",\n \"Free the memory used by a result\"\n ],\n \"ibase_gen_id\": [\n \"int ibase_gen_id(string generator [, int increment [, resource link_identifier ]])\",\n \"Increments the named generator and returns its new value\"\n ],\n \"ibase_maintain_db\": [\n \"bool ibase_maintain_db(resource service_handle, string db, int action [, int argument])\",\n \"Execute a maintenance command on the database server\"\n ],\n \"ibase_modify_user\": [\n \"bool ibase_modify_user(resource service_handle, string user_name, string password [, string first_name [, string middle_name [, string last_name]]])\",\n \"Modify a user in security database\"\n ],\n \"ibase_name_result\": [\n \"bool ibase_name_result(resource result, string name)\",\n \"Assign a name to a result for use with ... WHERE CURRENT OF statements\"\n ],\n \"ibase_num_fields\": [\n \"int ibase_num_fields(resource query_result)\",\n \"Get the number of fields in result\"\n ],\n \"ibase_num_params\": [\n \"int ibase_num_params(resource query)\",\n \"Get the number of params in a prepared query\"\n ],\n \"ibase_num_rows\": [\n \"int ibase_num_rows( resource result_identifier )\",\n \"Return the number of rows that are available in a result\"\n ],\n \"ibase_param_info\": [\n \"array ibase_param_info(resource query, int field_number)\",\n \"Get information about a parameter\"\n ],\n \"ibase_pconnect\": [\n \"resource ibase_pconnect(string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role]]]]]])\",\n \"Open a persistent connection to an InterBase database\"\n ],\n \"ibase_prepare\": [\n \"resource ibase_prepare(resource link_identifier[, string query [, resource trans_identifier ]])\",\n \"Prepare a query for later execution\"\n ],\n \"ibase_query\": [\n \"mixed ibase_query([resource link_identifier, [ resource link_identifier, ]] string query [, mixed bind_arg [, mixed bind_arg [, ...]]])\",\n \"Execute a query\"\n ],\n \"ibase_restore\": [\n \"mixed ibase_restore(resource service_handle, string source_file, string dest_db [, int options [, bool verbose]])\",\n \"Initiates a restore task in the service manager and returns immediately\"\n ],\n \"ibase_rollback\": [\n \"bool ibase_rollback( resource link_identifier )\",\n \"Rollback transaction\"\n ],\n \"ibase_rollback_ret\": [\n \"bool ibase_rollback_ret( resource link_identifier )\",\n \"Rollback transaction and retain the transaction context\"\n ],\n \"ibase_server_info\": [\n \"string ibase_server_info(resource service_handle, int action)\",\n \"Request information about a database server\"\n ],\n \"ibase_service_attach\": [\n \"resource ibase_service_attach(string host, string dba_username, string dba_password)\",\n \"Connect to the service manager\"\n ],\n \"ibase_service_detach\": [\n \"bool ibase_service_detach(resource service_handle)\",\n \"Disconnect from the service manager\"\n ],\n \"ibase_set_event_handler\": [\n \"resource ibase_set_event_handler([resource link_identifier,] callback handler, string event [, string event [, ...]])\",\n \"Register the callback for handling each of the named events\"\n ],\n \"ibase_trans\": [\n \"resource ibase_trans([int trans_args [, resource link_identifier [, ... ], int trans_args [, resource link_identifier [, ... ]] [, ...]]])\",\n \"Start a transaction over one or several databases\"\n ],\n \"ibase_wait_event\": [\n \"string ibase_wait_event([resource link_identifier,] string event [, string event [, ...]])\",\n \"Waits for any one of the passed Interbase events to be posted by the database, and returns its name\"\n ],\n \"iconv\": [\n \"string iconv(string in_charset, string out_charset, string str)\",\n \"Returns str converted to the out_charset character set\"\n ],\n \"iconv_get_encoding\": [\n \"mixed iconv_get_encoding([string type])\",\n \"Get internal encoding and output encoding for ob_iconv_handler()\"\n ],\n \"iconv_mime_decode\": [\n \"string iconv_mime_decode(string encoded_string [, int mode, string charset])\",\n \"Decodes a mime header field\"\n ],\n \"iconv_mime_decode_headers\": [\n \"array iconv_mime_decode_headers(string headers [, int mode, string charset])\",\n \"Decodes multiple mime header fields\"\n ],\n \"iconv_mime_encode\": [\n \"string iconv_mime_encode(string field_name, string field_value [, array preference])\",\n \"Composes a mime header field with field_name and field_value in a specified scheme\"\n ],\n \"iconv_set_encoding\": [\n \"bool iconv_set_encoding(string type, string charset)\",\n \"Sets internal encoding and output encoding for ob_iconv_handler()\"\n ],\n \"iconv_strlen\": [\n \"int iconv_strlen(string str [, string charset])\",\n \"Returns the character count of str\"\n ],\n \"iconv_strpos\": [\n \"int iconv_strpos(string haystack, string needle [, int offset [, string charset]])\",\n \"Finds position of first occurrence of needle within part of haystack beginning with offset\"\n ],\n \"iconv_strrpos\": [\n \"int iconv_strrpos(string haystack, string needle [, string charset])\",\n \"Finds position of last occurrence of needle within part of haystack beginning with offset\"\n ],\n \"iconv_substr\": [\n \"string iconv_substr(string str, int offset, [int length, string charset])\",\n \"Returns specified part of a string\"\n ],\n \"idate\": [\n \"int idate(string format [, int timestamp])\",\n \"Format a local time/date as integer\"\n ],\n \"idn_to_ascii\": [\n \"int idn_to_ascii(string domain[, int options])\",\n \"Converts an Unicode domain to ASCII representation, as defined in the IDNA RFC\"\n ],\n \"idn_to_utf8\": [\n \"int idn_to_utf8(string domain[, int options])\",\n \"Converts an ASCII representation of the domain to Unicode (UTF-8), as defined in the IDNA RFC\"\n ],\n \"ignore_user_abort\": [\n \"int ignore_user_abort([string value])\",\n \"Set whether we want to ignore a user abort event or not\"\n ],\n \"image2wbmp\": [\n \"bool image2wbmp(resource im [, string filename [, int threshold]])\",\n \"Output WBMP image to browser or file\"\n ],\n \"image_type_to_extension\": [\n \"string image_type_to_extension(int imagetype [, bool include_dot])\",\n \"Get file extension for image-type returned by getimagesize, exif_read_data, exif_thumbnail, exif_imagetype\"\n ],\n \"image_type_to_mime_type\": [\n \"string image_type_to_mime_type(int imagetype)\",\n \"Get Mime-Type for image-type returned by getimagesize, exif_read_data, exif_thumbnail, exif_imagetype\"\n ],\n \"imagealphablending\": [\n \"bool imagealphablending(resource im, bool on)\",\n \"Turn alpha blending mode on or off for the given image\"\n ],\n \"imageantialias\": [\n \"bool imageantialias(resource im, bool on)\",\n \"Should antialiased functions used or not\"\n ],\n \"imagearc\": [\n \"bool imagearc(resource im, int cx, int cy, int w, int h, int s, int e, int col)\",\n \"Draw a partial ellipse\"\n ],\n \"imagechar\": [\n \"bool imagechar(resource im, int font, int x, int y, string c, int col)\",\n \"Draw a character\"\n ],\n \"imagecharup\": [\n \"bool imagecharup(resource im, int font, int x, int y, string c, int col)\",\n \"Draw a character rotated 90 degrees counter-clockwise\"\n ],\n \"imagecolorallocate\": [\n \"int imagecolorallocate(resource im, int red, int green, int blue)\",\n \"Allocate a color for an image\"\n ],\n \"imagecolorallocatealpha\": [\n \"int imagecolorallocatealpha(resource im, int red, int green, int blue, int alpha)\",\n \"Allocate a color with an alpha level. Works for true color and palette based images\"\n ],\n \"imagecolorat\": [\n \"int imagecolorat(resource im, int x, int y)\",\n \"Get the index of the color of a pixel\"\n ],\n \"imagecolorclosest\": [\n \"int imagecolorclosest(resource im, int red, int green, int blue)\",\n \"Get the index of the closest color to the specified color\"\n ],\n \"imagecolorclosestalpha\": [\n \"int imagecolorclosestalpha(resource im, int red, int green, int blue, int alpha)\",\n \"Find the closest matching colour with alpha transparency\"\n ],\n \"imagecolorclosesthwb\": [\n \"int imagecolorclosesthwb(resource im, int red, int green, int blue)\",\n \"Get the index of the color which has the hue, white and blackness nearest to the given color\"\n ],\n \"imagecolordeallocate\": [\n \"bool imagecolordeallocate(resource im, int index)\",\n \"De-allocate a color for an image\"\n ],\n \"imagecolorexact\": [\n \"int imagecolorexact(resource im, int red, int green, int blue)\",\n \"Get the index of the specified color\"\n ],\n \"imagecolorexactalpha\": [\n \"int imagecolorexactalpha(resource im, int red, int green, int blue, int alpha)\",\n \"Find exact match for colour with transparency\"\n ],\n \"imagecolormatch\": [\n \"bool imagecolormatch(resource im1, resource im2)\",\n \"Makes the colors of the palette version of an image more closely match the true color version\"\n ],\n \"imagecolorresolve\": [\n \"int imagecolorresolve(resource im, int red, int green, int blue)\",\n \"Get the index of the specified color or its closest possible alternative\"\n ],\n \"imagecolorresolvealpha\": [\n \"int imagecolorresolvealpha(resource im, int red, int green, int blue, int alpha)\",\n \"Resolve/Allocate a colour with an alpha level. Works for true colour and palette based images\"\n ],\n \"imagecolorset\": [\n \"void imagecolorset(resource im, int col, int red, int green, int blue)\",\n \"Set the color for the specified palette index\"\n ],\n \"imagecolorsforindex\": [\n \"array imagecolorsforindex(resource im, int col)\",\n \"Get the colors for an index\"\n ],\n \"imagecolorstotal\": [\n \"int imagecolorstotal(resource im)\",\n \"Find out the number of colors in an image's palette\"\n ],\n \"imagecolortransparent\": [\n \"int imagecolortransparent(resource im [, int col])\",\n \"Define a color as transparent\"\n ],\n \"imageconvolution\": [\n \"resource imageconvolution(resource src_im, array matrix3x3, double div, double offset)\",\n \"Apply a 3x3 convolution matrix, using coefficient div and offset\"\n ],\n \"imagecopy\": [\n \"bool imagecopy(resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h)\",\n \"Copy part of an image\"\n ],\n \"imagecopymerge\": [\n \"bool imagecopymerge(resource src_im, resource dst_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct)\",\n \"Merge one part of an image with another\"\n ],\n \"imagecopymergegray\": [\n \"bool imagecopymergegray(resource src_im, resource dst_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct)\",\n \"Merge one part of an image with another\"\n ],\n \"imagecopyresampled\": [\n \"bool imagecopyresampled(resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h)\",\n \"Copy and resize part of an image using resampling to help ensure clarity\"\n ],\n \"imagecopyresized\": [\n \"bool imagecopyresized(resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h)\",\n \"Copy and resize part of an image\"\n ],\n \"imagecreate\": [\n \"resource imagecreate(int x_size, int y_size)\",\n \"Create a new image\"\n ],\n \"imagecreatefromgd\": [\n \"resource imagecreatefromgd(string filename)\",\n \"Create a new image from GD file or URL\"\n ],\n \"imagecreatefromgd2\": [\n \"resource imagecreatefromgd2(string filename)\",\n \"Create a new image from GD2 file or URL\"\n ],\n \"imagecreatefromgd2part\": [\n \"resource imagecreatefromgd2part(string filename, int srcX, int srcY, int width, int height)\",\n \"Create a new image from a given part of GD2 file or URL\"\n ],\n \"imagecreatefromgif\": [\n \"resource imagecreatefromgif(string filename)\",\n \"Create a new image from GIF file or URL\"\n ],\n \"imagecreatefromjpeg\": [\n \"resource imagecreatefromjpeg(string filename)\",\n \"Create a new image from JPEG file or URL\"\n ],\n \"imagecreatefrompng\": [\n \"resource imagecreatefrompng(string filename)\",\n \"Create a new image from PNG file or URL\"\n ],\n \"imagecreatefromstring\": [\n \"resource imagecreatefromstring(string image)\",\n \"Create a new image from the image stream in the string\"\n ],\n \"imagecreatefromwbmp\": [\n \"resource imagecreatefromwbmp(string filename)\",\n \"Create a new image from WBMP file or URL\"\n ],\n \"imagecreatefromxbm\": [\n \"resource imagecreatefromxbm(string filename)\",\n \"Create a new image from XBM file or URL\"\n ],\n \"imagecreatefromxpm\": [\n \"resource imagecreatefromxpm(string filename)\",\n \"Create a new image from XPM file or URL\"\n ],\n \"imagecreatetruecolor\": [\n \"resource imagecreatetruecolor(int x_size, int y_size)\",\n \"Create a new true color image\"\n ],\n \"imagedashedline\": [\n \"bool imagedashedline(resource im, int x1, int y1, int x2, int y2, int col)\",\n \"Draw a dashed line\"\n ],\n \"imagedestroy\": [\n \"bool imagedestroy(resource im)\",\n \"Destroy an image\"\n ],\n \"imageellipse\": [\n \"bool imageellipse(resource im, int cx, int cy, int w, int h, int color)\",\n \"Draw an ellipse\"\n ],\n \"imagefill\": [\n \"bool imagefill(resource im, int x, int y, int col)\",\n \"Flood fill\"\n ],\n \"imagefilledarc\": [\n \"bool imagefilledarc(resource im, int cx, int cy, int w, int h, int s, int e, int col, int style)\",\n \"Draw a filled partial ellipse\"\n ],\n \"imagefilledellipse\": [\n \"bool imagefilledellipse(resource im, int cx, int cy, int w, int h, int color)\",\n \"Draw an ellipse\"\n ],\n \"imagefilledpolygon\": [\n \"bool imagefilledpolygon(resource im, array point, int num_points, int col)\",\n \"Draw a filled polygon\"\n ],\n \"imagefilledrectangle\": [\n \"bool imagefilledrectangle(resource im, int x1, int y1, int x2, int y2, int col)\",\n \"Draw a filled rectangle\"\n ],\n \"imagefilltoborder\": [\n \"bool imagefilltoborder(resource im, int x, int y, int border, int col)\",\n \"Flood fill to specific color\"\n ],\n \"imagefilter\": [\n \"bool imagefilter(resource src_im, int filtertype, [args] )\",\n \"Applies Filter an image using a custom angle\"\n ],\n \"imagefontheight\": [\n \"int imagefontheight(int font)\",\n \"Get font height\"\n ],\n \"imagefontwidth\": [\n \"int imagefontwidth(int font)\",\n \"Get font width\"\n ],\n \"imageftbbox\": [\n \"array imageftbbox(float size, float angle, string font_file, string text [, array extrainfo])\",\n \"Give the bounding box of a text using fonts via freetype2\"\n ],\n \"imagefttext\": [\n \"array imagefttext(resource im, float size, float angle, int x, int y, int col, string font_file, string text [, array extrainfo])\",\n \"Write text to the image using fonts via freetype2\"\n ],\n \"imagegammacorrect\": [\n \"bool imagegammacorrect(resource im, float inputgamma, float outputgamma)\",\n \"Apply a gamma correction to a GD image\"\n ],\n \"imagegd\": [\n \"bool imagegd(resource im [, string filename])\",\n \"Output GD image to browser or file\"\n ],\n \"imagegd2\": [\n \"bool imagegd2(resource im [, string filename, [, int chunk_size, [, int type]]])\",\n \"Output GD2 image to browser or file\"\n ],\n \"imagegif\": [\n \"bool imagegif(resource im [, string filename])\",\n \"Output GIF image to browser or file\"\n ],\n \"imagegrabscreen\": [\n \"resource imagegrabscreen()\",\n \"Grab a screenshot\"\n ],\n \"imagegrabwindow\": [\n \"resource imagegrabwindow(int window_handle [, int client_area])\",\n \"Grab a window or its client area using a windows handle (HWND property in COM instance)\"\n ],\n \"imageinterlace\": [\n \"int imageinterlace(resource im [, int interlace])\",\n \"Enable or disable interlace\"\n ],\n \"imageistruecolor\": [\n \"bool imageistruecolor(resource im)\",\n \"return true if the image uses truecolor\"\n ],\n \"imagejpeg\": [\n \"bool imagejpeg(resource im [, string filename [, int quality]])\",\n \"Output JPEG image to browser or file\"\n ],\n \"imagelayereffect\": [\n \"bool imagelayereffect(resource im, int effect)\",\n \"Set the alpha blending flag to use the bundled libgd layering effects\"\n ],\n \"imageline\": [\n \"bool imageline(resource im, int x1, int y1, int x2, int y2, int col)\",\n \"Draw a line\"\n ],\n \"imageloadfont\": [\n \"int imageloadfont(string filename)\",\n \"Load a new font\"\n ],\n \"imagepalettecopy\": [\n \"void imagepalettecopy(resource dst, resource src)\",\n \"Copy the palette from the src image onto the dst image\"\n ],\n \"imagepng\": [\n \"bool imagepng(resource im [, string filename])\",\n \"Output PNG image to browser or file\"\n ],\n \"imagepolygon\": [\n \"bool imagepolygon(resource im, array point, int num_points, int col)\",\n \"Draw a polygon\"\n ],\n \"imagepsbbox\": [\n \"array imagepsbbox(string text, resource font, int size [, int space, int tightness, float angle])\",\n \"Return the bounding box needed by a string if rasterized\"\n ],\n \"imagepscopyfont\": [\n \"int imagepscopyfont(int font_index)\",\n \"Make a copy of a font for purposes like extending or reenconding\"\n ],\n \"imagepsencodefont\": [\n \"bool imagepsencodefont(resource font_index, string filename)\",\n \"To change a fonts character encoding vector\"\n ],\n \"imagepsextendfont\": [\n \"bool imagepsextendfont(resource font_index, float extend)\",\n \"Extend or or condense (if extend < 1) a font\"\n ],\n \"imagepsfreefont\": [\n \"bool imagepsfreefont(resource font_index)\",\n \"Free memory used by a font\"\n ],\n \"imagepsloadfont\": [\n \"resource imagepsloadfont(string pathname)\",\n \"Load a new font from specified file\"\n ],\n \"imagepsslantfont\": [\n \"bool imagepsslantfont(resource font_index, float slant)\",\n \"Slant a font\"\n ],\n \"imagepstext\": [\n \"array imagepstext(resource image, string text, resource font, int size, int foreground, int background, int xcoord, int ycoord [, int space [, int tightness [, float angle [, int antialias])\",\n \"Rasterize a string over an image\"\n ],\n \"imagerectangle\": [\n \"bool imagerectangle(resource im, int x1, int y1, int x2, int y2, int col)\",\n \"Draw a rectangle\"\n ],\n \"imagerotate\": [\n \"resource imagerotate(resource src_im, float angle, int bgdcolor [, int ignoretransparent])\",\n \"Rotate an image using a custom angle\"\n ],\n \"imagesavealpha\": [\n \"bool imagesavealpha(resource im, bool on)\",\n \"Include alpha channel to a saved image\"\n ],\n \"imagesetbrush\": [\n \"bool imagesetbrush(resource image, resource brush)\",\n \"Set the brush image to $brush when filling $image with the \\\"IMG_COLOR_BRUSHED\\\" color\"\n ],\n \"imagesetpixel\": [\n \"bool imagesetpixel(resource im, int x, int y, int col)\",\n \"Set a single pixel\"\n ],\n \"imagesetstyle\": [\n \"bool imagesetstyle(resource im, array styles)\",\n \"Set the line drawing styles for use with imageline and IMG_COLOR_STYLED.\"\n ],\n \"imagesetthickness\": [\n \"bool imagesetthickness(resource im, int thickness)\",\n \"Set line thickness for drawing lines, ellipses, rectangles, polygons etc.\"\n ],\n \"imagesettile\": [\n \"bool imagesettile(resource image, resource tile)\",\n \"Set the tile image to $tile when filling $image with the \\\"IMG_COLOR_TILED\\\" color\"\n ],\n \"imagestring\": [\n \"bool imagestring(resource im, int font, int x, int y, string str, int col)\",\n \"Draw a string horizontally\"\n ],\n \"imagestringup\": [\n \"bool imagestringup(resource im, int font, int x, int y, string str, int col)\",\n \"Draw a string vertically - rotated 90 degrees counter-clockwise\"\n ],\n \"imagesx\": [\n \"int imagesx(resource im)\",\n \"Get image width\"\n ],\n \"imagesy\": [\n \"int imagesy(resource im)\",\n \"Get image height\"\n ],\n \"imagetruecolortopalette\": [\n \"void imagetruecolortopalette(resource im, bool ditherFlag, int colorsWanted)\",\n \"Convert a true colour image to a palette based image with a number of colours, optionally using dithering.\"\n ],\n \"imagettfbbox\": [\n \"array imagettfbbox(float size, float angle, string font_file, string text)\",\n \"Give the bounding box of a text using TrueType fonts\"\n ],\n \"imagettftext\": [\n \"array imagettftext(resource im, float size, float angle, int x, int y, int col, string font_file, string text)\",\n \"Write text to the image using a TrueType font\"\n ],\n \"imagetypes\": [\n \"int imagetypes(void)\",\n \"Return the types of images supported in a bitfield - 1=GIF, 2=JPEG, 4=PNG, 8=WBMP, 16=XPM\"\n ],\n \"imagewbmp\": [\n \"bool imagewbmp(resource im [, string filename, [, int foreground]])\",\n \"Output WBMP image to browser or file\"\n ],\n \"imagexbm\": [\n \"int imagexbm(int im, string filename [, int foreground])\",\n \"Output XBM image to browser or file\"\n ],\n \"imap_8bit\": [\n \"string imap_8bit(string text)\",\n \"Convert an 8-bit string to a quoted-printable string\"\n ],\n \"imap_alerts\": [\n \"array imap_alerts(void)\",\n \"Returns an array of all IMAP alerts that have been generated since the last page load or since the last imap_alerts() call, whichever came last. The alert stack is cleared after imap_alerts() is called.\"\n ],\n \"imap_append\": [\n \"bool imap_append(resource stream_id, string folder, string message [, string options [, string internal_date]])\",\n \"Append a new message to a specified mailbox\"\n ],\n \"imap_base64\": [\n \"string imap_base64(string text)\",\n \"Decode BASE64 encoded text\"\n ],\n \"imap_binary\": [\n \"string imap_binary(string text)\",\n \"Convert an 8bit string to a base64 string\"\n ],\n \"imap_body\": [\n \"string imap_body(resource stream_id, int msg_no [, int options])\",\n \"Read the message body\"\n ],\n \"imap_bodystruct\": [\n \"object imap_bodystruct(resource stream_id, int msg_no, string section)\",\n \"Read the structure of a specified body section of a specific message\"\n ],\n \"imap_check\": [\n \"object imap_check(resource stream_id)\",\n \"Get mailbox properties\"\n ],\n \"imap_clearflag_full\": [\n \"bool imap_clearflag_full(resource stream_id, string sequence, string flag [, int options])\",\n \"Clears flags on messages\"\n ],\n \"imap_close\": [\n \"bool imap_close(resource stream_id [, int options])\",\n \"Close an IMAP stream\"\n ],\n \"imap_createmailbox\": [\n \"bool imap_createmailbox(resource stream_id, string mailbox)\",\n \"Create a new mailbox\"\n ],\n \"imap_delete\": [\n \"bool imap_delete(resource stream_id, int msg_no [, int options])\",\n \"Mark a message for deletion\"\n ],\n \"imap_deletemailbox\": [\n \"bool imap_deletemailbox(resource stream_id, string mailbox)\",\n \"Delete a mailbox\"\n ],\n \"imap_errors\": [\n \"array imap_errors(void)\",\n \"Returns an array of all IMAP errors generated since the last page load, or since the last imap_errors() call, whichever came last. The error stack is cleared after imap_errors() is called.\"\n ],\n \"imap_expunge\": [\n \"bool imap_expunge(resource stream_id)\",\n \"Permanently delete all messages marked for deletion\"\n ],\n \"imap_fetch_overview\": [\n \"array imap_fetch_overview(resource stream_id, string sequence [, int options])\",\n \"Read an overview of the information in the headers of the given message sequence\"\n ],\n \"imap_fetchbody\": [\n \"string imap_fetchbody(resource stream_id, int msg_no, string section [, int options])\",\n \"Get a specific body section\"\n ],\n \"imap_fetchheader\": [\n \"string imap_fetchheader(resource stream_id, int msg_no [, int options])\",\n \"Get the full unfiltered header for a message\"\n ],\n \"imap_fetchstructure\": [\n \"object imap_fetchstructure(resource stream_id, int msg_no [, int options])\",\n \"Read the full structure of a message\"\n ],\n \"imap_gc\": [\n \"bool imap_gc(resource stream_id, int flags)\",\n \"This function garbage collects (purges) the cache of entries of a specific type.\"\n ],\n \"imap_get_quota\": [\n \"array imap_get_quota(resource stream_id, string qroot)\",\n \"Returns the quota set to the mailbox account qroot\"\n ],\n \"imap_get_quotaroot\": [\n \"array imap_get_quotaroot(resource stream_id, string mbox)\",\n \"Returns the quota set to the mailbox account mbox\"\n ],\n \"imap_getacl\": [\n \"array imap_getacl(resource stream_id, string mailbox)\",\n \"Gets the ACL for a given mailbox\"\n ],\n \"imap_getmailboxes\": [\n \"array imap_getmailboxes(resource stream_id, string ref, string pattern)\",\n \"Reads the list of mailboxes and returns a full array of objects containing name, attributes, and delimiter\"\n ],\n \"imap_getsubscribed\": [\n \"array imap_getsubscribed(resource stream_id, string ref, string pattern)\",\n \"Return a list of subscribed mailboxes, in the same format as imap_getmailboxes()\"\n ],\n \"imap_headerinfo\": [\n \"object imap_headerinfo(resource stream_id, int msg_no [, int from_length [, int subject_length [, string default_host]]])\",\n \"Read the headers of the message\"\n ],\n \"imap_headers\": [\n \"array imap_headers(resource stream_id)\",\n \"Returns headers for all messages in a mailbox\"\n ],\n \"imap_last_error\": [\n \"string imap_last_error(void)\",\n \"Returns the last error that was generated by an IMAP function. The error stack is NOT cleared after this call.\"\n ],\n \"imap_list\": [\n \"array imap_list(resource stream_id, string ref, string pattern)\",\n \"Read the list of mailboxes\"\n ],\n \"imap_listscan\": [\n \"array imap_listscan(resource stream_id, string ref, string pattern, string content)\",\n \"Read list of mailboxes containing a certain string\"\n ],\n \"imap_lsub\": [\n \"array imap_lsub(resource stream_id, string ref, string pattern)\",\n \"Return a list of subscribed mailboxes\"\n ],\n \"imap_mail\": [\n \"bool imap_mail(string to, string subject, string message [, string additional_headers [, string cc [, string bcc [, string rpath]]]])\",\n \"Send an email message\"\n ],\n \"imap_mail_compose\": [\n \"string imap_mail_compose(array envelope, array body)\",\n \"Create a MIME message based on given envelope and body sections\"\n ],\n \"imap_mail_copy\": [\n \"bool imap_mail_copy(resource stream_id, string msglist, string mailbox [, int options])\",\n \"Copy specified message to a mailbox\"\n ],\n \"imap_mail_move\": [\n \"bool imap_mail_move(resource stream_id, string sequence, string mailbox [, int options])\",\n \"Move specified message to a mailbox\"\n ],\n \"imap_mailboxmsginfo\": [\n \"object imap_mailboxmsginfo(resource stream_id)\",\n \"Returns info about the current mailbox\"\n ],\n \"imap_mime_header_decode\": [\n \"array imap_mime_header_decode(string str)\",\n \"Decode mime header element in accordance with RFC 2047 and return array of objects containing 'charset' encoding and decoded 'text'\"\n ],\n \"imap_msgno\": [\n \"int imap_msgno(resource stream_id, int unique_msg_id)\",\n \"Get the sequence number associated with a UID\"\n ],\n \"imap_mutf7_to_utf8\": [\n \"string imap_mutf7_to_utf8(string in)\",\n \"Decode a modified UTF-7 string to UTF-8\"\n ],\n \"imap_num_msg\": [\n \"int imap_num_msg(resource stream_id)\",\n \"Gives the number of messages in the current mailbox\"\n ],\n \"imap_num_recent\": [\n \"int imap_num_recent(resource stream_id)\",\n \"Gives the number of recent messages in current mailbox\"\n ],\n \"imap_open\": [\n \"resource imap_open(string mailbox, string user, string password [, int options [, int n_retries]])\",\n \"Open an IMAP stream to a mailbox\"\n ],\n \"imap_ping\": [\n \"bool imap_ping(resource stream_id)\",\n \"Check if the IMAP stream is still active\"\n ],\n \"imap_qprint\": [\n \"string imap_qprint(string text)\",\n \"Convert a quoted-printable string to an 8-bit string\"\n ],\n \"imap_renamemailbox\": [\n \"bool imap_renamemailbox(resource stream_id, string old_name, string new_name)\",\n \"Rename a mailbox\"\n ],\n \"imap_reopen\": [\n \"bool imap_reopen(resource stream_id, string mailbox [, int options [, int n_retries]])\",\n \"Reopen an IMAP stream to a new mailbox\"\n ],\n \"imap_rfc822_parse_adrlist\": [\n \"array imap_rfc822_parse_adrlist(string address_string, string default_host)\",\n \"Parses an address string\"\n ],\n \"imap_rfc822_parse_headers\": [\n \"object imap_rfc822_parse_headers(string headers [, string default_host])\",\n \"Parse a set of mail headers contained in a string, and return an object similar to imap_headerinfo()\"\n ],\n \"imap_rfc822_write_address\": [\n \"string imap_rfc822_write_address(string mailbox, string host, string personal)\",\n \"Returns a properly formatted email address given the mailbox, host, and personal info\"\n ],\n \"imap_savebody\": [\n \"bool imap_savebody(resource stream_id, string|resource file, int msg_no[, string section = \\\"\\\"[, int options = 0]])\",\n \"Save a specific body section to a file\"\n ],\n \"imap_search\": [\n \"array imap_search(resource stream_id, string criteria [, int options [, string charset]])\",\n \"Return a list of messages matching the given criteria\"\n ],\n \"imap_set_quota\": [\n \"bool imap_set_quota(resource stream_id, string qroot, int mailbox_size)\",\n \"Will set the quota for qroot mailbox\"\n ],\n \"imap_setacl\": [\n \"bool imap_setacl(resource stream_id, string mailbox, string id, string rights)\",\n \"Sets the ACL for a given mailbox\"\n ],\n \"imap_setflag_full\": [\n \"bool imap_setflag_full(resource stream_id, string sequence, string flag [, int options])\",\n \"Sets flags on messages\"\n ],\n \"imap_sort\": [\n \"array imap_sort(resource stream_id, int criteria, int reverse [, int options [, string search_criteria [, string charset]]])\",\n \"Sort an array of message headers, optionally including only messages that meet specified criteria.\"\n ],\n \"imap_status\": [\n \"object imap_status(resource stream_id, string mailbox, int options)\",\n \"Get status info from a mailbox\"\n ],\n \"imap_subscribe\": [\n \"bool imap_subscribe(resource stream_id, string mailbox)\",\n \"Subscribe to a mailbox\"\n ],\n \"imap_thread\": [\n \"array imap_thread(resource stream_id [, int options])\",\n \"Return threaded by REFERENCES tree\"\n ],\n \"imap_timeout\": [\n \"mixed imap_timeout(int timeout_type [, int timeout])\",\n \"Set or fetch imap timeout\"\n ],\n \"imap_uid\": [\n \"int imap_uid(resource stream_id, int msg_no)\",\n \"Get the unique message id associated with a standard sequential message number\"\n ],\n \"imap_undelete\": [\n \"bool imap_undelete(resource stream_id, int msg_no [, int flags])\",\n \"Remove the delete flag from a message\"\n ],\n \"imap_unsubscribe\": [\n \"bool imap_unsubscribe(resource stream_id, string mailbox)\",\n \"Unsubscribe from a mailbox\"\n ],\n \"imap_utf7_decode\": [\n \"string imap_utf7_decode(string buf)\",\n \"Decode a modified UTF-7 string\"\n ],\n \"imap_utf7_encode\": [\n \"string imap_utf7_encode(string buf)\",\n \"Encode a string in modified UTF-7\"\n ],\n \"imap_utf8\": [\n \"string imap_utf8(string mime_encoded_text)\",\n \"Convert a mime-encoded text to UTF-8\"\n ],\n \"imap_utf8_to_mutf7\": [\n \"string imap_utf8_to_mutf7(string in)\",\n \"Encode a UTF-8 string to modified UTF-7\"\n ],\n \"implode\": [\n \"string implode([string glue,] array pieces)\",\n \"Joins array elements placing glue string between items and return one string\"\n ],\n \"import_request_variables\": [\n \"bool import_request_variables(string types [, string prefix])\",\n \"Import GET/POST/Cookie variables into the global scope\"\n ],\n \"in_array\": [\n \"bool in_array(mixed needle, array haystack [, bool strict])\",\n \"Checks if the given value exists in the array\"\n ],\n \"include\": [\n \"bool include(string path)\",\n \"Includes and evaluates the specified file\"\n ],\n \"include_once\": [\n \"bool include_once(string path)\",\n \"Includes and evaluates the specified file\"\n ],\n \"inet_ntop\": [\n \"string inet_ntop(string in_addr)\",\n \"Converts a packed inet address to a human readable IP address string\"\n ],\n \"inet_pton\": [\n \"string inet_pton(string ip_address)\",\n \"Converts a human readable IP address to a packed binary string\"\n ],\n \"ini_get\": [\n \"string ini_get(string varname)\",\n \"Get a configuration option\"\n ],\n \"ini_get_all\": [\n \"array ini_get_all([string extension[, bool details = true]])\",\n \"Get all configuration options\"\n ],\n \"ini_restore\": [\n \"void ini_restore(string varname)\",\n \"Restore the value of a configuration option specified by varname\"\n ],\n \"ini_set\": [\n \"string ini_set(string varname, string newvalue)\",\n \"Set a configuration option, returns false on error and the old value of the configuration option on success\"\n ],\n \"interface_exists\": [\n \"bool interface_exists(string classname [, bool autoload])\",\n \"Checks if the class exists\"\n ],\n \"intl_error_name\": [\n \"string intl_error_name()\",\n \"* Return a string for a given error code. * The string will be the same as the name of the error code constant.\"\n ],\n \"intl_get_error_code\": [\n \"int intl_get_error_code()\",\n \"* Get code of the last occured error.\"\n ],\n \"intl_get_error_message\": [\n \"string intl_get_error_message()\",\n \"* Get text description of the last occured error.\"\n ],\n \"intl_is_failure\": [\n \"bool intl_is_failure()\",\n \"* Check whether the given error code indicates a failure. * Returns true if it does, and false if the code * indicates success or a warning.\"\n ],\n \"intval\": [\n \"int intval(mixed var [, int base])\",\n \"Get the integer value of a variable using the optional base for the conversion\"\n ],\n \"ip2long\": [\n \"int ip2long(string ip_address)\",\n \"Converts a string containing an (IPv4) Internet Protocol dotted address into a proper address\"\n ],\n \"iptcembed\": [\n \"array iptcembed(string iptcdata, string jpeg_file_name [, int spool])\",\n \"Embed binary IPTC data into a JPEG image.\"\n ],\n \"iptcparse\": [\n \"array iptcparse(string iptcdata)\",\n \"Parse binary IPTC-data into associative array\"\n ],\n \"is_a\": [\n \"bool is_a(object object, string class_name)\",\n \"Returns true if the object is of this class or has this class as one of its parents\"\n ],\n \"is_array\": [\n \"bool is_array(mixed var)\",\n \"Returns true if variable is an array\"\n ],\n \"is_bool\": [\n \"bool is_bool(mixed var)\",\n \"Returns true if variable is a boolean\"\n ],\n \"is_callable\": [\n \"bool is_callable(mixed var [, bool syntax_only [, string callable_name]])\",\n \"Returns true if var is callable.\"\n ],\n \"is_dir\": [\n \"bool is_dir(string filename)\",\n \"Returns true if file is directory\"\n ],\n \"is_executable\": [\n \"bool is_executable(string filename)\",\n \"Returns true if file is executable\"\n ],\n \"is_file\": [\n \"bool is_file(string filename)\",\n \"Returns true if file is a regular file\"\n ],\n \"is_finite\": [\n \"bool is_finite(float val)\",\n \"Returns whether argument is finite\"\n ],\n \"is_float\": [\n \"bool is_float(mixed var)\",\n \"Returns true if variable is float point\"\n ],\n \"is_infinite\": [\n \"bool is_infinite(float val)\",\n \"Returns whether argument is infinite\"\n ],\n \"is_link\": [\n \"bool is_link(string filename)\",\n \"Returns true if file is symbolic link\"\n ],\n \"is_long\": [\n \"bool is_long(mixed var)\",\n \"Returns true if variable is a long (integer)\"\n ],\n \"is_nan\": [\n \"bool is_nan(float val)\",\n \"Returns whether argument is not a number\"\n ],\n \"is_null\": [\n \"bool is_null(mixed var)\",\n \"Returns true if variable is null\"\n ],\n \"is_numeric\": [\n \"bool is_numeric(mixed value)\",\n \"Returns true if value is a number or a numeric string\"\n ],\n \"is_object\": [\n \"bool is_object(mixed var)\",\n \"Returns true if variable is an object\"\n ],\n \"is_readable\": [\n \"bool is_readable(string filename)\",\n \"Returns true if file can be read\"\n ],\n \"is_resource\": [\n \"bool is_resource(mixed var)\",\n \"Returns true if variable is a resource\"\n ],\n \"is_scalar\": [\n \"bool is_scalar(mixed value)\",\n \"Returns true if value is a scalar\"\n ],\n \"is_string\": [\n \"bool is_string(mixed var)\",\n \"Returns true if variable is a string\"\n ],\n \"is_subclass_of\": [\n \"bool is_subclass_of(object object, string class_name)\",\n \"Returns true if the object has this class as one of its parents\"\n ],\n \"is_uploaded_file\": [\n \"bool is_uploaded_file(string path)\",\n \"Check if file was created by rfc1867 upload\"\n ],\n \"is_writable\": [\n \"bool is_writable(string filename)\",\n \"Returns true if file can be written\"\n ],\n \"isset\": [\n \"bool isset(mixed var [, mixed var])\",\n \"Determine whether a variable is set\"\n ],\n \"iterator_apply\": [\n \"int iterator_apply(Traversable it, mixed function [, mixed params])\",\n \"Calls a function for every element in an iterator\"\n ],\n \"iterator_count\": [\n \"int iterator_count(Traversable it)\",\n \"Count the elements in an iterator\"\n ],\n \"iterator_to_array\": [\n \"array iterator_to_array(Traversable it [, bool use_keys = true])\",\n \"Copy the iterator into an array\"\n ],\n \"jddayofweek\": [\n \"mixed jddayofweek(int juliandaycount [, int mode])\",\n \"Returns name or number of day of week from julian day count\"\n ],\n \"jdmonthname\": [\n \"string jdmonthname(int juliandaycount, int mode)\",\n \"Returns name of month for julian day count\"\n ],\n \"jdtofrench\": [\n \"string jdtofrench(int juliandaycount)\",\n \"Converts a julian day count to a french republic calendar date\"\n ],\n \"jdtogregorian\": [\n \"string jdtogregorian(int juliandaycount)\",\n \"Converts a julian day count to a gregorian calendar date\"\n ],\n \"jdtojewish\": [\n \"string jdtojewish(int juliandaycount [, bool hebrew [, int fl]])\",\n \"Converts a julian day count to a jewish calendar date\"\n ],\n \"jdtojulian\": [\n \"string jdtojulian(int juliandaycount)\",\n \"Convert a julian day count to a julian calendar date\"\n ],\n \"jdtounix\": [\n \"int jdtounix(int jday)\",\n \"Convert Julian Day to UNIX timestamp\"\n ],\n \"jewishtojd\": [\n \"int jewishtojd(int month, int day, int year)\",\n \"Converts a jewish calendar date to a julian day count\"\n ],\n \"join\": [\n \"string join(array src, string glue)\",\n \"An alias for implode\"\n ],\n \"jpeg2wbmp\": [\n \"bool jpeg2wbmp (string f_org, string f_dest, int d_height, int d_width, int threshold)\",\n \"Convert JPEG image to WBMP image\"\n ],\n \"json_decode\": [\n \"mixed json_decode(string json [, bool assoc [, long depth]])\",\n \"Decodes the JSON representation into a PHP value\"\n ],\n \"json_encode\": [\n \"string json_encode(mixed data [, int options])\",\n \"Returns the JSON representation of a value\"\n ],\n \"json_last_error\": [\n \"int json_last_error()\",\n \"Returns the error code of the last json_decode().\"\n ],\n \"juliantojd\": [\n \"int juliantojd(int month, int day, int year)\",\n \"Converts a julian calendar date to julian day count\"\n ],\n \"key\": [\n \"mixed key(array array_arg)\",\n \"Return the key of the element currently pointed to by the internal array pointer\"\n ],\n \"krsort\": [\n \"bool krsort(array &array_arg [, int sort_flags])\",\n \"Sort an array by key value in reverse order\"\n ],\n \"ksort\": [\n \"bool ksort(array &array_arg [, int sort_flags])\",\n \"Sort an array by key\"\n ],\n \"lcfirst\": [\n \"string lcfirst(string str)\",\n \"Make a string's first character lowercase\"\n ],\n \"lcg_value\": [\n \"float lcg_value()\",\n \"Returns a value from the combined linear congruential generator\"\n ],\n \"lchgrp\": [\n \"bool lchgrp(string filename, mixed group)\",\n \"Change symlink group\"\n ],\n \"ldap_8859_to_t61\": [\n \"string ldap_8859_to_t61(string value)\",\n \"Translate 8859 characters to t61 characters\"\n ],\n \"ldap_add\": [\n \"bool ldap_add(resource link, string dn, array entry)\",\n \"Add entries to LDAP directory\"\n ],\n \"ldap_bind\": [\n \"bool ldap_bind(resource link [, string dn [, string password]])\",\n \"Bind to LDAP directory\"\n ],\n \"ldap_compare\": [\n \"bool ldap_compare(resource link, string dn, string attr, string value)\",\n \"Determine if an entry has a specific value for one of its attributes\"\n ],\n \"ldap_connect\": [\n \"resource ldap_connect([string host [, int port [, string wallet [, string wallet_passwd [, int authmode]]]]])\",\n \"Connect to an LDAP server\"\n ],\n \"ldap_count_entries\": [\n \"int ldap_count_entries(resource link, resource result)\",\n \"Count the number of entries in a search result\"\n ],\n \"ldap_delete\": [\n \"bool ldap_delete(resource link, string dn)\",\n \"Delete an entry from a directory\"\n ],\n \"ldap_dn2ufn\": [\n \"string ldap_dn2ufn(string dn)\",\n \"Convert DN to User Friendly Naming format\"\n ],\n \"ldap_err2str\": [\n \"string ldap_err2str(int errno)\",\n \"Convert error number to error string\"\n ],\n \"ldap_errno\": [\n \"int ldap_errno(resource link)\",\n \"Get the current ldap error number\"\n ],\n \"ldap_error\": [\n \"string ldap_error(resource link)\",\n \"Get the current ldap error string\"\n ],\n \"ldap_explode_dn\": [\n \"array ldap_explode_dn(string dn, int with_attrib)\",\n \"Splits DN into its component parts\"\n ],\n \"ldap_first_attribute\": [\n \"string ldap_first_attribute(resource link, resource result_entry)\",\n \"Return first attribute\"\n ],\n \"ldap_first_entry\": [\n \"resource ldap_first_entry(resource link, resource result)\",\n \"Return first result id\"\n ],\n \"ldap_first_reference\": [\n \"resource ldap_first_reference(resource link, resource result)\",\n \"Return first reference\"\n ],\n \"ldap_free_result\": [\n \"bool ldap_free_result(resource result)\",\n \"Free result memory\"\n ],\n \"ldap_get_attributes\": [\n \"array ldap_get_attributes(resource link, resource result_entry)\",\n \"Get attributes from a search result entry\"\n ],\n \"ldap_get_dn\": [\n \"string ldap_get_dn(resource link, resource result_entry)\",\n \"Get the DN of a result entry\"\n ],\n \"ldap_get_entries\": [\n \"array ldap_get_entries(resource link, resource result)\",\n \"Get all result entries\"\n ],\n \"ldap_get_option\": [\n \"bool ldap_get_option(resource link, int option, mixed retval)\",\n \"Get the current value of various session-wide parameters\"\n ],\n \"ldap_get_values_len\": [\n \"array ldap_get_values_len(resource link, resource result_entry, string attribute)\",\n \"Get all values with lengths from a result entry\"\n ],\n \"ldap_list\": [\n \"resource ldap_list(resource|array link, string base_dn, string filter [, array attrs [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]])\",\n \"Single-level search\"\n ],\n \"ldap_mod_add\": [\n \"bool ldap_mod_add(resource link, string dn, array entry)\",\n \"Add attribute values to current\"\n ],\n \"ldap_mod_del\": [\n \"bool ldap_mod_del(resource link, string dn, array entry)\",\n \"Delete attribute values\"\n ],\n \"ldap_mod_replace\": [\n \"bool ldap_mod_replace(resource link, string dn, array entry)\",\n \"Replace attribute values with new ones\"\n ],\n \"ldap_next_attribute\": [\n \"string ldap_next_attribute(resource link, resource result_entry)\",\n \"Get the next attribute in result\"\n ],\n \"ldap_next_entry\": [\n \"resource ldap_next_entry(resource link, resource result_entry)\",\n \"Get next result entry\"\n ],\n \"ldap_next_reference\": [\n \"resource ldap_next_reference(resource link, resource reference_entry)\",\n \"Get next reference\"\n ],\n \"ldap_parse_reference\": [\n \"bool ldap_parse_reference(resource link, resource reference_entry, array referrals)\",\n \"Extract information from reference entry\"\n ],\n \"ldap_parse_result\": [\n \"bool ldap_parse_result(resource link, resource result, int errcode, string matcheddn, string errmsg, array referrals)\",\n \"Extract information from result\"\n ],\n \"ldap_read\": [\n \"resource ldap_read(resource|array link, string base_dn, string filter [, array attrs [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]])\",\n \"Read an entry\"\n ],\n \"ldap_rename\": [\n \"bool ldap_rename(resource link, string dn, string newrdn, string newparent, bool deleteoldrdn);\",\n \"Modify the name of an entry\"\n ],\n \"ldap_sasl_bind\": [\n \"bool ldap_sasl_bind(resource link [, string binddn [, string password [, string sasl_mech [, string sasl_realm [, string sasl_authc_id [, string sasl_authz_id [, string props]]]]]]])\",\n \"Bind to LDAP directory using SASL\"\n ],\n \"ldap_search\": [\n \"resource ldap_search(resource|array link, string base_dn, string filter [, array attrs [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]])\",\n \"Search LDAP tree under base_dn\"\n ],\n \"ldap_set_option\": [\n \"bool ldap_set_option(resource link, int option, mixed newval)\",\n \"Set the value of various session-wide parameters\"\n ],\n \"ldap_set_rebind_proc\": [\n \"bool ldap_set_rebind_proc(resource link, string callback)\",\n \"Set a callback function to do re-binds on referral chasing.\"\n ],\n \"ldap_sort\": [\n \"bool ldap_sort(resource link, resource result, string sortfilter)\",\n \"Sort LDAP result entries\"\n ],\n \"ldap_start_tls\": [\n \"bool ldap_start_tls(resource link)\",\n \"Start TLS\"\n ],\n \"ldap_t61_to_8859\": [\n \"string ldap_t61_to_8859(string value)\",\n \"Translate t61 characters to 8859 characters\"\n ],\n \"ldap_unbind\": [\n \"bool ldap_unbind(resource link)\",\n \"Unbind from LDAP directory\"\n ],\n \"leak\": [\n \"void leak(int num_bytes=3)\",\n \"Cause an intentional memory leak, for testing/debugging purposes\"\n ],\n \"levenshtein\": [\n \"int levenshtein(string str1, string str2[, int cost_ins, int cost_rep, int cost_del])\",\n \"Calculate Levenshtein distance between two strings\"\n ],\n \"libxml_clear_errors\": [\n \"void libxml_clear_errors()\",\n \"Clear last error from libxml\"\n ],\n \"libxml_disable_entity_loader\": [\n \"bool libxml_disable_entity_loader([boolean disable])\",\n \"Disable/Enable ability to load external entities\"\n ],\n \"libxml_get_errors\": [\n \"object libxml_get_errors()\",\n \"Retrieve array of errors\"\n ],\n \"libxml_get_last_error\": [\n \"object libxml_get_last_error()\",\n \"Retrieve last error from libxml\"\n ],\n \"libxml_set_streams_context\": [\n \"void libxml_set_streams_context(resource streams_context)\",\n \"Set the streams context for the next libxml document load or write\"\n ],\n \"libxml_use_internal_errors\": [\n \"bool libxml_use_internal_errors([boolean use_errors])\",\n \"Disable libxml errors and allow user to fetch error information as needed\"\n ],\n \"link\": [\n \"int link(string target, string link)\",\n \"Create a hard link\"\n ],\n \"linkinfo\": [\n \"int linkinfo(string filename)\",\n \"Returns the st_dev field of the UNIX C stat structure describing the link\"\n ],\n \"litespeed_request_headers\": [\n \"array litespeed_request_headers(void)\",\n \"Fetch all HTTP request headers\"\n ],\n \"litespeed_response_headers\": [\n \"array litespeed_response_headers(void)\",\n \"Fetch all HTTP response headers\"\n ],\n \"locale_accept_from_http\": [\n \"string locale_accept_from_http(string $http_accept)\",\n null\n ],\n \"locale_canonicalize\": [\n \"static string locale_canonicalize(Locale $loc, string $locale)\",\n \"* @param string $locale The locale string to canonicalize\"\n ],\n \"locale_filter_matches\": [\n \"boolean locale_filter_matches(string $langtag, string $locale[, bool $canonicalize])\",\n \"* Checks if a $langtag filter matches with $locale according to RFC 4647's basic filtering algorithm\"\n ],\n \"locale_get_all_variants\": [\n \"static array locale_get_all_variants($locale)\",\n \"* gets an array containing the list of variants, or null\"\n ],\n \"locale_get_default\": [\n \"static string locale_get_default( )\",\n \"Get default locale\"\n ],\n \"locale_get_keywords\": [\n \"static array locale_get_keywords(string $locale) {\",\n \"* return an associative array containing keyword-value * pairs for this locale. The keys are keys to the array (doh!)\"\n ],\n \"locale_get_primary_language\": [\n \"static string locale_get_primary_language($locale)\",\n \"* gets the primary language for the $locale\"\n ],\n \"locale_get_region\": [\n \"static string locale_get_region($locale)\",\n \"* gets the region for the $locale\"\n ],\n \"locale_get_script\": [\n \"static string locale_get_script($locale)\",\n \"* gets the script for the $locale\"\n ],\n \"locale_lookup\": [\n \"string locale_lookup(array $langtag, string $locale[, bool $canonicalize[, string $default = null]])\",\n \"* Searchs the items in $langtag for the best match to the language * range\"\n ],\n \"locale_set_default\": [\n \"static string locale_set_default( string $locale )\",\n \"Set default locale\"\n ],\n \"localeconv\": [\n \"array localeconv(void)\",\n \"Returns numeric formatting information based on the current locale\"\n ],\n \"localtime\": [\n \"array localtime([int timestamp [, bool associative_array]])\",\n \"Returns the results of the C system call localtime as an associative array if the associative_array argument is set to 1 other wise it is a regular array\"\n ],\n \"log\": [\n \"float log(float number, [float base])\",\n \"Returns the natural logarithm of the number, or the base log if base is specified\"\n ],\n \"log10\": [\n \"float log10(float number)\",\n \"Returns the base-10 logarithm of the number\"\n ],\n \"log1p\": [\n \"float log1p(float number)\",\n \"Returns log(1 + number), computed in a way that accurate even when the value of number is close to zero\"\n ],\n \"long2ip\": [\n \"string long2ip(int proper_address)\",\n \"Converts an (IPv4) Internet network address into a string in Internet standard dotted format\"\n ],\n \"lstat\": [\n \"array lstat(string filename)\",\n \"Give information about a file or symbolic link\"\n ],\n \"ltrim\": [\n \"string ltrim(string str [, string character_mask])\",\n \"Strips whitespace from the beginning of a string\"\n ],\n \"mail\": [\n \"int mail(string to, string subject, string message [, string additional_headers [, string additional_parameters]])\",\n \"Send an email message\"\n ],\n \"max\": [\n \"mixed max(mixed arg1 [, mixed arg2 [, mixed ...]])\",\n \"Return the highest value in an array or a series of arguments\"\n ],\n \"mb_check_encoding\": [\n \"bool mb_check_encoding([string var[, string encoding]])\",\n \"Check if the string is valid for the specified encoding\"\n ],\n \"mb_convert_case\": [\n \"string mb_convert_case(string sourcestring, int mode [, string encoding])\",\n \"Returns a case-folded version of sourcestring\"\n ],\n \"mb_convert_encoding\": [\n \"string mb_convert_encoding(string str, string to-encoding [, mixed from-encoding])\",\n \"Returns converted string in desired encoding\"\n ],\n \"mb_convert_kana\": [\n \"string mb_convert_kana(string str [, string option] [, string encoding])\",\n \"Conversion between full-width character and half-width character (Japanese)\"\n ],\n \"mb_convert_variables\": [\n \"string mb_convert_variables(string to-encoding, mixed from-encoding, mixed vars [, ...])\",\n \"Converts the string resource in variables to desired encoding\"\n ],\n \"mb_decode_mimeheader\": [\n \"string mb_decode_mimeheader(string string)\",\n \"Decodes the MIME \\\"encoded-word\\\" in the string\"\n ],\n \"mb_decode_numericentity\": [\n \"string mb_decode_numericentity(string string, array convmap [, string encoding])\",\n \"Converts HTML numeric entities to character code\"\n ],\n \"mb_detect_encoding\": [\n \"string mb_detect_encoding(string str [, mixed encoding_list [, bool strict]])\",\n \"Encodings of the given string is returned (as a string)\"\n ],\n \"mb_detect_order\": [\n \"bool|array mb_detect_order([mixed encoding-list])\",\n \"Sets the current detect_order or Return the current detect_order as a array\"\n ],\n \"mb_encode_mimeheader\": [\n \"string mb_encode_mimeheader(string str [, string charset [, string transfer-encoding [, string linefeed [, int indent]]]])\",\n \"Converts the string to MIME \\\"encoded-word\\\" in the format of =?charset?(B|Q)?encoded_string?=\"\n ],\n \"mb_encode_numericentity\": [\n \"string mb_encode_numericentity(string string, array convmap [, string encoding])\",\n \"Converts specified characters to HTML numeric entities\"\n ],\n \"mb_encoding_aliases\": [\n \"array mb_encoding_aliases(string encoding)\",\n \"Returns an array of the aliases of a given encoding name\"\n ],\n \"mb_ereg\": [\n \"int mb_ereg(string pattern, string string [, array registers])\",\n \"Regular expression match for multibyte string\"\n ],\n \"mb_ereg_match\": [\n \"bool mb_ereg_match(string pattern, string string [,string option])\",\n \"Regular expression match for multibyte string\"\n ],\n \"mb_ereg_replace\": [\n \"string mb_ereg_replace(string pattern, string replacement, string string [, string option])\",\n \"Replace regular expression for multibyte string\"\n ],\n \"mb_ereg_search\": [\n \"bool mb_ereg_search([string pattern[, string option]])\",\n \"Regular expression search for multibyte string\"\n ],\n \"mb_ereg_search_getpos\": [\n \"int mb_ereg_search_getpos(void)\",\n \"Get search start position\"\n ],\n \"mb_ereg_search_getregs\": [\n \"array mb_ereg_search_getregs(void)\",\n \"Get matched substring of the last time\"\n ],\n \"mb_ereg_search_init\": [\n \"bool mb_ereg_search_init(string string [, string pattern[, string option]])\",\n \"Initialize string and regular expression for search.\"\n ],\n \"mb_ereg_search_pos\": [\n \"array mb_ereg_search_pos([string pattern[, string option]])\",\n \"Regular expression search for multibyte string\"\n ],\n \"mb_ereg_search_regs\": [\n \"array mb_ereg_search_regs([string pattern[, string option]])\",\n \"Regular expression search for multibyte string\"\n ],\n \"mb_ereg_search_setpos\": [\n \"bool mb_ereg_search_setpos(int position)\",\n \"Set search start position\"\n ],\n \"mb_eregi\": [\n \"int mb_eregi(string pattern, string string [, array registers])\",\n \"Case-insensitive regular expression match for multibyte string\"\n ],\n \"mb_eregi_replace\": [\n \"string mb_eregi_replace(string pattern, string replacement, string string)\",\n \"Case insensitive replace regular expression for multibyte string\"\n ],\n \"mb_get_info\": [\n \"mixed mb_get_info([string type])\",\n \"Returns the current settings of mbstring\"\n ],\n \"mb_http_input\": [\n \"mixed mb_http_input([string type])\",\n \"Returns the input encoding\"\n ],\n \"mb_http_output\": [\n \"string mb_http_output([string encoding])\",\n \"Sets the current output_encoding or returns the current output_encoding as a string\"\n ],\n \"mb_internal_encoding\": [\n \"string mb_internal_encoding([string encoding])\",\n \"Sets the current internal encoding or Returns the current internal encoding as a string\"\n ],\n \"mb_language\": [\n \"string mb_language([string language])\",\n \"Sets the current language or Returns the current language as a string\"\n ],\n \"mb_list_encodings\": [\n \"mixed mb_list_encodings()\",\n \"Returns an array of all supported entity encodings\"\n ],\n \"mb_output_handler\": [\n \"string mb_output_handler(string contents, int status)\",\n \"Returns string in output buffer converted to the http_output encoding\"\n ],\n \"mb_parse_str\": [\n \"bool mb_parse_str(string encoded_string [, array result])\",\n \"Parses GET/POST/COOKIE data and sets global variables\"\n ],\n \"mb_preferred_mime_name\": [\n \"string mb_preferred_mime_name(string encoding)\",\n \"Return the preferred MIME name (charset) as a string\"\n ],\n \"mb_regex_encoding\": [\n \"string mb_regex_encoding([string encoding])\",\n \"Returns the current encoding for regex as a string.\"\n ],\n \"mb_regex_set_options\": [\n \"string mb_regex_set_options([string options])\",\n \"Set or get the default options for mbregex functions\"\n ],\n \"mb_send_mail\": [\n \"int mb_send_mail(string to, string subject, string message [, string additional_headers [, string additional_parameters]])\",\n \"* Sends an email message with MIME scheme\"\n ],\n \"mb_split\": [\n \"array mb_split(string pattern, string string [, int limit])\",\n \"split multibyte string into array by regular expression\"\n ],\n \"mb_strcut\": [\n \"string mb_strcut(string str, int start [, int length [, string encoding]])\",\n \"Returns part of a string\"\n ],\n \"mb_strimwidth\": [\n \"string mb_strimwidth(string str, int start, int width [, string trimmarker [, string encoding]])\",\n \"Trim the string in terminal width\"\n ],\n \"mb_stripos\": [\n \"int mb_stripos(string haystack, string needle [, int offset [, string encoding]])\",\n \"Finds position of first occurrence of a string within another, case insensitive\"\n ],\n \"mb_stristr\": [\n \"string mb_stristr(string haystack, string needle[, bool part[, string encoding]])\",\n \"Finds first occurrence of a string within another, case insensitive\"\n ],\n \"mb_strlen\": [\n \"int mb_strlen(string str [, string encoding])\",\n \"Get character numbers of a string\"\n ],\n \"mb_strpos\": [\n \"int mb_strpos(string haystack, string needle [, int offset [, string encoding]])\",\n \"Find position of first occurrence of a string within another\"\n ],\n \"mb_strrchr\": [\n \"string mb_strrchr(string haystack, string needle[, bool part[, string encoding]])\",\n \"Finds the last occurrence of a character in a string within another\"\n ],\n \"mb_strrichr\": [\n \"string mb_strrichr(string haystack, string needle[, bool part[, string encoding]])\",\n \"Finds the last occurrence of a character in a string within another, case insensitive\"\n ],\n \"mb_strripos\": [\n \"int mb_strripos(string haystack, string needle [, int offset [, string encoding]])\",\n \"Finds position of last occurrence of a string within another, case insensitive\"\n ],\n \"mb_strrpos\": [\n \"int mb_strrpos(string haystack, string needle [, int offset [, string encoding]])\",\n \"Find position of last occurrence of a string within another\"\n ],\n \"mb_strstr\": [\n \"string mb_strstr(string haystack, string needle[, bool part[, string encoding]])\",\n \"Finds first occurrence of a string within another\"\n ],\n \"mb_strtolower\": [\n \"string mb_strtolower(string sourcestring [, string encoding])\",\n \"* Returns a lowercased version of sourcestring\"\n ],\n \"mb_strtoupper\": [\n \"string mb_strtoupper(string sourcestring [, string encoding])\",\n \"* Returns a uppercased version of sourcestring\"\n ],\n \"mb_strwidth\": [\n \"int mb_strwidth(string str [, string encoding])\",\n \"Gets terminal width of a string\"\n ],\n \"mb_substitute_character\": [\n \"mixed mb_substitute_character([mixed substchar])\",\n \"Sets the current substitute_character or returns the current substitute_character\"\n ],\n \"mb_substr\": [\n \"string mb_substr(string str, int start [, int length [, string encoding]])\",\n \"Returns part of a string\"\n ],\n \"mb_substr_count\": [\n \"int mb_substr_count(string haystack, string needle [, string encoding])\",\n \"Count the number of substring occurrences\"\n ],\n \"mcrypt_cbc\": [\n \"string mcrypt_cbc(int cipher, string key, string data, int mode, string iv)\",\n \"CBC crypt/decrypt data using key key with cipher cipher starting with iv\"\n ],\n \"mcrypt_cfb\": [\n \"string mcrypt_cfb(int cipher, string key, string data, int mode, string iv)\",\n \"CFB crypt/decrypt data using key key with cipher cipher starting with iv\"\n ],\n \"mcrypt_create_iv\": [\n \"string mcrypt_create_iv(int size, int source)\",\n \"Create an initialization vector (IV)\"\n ],\n \"mcrypt_decrypt\": [\n \"string mcrypt_decrypt(string cipher, string key, string data, string mode, string iv)\",\n \"OFB crypt/decrypt data using key key with cipher cipher starting with iv\"\n ],\n \"mcrypt_ecb\": [\n \"string mcrypt_ecb(int cipher, string key, string data, int mode, string iv)\",\n \"ECB crypt/decrypt data using key key with cipher cipher starting with iv\"\n ],\n \"mcrypt_enc_get_algorithms_name\": [\n \"string mcrypt_enc_get_algorithms_name(resource td)\",\n \"Returns the name of the algorithm specified by the descriptor td\"\n ],\n \"mcrypt_enc_get_block_size\": [\n \"int mcrypt_enc_get_block_size(resource td)\",\n \"Returns the block size of the cipher specified by the descriptor td\"\n ],\n \"mcrypt_enc_get_iv_size\": [\n \"int mcrypt_enc_get_iv_size(resource td)\",\n \"Returns the size of the IV in bytes of the algorithm specified by the descriptor td\"\n ],\n \"mcrypt_enc_get_key_size\": [\n \"int mcrypt_enc_get_key_size(resource td)\",\n \"Returns the maximum supported key size in bytes of the algorithm specified by the descriptor td\"\n ],\n \"mcrypt_enc_get_modes_name\": [\n \"string mcrypt_enc_get_modes_name(resource td)\",\n \"Returns the name of the mode specified by the descriptor td\"\n ],\n \"mcrypt_enc_get_supported_key_sizes\": [\n \"array mcrypt_enc_get_supported_key_sizes(resource td)\",\n \"This function decrypts the crypttext\"\n ],\n \"mcrypt_enc_is_block_algorithm\": [\n \"bool mcrypt_enc_is_block_algorithm(resource td)\",\n \"Returns TRUE if the alrogithm is a block algorithms\"\n ],\n \"mcrypt_enc_is_block_algorithm_mode\": [\n \"bool mcrypt_enc_is_block_algorithm_mode(resource td)\",\n \"Returns TRUE if the mode is for use with block algorithms\"\n ],\n \"mcrypt_enc_is_block_mode\": [\n \"bool mcrypt_enc_is_block_mode(resource td)\",\n \"Returns TRUE if the mode outputs blocks\"\n ],\n \"mcrypt_enc_self_test\": [\n \"int mcrypt_enc_self_test(resource td)\",\n \"This function runs the self test on the algorithm specified by the descriptor td\"\n ],\n \"mcrypt_encrypt\": [\n \"string mcrypt_encrypt(string cipher, string key, string data, string mode, string iv)\",\n \"OFB crypt/decrypt data using key key with cipher cipher starting with iv\"\n ],\n \"mcrypt_generic\": [\n \"string mcrypt_generic(resource td, string data)\",\n \"This function encrypts the plaintext\"\n ],\n \"mcrypt_generic_deinit\": [\n \"bool mcrypt_generic_deinit(resource td)\",\n \"This function terminates encrypt specified by the descriptor td\"\n ],\n \"mcrypt_generic_init\": [\n \"int mcrypt_generic_init(resource td, string key, string iv)\",\n \"This function initializes all buffers for the specific module\"\n ],\n \"mcrypt_get_block_size\": [\n \"int mcrypt_get_block_size(string cipher, string module)\",\n \"Get the key size of cipher\"\n ],\n \"mcrypt_get_cipher_name\": [\n \"string mcrypt_get_cipher_name(string cipher)\",\n \"Get the key size of cipher\"\n ],\n \"mcrypt_get_iv_size\": [\n \"int mcrypt_get_iv_size(string cipher, string module)\",\n \"Get the IV size of cipher (Usually the same as the blocksize)\"\n ],\n \"mcrypt_get_key_size\": [\n \"int mcrypt_get_key_size(string cipher, string module)\",\n \"Get the key size of cipher\"\n ],\n \"mcrypt_list_algorithms\": [\n \"array mcrypt_list_algorithms([string lib_dir])\",\n \"List all algorithms in \\\"module_dir\\\"\"\n ],\n \"mcrypt_list_modes\": [\n \"array mcrypt_list_modes([string lib_dir])\",\n \"List all modes \\\"module_dir\\\"\"\n ],\n \"mcrypt_module_close\": [\n \"bool mcrypt_module_close(resource td)\",\n \"Free the descriptor td\"\n ],\n \"mcrypt_module_get_algo_block_size\": [\n \"int mcrypt_module_get_algo_block_size(string algorithm [, string lib_dir])\",\n \"Returns the block size of the algorithm\"\n ],\n \"mcrypt_module_get_algo_key_size\": [\n \"int mcrypt_module_get_algo_key_size(string algorithm [, string lib_dir])\",\n \"Returns the maximum supported key size of the algorithm\"\n ],\n \"mcrypt_module_get_supported_key_sizes\": [\n \"array mcrypt_module_get_supported_key_sizes(string algorithm [, string lib_dir])\",\n \"This function decrypts the crypttext\"\n ],\n \"mcrypt_module_is_block_algorithm\": [\n \"bool mcrypt_module_is_block_algorithm(string algorithm [, string lib_dir])\",\n \"Returns TRUE if the algorithm is a block algorithm\"\n ],\n \"mcrypt_module_is_block_algorithm_mode\": [\n \"bool mcrypt_module_is_block_algorithm_mode(string mode [, string lib_dir])\",\n \"Returns TRUE if the mode is for use with block algorithms\"\n ],\n \"mcrypt_module_is_block_mode\": [\n \"bool mcrypt_module_is_block_mode(string mode [, string lib_dir])\",\n \"Returns TRUE if the mode outputs blocks of bytes\"\n ],\n \"mcrypt_module_open\": [\n \"resource mcrypt_module_open(string cipher, string cipher_directory, string mode, string mode_directory)\",\n \"Opens the module of the algorithm and the mode to be used\"\n ],\n \"mcrypt_module_self_test\": [\n \"bool mcrypt_module_self_test(string algorithm [, string lib_dir])\",\n \"Does a self test of the module \\\"module\\\"\"\n ],\n \"mcrypt_ofb\": [\n \"string mcrypt_ofb(int cipher, string key, string data, int mode, string iv)\",\n \"OFB crypt/decrypt data using key key with cipher cipher starting with iv\"\n ],\n \"md5\": [\n \"string md5(string str, [ bool raw_output])\",\n \"Calculate the md5 hash of a string\"\n ],\n \"md5_file\": [\n \"string md5_file(string filename [, bool raw_output])\",\n \"Calculate the md5 hash of given filename\"\n ],\n \"mdecrypt_generic\": [\n \"string mdecrypt_generic(resource td, string data)\",\n \"This function decrypts the plaintext\"\n ],\n \"memory_get_peak_usage\": [\n \"int memory_get_peak_usage([real_usage])\",\n \"Returns the peak allocated by PHP memory\"\n ],\n \"memory_get_usage\": [\n \"int memory_get_usage([real_usage])\",\n \"Returns the allocated by PHP memory\"\n ],\n \"metaphone\": [\n \"string metaphone(string text[, int phones])\",\n \"Break english phrases down into their phonemes\"\n ],\n \"method_exists\": [\n \"bool method_exists(object object, string method)\",\n \"Checks if the class method exists\"\n ],\n \"mhash\": [\n \"string mhash(int hash, string data [, string key])\",\n \"Hash data with hash\"\n ],\n \"mhash_count\": [\n \"int mhash_count(void)\",\n \"Gets the number of available hashes\"\n ],\n \"mhash_get_block_size\": [\n \"int mhash_get_block_size(int hash)\",\n \"Gets the block size of hash\"\n ],\n \"mhash_get_hash_name\": [\n \"string mhash_get_hash_name(int hash)\",\n \"Gets the name of hash\"\n ],\n \"mhash_keygen_s2k\": [\n \"string mhash_keygen_s2k(int hash, string input_password, string salt, int bytes)\",\n \"Generates a key using hash functions\"\n ],\n \"microtime\": [\n \"mixed microtime([bool get_as_float])\",\n \"Returns either a string or a float containing the current time in seconds and microseconds\"\n ],\n \"mime_content_type\": [\n \"string mime_content_type(string filename|resource stream)\",\n \"Return content-type for file\"\n ],\n \"min\": [\n \"mixed min(mixed arg1 [, mixed arg2 [, mixed ...]])\",\n \"Return the lowest value in an array or a series of arguments\"\n ],\n \"mkdir\": [\n \"bool mkdir(string pathname [, int mode [, bool recursive [, resource context]]])\",\n \"Create a directory\"\n ],\n \"mktime\": [\n \"int mktime([int hour [, int min [, int sec [, int mon [, int day [, int year]]]]]])\",\n \"Get UNIX timestamp for a date\"\n ],\n \"money_format\": [\n \"string money_format(string format , float value)\",\n \"Convert monetary value(s) to string\"\n ],\n \"move_uploaded_file\": [\n \"bool move_uploaded_file(string path, string new_path)\",\n \"Move a file if and only if it was created by an upload\"\n ],\n \"msg_get_queue\": [\n \"resource msg_get_queue(int key [, int perms])\",\n \"Attach to a message queue\"\n ],\n \"msg_queue_exists\": [\n \"bool msg_queue_exists(int key)\",\n \"Check whether a message queue exists\"\n ],\n \"msg_receive\": [\n \"mixed msg_receive(resource queue, int desiredmsgtype, int &msgtype, int maxsize, mixed message [, bool unserialize=true [, int flags=0 [, int errorcode]]])\",\n \"Send a message of type msgtype (must be > 0) to a message queue\"\n ],\n \"msg_remove_queue\": [\n \"bool msg_remove_queue(resource queue)\",\n \"Destroy the queue\"\n ],\n \"msg_send\": [\n \"bool msg_send(resource queue, int msgtype, mixed message [, bool serialize=true [, bool blocking=true [, int errorcode]]])\",\n \"Send a message of type msgtype (must be > 0) to a message queue\"\n ],\n \"msg_set_queue\": [\n \"bool msg_set_queue(resource queue, array data)\",\n \"Set information for a message queue\"\n ],\n \"msg_stat_queue\": [\n \"array msg_stat_queue(resource queue)\",\n \"Returns information about a message queue\"\n ],\n \"msgfmt_create\": [\n \"MessageFormatter msgfmt_create( string $locale, string $pattern )\",\n \"* Create formatter.\"\n ],\n \"msgfmt_format\": [\n \"mixed msgfmt_format( MessageFormatter $nf, array $args )\",\n \"* Format a message.\"\n ],\n \"msgfmt_format_message\": [\n \"mixed msgfmt_format_message( string $locale, string $pattern, array $args )\",\n \"* Format a message.\"\n ],\n \"msgfmt_get_error_code\": [\n \"int msgfmt_get_error_code( MessageFormatter $nf )\",\n \"* Get formatter's last error code.\"\n ],\n \"msgfmt_get_error_message\": [\n \"string msgfmt_get_error_message( MessageFormatter $coll )\",\n \"* Get text description for formatter's last error code.\"\n ],\n \"msgfmt_get_locale\": [\n \"string msgfmt_get_locale(MessageFormatter $mf)\",\n \"* Get formatter locale.\"\n ],\n \"msgfmt_get_pattern\": [\n \"string msgfmt_get_pattern( MessageFormatter $mf )\",\n \"* Get formatter pattern.\"\n ],\n \"msgfmt_parse\": [\n \"array msgfmt_parse( MessageFormatter $nf, string $source )\",\n \"* Parse a message.\"\n ],\n \"msgfmt_set_pattern\": [\n \"bool msgfmt_set_pattern( MessageFormatter $mf, string $pattern )\",\n \"* Set formatter pattern.\"\n ],\n \"mssql_bind\": [\n \"bool mssql_bind(resource stmt, string param_name, mixed var, int type [, bool is_output [, bool is_null [, int maxlen]]])\",\n \"Adds a parameter to a stored procedure or a remote stored procedure\"\n ],\n \"mssql_close\": [\n \"bool mssql_close([resource conn_id])\",\n \"Closes a connection to a MS-SQL server\"\n ],\n \"mssql_connect\": [\n \"int mssql_connect([string servername [, string username [, string password [, bool new_link]]]])\",\n \"Establishes a connection to a MS-SQL server\"\n ],\n \"mssql_data_seek\": [\n \"bool mssql_data_seek(resource result_id, int offset)\",\n \"Moves the internal row pointer of the MS-SQL result associated with the specified result identifier to pointer to the specified row number\"\n ],\n \"mssql_execute\": [\n \"mixed mssql_execute(resource stmt [, bool skip_results = false])\",\n \"Executes a stored procedure on a MS-SQL server database\"\n ],\n \"mssql_fetch_array\": [\n \"array mssql_fetch_array(resource result_id [, int result_type])\",\n \"Returns an associative array of the current row in the result set specified by result_id\"\n ],\n \"mssql_fetch_assoc\": [\n \"array mssql_fetch_assoc(resource result_id)\",\n \"Returns an associative array of the current row in the result set specified by result_id\"\n ],\n \"mssql_fetch_batch\": [\n \"int mssql_fetch_batch(resource result_index)\",\n \"Returns the next batch of records\"\n ],\n \"mssql_fetch_field\": [\n \"object mssql_fetch_field(resource result_id [, int offset])\",\n \"Gets information about certain fields in a query result\"\n ],\n \"mssql_fetch_object\": [\n \"object mssql_fetch_object(resource result_id)\",\n \"Returns a pseudo-object of the current row in the result set specified by result_id\"\n ],\n \"mssql_fetch_row\": [\n \"array mssql_fetch_row(resource result_id)\",\n \"Returns an array of the current row in the result set specified by result_id\"\n ],\n \"mssql_field_length\": [\n \"int mssql_field_length(resource result_id [, int offset])\",\n \"Get the length of a MS-SQL field\"\n ],\n \"mssql_field_name\": [\n \"string mssql_field_name(resource result_id [, int offset])\",\n \"Returns the name of the field given by offset in the result set given by result_id\"\n ],\n \"mssql_field_seek\": [\n \"bool mssql_field_seek(resource result_id, int offset)\",\n \"Seeks to the specified field offset\"\n ],\n \"mssql_field_type\": [\n \"string mssql_field_type(resource result_id [, int offset])\",\n \"Returns the type of a field\"\n ],\n \"mssql_free_result\": [\n \"bool mssql_free_result(resource result_index)\",\n \"Free a MS-SQL result index\"\n ],\n \"mssql_free_statement\": [\n \"bool mssql_free_statement(resource result_index)\",\n \"Free a MS-SQL statement index\"\n ],\n \"mssql_get_last_message\": [\n \"string mssql_get_last_message(void)\",\n \"Gets the last message from the MS-SQL server\"\n ],\n \"mssql_guid_string\": [\n \"string mssql_guid_string(string binary [,bool short_format])\",\n \"Converts a 16 byte binary GUID to a string\"\n ],\n \"mssql_init\": [\n \"int mssql_init(string sp_name [, resource conn_id])\",\n \"Initializes a stored procedure or a remote stored procedure\"\n ],\n \"mssql_min_error_severity\": [\n \"void mssql_min_error_severity(int severity)\",\n \"Sets the lower error severity\"\n ],\n \"mssql_min_message_severity\": [\n \"void mssql_min_message_severity(int severity)\",\n \"Sets the lower message severity\"\n ],\n \"mssql_next_result\": [\n \"bool mssql_next_result(resource result_id)\",\n \"Move the internal result pointer to the next result\"\n ],\n \"mssql_num_fields\": [\n \"int mssql_num_fields(resource mssql_result_index)\",\n \"Returns the number of fields fetched in from the result id specified\"\n ],\n \"mssql_num_rows\": [\n \"int mssql_num_rows(resource mssql_result_index)\",\n \"Returns the number of rows fetched in from the result id specified\"\n ],\n \"mssql_pconnect\": [\n \"int mssql_pconnect([string servername [, string username [, string password [, bool new_link]]]])\",\n \"Establishes a persistent connection to a MS-SQL server\"\n ],\n \"mssql_query\": [\n \"resource mssql_query(string query [, resource conn_id [, int batch_size]])\",\n \"Perform an SQL query on a MS-SQL server database\"\n ],\n \"mssql_result\": [\n \"string mssql_result(resource result_id, int row, mixed field)\",\n \"Returns the contents of one cell from a MS-SQL result set\"\n ],\n \"mssql_rows_affected\": [\n \"int mssql_rows_affected(resource conn_id)\",\n \"Returns the number of records affected by the query\"\n ],\n \"mssql_select_db\": [\n \"bool mssql_select_db(string database_name [, resource conn_id])\",\n \"Select a MS-SQL database\"\n ],\n \"mt_getrandmax\": [\n \"int mt_getrandmax(void)\",\n \"Returns the maximum value a random number from Mersenne Twister can have\"\n ],\n \"mt_rand\": [\n \"int mt_rand([int min, int max])\",\n \"Returns a random number from Mersenne Twister\"\n ],\n \"mt_srand\": [\n \"void mt_srand([int seed])\",\n \"Seeds Mersenne Twister random number generator\"\n ],\n \"mysql_affected_rows\": [\n \"int mysql_affected_rows([int link_identifier])\",\n \"Gets number of affected rows in previous MySQL operation\"\n ],\n \"mysql_client_encoding\": [\n \"string mysql_client_encoding([int link_identifier])\",\n \"Returns the default character set for the current connection\"\n ],\n \"mysql_close\": [\n \"bool mysql_close([int link_identifier])\",\n \"Close a MySQL connection\"\n ],\n \"mysql_connect\": [\n \"resource mysql_connect([string hostname[:port][:/path/to/socket] [, string username [, string password [, bool new [, int flags]]]]])\",\n \"Opens a connection to a MySQL Server\"\n ],\n \"mysql_create_db\": [\n \"bool mysql_create_db(string database_name [, int link_identifier])\",\n \"Create a MySQL database\"\n ],\n \"mysql_data_seek\": [\n \"bool mysql_data_seek(resource result, int row_number)\",\n \"Move internal result pointer\"\n ],\n \"mysql_db_query\": [\n \"resource mysql_db_query(string database_name, string query [, int link_identifier])\",\n \"Sends an SQL query to MySQL\"\n ],\n \"mysql_drop_db\": [\n \"bool mysql_drop_db(string database_name [, int link_identifier])\",\n \"Drops (delete) a MySQL database\"\n ],\n \"mysql_errno\": [\n \"int mysql_errno([int link_identifier])\",\n \"Returns the number of the error message from previous MySQL operation\"\n ],\n \"mysql_error\": [\n \"string mysql_error([int link_identifier])\",\n \"Returns the text of the error message from previous MySQL operation\"\n ],\n \"mysql_escape_string\": [\n \"string mysql_escape_string(string to_be_escaped)\",\n \"Escape string for mysql query\"\n ],\n \"mysql_fetch_array\": [\n \"array mysql_fetch_array(resource result [, int result_type])\",\n \"Fetch a result row as an array (associative, numeric or both)\"\n ],\n \"mysql_fetch_assoc\": [\n \"array mysql_fetch_assoc(resource result)\",\n \"Fetch a result row as an associative array\"\n ],\n \"mysql_fetch_field\": [\n \"object mysql_fetch_field(resource result [, int field_offset])\",\n \"Gets column information from a result and return as an object\"\n ],\n \"mysql_fetch_lengths\": [\n \"array mysql_fetch_lengths(resource result)\",\n \"Gets max data size of each column in a result\"\n ],\n \"mysql_fetch_object\": [\n \"object mysql_fetch_object(resource result [, string class_name [, NULL|array ctor_params]])\",\n \"Fetch a result row as an object\"\n ],\n \"mysql_fetch_row\": [\n \"array mysql_fetch_row(resource result)\",\n \"Gets a result row as an enumerated array\"\n ],\n \"mysql_field_flags\": [\n \"string mysql_field_flags(resource result, int field_offset)\",\n \"Gets the flags associated with the specified field in a result\"\n ],\n \"mysql_field_len\": [\n \"int mysql_field_len(resource result, int field_offset)\",\n \"Returns the length of the specified field\"\n ],\n \"mysql_field_name\": [\n \"string mysql_field_name(resource result, int field_index)\",\n \"Gets the name of the specified field in a result\"\n ],\n \"mysql_field_seek\": [\n \"bool mysql_field_seek(resource result, int field_offset)\",\n \"Sets result pointer to a specific field offset\"\n ],\n \"mysql_field_table\": [\n \"string mysql_field_table(resource result, int field_offset)\",\n \"Gets name of the table the specified field is in\"\n ],\n \"mysql_field_type\": [\n \"string mysql_field_type(resource result, int field_offset)\",\n \"Gets the type of the specified field in a result\"\n ],\n \"mysql_free_result\": [\n \"bool mysql_free_result(resource result)\",\n \"Free result memory\"\n ],\n \"mysql_get_client_info\": [\n \"string mysql_get_client_info(void)\",\n \"Returns a string that represents the client library version\"\n ],\n \"mysql_get_host_info\": [\n \"string mysql_get_host_info([int link_identifier])\",\n \"Returns a string describing the type of connection in use, including the server host name\"\n ],\n \"mysql_get_proto_info\": [\n \"int mysql_get_proto_info([int link_identifier])\",\n \"Returns the protocol version used by current connection\"\n ],\n \"mysql_get_server_info\": [\n \"string mysql_get_server_info([int link_identifier])\",\n \"Returns a string that represents the server version number\"\n ],\n \"mysql_info\": [\n \"string mysql_info([int link_identifier])\",\n \"Returns a string containing information about the most recent query\"\n ],\n \"mysql_insert_id\": [\n \"int mysql_insert_id([int link_identifier])\",\n \"Gets the ID generated from the previous INSERT operation\"\n ],\n \"mysql_list_dbs\": [\n \"resource mysql_list_dbs([int link_identifier])\",\n \"List databases available on a MySQL server\"\n ],\n \"mysql_list_fields\": [\n \"resource mysql_list_fields(string database_name, string table_name [, int link_identifier])\",\n \"List MySQL result fields\"\n ],\n \"mysql_list_processes\": [\n \"resource mysql_list_processes([int link_identifier])\",\n \"Returns a result set describing the current server threads\"\n ],\n \"mysql_list_tables\": [\n \"resource mysql_list_tables(string database_name [, int link_identifier])\",\n \"List tables in a MySQL database\"\n ],\n \"mysql_num_fields\": [\n \"int mysql_num_fields(resource result)\",\n \"Gets number of fields in a result\"\n ],\n \"mysql_num_rows\": [\n \"int mysql_num_rows(resource result)\",\n \"Gets number of rows in a result\"\n ],\n \"mysql_pconnect\": [\n \"resource mysql_pconnect([string hostname[:port][:/path/to/socket] [, string username [, string password [, int flags]]]])\",\n \"Opens a persistent connection to a MySQL Server\"\n ],\n \"mysql_ping\": [\n \"bool mysql_ping([int link_identifier])\",\n \"Ping a server connection. If no connection then reconnect.\"\n ],\n \"mysql_query\": [\n \"resource mysql_query(string query [, int link_identifier])\",\n \"Sends an SQL query to MySQL\"\n ],\n \"mysql_real_escape_string\": [\n \"string mysql_real_escape_string(string to_be_escaped [, int link_identifier])\",\n \"Escape special characters in a string for use in a SQL statement, taking into account the current charset of the connection\"\n ],\n \"mysql_result\": [\n \"mixed mysql_result(resource result, int row [, mixed field])\",\n \"Gets result data\"\n ],\n \"mysql_select_db\": [\n \"bool mysql_select_db(string database_name [, int link_identifier])\",\n \"Selects a MySQL database\"\n ],\n \"mysql_set_charset\": [\n \"bool mysql_set_charset(string csname [, int link_identifier])\",\n \"sets client character set\"\n ],\n \"mysql_stat\": [\n \"string mysql_stat([int link_identifier])\",\n \"Returns a string containing status information\"\n ],\n \"mysql_thread_id\": [\n \"int mysql_thread_id([int link_identifier])\",\n \"Returns the thread id of current connection\"\n ],\n \"mysql_unbuffered_query\": [\n \"resource mysql_unbuffered_query(string query [, int link_identifier])\",\n \"Sends an SQL query to MySQL, without fetching and buffering the result rows\"\n ],\n \"mysqli_affected_rows\": [\n \"mixed mysqli_affected_rows(object link)\",\n \"Get number of affected rows in previous MySQL operation\"\n ],\n \"mysqli_autocommit\": [\n \"bool mysqli_autocommit(object link, bool mode)\",\n \"Turn auto commit on or of\"\n ],\n \"mysqli_cache_stats\": [\n \"array mysqli_cache_stats(void)\",\n \"Returns statistics about the zval cache\"\n ],\n \"mysqli_change_user\": [\n \"bool mysqli_change_user(object link, string user, string password, string database)\",\n \"Change logged-in user of the active connection\"\n ],\n \"mysqli_character_set_name\": [\n \"string mysqli_character_set_name(object link)\",\n \"Returns the name of the character set used for this connection\"\n ],\n \"mysqli_close\": [\n \"bool mysqli_close(object link)\",\n \"Close connection\"\n ],\n \"mysqli_commit\": [\n \"bool mysqli_commit(object link)\",\n \"Commit outstanding actions and close transaction\"\n ],\n \"mysqli_connect\": [\n \"object mysqli_connect([string hostname [,string username [,string passwd [,string dbname [,int port [,string socket]]]]]])\",\n \"Open a connection to a mysql server\"\n ],\n \"mysqli_connect_errno\": [\n \"int mysqli_connect_errno(void)\",\n \"Returns the numerical value of the error message from last connect command\"\n ],\n \"mysqli_connect_error\": [\n \"string mysqli_connect_error(void)\",\n \"Returns the text of the error message from previous MySQL operation\"\n ],\n \"mysqli_data_seek\": [\n \"bool mysqli_data_seek(object result, int offset)\",\n \"Move internal result pointer\"\n ],\n \"mysqli_debug\": [\n \"void mysqli_debug(string debug)\",\n \"\"\n ],\n \"mysqli_dump_debug_info\": [\n \"bool mysqli_dump_debug_info(object link)\",\n \"\"\n ],\n \"mysqli_embedded_server_end\": [\n \"void mysqli_embedded_server_end(void)\",\n \"\"\n ],\n \"mysqli_embedded_server_start\": [\n \"bool mysqli_embedded_server_start(bool start, array arguments, array groups)\",\n \"initialize and start embedded server\"\n ],\n \"mysqli_errno\": [\n \"int mysqli_errno(object link)\",\n \"Returns the numerical value of the error message from previous MySQL operation\"\n ],\n \"mysqli_error\": [\n \"string mysqli_error(object link)\",\n \"Returns the text of the error message from previous MySQL operation\"\n ],\n \"mysqli_fetch_all\": [\n \"mixed mysqli_fetch_all (object result [,int resulttype])\",\n \"Fetches all result rows as an associative array, a numeric array, or both\"\n ],\n \"mysqli_fetch_array\": [\n \"mixed mysqli_fetch_array (object result [,int resulttype])\",\n \"Fetch a result row as an associative array, a numeric array, or both\"\n ],\n \"mysqli_fetch_assoc\": [\n \"mixed mysqli_fetch_assoc (object result)\",\n \"Fetch a result row as an associative array\"\n ],\n \"mysqli_fetch_field\": [\n \"mixed mysqli_fetch_field (object result)\",\n \"Get column information from a result and return as an object\"\n ],\n \"mysqli_fetch_field_direct\": [\n \"mixed mysqli_fetch_field_direct (object result, int offset)\",\n \"Fetch meta-data for a single field\"\n ],\n \"mysqli_fetch_fields\": [\n \"mixed mysqli_fetch_fields (object result)\",\n \"Return array of objects containing field meta-data\"\n ],\n \"mysqli_fetch_lengths\": [\n \"mixed mysqli_fetch_lengths (object result)\",\n \"Get the length of each output in a result\"\n ],\n \"mysqli_fetch_object\": [\n \"mixed mysqli_fetch_object (object result [, string class_name [, NULL|array ctor_params]])\",\n \"Fetch a result row as an object\"\n ],\n \"mysqli_fetch_row\": [\n \"array mysqli_fetch_row (object result)\",\n \"Get a result row as an enumerated array\"\n ],\n \"mysqli_field_count\": [\n \"int mysqli_field_count(object link)\",\n \"Fetch the number of fields returned by the last query for the given link\"\n ],\n \"mysqli_field_seek\": [\n \"int mysqli_field_seek(object result, int fieldnr)\",\n \"Set result pointer to a specified field offset\"\n ],\n \"mysqli_field_tell\": [\n \"int mysqli_field_tell(object result)\",\n \"Get current field offset of result pointer\"\n ],\n \"mysqli_free_result\": [\n \"void mysqli_free_result(object result)\",\n \"Free query result memory for the given result handle\"\n ],\n \"mysqli_get_charset\": [\n \"object mysqli_get_charset(object link)\",\n \"returns a character set object\"\n ],\n \"mysqli_get_client_info\": [\n \"string mysqli_get_client_info(void)\",\n \"Get MySQL client info\"\n ],\n \"mysqli_get_client_stats\": [\n \"array mysqli_get_client_stats(void)\",\n \"Returns statistics about the zval cache\"\n ],\n \"mysqli_get_client_version\": [\n \"int mysqli_get_client_version(void)\",\n \"Get MySQL client info\"\n ],\n \"mysqli_get_connection_stats\": [\n \"array mysqli_get_connection_stats(void)\",\n \"Returns statistics about the zval cache\"\n ],\n \"mysqli_get_host_info\": [\n \"string mysqli_get_host_info (object link)\",\n \"Get MySQL host info\"\n ],\n \"mysqli_get_proto_info\": [\n \"int mysqli_get_proto_info(object link)\",\n \"Get MySQL protocol information\"\n ],\n \"mysqli_get_server_info\": [\n \"string mysqli_get_server_info(object link)\",\n \"Get MySQL server info\"\n ],\n \"mysqli_get_server_version\": [\n \"int mysqli_get_server_version(object link)\",\n \"Return the MySQL version for the server referenced by the given link\"\n ],\n \"mysqli_get_warnings\": [\n \"object mysqli_get_warnings(object link) */\",\n \"PHP_FUNCTION(mysqli_get_warnings) { MY_MYSQL *mysql; zval *mysql_link; MYSQLI_RESOURCE *mysqli_resource; MYSQLI_WARNING *w; if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), \\\"O\\\", &mysql_link, mysqli_link_class_entry) == FAILURE) { return; } MYSQLI_FETCH_RESOURCE(mysql, MY_MYSQL*, &mysql_link, \\\"mysqli_link\\\", MYSQLI_STATUS_VALID); if (mysql_warning_count(mysql->mysql)) { w = php_get_warnings(mysql->mysql TSRMLS_CC); } else { RETURN_FALSE; } mysqli_resource = (MYSQLI_RESOURCE *)ecalloc (1, sizeof(MYSQLI_RESOURCE)); mysqli_resource->ptr = mysqli_resource->info = (void *)w; mysqli_resource->status = MYSQLI_STATUS_VALID; MYSQLI_RETURN_RESOURCE(mysqli_resource, mysqli_warning_class_entry); } /* }}}\"\n ],\n \"mysqli_info\": [\n \"string mysqli_info(object link)\",\n \"Get information about the most recent query\"\n ],\n \"mysqli_init\": [\n \"resource mysqli_init(void)\",\n \"Initialize mysqli and return a resource for use with mysql_real_connect\"\n ],\n \"mysqli_insert_id\": [\n \"mixed mysqli_insert_id(object link)\",\n \"Get the ID generated from the previous INSERT operation\"\n ],\n \"mysqli_kill\": [\n \"bool mysqli_kill(object link, int processid)\",\n \"Kill a mysql process on the server\"\n ],\n \"mysqli_link_construct\": [\n \"object mysqli_link_construct()\",\n \"\"\n ],\n \"mysqli_more_results\": [\n \"bool mysqli_more_results(object link)\",\n \"check if there any more query results from a multi query\"\n ],\n \"mysqli_multi_query\": [\n \"bool mysqli_multi_query(object link, string query)\",\n \"allows to execute multiple queries\"\n ],\n \"mysqli_next_result\": [\n \"bool mysqli_next_result(object link)\",\n \"read next result from multi_query\"\n ],\n \"mysqli_num_fields\": [\n \"int mysqli_num_fields(object result)\",\n \"Get number of fields in result\"\n ],\n \"mysqli_num_rows\": [\n \"mixed mysqli_num_rows(object result)\",\n \"Get number of rows in result\"\n ],\n \"mysqli_options\": [\n \"bool mysqli_options(object link, int flags, mixed values)\",\n \"Set options\"\n ],\n \"mysqli_ping\": [\n \"bool mysqli_ping(object link)\",\n \"Ping a server connection or reconnect if there is no connection\"\n ],\n \"mysqli_poll\": [\n \"int mysqli_poll(array read, array write, array error, long sec [, long usec])\",\n \"Poll connections\"\n ],\n \"mysqli_prepare\": [\n \"mixed mysqli_prepare(object link, string query)\",\n \"Prepare a SQL statement for execution\"\n ],\n \"mysqli_query\": [\n \"mixed mysqli_query(object link, string query [,int resultmode]) */\",\n \"PHP_FUNCTION(mysqli_query) { MY_MYSQL *mysql; zval *mysql_link; MYSQLI_RESOURCE *mysqli_resource; MYSQL_RES *result; char *query = NULL; unsigned int query_len; unsigned long resultmode = MYSQLI_STORE_RESULT; if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), \\\"Os|l\\\", &mysql_link, mysqli_link_class_entry, &query, &query_len, &resultmode) == FAILURE) { return; } if (!query_len) { php_error_docref(NULL TSRMLS_CC, E_WARNING, \\\"Empty query\\\"); RETURN_FALSE; } if ((resultmode & ~MYSQLI_ASYNC) != MYSQLI_USE_RESULT && (resultmode & ~MYSQLI_ASYNC) != MYSQLI_STORE_RESULT) { php_error_docref(NULL TSRMLS_CC, E_WARNING, \\\"Invalid value for resultmode\\\"); RETURN_FALSE; } MYSQLI_FETCH_RESOURCE(mysql, MY_MYSQL*, &mysql_link, \\\"mysqli_link\\\", MYSQLI_STATUS_VALID); MYSQLI_DISABLE_MQ; #ifdef MYSQLI_USE_MYSQLND if (resultmode & MYSQLI_ASYNC) { if (mysqli_async_query(mysql->mysql, query, query_len)) { MYSQLI_REPORT_MYSQL_ERROR(mysql->mysql); RETURN_FALSE; } mysql->async_result_fetch_type = resultmode & ~MYSQLI_ASYNC; RETURN_TRUE; } #endif if (mysql_real_query(mysql->mysql, query, query_len)) { MYSQLI_REPORT_MYSQL_ERROR(mysql->mysql); RETURN_FALSE; } if (!mysql_field_count(mysql->mysql)) { /* no result set - not a SELECT\"\n ],\n \"mysqli_real_connect\": [\n \"bool mysqli_real_connect(object link [,string hostname [,string username [,string passwd [,string dbname [,int port [,string socket [,int flags]]]]]]])\",\n \"Open a connection to a mysql server\"\n ],\n \"mysqli_real_escape_string\": [\n \"string mysqli_real_escape_string(object link, string escapestr)\",\n \"Escapes special characters in a string for use in a SQL statement, taking into account the current charset of the connection\"\n ],\n \"mysqli_real_query\": [\n \"bool mysqli_real_query(object link, string query)\",\n \"Binary-safe version of mysql_query()\"\n ],\n \"mysqli_reap_async_query\": [\n \"int mysqli_reap_async_query(object link)\",\n \"Poll connections\"\n ],\n \"mysqli_refresh\": [\n \"bool mysqli_refresh(object link, long options)\",\n \"Flush tables or caches, or reset replication server information\"\n ],\n \"mysqli_report\": [\n \"bool mysqli_report(int flags)\",\n \"sets report level\"\n ],\n \"mysqli_rollback\": [\n \"bool mysqli_rollback(object link)\",\n \"Undo actions from current transaction\"\n ],\n \"mysqli_select_db\": [\n \"bool mysqli_select_db(object link, string dbname)\",\n \"Select a MySQL database\"\n ],\n \"mysqli_set_charset\": [\n \"bool mysqli_set_charset(object link, string csname)\",\n \"sets client character set\"\n ],\n \"mysqli_set_local_infile_default\": [\n \"void mysqli_set_local_infile_default(object link)\",\n \"unsets user defined handler for load local infile command\"\n ],\n \"mysqli_set_local_infile_handler\": [\n \"bool mysqli_set_local_infile_handler(object link, callback read_func)\",\n \"Set callback functions for LOAD DATA LOCAL INFILE\"\n ],\n \"mysqli_sqlstate\": [\n \"string mysqli_sqlstate(object link)\",\n \"Returns the SQLSTATE error from previous MySQL operation\"\n ],\n \"mysqli_ssl_set\": [\n \"bool mysqli_ssl_set(object link ,string key ,string cert ,string ca ,string capath ,string cipher])\",\n \"\"\n ],\n \"mysqli_stat\": [\n \"mixed mysqli_stat(object link)\",\n \"Get current system status\"\n ],\n \"mysqli_stmt_affected_rows\": [\n \"mixed mysqli_stmt_affected_rows(object stmt)\",\n \"Return the number of rows affected in the last query for the given link\"\n ],\n \"mysqli_stmt_attr_get\": [\n \"int mysqli_stmt_attr_get(object stmt, long attr)\",\n \"\"\n ],\n \"mysqli_stmt_attr_set\": [\n \"int mysqli_stmt_attr_set(object stmt, long attr, long mode)\",\n \"\"\n ],\n \"mysqli_stmt_bind_param\": [\n \"bool mysqli_stmt_bind_param(object stmt, string types, mixed variable [,mixed,....])\",\n \"Bind variables to a prepared statement as parameters\"\n ],\n \"mysqli_stmt_bind_result\": [\n \"bool mysqli_stmt_bind_result(object stmt, mixed var, [,mixed, ...])\",\n \"Bind variables to a prepared statement for result storage\"\n ],\n \"mysqli_stmt_close\": [\n \"bool mysqli_stmt_close(object stmt)\",\n \"Close statement\"\n ],\n \"mysqli_stmt_data_seek\": [\n \"void mysqli_stmt_data_seek(object stmt, int offset)\",\n \"Move internal result pointer\"\n ],\n \"mysqli_stmt_errno\": [\n \"int mysqli_stmt_errno(object stmt)\",\n \"\"\n ],\n \"mysqli_stmt_error\": [\n \"string mysqli_stmt_error(object stmt)\",\n \"\"\n ],\n \"mysqli_stmt_execute\": [\n \"bool mysqli_stmt_execute(object stmt)\",\n \"Execute a prepared statement\"\n ],\n \"mysqli_stmt_fetch\": [\n \"mixed mysqli_stmt_fetch(object stmt)\",\n \"Fetch results from a prepared statement into the bound variables\"\n ],\n \"mysqli_stmt_field_count\": [\n \"int mysqli_stmt_field_count(object stmt) {\",\n \"Return the number of result columns for the given statement\"\n ],\n \"mysqli_stmt_free_result\": [\n \"void mysqli_stmt_free_result(object stmt)\",\n \"Free stored result memory for the given statement handle\"\n ],\n \"mysqli_stmt_get_result\": [\n \"object mysqli_stmt_get_result(object link)\",\n \"Buffer result set on client\"\n ],\n \"mysqli_stmt_get_warnings\": [\n \"object mysqli_stmt_get_warnings(object link) */\",\n \"PHP_FUNCTION(mysqli_stmt_get_warnings) { MY_STMT *stmt; zval *stmt_link; MYSQLI_RESOURCE *mysqli_resource; MYSQLI_WARNING *w; if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), \\\"O\\\", &stmt_link, mysqli_stmt_class_entry) == FAILURE) { return; } MYSQLI_FETCH_RESOURCE(stmt, MY_STMT*, &stmt_link, \\\"mysqli_stmt\\\", MYSQLI_STATUS_VALID); if (mysqli_stmt_warning_count(stmt->stmt)) { w = php_get_warnings(mysqli_stmt_get_connection(stmt->stmt) TSRMLS_CC); } else { RETURN_FALSE; } mysqli_resource = (MYSQLI_RESOURCE *)ecalloc (1, sizeof(MYSQLI_RESOURCE)); mysqli_resource->ptr = mysqli_resource->info = (void *)w; mysqli_resource->status = MYSQLI_STATUS_VALID; MYSQLI_RETURN_RESOURCE(mysqli_resource, mysqli_warning_class_entry); } /* }}}\"\n ],\n \"mysqli_stmt_init\": [\n \"mixed mysqli_stmt_init(object link)\",\n \"Initialize statement object\"\n ],\n \"mysqli_stmt_insert_id\": [\n \"mixed mysqli_stmt_insert_id(object stmt)\",\n \"Get the ID generated from the previous INSERT operation\"\n ],\n \"mysqli_stmt_next_result\": [\n \"bool mysqli_stmt_next_result(object link)\",\n \"read next result from multi_query\"\n ],\n \"mysqli_stmt_num_rows\": [\n \"mixed mysqli_stmt_num_rows(object stmt)\",\n \"Return the number of rows in statements result set\"\n ],\n \"mysqli_stmt_param_count\": [\n \"int mysqli_stmt_param_count(object stmt)\",\n \"Return the number of parameter for the given statement\"\n ],\n \"mysqli_stmt_prepare\": [\n \"bool mysqli_stmt_prepare(object stmt, string query)\",\n \"prepare server side statement with query\"\n ],\n \"mysqli_stmt_reset\": [\n \"bool mysqli_stmt_reset(object stmt)\",\n \"reset a prepared statement\"\n ],\n \"mysqli_stmt_result_metadata\": [\n \"mixed mysqli_stmt_result_metadata(object stmt)\",\n \"return result set from statement\"\n ],\n \"mysqli_stmt_send_long_data\": [\n \"bool mysqli_stmt_send_long_data(object stmt, int param_nr, string data)\",\n \"\"\n ],\n \"mysqli_stmt_sqlstate\": [\n \"string mysqli_stmt_sqlstate(object stmt)\",\n \"\"\n ],\n \"mysqli_stmt_store_result\": [\n \"bool mysqli_stmt_store_result(stmt)\",\n \"\"\n ],\n \"mysqli_store_result\": [\n \"object mysqli_store_result(object link)\",\n \"Buffer result set on client\"\n ],\n \"mysqli_thread_id\": [\n \"int mysqli_thread_id(object link)\",\n \"Return the current thread ID\"\n ],\n \"mysqli_thread_safe\": [\n \"bool mysqli_thread_safe(void)\",\n \"Return whether thread safety is given or not\"\n ],\n \"mysqli_use_result\": [\n \"mixed mysqli_use_result(object link)\",\n \"Directly retrieve query results - do not buffer results on client side\"\n ],\n \"mysqli_warning_count\": [\n \"int mysqli_warning_count (object link)\",\n \"Return number of warnings from the last query for the given link\"\n ],\n \"natcasesort\": [\n \"void natcasesort(array &array_arg)\",\n \"Sort an array using case-insensitive natural sort\"\n ],\n \"natsort\": [\n \"void natsort(array &array_arg)\",\n \"Sort an array using natural sort\"\n ],\n \"next\": [\n \"mixed next(array array_arg)\",\n \"Move array argument's internal pointer to the next element and return it\"\n ],\n \"ngettext\": [\n \"string ngettext(string MSGID1, string MSGID2, int N)\",\n \"Plural version of gettext()\"\n ],\n \"nl2br\": [\n \"string nl2br(string str [, bool is_xhtml])\",\n \"Converts newlines to HTML line breaks\"\n ],\n \"nl_langinfo\": [\n \"string nl_langinfo(int item)\",\n \"Query language and locale information\"\n ],\n \"normalizer_is_normalize\": [\n \"bool normalizer_is_normalize( string $input [, string $form = FORM_C] )\",\n \"* Test if a string is in a given normalization form.\"\n ],\n \"normalizer_normalize\": [\n \"string normalizer_normalize( string $input [, string $form = FORM_C] )\",\n \"* Normalize a string.\"\n ],\n \"nsapi_request_headers\": [\n \"array nsapi_request_headers(void)\",\n \"Get all headers from the request\"\n ],\n \"nsapi_response_headers\": [\n \"array nsapi_response_headers(void)\",\n \"Get all headers from the response\"\n ],\n \"nsapi_virtual\": [\n \"bool nsapi_virtual(string uri)\",\n \"Perform an NSAPI sub-request\"\n ],\n \"number_format\": [\n \"string number_format(float number [, int num_decimal_places [, string dec_seperator, string thousands_seperator]])\",\n \"Formats a number with grouped thousands\"\n ],\n \"numfmt_create\": [\n \"NumberFormatter numfmt_create( string $locale, int style[, string $pattern ] )\",\n \"* Create number formatter.\"\n ],\n \"numfmt_format\": [\n \"mixed numfmt_format( NumberFormatter $nf, mixed $num[, int type] )\",\n \"* Format a number.\"\n ],\n \"numfmt_format_currency\": [\n \"mixed numfmt_format_currency( NumberFormatter $nf, double $num, string $currency )\",\n \"* Format a number as currency.\"\n ],\n \"numfmt_get_attribute\": [\n \"mixed numfmt_get_attribute( NumberFormatter $nf, int $attr )\",\n \"* Get formatter attribute value.\"\n ],\n \"numfmt_get_error_code\": [\n \"int numfmt_get_error_code( NumberFormatter $nf )\",\n \"* Get formatter's last error code.\"\n ],\n \"numfmt_get_error_message\": [\n \"string numfmt_get_error_message( NumberFormatter $nf )\",\n \"* Get text description for formatter's last error code.\"\n ],\n \"numfmt_get_locale\": [\n \"string numfmt_get_locale( NumberFormatter $nf[, int type] )\",\n \"* Get formatter locale.\"\n ],\n \"numfmt_get_pattern\": [\n \"string numfmt_get_pattern( NumberFormatter $nf )\",\n \"* Get formatter pattern.\"\n ],\n \"numfmt_get_symbol\": [\n \"string numfmt_get_symbol( NumberFormatter $nf, int $attr )\",\n \"* Get formatter symbol value.\"\n ],\n \"numfmt_get_text_attribute\": [\n \"string numfmt_get_text_attribute( NumberFormatter $nf, int $attr )\",\n \"* Get formatter attribute value.\"\n ],\n \"numfmt_parse\": [\n \"mixed numfmt_parse( NumberFormatter $nf, string $str[, int $type, int &$position ])\",\n \"* Parse a number.\"\n ],\n \"numfmt_parse_currency\": [\n \"double numfmt_parse_currency( NumberFormatter $nf, string $str, string $¤cy[, int $&position] )\",\n \"* Parse a number as currency.\"\n ],\n \"numfmt_parse_message\": [\n \"array numfmt_parse_message( string $locale, string $pattern, string $source )\",\n \"* Parse a message.\"\n ],\n \"numfmt_set_attribute\": [\n \"bool numfmt_set_attribute( NumberFormatter $nf, int $attr, mixed $value )\",\n \"* Get formatter attribute value.\"\n ],\n \"numfmt_set_pattern\": [\n \"bool numfmt_set_pattern( NumberFormatter $nf, string $pattern )\",\n \"* Set formatter pattern.\"\n ],\n \"numfmt_set_symbol\": [\n \"bool numfmt_set_symbol( NumberFormatter $nf, int $attr, string $symbol )\",\n \"* Set formatter symbol value.\"\n ],\n \"numfmt_set_text_attribute\": [\n \"bool numfmt_set_text_attribute( NumberFormatter $nf, int $attr, string $value )\",\n \"* Get formatter attribute value.\"\n ],\n \"ob_clean\": [\n \"bool ob_clean(void)\",\n \"Clean (delete) the current output buffer\"\n ],\n \"ob_end_clean\": [\n \"bool ob_end_clean(void)\",\n \"Clean the output buffer, and delete current output buffer\"\n ],\n \"ob_end_flush\": [\n \"bool ob_end_flush(void)\",\n \"Flush (send) the output buffer, and delete current output buffer\"\n ],\n \"ob_flush\": [\n \"bool ob_flush(void)\",\n \"Flush (send) contents of the output buffer. The last buffer content is sent to next buffer\"\n ],\n \"ob_get_clean\": [\n \"bool ob_get_clean(void)\",\n \"Get current buffer contents and delete current output buffer\"\n ],\n \"ob_get_contents\": [\n \"string ob_get_contents(void)\",\n \"Return the contents of the output buffer\"\n ],\n \"ob_get_flush\": [\n \"bool ob_get_flush(void)\",\n \"Get current buffer contents, flush (send) the output buffer, and delete current output buffer\"\n ],\n \"ob_get_length\": [\n \"int ob_get_length(void)\",\n \"Return the length of the output buffer\"\n ],\n \"ob_get_level\": [\n \"int ob_get_level(void)\",\n \"Return the nesting level of the output buffer\"\n ],\n \"ob_get_status\": [\n \"false|array ob_get_status([bool full_status])\",\n \"Return the status of the active or all output buffers\"\n ],\n \"ob_gzhandler\": [\n \"string ob_gzhandler(string str, int mode)\",\n \"Encode str based on accept-encoding setting - designed to be called from ob_start()\"\n ],\n \"ob_iconv_handler\": [\n \"string ob_iconv_handler(string contents, int status)\",\n \"Returns str in output buffer converted to the iconv.output_encoding character set\"\n ],\n \"ob_implicit_flush\": [\n \"void ob_implicit_flush([int flag])\",\n \"Turn implicit flush on/off and is equivalent to calling flush() after every output call\"\n ],\n \"ob_list_handlers\": [\n \"false|array ob_list_handlers()\",\n \"* List all output_buffers in an array\"\n ],\n \"ob_start\": [\n \"bool ob_start([ string|array user_function [, int chunk_size [, bool erase]]])\",\n \"Turn on Output Buffering (specifying an optional output handler).\"\n ],\n \"oci_bind_array_by_name\": [\n \"bool oci_bind_array_by_name(resource stmt, string name, array &var, int max_table_length [, int max_item_length [, int type ]])\",\n \"Bind a PHP array to an Oracle PL/SQL type by name\"\n ],\n \"oci_bind_by_name\": [\n \"bool oci_bind_by_name(resource stmt, string name, mixed &var, [, int maxlength [, int type]])\",\n \"Bind a PHP variable to an Oracle placeholder by name\"\n ],\n \"oci_cancel\": [\n \"bool oci_cancel(resource stmt)\",\n \"Cancel reading from a cursor\"\n ],\n \"oci_close\": [\n \"bool oci_close(resource connection)\",\n \"Disconnect from database\"\n ],\n \"oci_collection_append\": [\n \"bool oci_collection_append(string value)\",\n \"Append an object to the collection\"\n ],\n \"oci_collection_assign\": [\n \"bool oci_collection_assign(object from)\",\n \"Assign a collection from another existing collection\"\n ],\n \"oci_collection_element_assign\": [\n \"bool oci_collection_element_assign(int index, string val)\",\n \"Assign element val to collection at index ndx\"\n ],\n \"oci_collection_element_get\": [\n \"string oci_collection_element_get(int ndx)\",\n \"Retrieve the value at collection index ndx\"\n ],\n \"oci_collection_max\": [\n \"int oci_collection_max()\",\n \"Return the max value of a collection. For a varray this is the maximum length of the array\"\n ],\n \"oci_collection_size\": [\n \"int oci_collection_size()\",\n \"Return the size of a collection\"\n ],\n \"oci_collection_trim\": [\n \"bool oci_collection_trim(int num)\",\n \"Trim num elements from the end of a collection\"\n ],\n \"oci_commit\": [\n \"bool oci_commit(resource connection)\",\n \"Commit the current context\"\n ],\n \"oci_connect\": [\n \"resource oci_connect(string user, string pass [, string db [, string charset [, int session_mode ]])\",\n \"Connect to an Oracle database and log on. Returns a new session.\"\n ],\n \"oci_define_by_name\": [\n \"bool oci_define_by_name(resource stmt, string name, mixed &var [, int type])\",\n \"Define a PHP variable to an Oracle column by name\"\n ],\n \"oci_error\": [\n \"array oci_error([resource stmt|connection|global])\",\n \"Return the last error of stmt|connection|global. If no error happened returns false.\"\n ],\n \"oci_execute\": [\n \"bool oci_execute(resource stmt [, int mode])\",\n \"Execute a parsed statement\"\n ],\n \"oci_fetch\": [\n \"bool oci_fetch(resource stmt)\",\n \"Prepare a new row of data for reading\"\n ],\n \"oci_fetch_all\": [\n \"int oci_fetch_all(resource stmt, array &output[, int skip[, int maxrows[, int flags]]])\",\n \"Fetch all rows of result data into an array\"\n ],\n \"oci_fetch_array\": [\n \"array oci_fetch_array( resource stmt [, int mode ])\",\n \"Fetch a result row as an array\"\n ],\n \"oci_fetch_assoc\": [\n \"array oci_fetch_assoc( resource stmt )\",\n \"Fetch a result row as an associative array\"\n ],\n \"oci_fetch_object\": [\n \"object oci_fetch_object( resource stmt )\",\n \"Fetch a result row as an object\"\n ],\n \"oci_fetch_row\": [\n \"array oci_fetch_row( resource stmt )\",\n \"Fetch a result row as an enumerated array\"\n ],\n \"oci_field_is_null\": [\n \"bool oci_field_is_null(resource stmt, int col)\",\n \"Tell whether a column is NULL\"\n ],\n \"oci_field_name\": [\n \"string oci_field_name(resource stmt, int col)\",\n \"Tell the name of a column\"\n ],\n \"oci_field_precision\": [\n \"int oci_field_precision(resource stmt, int col)\",\n \"Tell the precision of a column\"\n ],\n \"oci_field_scale\": [\n \"int oci_field_scale(resource stmt, int col)\",\n \"Tell the scale of a column\"\n ],\n \"oci_field_size\": [\n \"int oci_field_size(resource stmt, int col)\",\n \"Tell the maximum data size of a column\"\n ],\n \"oci_field_type\": [\n \"mixed oci_field_type(resource stmt, int col)\",\n \"Tell the data type of a column\"\n ],\n \"oci_field_type_raw\": [\n \"int oci_field_type_raw(resource stmt, int col)\",\n \"Tell the raw oracle data type of a column\"\n ],\n \"oci_free_collection\": [\n \"bool oci_free_collection()\",\n \"Deletes collection object\"\n ],\n \"oci_free_descriptor\": [\n \"bool oci_free_descriptor()\",\n \"Deletes large object description\"\n ],\n \"oci_free_statement\": [\n \"bool oci_free_statement(resource stmt)\",\n \"Free all resources associated with a statement\"\n ],\n \"oci_internal_debug\": [\n \"void oci_internal_debug(int onoff)\",\n \"Toggle internal debugging output for the OCI extension\"\n ],\n \"oci_lob_append\": [\n \"bool oci_lob_append( object lob )\",\n \"Appends data from a LOB to another LOB\"\n ],\n \"oci_lob_close\": [\n \"bool oci_lob_close()\",\n \"Closes lob descriptor\"\n ],\n \"oci_lob_copy\": [\n \"bool oci_lob_copy( object lob_to, object lob_from [, int length ] )\",\n \"Copies data from a LOB to another LOB\"\n ],\n \"oci_lob_eof\": [\n \"bool oci_lob_eof()\",\n \"Checks if EOF is reached\"\n ],\n \"oci_lob_erase\": [\n \"int oci_lob_erase( [ int offset [, int length ] ] )\",\n \"Erases a specified portion of the internal LOB, starting at a specified offset\"\n ],\n \"oci_lob_export\": [\n \"bool oci_lob_export([string filename [, int start [, int length]]])\",\n \"Writes a large object into a file\"\n ],\n \"oci_lob_flush\": [\n \"bool oci_lob_flush( [ int flag ] )\",\n \"Flushes the LOB buffer\"\n ],\n \"oci_lob_import\": [\n \"bool oci_lob_import( string filename )\",\n \"Loads file into a LOB\"\n ],\n \"oci_lob_is_equal\": [\n \"bool oci_lob_is_equal( object lob1, object lob2 )\",\n \"Tests to see if two LOB/FILE locators are equal\"\n ],\n \"oci_lob_load\": [\n \"string oci_lob_load()\",\n \"Loads a large object\"\n ],\n \"oci_lob_read\": [\n \"string oci_lob_read( int length )\",\n \"Reads particular part of a large object\"\n ],\n \"oci_lob_rewind\": [\n \"bool oci_lob_rewind()\",\n \"Rewind pointer of a LOB\"\n ],\n \"oci_lob_save\": [\n \"bool oci_lob_save( string data [, int offset ])\",\n \"Saves a large object\"\n ],\n \"oci_lob_seek\": [\n \"bool oci_lob_seek( int offset [, int whence ])\",\n \"Moves the pointer of a LOB\"\n ],\n \"oci_lob_size\": [\n \"int oci_lob_size()\",\n \"Returns size of a large object\"\n ],\n \"oci_lob_tell\": [\n \"int oci_lob_tell()\",\n \"Tells LOB pointer position\"\n ],\n \"oci_lob_truncate\": [\n \"bool oci_lob_truncate( [ int length ])\",\n \"Truncates a LOB\"\n ],\n \"oci_lob_write\": [\n \"int oci_lob_write( string string [, int length ])\",\n \"Writes data to current position of a LOB\"\n ],\n \"oci_lob_write_temporary\": [\n \"bool oci_lob_write_temporary(string var [, int lob_type])\",\n \"Writes temporary blob\"\n ],\n \"oci_new_collection\": [\n \"object oci_new_collection(resource connection, string tdo [, string schema])\",\n \"Initialize a new collection\"\n ],\n \"oci_new_connect\": [\n \"resource oci_new_connect(string user, string pass [, string db])\",\n \"Connect to an Oracle database and log on. Returns a new session.\"\n ],\n \"oci_new_cursor\": [\n \"resource oci_new_cursor(resource connection)\",\n \"Return a new cursor (Statement-Handle) - use this to bind ref-cursors!\"\n ],\n \"oci_new_descriptor\": [\n \"object oci_new_descriptor(resource connection [, int type])\",\n \"Initialize a new empty descriptor LOB/FILE (LOB is default)\"\n ],\n \"oci_num_fields\": [\n \"int oci_num_fields(resource stmt)\",\n \"Return the number of result columns in a statement\"\n ],\n \"oci_num_rows\": [\n \"int oci_num_rows(resource stmt)\",\n \"Return the row count of an OCI statement\"\n ],\n \"oci_parse\": [\n \"resource oci_parse(resource connection, string query)\",\n \"Parse a query and return a statement\"\n ],\n \"oci_password_change\": [\n \"bool oci_password_change(resource connection, string username, string old_password, string new_password)\",\n \"Changes the password of an account\"\n ],\n \"oci_pconnect\": [\n \"resource oci_pconnect(string user, string pass [, string db [, string charset ]])\",\n \"Connect to an Oracle database using a persistent connection and log on. Returns a new session.\"\n ],\n \"oci_result\": [\n \"string oci_result(resource stmt, mixed column)\",\n \"Return a single column of result data\"\n ],\n \"oci_rollback\": [\n \"bool oci_rollback(resource connection)\",\n \"Rollback the current context\"\n ],\n \"oci_server_version\": [\n \"string oci_server_version(resource connection)\",\n \"Return a string containing server version information\"\n ],\n \"oci_set_action\": [\n \"bool oci_set_action(resource connection, string value)\",\n \"Sets the action attribute on the connection\"\n ],\n \"oci_set_client_identifier\": [\n \"bool oci_set_client_identifier(resource connection, string value)\",\n \"Sets the client identifier attribute on the connection\"\n ],\n \"oci_set_client_info\": [\n \"bool oci_set_client_info(resource connection, string value)\",\n \"Sets the client info attribute on the connection\"\n ],\n \"oci_set_edition\": [\n \"bool oci_set_edition(string value)\",\n \"Sets the edition attribute for all subsequent connections created\"\n ],\n \"oci_set_module_name\": [\n \"bool oci_set_module_name(resource connection, string value)\",\n \"Sets the module attribute on the connection\"\n ],\n \"oci_set_prefetch\": [\n \"bool oci_set_prefetch(resource stmt, int prefetch_rows)\",\n \"Sets the number of rows to be prefetched on execute to prefetch_rows for stmt\"\n ],\n \"oci_statement_type\": [\n \"string oci_statement_type(resource stmt)\",\n \"Return the query type of an OCI statement\"\n ],\n \"ocifetchinto\": [\n \"int ocifetchinto(resource stmt, array &output [, int mode])\",\n \"Fetch a row of result data into an array\"\n ],\n \"ocigetbufferinglob\": [\n \"bool ocigetbufferinglob()\",\n \"Returns current state of buffering for a LOB\"\n ],\n \"ocisetbufferinglob\": [\n \"bool ocisetbufferinglob( boolean flag )\",\n \"Enables/disables buffering for a LOB\"\n ],\n \"octdec\": [\n \"int octdec(string octal_number)\",\n \"Returns the decimal equivalent of an octal string\"\n ],\n \"odbc_autocommit\": [\n \"mixed odbc_autocommit(resource connection_id [, int OnOff])\",\n \"Toggle autocommit mode or get status\"\n ],\n \"odbc_binmode\": [\n \"bool odbc_binmode(int result_id, int mode)\",\n \"Handle binary column data\"\n ],\n \"odbc_close\": [\n \"void odbc_close(resource connection_id)\",\n \"Close an ODBC connection\"\n ],\n \"odbc_close_all\": [\n \"void odbc_close_all(void)\",\n \"Close all ODBC connections\"\n ],\n \"odbc_columnprivileges\": [\n \"resource odbc_columnprivileges(resource connection_id, string catalog, string schema, string table, string column)\",\n \"Returns a result identifier that can be used to fetch a list of columns and associated privileges for the specified table\"\n ],\n \"odbc_columns\": [\n \"resource odbc_columns(resource connection_id [, string qualifier [, string owner [, string table_name [, string column_name]]]])\",\n \"Returns a result identifier that can be used to fetch a list of column names in specified tables\"\n ],\n \"odbc_commit\": [\n \"bool odbc_commit(resource connection_id)\",\n \"Commit an ODBC transaction\"\n ],\n \"odbc_connect\": [\n \"resource odbc_connect(string DSN, string user, string password [, int cursor_option])\",\n \"Connect to a datasource\"\n ],\n \"odbc_cursor\": [\n \"string odbc_cursor(resource result_id)\",\n \"Get cursor name\"\n ],\n \"odbc_data_source\": [\n \"array odbc_data_source(resource connection_id, int fetch_type)\",\n \"Return information about the currently connected data source\"\n ],\n \"odbc_error\": [\n \"string odbc_error([resource connection_id])\",\n \"Get the last error code\"\n ],\n \"odbc_errormsg\": [\n \"string odbc_errormsg([resource connection_id])\",\n \"Get the last error message\"\n ],\n \"odbc_exec\": [\n \"resource odbc_exec(resource connection_id, string query [, int flags])\",\n \"Prepare and execute an SQL statement\"\n ],\n \"odbc_execute\": [\n \"bool odbc_execute(resource result_id [, array parameters_array])\",\n \"Execute a prepared statement\"\n ],\n \"odbc_fetch_array\": [\n \"array odbc_fetch_array(int result [, int rownumber])\",\n \"Fetch a result row as an associative array\"\n ],\n \"odbc_fetch_into\": [\n \"int odbc_fetch_into(resource result_id, array &result_array, [, int rownumber])\",\n \"Fetch one result row into an array\"\n ],\n \"odbc_fetch_object\": [\n \"object odbc_fetch_object(int result [, int rownumber])\",\n \"Fetch a result row as an object\"\n ],\n \"odbc_fetch_row\": [\n \"bool odbc_fetch_row(resource result_id [, int row_number])\",\n \"Fetch a row\"\n ],\n \"odbc_field_len\": [\n \"int odbc_field_len(resource result_id, int field_number)\",\n \"Get the length (precision) of a column\"\n ],\n \"odbc_field_name\": [\n \"string odbc_field_name(resource result_id, int field_number)\",\n \"Get a column name\"\n ],\n \"odbc_field_num\": [\n \"int odbc_field_num(resource result_id, string field_name)\",\n \"Return column number\"\n ],\n \"odbc_field_scale\": [\n \"int odbc_field_scale(resource result_id, int field_number)\",\n \"Get the scale of a column\"\n ],\n \"odbc_field_type\": [\n \"string odbc_field_type(resource result_id, int field_number)\",\n \"Get the datatype of a column\"\n ],\n \"odbc_foreignkeys\": [\n \"resource odbc_foreignkeys(resource connection_id, string pk_qualifier, string pk_owner, string pk_table, string fk_qualifier, string fk_owner, string fk_table)\",\n \"Returns a result identifier to either a list of foreign keys in the specified table or a list of foreign keys in other tables that refer to the primary key in the specified table\"\n ],\n \"odbc_free_result\": [\n \"bool odbc_free_result(resource result_id)\",\n \"Free resources associated with a result\"\n ],\n \"odbc_gettypeinfo\": [\n \"resource odbc_gettypeinfo(resource connection_id [, int data_type])\",\n \"Returns a result identifier containing information about data types supported by the data source\"\n ],\n \"odbc_longreadlen\": [\n \"bool odbc_longreadlen(int result_id, int length)\",\n \"Handle LONG columns\"\n ],\n \"odbc_next_result\": [\n \"bool odbc_next_result(resource result_id)\",\n \"Checks if multiple results are avaiable\"\n ],\n \"odbc_num_fields\": [\n \"int odbc_num_fields(resource result_id)\",\n \"Get number of columns in a result\"\n ],\n \"odbc_num_rows\": [\n \"int odbc_num_rows(resource result_id)\",\n \"Get number of rows in a result\"\n ],\n \"odbc_pconnect\": [\n \"resource odbc_pconnect(string DSN, string user, string password [, int cursor_option])\",\n \"Establish a persistent connection to a datasource\"\n ],\n \"odbc_prepare\": [\n \"resource odbc_prepare(resource connection_id, string query)\",\n \"Prepares a statement for execution\"\n ],\n \"odbc_primarykeys\": [\n \"resource odbc_primarykeys(resource connection_id, string qualifier, string owner, string table)\",\n \"Returns a result identifier listing the column names that comprise the primary key for a table\"\n ],\n \"odbc_procedurecolumns\": [\n \"resource odbc_procedurecolumns(resource connection_id [, string qualifier, string owner, string proc, string column])\",\n \"Returns a result identifier containing the list of input and output parameters, as well as the columns that make up the result set for the specified procedures\"\n ],\n \"odbc_procedures\": [\n \"resource odbc_procedures(resource connection_id [, string qualifier, string owner, string name])\",\n \"Returns a result identifier containg the list of procedure names in a datasource\"\n ],\n \"odbc_result\": [\n \"mixed odbc_result(resource result_id, mixed field)\",\n \"Get result data\"\n ],\n \"odbc_result_all\": [\n \"int odbc_result_all(resource result_id [, string format])\",\n \"Print result as HTML table\"\n ],\n \"odbc_rollback\": [\n \"bool odbc_rollback(resource connection_id)\",\n \"Rollback a transaction\"\n ],\n \"odbc_setoption\": [\n \"bool odbc_setoption(resource conn_id|result_id, int which, int option, int value)\",\n \"Sets connection or statement options\"\n ],\n \"odbc_specialcolumns\": [\n \"resource odbc_specialcolumns(resource connection_id, int type, string qualifier, string owner, string table, int scope, int nullable)\",\n \"Returns a result identifier containing either the optimal set of columns that uniquely identifies a row in the table or columns that are automatically updated when any value in the row is updated by a transaction\"\n ],\n \"odbc_statistics\": [\n \"resource odbc_statistics(resource connection_id, string qualifier, string owner, string name, int unique, int accuracy)\",\n \"Returns a result identifier that contains statistics about a single table and the indexes associated with the table\"\n ],\n \"odbc_tableprivileges\": [\n \"resource odbc_tableprivileges(resource connection_id, string qualifier, string owner, string name)\",\n \"Returns a result identifier containing a list of tables and the privileges associated with each table\"\n ],\n \"odbc_tables\": [\n \"resource odbc_tables(resource connection_id [, string qualifier [, string owner [, string name [, string table_types]]]])\",\n \"Call the SQLTables function\"\n ],\n \"opendir\": [\n \"mixed opendir(string path[, resource context])\",\n \"Open a directory and return a dir_handle\"\n ],\n \"openlog\": [\n \"bool openlog(string ident, int option, int facility)\",\n \"Open connection to system logger\"\n ],\n \"openssl_csr_export\": [\n \"bool openssl_csr_export(resource csr, string &out [, bool notext=true])\",\n \"Exports a CSR to file or a var\"\n ],\n \"openssl_csr_export_to_file\": [\n \"bool openssl_csr_export_to_file(resource csr, string outfilename [, bool notext=true])\",\n \"Exports a CSR to file\"\n ],\n \"openssl_csr_get_public_key\": [\n \"mixed openssl_csr_get_public_key(mixed csr)\",\n \"Returns the subject of a CERT or FALSE on error\"\n ],\n \"openssl_csr_get_subject\": [\n \"mixed openssl_csr_get_subject(mixed csr)\",\n \"Returns the subject of a CERT or FALSE on error\"\n ],\n \"openssl_csr_new\": [\n \"bool openssl_csr_new(array dn, resource &privkey [, array configargs [, array extraattribs]])\",\n \"Generates a privkey and CSR\"\n ],\n \"openssl_csr_sign\": [\n \"resource openssl_csr_sign(mixed csr, mixed x509, mixed priv_key, long days [, array config_args [, long serial]])\",\n \"Signs a cert with another CERT\"\n ],\n \"openssl_decrypt\": [\n \"string openssl_decrypt(string data, string method, string password [, bool raw_input=false])\",\n \"Takes raw or base64 encoded string and dectupt it using given method and key\"\n ],\n \"openssl_dh_compute_key\": [\n \"string openssl_dh_compute_key(string pub_key, resource dh_key)\",\n \"Computes shared sicret for public value of remote DH key and local DH key\"\n ],\n \"openssl_digest\": [\n \"string openssl_digest(string data, string method [, bool raw_output=false])\",\n \"Computes digest hash value for given data using given method, returns raw or binhex encoded string\"\n ],\n \"openssl_encrypt\": [\n \"string openssl_encrypt(string data, string method, string password [, bool raw_output=false])\",\n \"Encrypts given data with given method and key, returns raw or base64 encoded string\"\n ],\n \"openssl_error_string\": [\n \"mixed openssl_error_string(void)\",\n \"Returns a description of the last error, and alters the index of the error messages. Returns false when the are no more messages\"\n ],\n \"openssl_get_cipher_methods\": [\n \"array openssl_get_cipher_methods([bool aliases = false])\",\n \"Return array of available cipher methods\"\n ],\n \"openssl_get_md_methods\": [\n \"array openssl_get_md_methods([bool aliases = false])\",\n \"Return array of available digest methods\"\n ],\n \"openssl_open\": [\n \"bool openssl_open(string data, &string opendata, string ekey, mixed privkey)\",\n \"Opens data\"\n ],\n \"openssl_pkcs12_export\": [\n \"bool openssl_pkcs12_export(mixed x509, string &out, mixed priv_key, string pass[, array args])\",\n \"Creates and exports a PKCS12 to a var\"\n ],\n \"openssl_pkcs12_export_to_file\": [\n \"bool openssl_pkcs12_export_to_file(mixed x509, string filename, mixed priv_key, string pass[, array args])\",\n \"Creates and exports a PKCS to file\"\n ],\n \"openssl_pkcs12_read\": [\n \"bool openssl_pkcs12_read(string PKCS12, array &certs, string pass)\",\n \"Parses a PKCS12 to an array\"\n ],\n \"openssl_pkcs7_decrypt\": [\n \"bool openssl_pkcs7_decrypt(string infilename, string outfilename, mixed recipcert [, mixed recipkey])\",\n \"Decrypts the S/MIME message in the file name infilename and output the results to the file name outfilename. recipcert is a CERT for one of the recipients. recipkey specifies the private key matching recipcert, if recipcert does not include the key\"\n ],\n \"openssl_pkcs7_encrypt\": [\n \"bool openssl_pkcs7_encrypt(string infile, string outfile, mixed recipcerts, array headers [, long flags [, long cipher]])\",\n \"Encrypts the message in the file named infile with the certificates in recipcerts and output the result to the file named outfile\"\n ],\n \"openssl_pkcs7_sign\": [\n \"bool openssl_pkcs7_sign(string infile, string outfile, mixed signcert, mixed signkey, array headers [, long flags [, string extracertsfilename]])\",\n \"Signs the MIME message in the file named infile with signcert/signkey and output the result to file name outfile. headers lists plain text headers to exclude from the signed portion of the message, and should include to, from and subject as a minimum\"\n ],\n \"openssl_pkcs7_verify\": [\n \"bool openssl_pkcs7_verify(string filename, long flags [, string signerscerts [, array cainfo [, string extracerts [, string content]]]])\",\n \"Verifys that the data block is intact, the signer is who they say they are, and returns the CERTs of the signers\"\n ],\n \"openssl_pkey_export\": [\n \"bool openssl_pkey_export(mixed key, &mixed out [, string passphrase [, array config_args]])\",\n \"Gets an exportable representation of a key into a string or file\"\n ],\n \"openssl_pkey_export_to_file\": [\n \"bool openssl_pkey_export_to_file(mixed key, string outfilename [, string passphrase, array config_args)\",\n \"Gets an exportable representation of a key into a file\"\n ],\n \"openssl_pkey_free\": [\n \"void openssl_pkey_free(int key)\",\n \"Frees a key\"\n ],\n \"openssl_pkey_get_details\": [\n \"resource openssl_pkey_get_details(resource key)\",\n \"returns an array with the key details (bits, pkey, type)\"\n ],\n \"openssl_pkey_get_private\": [\n \"int openssl_pkey_get_private(string key [, string passphrase])\",\n \"Gets private keys\"\n ],\n \"openssl_pkey_get_public\": [\n \"int openssl_pkey_get_public(mixed cert)\",\n \"Gets public key from X.509 certificate\"\n ],\n \"openssl_pkey_new\": [\n \"resource openssl_pkey_new([array configargs])\",\n \"Generates a new private key\"\n ],\n \"openssl_private_decrypt\": [\n \"bool openssl_private_decrypt(string data, string &decrypted, mixed key [, int padding])\",\n \"Decrypts data with private key\"\n ],\n \"openssl_private_encrypt\": [\n \"bool openssl_private_encrypt(string data, string &crypted, mixed key [, int padding])\",\n \"Encrypts data with private key\"\n ],\n \"openssl_public_decrypt\": [\n \"bool openssl_public_decrypt(string data, string &crypted, resource key [, int padding])\",\n \"Decrypts data with public key\"\n ],\n \"openssl_public_encrypt\": [\n \"bool openssl_public_encrypt(string data, string &crypted, mixed key [, int padding])\",\n \"Encrypts data with public key\"\n ],\n \"openssl_random_pseudo_bytes\": [\n \"string openssl_random_pseudo_bytes(integer length [, &bool returned_strong_result])\",\n \"Returns a string of the length specified filled with random pseudo bytes\"\n ],\n \"openssl_seal\": [\n \"int openssl_seal(string data, &string sealdata, &array ekeys, array pubkeys)\",\n \"Seals data\"\n ],\n \"openssl_sign\": [\n \"bool openssl_sign(string data, &string signature, mixed key[, mixed method])\",\n \"Signs data\"\n ],\n \"openssl_verify\": [\n \"int openssl_verify(string data, string signature, mixed key[, mixed method])\",\n \"Verifys data\"\n ],\n \"openssl_x509_check_private_key\": [\n \"bool openssl_x509_check_private_key(mixed cert, mixed key)\",\n \"Checks if a private key corresponds to a CERT\"\n ],\n \"openssl_x509_checkpurpose\": [\n \"int openssl_x509_checkpurpose(mixed x509cert, int purpose, array cainfo [, string untrustedfile])\",\n \"Checks the CERT to see if it can be used for the purpose in purpose. cainfo holds information about trusted CAs\"\n ],\n \"openssl_x509_export\": [\n \"bool openssl_x509_export(mixed x509, string &out [, bool notext = true])\",\n \"Exports a CERT to file or a var\"\n ],\n \"openssl_x509_export_to_file\": [\n \"bool openssl_x509_export_to_file(mixed x509, string outfilename [, bool notext = true])\",\n \"Exports a CERT to file or a var\"\n ],\n \"openssl_x509_free\": [\n \"void openssl_x509_free(resource x509)\",\n \"Frees X.509 certificates\"\n ],\n \"openssl_x509_parse\": [\n \"array openssl_x509_parse(mixed x509 [, bool shortnames=true])\",\n \"Returns an array of the fields/values of the CERT\"\n ],\n \"openssl_x509_read\": [\n \"resource openssl_x509_read(mixed cert)\",\n \"Reads X.509 certificates\"\n ],\n \"ord\": [\n \"int ord(string character)\",\n \"Returns ASCII value of character\"\n ],\n \"output_add_rewrite_var\": [\n \"bool output_add_rewrite_var(string name, string value)\",\n \"Add URL rewriter values\"\n ],\n \"output_reset_rewrite_vars\": [\n \"bool output_reset_rewrite_vars(void)\",\n \"Reset(clear) URL rewriter values\"\n ],\n \"pack\": [\n \"string pack(string format, mixed arg1 [, mixed arg2 [, mixed ...]])\",\n \"Takes one or more arguments and packs them into a binary string according to the format argument\"\n ],\n \"parse_ini_file\": [\n \"array parse_ini_file(string filename [, bool process_sections [, int scanner_mode]])\",\n \"Parse configuration file\"\n ],\n \"parse_ini_string\": [\n \"array parse_ini_string(string ini_string [, bool process_sections [, int scanner_mode]])\",\n \"Parse configuration string\"\n ],\n \"parse_locale\": [\n \"static array parse_locale($locale)\",\n \"* parses a locale-id into an array the different parts of it\"\n ],\n \"parse_str\": [\n \"void parse_str(string encoded_string [, array result])\",\n \"Parses GET/POST/COOKIE data and sets global variables\"\n ],\n \"parse_url\": [\n \"mixed parse_url(string url, [int url_component])\",\n \"Parse a URL and return its components\"\n ],\n \"passthru\": [\n \"void passthru(string command [, int &return_value])\",\n \"Execute an external program and display raw output\"\n ],\n \"pathinfo\": [\n \"array pathinfo(string path[, int options])\",\n \"Returns information about a certain string\"\n ],\n \"pclose\": [\n \"int pclose(resource fp)\",\n \"Close a file pointer opened by popen()\"\n ],\n \"pcnlt_sigwaitinfo\": [\n \"int pcnlt_sigwaitinfo(array set[, array &siginfo])\",\n \"Synchronously wait for queued signals\"\n ],\n \"pcntl_alarm\": [\n \"int pcntl_alarm(int seconds)\",\n \"Set an alarm clock for delivery of a signal\"\n ],\n \"pcntl_exec\": [\n \"bool pcntl_exec(string path [, array args [, array envs]])\",\n \"Executes specified program in current process space as defined by exec(2)\"\n ],\n \"pcntl_fork\": [\n \"int pcntl_fork(void)\",\n \"Forks the currently running process following the same behavior as the UNIX fork() system call\"\n ],\n \"pcntl_getpriority\": [\n \"int pcntl_getpriority([int pid [, int process_identifier]])\",\n \"Get the priority of any process\"\n ],\n \"pcntl_setpriority\": [\n \"bool pcntl_setpriority(int priority [, int pid [, int process_identifier]])\",\n \"Change the priority of any process\"\n ],\n \"pcntl_signal\": [\n \"bool pcntl_signal(int signo, callback handle [, bool restart_syscalls])\",\n \"Assigns a system signal handler to a PHP function\"\n ],\n \"pcntl_signal_dispatch\": [\n \"bool pcntl_signal_dispatch()\",\n \"Dispatch signals to signal handlers\"\n ],\n \"pcntl_sigprocmask\": [\n \"bool pcntl_sigprocmask(int how, array set[, array &oldset])\",\n \"Examine and change blocked signals\"\n ],\n \"pcntl_sigtimedwait\": [\n \"int pcntl_sigtimedwait(array set[, array &siginfo[, int seconds[, int nanoseconds]]])\",\n \"Wait for queued signals\"\n ],\n \"pcntl_wait\": [\n \"int pcntl_wait(int &status)\",\n \"Waits on or returns the status of a forked child as defined by the waitpid() system call\"\n ],\n \"pcntl_waitpid\": [\n \"int pcntl_waitpid(int pid, int &status, int options)\",\n \"Waits on or returns the status of a forked child as defined by the waitpid() system call\"\n ],\n \"pcntl_wexitstatus\": [\n \"int pcntl_wexitstatus(int status)\",\n \"Returns the status code of a child's exit\"\n ],\n \"pcntl_wifexited\": [\n \"bool pcntl_wifexited(int status)\",\n \"Returns true if the child status code represents a successful exit\"\n ],\n \"pcntl_wifsignaled\": [\n \"bool pcntl_wifsignaled(int status)\",\n \"Returns true if the child status code represents a process that was terminated due to a signal\"\n ],\n \"pcntl_wifstopped\": [\n \"bool pcntl_wifstopped(int status)\",\n \"Returns true if the child status code represents a stopped process (WUNTRACED must have been used with waitpid)\"\n ],\n \"pcntl_wstopsig\": [\n \"int pcntl_wstopsig(int status)\",\n \"Returns the number of the signal that caused the process to stop who's status code is passed\"\n ],\n \"pcntl_wtermsig\": [\n \"int pcntl_wtermsig(int status)\",\n \"Returns the number of the signal that terminated the process who's status code is passed\"\n ],\n \"pdo_drivers\": [\n \"array pdo_drivers()\",\n \"Return array of available PDO drivers\"\n ],\n \"pfsockopen\": [\n \"resource pfsockopen(string hostname, int port [, int errno [, string errstr [, float timeout]]])\",\n \"Open persistent Internet or Unix domain socket connection\"\n ],\n \"pg_affected_rows\": [\n \"int pg_affected_rows(resource result)\",\n \"Returns the number of affected tuples\"\n ],\n \"pg_cancel_query\": [\n \"bool pg_cancel_query(resource connection)\",\n \"Cancel request\"\n ],\n \"pg_client_encoding\": [\n \"string pg_client_encoding([resource connection])\",\n \"Get the current client encoding\"\n ],\n \"pg_close\": [\n \"bool pg_close([resource connection])\",\n \"Close a PostgreSQL connection\"\n ],\n \"pg_connect\": [\n \"resource pg_connect(string connection_string[, int connect_type] | [string host, string port [, string options [, string tty,]]] string database)\",\n \"Open a PostgreSQL connection\"\n ],\n \"pg_connection_busy\": [\n \"bool pg_connection_busy(resource connection)\",\n \"Get connection is busy or not\"\n ],\n \"pg_connection_reset\": [\n \"bool pg_connection_reset(resource connection)\",\n \"Reset connection (reconnect)\"\n ],\n \"pg_connection_status\": [\n \"int pg_connection_status(resource connnection)\",\n \"Get connection status\"\n ],\n \"pg_convert\": [\n \"array pg_convert(resource db, string table, array values[, int options])\",\n \"Check and convert values for PostgreSQL SQL statement\"\n ],\n \"pg_copy_from\": [\n \"bool pg_copy_from(resource connection, string table_name , array rows [, string delimiter [, string null_as]])\",\n \"Copy table from array\"\n ],\n \"pg_copy_to\": [\n \"array pg_copy_to(resource connection, string table_name [, string delimiter [, string null_as]])\",\n \"Copy table to array\"\n ],\n \"pg_dbname\": [\n \"string pg_dbname([resource connection])\",\n \"Get the database name\"\n ],\n \"pg_delete\": [\n \"mixed pg_delete(resource db, string table, array ids[, int options])\",\n \"Delete records has ids (id=>value)\"\n ],\n \"pg_end_copy\": [\n \"bool pg_end_copy([resource connection])\",\n \"Sync with backend. Completes the Copy command\"\n ],\n \"pg_escape_bytea\": [\n \"string pg_escape_bytea([resource connection,] string data)\",\n \"Escape binary for bytea type\"\n ],\n \"pg_escape_string\": [\n \"string pg_escape_string([resource connection,] string data)\",\n \"Escape string for text/char type\"\n ],\n \"pg_execute\": [\n \"resource pg_execute([resource connection,] string stmtname, array params)\",\n \"Execute a prepared query\"\n ],\n \"pg_fetch_all\": [\n \"array pg_fetch_all(resource result)\",\n \"Fetch all rows into array\"\n ],\n \"pg_fetch_all_columns\": [\n \"array pg_fetch_all_columns(resource result [, int column_number])\",\n \"Fetch all rows into array\"\n ],\n \"pg_fetch_array\": [\n \"array pg_fetch_array(resource result [, int row [, int result_type]])\",\n \"Fetch a row as an array\"\n ],\n \"pg_fetch_assoc\": [\n \"array pg_fetch_assoc(resource result [, int row])\",\n \"Fetch a row as an assoc array\"\n ],\n \"pg_fetch_object\": [\n \"object pg_fetch_object(resource result [, int row [, string class_name [, NULL|array ctor_params]]])\",\n \"Fetch a row as an object\"\n ],\n \"pg_fetch_result\": [\n \"mixed pg_fetch_result(resource result, [int row_number,] mixed field_name)\",\n \"Returns values from a result identifier\"\n ],\n \"pg_fetch_row\": [\n \"array pg_fetch_row(resource result [, int row [, int result_type]])\",\n \"Get a row as an enumerated array\"\n ],\n \"pg_field_is_null\": [\n \"int pg_field_is_null(resource result, [int row,] mixed field_name_or_number)\",\n \"Test if a field is NULL\"\n ],\n \"pg_field_name\": [\n \"string pg_field_name(resource result, int field_number)\",\n \"Returns the name of the field\"\n ],\n \"pg_field_num\": [\n \"int pg_field_num(resource result, string field_name)\",\n \"Returns the field number of the named field\"\n ],\n \"pg_field_prtlen\": [\n \"int pg_field_prtlen(resource result, [int row,] mixed field_name_or_number)\",\n \"Returns the printed length\"\n ],\n \"pg_field_size\": [\n \"int pg_field_size(resource result, int field_number)\",\n \"Returns the internal size of the field\"\n ],\n \"pg_field_table\": [\n \"mixed pg_field_table(resource result, int field_number[, bool oid_only])\",\n \"Returns the name of the table field belongs to, or table's oid if oid_only is true\"\n ],\n \"pg_field_type\": [\n \"string pg_field_type(resource result, int field_number)\",\n \"Returns the type name for the given field\"\n ],\n \"pg_field_type_oid\": [\n \"string pg_field_type_oid(resource result, int field_number)\",\n \"Returns the type oid for the given field\"\n ],\n \"pg_free_result\": [\n \"bool pg_free_result(resource result)\",\n \"Free result memory\"\n ],\n \"pg_get_notify\": [\n \"array pg_get_notify([resource connection[, result_type]])\",\n \"Get asynchronous notification\"\n ],\n \"pg_get_pid\": [\n \"int pg_get_pid([resource connection)\",\n \"Get backend(server) pid\"\n ],\n \"pg_get_result\": [\n \"resource pg_get_result(resource connection)\",\n \"Get asynchronous query result\"\n ],\n \"pg_host\": [\n \"string pg_host([resource connection])\",\n \"Returns the host name associated with the connection\"\n ],\n \"pg_insert\": [\n \"mixed pg_insert(resource db, string table, array values[, int options])\",\n \"Insert values (filed=>value) to table\"\n ],\n \"pg_last_error\": [\n \"string pg_last_error([resource connection])\",\n \"Get the error message string\"\n ],\n \"pg_last_notice\": [\n \"string pg_last_notice(resource connection)\",\n \"Returns the last notice set by the backend\"\n ],\n \"pg_last_oid\": [\n \"string pg_last_oid(resource result)\",\n \"Returns the last object identifier\"\n ],\n \"pg_lo_close\": [\n \"bool pg_lo_close(resource large_object)\",\n \"Close a large object\"\n ],\n \"pg_lo_create\": [\n \"mixed pg_lo_create([resource connection],[mixed large_object_oid])\",\n \"Create a large object\"\n ],\n \"pg_lo_export\": [\n \"bool pg_lo_export([resource connection, ] int objoid, string filename)\",\n \"Export large object direct to filesystem\"\n ],\n \"pg_lo_import\": [\n \"int pg_lo_import([resource connection, ] string filename [, mixed oid])\",\n \"Import large object direct from filesystem\"\n ],\n \"pg_lo_open\": [\n \"resource pg_lo_open([resource connection,] int large_object_oid, string mode)\",\n \"Open a large object and return fd\"\n ],\n \"pg_lo_read\": [\n \"string pg_lo_read(resource large_object [, int len])\",\n \"Read a large object\"\n ],\n \"pg_lo_read_all\": [\n \"int pg_lo_read_all(resource large_object)\",\n \"Read a large object and send straight to browser\"\n ],\n \"pg_lo_seek\": [\n \"bool pg_lo_seek(resource large_object, int offset [, int whence])\",\n \"Seeks position of large object\"\n ],\n \"pg_lo_tell\": [\n \"int pg_lo_tell(resource large_object)\",\n \"Returns current position of large object\"\n ],\n \"pg_lo_unlink\": [\n \"bool pg_lo_unlink([resource connection,] string large_object_oid)\",\n \"Delete a large object\"\n ],\n \"pg_lo_write\": [\n \"int pg_lo_write(resource large_object, string buf [, int len])\",\n \"Write a large object\"\n ],\n \"pg_meta_data\": [\n \"array pg_meta_data(resource db, string table)\",\n \"Get meta_data\"\n ],\n \"pg_num_fields\": [\n \"int pg_num_fields(resource result)\",\n \"Return the number of fields in the result\"\n ],\n \"pg_num_rows\": [\n \"int pg_num_rows(resource result)\",\n \"Return the number of rows in the result\"\n ],\n \"pg_options\": [\n \"string pg_options([resource connection])\",\n \"Get the options associated with the connection\"\n ],\n \"pg_parameter_status\": [\n \"string|false pg_parameter_status([resource connection,] string param_name)\",\n \"Returns the value of a server parameter\"\n ],\n \"pg_pconnect\": [\n \"resource pg_pconnect(string connection_string | [string host, string port [, string options [, string tty,]]] string database)\",\n \"Open a persistent PostgreSQL connection\"\n ],\n \"pg_ping\": [\n \"bool pg_ping([resource connection])\",\n \"Ping database. If connection is bad, try to reconnect.\"\n ],\n \"pg_port\": [\n \"int pg_port([resource connection])\",\n \"Return the port number associated with the connection\"\n ],\n \"pg_prepare\": [\n \"resource pg_prepare([resource connection,] string stmtname, string query)\",\n \"Prepare a query for future execution\"\n ],\n \"pg_put_line\": [\n \"bool pg_put_line([resource connection,] string query)\",\n \"Send null-terminated string to backend server\"\n ],\n \"pg_query\": [\n \"resource pg_query([resource connection,] string query)\",\n \"Execute a query\"\n ],\n \"pg_query_params\": [\n \"resource pg_query_params([resource connection,] string query, array params)\",\n \"Execute a query\"\n ],\n \"pg_result_error\": [\n \"string pg_result_error(resource result)\",\n \"Get error message associated with result\"\n ],\n \"pg_result_error_field\": [\n \"string pg_result_error_field(resource result, int fieldcode)\",\n \"Get error message field associated with result\"\n ],\n \"pg_result_seek\": [\n \"bool pg_result_seek(resource result, int offset)\",\n \"Set internal row offset\"\n ],\n \"pg_result_status\": [\n \"mixed pg_result_status(resource result[, long result_type])\",\n \"Get status of query result\"\n ],\n \"pg_select\": [\n \"mixed pg_select(resource db, string table, array ids[, int options])\",\n \"Select records that has ids (id=>value)\"\n ],\n \"pg_send_execute\": [\n \"bool pg_send_execute(resource connection, string stmtname, array params)\",\n \"Executes prevriously prepared stmtname asynchronously\"\n ],\n \"pg_send_prepare\": [\n \"bool pg_send_prepare(resource connection, string stmtname, string query)\",\n \"Asynchronously prepare a query for future execution\"\n ],\n \"pg_send_query\": [\n \"bool pg_send_query(resource connection, string query)\",\n \"Send asynchronous query\"\n ],\n \"pg_send_query_params\": [\n \"bool pg_send_query_params(resource connection, string query, array params)\",\n \"Send asynchronous parameterized query\"\n ],\n \"pg_set_client_encoding\": [\n \"int pg_set_client_encoding([resource connection,] string encoding)\",\n \"Set client encoding\"\n ],\n \"pg_set_error_verbosity\": [\n \"int pg_set_error_verbosity([resource connection,] int verbosity)\",\n \"Set error verbosity\"\n ],\n \"pg_trace\": [\n \"bool pg_trace(string filename [, string mode [, resource connection]])\",\n \"Enable tracing a PostgreSQL connection\"\n ],\n \"pg_transaction_status\": [\n \"int pg_transaction_status(resource connnection)\",\n \"Get transaction status\"\n ],\n \"pg_tty\": [\n \"string pg_tty([resource connection])\",\n \"Return the tty name associated with the connection\"\n ],\n \"pg_unescape_bytea\": [\n \"string pg_unescape_bytea(string data)\",\n \"Unescape binary for bytea type\"\n ],\n \"pg_untrace\": [\n \"bool pg_untrace([resource connection])\",\n \"Disable tracing of a PostgreSQL connection\"\n ],\n \"pg_update\": [\n \"mixed pg_update(resource db, string table, array fields, array ids[, int options])\",\n \"Update table using values (field=>value) and ids (id=>value)\"\n ],\n \"pg_version\": [\n \"array pg_version([resource connection])\",\n \"Returns an array with client, protocol and server version (when available)\"\n ],\n \"php_egg_logo_guid\": [\n \"string php_egg_logo_guid(void)\",\n \"Return the special ID used to request the PHP logo in phpinfo screens\"\n ],\n \"php_ini_loaded_file\": [\n \"string php_ini_loaded_file(void)\",\n \"Return the actual loaded ini filename\"\n ],\n \"php_ini_scanned_files\": [\n \"string php_ini_scanned_files(void)\",\n \"Return comma-separated string of .ini files parsed from the additional ini dir\"\n ],\n \"php_logo_guid\": [\n \"string php_logo_guid(void)\",\n \"Return the special ID used to request the PHP logo in phpinfo screens\"\n ],\n \"php_real_logo_guid\": [\n \"string php_real_logo_guid(void)\",\n \"Return the special ID used to request the PHP logo in phpinfo screens\"\n ],\n \"php_sapi_name\": [\n \"string php_sapi_name(void)\",\n \"Return the current SAPI module name\"\n ],\n \"php_snmpv3\": [\n \"void php_snmpv3(INTERNAL_FUNCTION_PARAMETERS, int st)\",\n \"* * Generic SNMPv3 object fetcher * From here is passed on the the common internal object fetcher. * * st=SNMP_CMD_GET snmp3_get() - query an agent and return a single value. * st=SNMP_CMD_GETNEXT snmp3_getnext() - query an agent and return the next single value. * st=SNMP_CMD_WALK snmp3_walk() - walk the mib and return a single dimensional array * containing the values. * st=SNMP_CMD_REALWALK snmp3_real_walk() - walk the mib and return an * array of oid,value pairs. * st=SNMP_CMD_SET snmp3_set() - query an agent and set a single value *\"\n ],\n \"php_strip_whitespace\": [\n \"string php_strip_whitespace(string file_name)\",\n \"Return source with stripped comments and whitespace\"\n ],\n \"php_uname\": [\n \"string php_uname(void)\",\n \"Return information about the system PHP was built on\"\n ],\n \"phpcredits\": [\n \"void phpcredits([int flag])\",\n \"Prints the list of people who've contributed to the PHP project\"\n ],\n \"phpinfo\": [\n \"void phpinfo([int what])\",\n \"Output a page of useful information about PHP and the current request\"\n ],\n \"phpversion\": [\n \"string phpversion([string extension])\",\n \"Return the current PHP version\"\n ],\n \"pi\": [\n \"float pi(void)\",\n \"Returns an approximation of pi\"\n ],\n \"png2wbmp\": [\n \"bool png2wbmp (string f_org, string f_dest, int d_height, int d_width, int threshold)\",\n \"Convert PNG image to WBMP image\"\n ],\n \"popen\": [\n \"resource popen(string command, string mode)\",\n \"Execute a command and open either a read or a write pipe to it\"\n ],\n \"posix_access\": [\n \"bool posix_access(string file [, int mode])\",\n \"Determine accessibility of a file (POSIX.1 5.6.3)\"\n ],\n \"posix_ctermid\": [\n \"string posix_ctermid(void)\",\n \"Generate terminal path name (POSIX.1, 4.7.1)\"\n ],\n \"posix_get_last_error\": [\n \"int posix_get_last_error(void)\",\n \"Retrieve the error number set by the last posix function which failed.\"\n ],\n \"posix_getcwd\": [\n \"string posix_getcwd(void)\",\n \"Get working directory pathname (POSIX.1, 5.2.2)\"\n ],\n \"posix_getegid\": [\n \"int posix_getegid(void)\",\n \"Get the current effective group id (POSIX.1, 4.2.1)\"\n ],\n \"posix_geteuid\": [\n \"int posix_geteuid(void)\",\n \"Get the current effective user id (POSIX.1, 4.2.1)\"\n ],\n \"posix_getgid\": [\n \"int posix_getgid(void)\",\n \"Get the current group id (POSIX.1, 4.2.1)\"\n ],\n \"posix_getgrgid\": [\n \"array posix_getgrgid(long gid)\",\n \"Group database access (POSIX.1, 9.2.1)\"\n ],\n \"posix_getgrnam\": [\n \"array posix_getgrnam(string groupname)\",\n \"Group database access (POSIX.1, 9.2.1)\"\n ],\n \"posix_getgroups\": [\n \"array posix_getgroups(void)\",\n \"Get supplementary group id's (POSIX.1, 4.2.3)\"\n ],\n \"posix_getlogin\": [\n \"string posix_getlogin(void)\",\n \"Get user name (POSIX.1, 4.2.4)\"\n ],\n \"posix_getpgid\": [\n \"int posix_getpgid(void)\",\n \"Get the process group id of the specified process (This is not a POSIX function, but a SVR4ism, so we compile conditionally)\"\n ],\n \"posix_getpgrp\": [\n \"int posix_getpgrp(void)\",\n \"Get current process group id (POSIX.1, 4.3.1)\"\n ],\n \"posix_getpid\": [\n \"int posix_getpid(void)\",\n \"Get the current process id (POSIX.1, 4.1.1)\"\n ],\n \"posix_getppid\": [\n \"int posix_getppid(void)\",\n \"Get the parent process id (POSIX.1, 4.1.1)\"\n ],\n \"posix_getpwnam\": [\n \"array posix_getpwnam(string groupname)\",\n \"User database access (POSIX.1, 9.2.2)\"\n ],\n \"posix_getpwuid\": [\n \"array posix_getpwuid(long uid)\",\n \"User database access (POSIX.1, 9.2.2)\"\n ],\n \"posix_getrlimit\": [\n \"array posix_getrlimit(void)\",\n \"Get system resource consumption limits (This is not a POSIX function, but a BSDism and a SVR4ism. We compile conditionally)\"\n ],\n \"posix_getsid\": [\n \"int posix_getsid(void)\",\n \"Get process group id of session leader (This is not a POSIX function, but a SVR4ism, so be compile conditionally)\"\n ],\n \"posix_getuid\": [\n \"int posix_getuid(void)\",\n \"Get the current user id (POSIX.1, 4.2.1)\"\n ],\n \"posix_initgroups\": [\n \"bool posix_initgroups(string name, int base_group_id)\",\n \"Calculate the group access list for the user specified in name.\"\n ],\n \"posix_isatty\": [\n \"bool posix_isatty(int fd)\",\n \"Determine if filedesc is a tty (POSIX.1, 4.7.1)\"\n ],\n \"posix_kill\": [\n \"bool posix_kill(int pid, int sig)\",\n \"Send a signal to a process (POSIX.1, 3.3.2)\"\n ],\n \"posix_mkfifo\": [\n \"bool posix_mkfifo(string pathname, int mode)\",\n \"Make a FIFO special file (POSIX.1, 5.4.2)\"\n ],\n \"posix_mknod\": [\n \"bool posix_mknod(string pathname, int mode [, int major [, int minor]])\",\n \"Make a special or ordinary file (POSIX.1)\"\n ],\n \"posix_setegid\": [\n \"bool posix_setegid(long uid)\",\n \"Set effective group id\"\n ],\n \"posix_seteuid\": [\n \"bool posix_seteuid(long uid)\",\n \"Set effective user id\"\n ],\n \"posix_setgid\": [\n \"bool posix_setgid(int uid)\",\n \"Set group id (POSIX.1, 4.2.2)\"\n ],\n \"posix_setpgid\": [\n \"bool posix_setpgid(int pid, int pgid)\",\n \"Set process group id for job control (POSIX.1, 4.3.3)\"\n ],\n \"posix_setsid\": [\n \"int posix_setsid(void)\",\n \"Create session and set process group id (POSIX.1, 4.3.2)\"\n ],\n \"posix_setuid\": [\n \"bool posix_setuid(long uid)\",\n \"Set user id (POSIX.1, 4.2.2)\"\n ],\n \"posix_strerror\": [\n \"string posix_strerror(int errno)\",\n \"Retrieve the system error message associated with the given errno.\"\n ],\n \"posix_times\": [\n \"array posix_times(void)\",\n \"Get process times (POSIX.1, 4.5.2)\"\n ],\n \"posix_ttyname\": [\n \"string posix_ttyname(int fd)\",\n \"Determine terminal device name (POSIX.1, 4.7.2)\"\n ],\n \"posix_uname\": [\n \"array posix_uname(void)\",\n \"Get system name (POSIX.1, 4.4.1)\"\n ],\n \"pow\": [\n \"number pow(number base, number exponent)\",\n \"Returns base raised to the power of exponent. Returns integer result when possible\"\n ],\n \"preg_filter\": [\n \"mixed preg_filter(mixed regex, mixed replace, mixed subject [, int limit [, int &count]])\",\n \"Perform Perl-style regular expression replacement and only return matches.\"\n ],\n \"preg_grep\": [\n \"array preg_grep(string regex, array input [, int flags])\",\n \"Searches array and returns entries which match regex\"\n ],\n \"preg_last_error\": [\n \"int preg_last_error()\",\n \"Returns the error code of the last regexp execution.\"\n ],\n \"preg_match\": [\n \"int preg_match(string pattern, string subject [, array &subpatterns [, int flags [, int offset]]])\",\n \"Perform a Perl-style regular expression match\"\n ],\n \"preg_match_all\": [\n \"int preg_match_all(string pattern, string subject, array &subpatterns [, int flags [, int offset]])\",\n \"Perform a Perl-style global regular expression match\"\n ],\n \"preg_quote\": [\n \"string preg_quote(string str [, string delim_char])\",\n \"Quote regular expression characters plus an optional character\"\n ],\n \"preg_replace\": [\n \"mixed preg_replace(mixed regex, mixed replace, mixed subject [, int limit [, int &count]])\",\n \"Perform Perl-style regular expression replacement.\"\n ],\n \"preg_replace_callback\": [\n \"mixed preg_replace_callback(mixed regex, mixed callback, mixed subject [, int limit [, int &count]])\",\n \"Perform Perl-style regular expression replacement using replacement callback.\"\n ],\n \"preg_split\": [\n \"array preg_split(string pattern, string subject [, int limit [, int flags]])\",\n \"Split string into an array using a perl-style regular expression as a delimiter\"\n ],\n \"prev\": [\n \"mixed prev(array array_arg)\",\n \"Move array argument's internal pointer to the previous element and return it\"\n ],\n \"print\": [\n \"int print(string arg)\",\n \"Output a string\"\n ],\n \"print_r\": [\n \"mixed print_r(mixed var [, bool return])\",\n \"Prints out or returns information about the specified variable\"\n ],\n \"printf\": [\n \"int printf(string format [, mixed arg1 [, mixed ...]])\",\n \"Output a formatted string\"\n ],\n \"proc_close\": [\n \"int proc_close(resource process)\",\n \"close a process opened by proc_open\"\n ],\n \"proc_get_status\": [\n \"array proc_get_status(resource process)\",\n \"get information about a process opened by proc_open\"\n ],\n \"proc_nice\": [\n \"bool proc_nice(int priority)\",\n \"Change the priority of the current process\"\n ],\n \"proc_open\": [\n \"resource proc_open(string command, array descriptorspec, array &pipes [, string cwd [, array env [, array other_options]]])\",\n \"Run a process with more control over it's file descriptors\"\n ],\n \"proc_terminate\": [\n \"bool proc_terminate(resource process [, long signal])\",\n \"kill a process opened by proc_open\"\n ],\n \"property_exists\": [\n \"bool property_exists(mixed object_or_class, string property_name)\",\n \"Checks if the object or class has a property\"\n ],\n \"pspell_add_to_personal\": [\n \"bool pspell_add_to_personal(int pspell, string word)\",\n \"Adds a word to a personal list\"\n ],\n \"pspell_add_to_session\": [\n \"bool pspell_add_to_session(int pspell, string word)\",\n \"Adds a word to the current session\"\n ],\n \"pspell_check\": [\n \"bool pspell_check(int pspell, string word)\",\n \"Returns true if word is valid\"\n ],\n \"pspell_clear_session\": [\n \"bool pspell_clear_session(int pspell)\",\n \"Clears the current session\"\n ],\n \"pspell_config_create\": [\n \"int pspell_config_create(string language [, string spelling [, string jargon [, string encoding]]])\",\n \"Create a new config to be used later to create a manager\"\n ],\n \"pspell_config_data_dir\": [\n \"bool pspell_config_data_dir(int conf, string directory)\",\n \"location of language data files\"\n ],\n \"pspell_config_dict_dir\": [\n \"bool pspell_config_dict_dir(int conf, string directory)\",\n \"location of the main word list\"\n ],\n \"pspell_config_ignore\": [\n \"bool pspell_config_ignore(int conf, int ignore)\",\n \"Ignore words <= n chars\"\n ],\n \"pspell_config_mode\": [\n \"bool pspell_config_mode(int conf, long mode)\",\n \"Select mode for config (PSPELL_FAST, PSPELL_NORMAL or PSPELL_BAD_SPELLERS)\"\n ],\n \"pspell_config_personal\": [\n \"bool pspell_config_personal(int conf, string personal)\",\n \"Use a personal dictionary for this config\"\n ],\n \"pspell_config_repl\": [\n \"bool pspell_config_repl(int conf, string repl)\",\n \"Use a personal dictionary with replacement pairs for this config\"\n ],\n \"pspell_config_runtogether\": [\n \"bool pspell_config_runtogether(int conf, bool runtogether)\",\n \"Consider run-together words as valid components\"\n ],\n \"pspell_config_save_repl\": [\n \"bool pspell_config_save_repl(int conf, bool save)\",\n \"Save replacement pairs when personal list is saved for this config\"\n ],\n \"pspell_new\": [\n \"int pspell_new(string language [, string spelling [, string jargon [, string encoding [, int mode]]]])\",\n \"Load a dictionary\"\n ],\n \"pspell_new_config\": [\n \"int pspell_new_config(int config)\",\n \"Load a dictionary based on the given config\"\n ],\n \"pspell_new_personal\": [\n \"int pspell_new_personal(string personal, string language [, string spelling [, string jargon [, string encoding [, int mode]]]])\",\n \"Load a dictionary with a personal wordlist\"\n ],\n \"pspell_save_wordlist\": [\n \"bool pspell_save_wordlist(int pspell)\",\n \"Saves the current (personal) wordlist\"\n ],\n \"pspell_store_replacement\": [\n \"bool pspell_store_replacement(int pspell, string misspell, string correct)\",\n \"Notify the dictionary of a user-selected replacement\"\n ],\n \"pspell_suggest\": [\n \"array pspell_suggest(int pspell, string word)\",\n \"Returns array of suggestions\"\n ],\n \"putenv\": [\n \"bool putenv(string setting)\",\n \"Set the value of an environment variable\"\n ],\n \"quoted_printable_decode\": [\n \"string quoted_printable_decode(string str)\",\n \"Convert a quoted-printable string to an 8 bit string\"\n ],\n \"quoted_printable_encode\": [\n \"string quoted_printable_encode(string str) */\",\n \"PHP_FUNCTION(quoted_printable_encode) { char *str, *new_str; int str_len; size_t new_str_len; if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, \\\"s\\\", &str, &str_len) != SUCCESS) { return; } if (!str_len) { RETURN_EMPTY_STRING(); } new_str = (char *)php_quot_print_encode((unsigned char *)str, (size_t)str_len, &new_str_len); RETURN_STRINGL(new_str, new_str_len, 0); } /* }}}\"\n ],\n \"quotemeta\": [\n \"string quotemeta(string str)\",\n \"Quotes meta characters\"\n ],\n \"rad2deg\": [\n \"float rad2deg(float number)\",\n \"Converts the radian number to the equivalent number in degrees\"\n ],\n \"rand\": [\n \"int rand([int min, int max])\",\n \"Returns a random number\"\n ],\n \"range\": [\n \"array range(mixed low, mixed high[, int step])\",\n \"Create an array containing the range of integers or characters from low to high (inclusive)\"\n ],\n \"rawurldecode\": [\n \"string rawurldecode(string str)\",\n \"Decodes URL-encodes string\"\n ],\n \"rawurlencode\": [\n \"string rawurlencode(string str)\",\n \"URL-encodes string\"\n ],\n \"readdir\": [\n \"string readdir([resource dir_handle])\",\n \"Read directory entry from dir_handle\"\n ],\n \"readfile\": [\n \"int readfile(string filename [, bool use_include_path[, resource context]])\",\n \"Output a file or a URL\"\n ],\n \"readgzfile\": [\n \"int readgzfile(string filename [, int use_include_path])\",\n \"Output a .gz-file\"\n ],\n \"readline\": [\n \"string readline([string prompt])\",\n \"Reads a line\"\n ],\n \"readline_add_history\": [\n \"bool readline_add_history(string prompt)\",\n \"Adds a line to the history\"\n ],\n \"readline_callback_handler_install\": [\n \"void readline_callback_handler_install(string prompt, mixed callback)\",\n \"Initializes the readline callback interface and terminal, prints the prompt and returns immediately\"\n ],\n \"readline_callback_handler_remove\": [\n \"bool readline_callback_handler_remove()\",\n \"Removes a previously installed callback handler and restores terminal settings\"\n ],\n \"readline_callback_read_char\": [\n \"void readline_callback_read_char()\",\n \"Informs the readline callback interface that a character is ready for input\"\n ],\n \"readline_clear_history\": [\n \"bool readline_clear_history(void)\",\n \"Clears the history\"\n ],\n \"readline_completion_function\": [\n \"bool readline_completion_function(string funcname)\",\n \"Readline completion function?\"\n ],\n \"readline_info\": [\n \"mixed readline_info([string varname [, string newvalue]])\",\n \"Gets/sets various internal readline variables.\"\n ],\n \"readline_list_history\": [\n \"array readline_list_history(void)\",\n \"Lists the history\"\n ],\n \"readline_on_new_line\": [\n \"void readline_on_new_line(void)\",\n \"Inform readline that the cursor has moved to a new line\"\n ],\n \"readline_read_history\": [\n \"bool readline_read_history([string filename])\",\n \"Reads the history\"\n ],\n \"readline_redisplay\": [\n \"void readline_redisplay(void)\",\n \"Ask readline to redraw the display\"\n ],\n \"readline_write_history\": [\n \"bool readline_write_history([string filename])\",\n \"Writes the history\"\n ],\n \"readlink\": [\n \"string readlink(string filename)\",\n \"Return the target of a symbolic link\"\n ],\n \"realpath\": [\n \"string realpath(string path)\",\n \"Return the resolved path\"\n ],\n \"realpath_cache_get\": [\n \"bool realpath_cache_get()\",\n \"Get current size of realpath cache\"\n ],\n \"realpath_cache_size\": [\n \"bool realpath_cache_size()\",\n \"Get current size of realpath cache\"\n ],\n \"recode_file\": [\n \"bool recode_file(string request, resource input, resource output)\",\n \"Recode file input into file output according to request\"\n ],\n \"recode_string\": [\n \"string recode_string(string request, string str)\",\n \"Recode string str according to request string\"\n ],\n \"register_shutdown_function\": [\n \"void register_shutdown_function(string function_name)\",\n \"Register a user-level function to be called on request termination\"\n ],\n \"register_tick_function\": [\n \"bool register_tick_function(string function_name [, mixed arg [, mixed ... ]])\",\n \"Registers a tick callback function\"\n ],\n \"rename\": [\n \"bool rename(string old_name, string new_name[, resource context])\",\n \"Rename a file\"\n ],\n \"require\": [\n \"bool require(string path)\",\n \"Includes and evaluates the specified file, erroring if the file cannot be included\"\n ],\n \"require_once\": [\n \"bool require_once(string path)\",\n \"Includes and evaluates the specified file, erroring if the file cannot be included\"\n ],\n \"reset\": [\n \"mixed reset(array array_arg)\",\n \"Set array argument's internal pointer to the first element and return it\"\n ],\n \"restore_error_handler\": [\n \"void restore_error_handler(void)\",\n \"Restores the previously defined error handler function\"\n ],\n \"restore_exception_handler\": [\n \"void restore_exception_handler(void)\",\n \"Restores the previously defined exception handler function\"\n ],\n \"restore_include_path\": [\n \"void restore_include_path()\",\n \"Restore the value of the include_path configuration option\"\n ],\n \"rewind\": [\n \"bool rewind(resource fp)\",\n \"Rewind the position of a file pointer\"\n ],\n \"rewinddir\": [\n \"void rewinddir([resource dir_handle])\",\n \"Rewind dir_handle back to the start\"\n ],\n \"rmdir\": [\n \"bool rmdir(string dirname[, resource context])\",\n \"Remove a directory\"\n ],\n \"round\": [\n \"float round(float number [, int precision [, int mode]])\",\n \"Returns the number rounded to specified precision\"\n ],\n \"rsort\": [\n \"bool rsort(array &array_arg [, int sort_flags])\",\n \"Sort an array in reverse order\"\n ],\n \"rtrim\": [\n \"string rtrim(string str [, string character_mask])\",\n \"Removes trailing whitespace\"\n ],\n \"scandir\": [\n \"array scandir(string dir [, int sorting_order [, resource context]])\",\n \"List files & directories inside the specified path\"\n ],\n \"sem_acquire\": [\n \"bool sem_acquire(resource id)\",\n \"Acquires the semaphore with the given id, blocking if necessary\"\n ],\n \"sem_get\": [\n \"resource sem_get(int key [, int max_acquire [, int perm [, int auto_release]])\",\n \"Return an id for the semaphore with the given key, and allow max_acquire (default 1) processes to acquire it simultaneously\"\n ],\n \"sem_release\": [\n \"bool sem_release(resource id)\",\n \"Releases the semaphore with the given id\"\n ],\n \"sem_remove\": [\n \"bool sem_remove(resource id)\",\n \"Removes semaphore from Unix systems\"\n ],\n \"serialize\": [\n \"string serialize(mixed variable)\",\n \"Returns a string representation of variable (which can later be unserialized)\"\n ],\n \"session_cache_expire\": [\n \"int session_cache_expire([int new_cache_expire])\",\n \"Return the current cache expire. If new_cache_expire is given, the current cache_expire is replaced with new_cache_expire\"\n ],\n \"session_cache_limiter\": [\n \"string session_cache_limiter([string new_cache_limiter])\",\n \"Return the current cache limiter. If new_cache_limited is given, the current cache_limiter is replaced with new_cache_limiter\"\n ],\n \"session_decode\": [\n \"bool session_decode(string data)\",\n \"Deserializes data and reinitializes the variables\"\n ],\n \"session_destroy\": [\n \"bool session_destroy(void)\",\n \"Destroy the current session and all data associated with it\"\n ],\n \"session_encode\": [\n \"string session_encode(void)\",\n \"Serializes the current setup and returns the serialized representation\"\n ],\n \"session_get_cookie_params\": [\n \"array session_get_cookie_params(void)\",\n \"Return the session cookie parameters\"\n ],\n \"session_id\": [\n \"string session_id([string newid])\",\n \"Return the current session id. If newid is given, the session id is replaced with newid\"\n ],\n \"session_is_registered\": [\n \"bool session_is_registered(string varname)\",\n \"Checks if a variable is registered in session\"\n ],\n \"session_module_name\": [\n \"string session_module_name([string newname])\",\n \"Return the current module name used for accessing session data. If newname is given, the module name is replaced with newname\"\n ],\n \"session_name\": [\n \"string session_name([string newname])\",\n \"Return the current session name. If newname is given, the session name is replaced with newname\"\n ],\n \"session_regenerate_id\": [\n \"bool session_regenerate_id([bool delete_old_session])\",\n \"Update the current session id with a newly generated one. If delete_old_session is set to true, remove the old session.\"\n ],\n \"session_register\": [\n \"bool session_register(mixed var_names [, mixed ...])\",\n \"Adds varname(s) to the list of variables which are freezed at the session end\"\n ],\n \"session_save_path\": [\n \"string session_save_path([string newname])\",\n \"Return the current save path passed to module_name. If newname is given, the save path is replaced with newname\"\n ],\n \"session_set_cookie_params\": [\n \"void session_set_cookie_params(int lifetime [, string path [, string domain [, bool secure[, bool httponly]]]])\",\n \"Set session cookie parameters\"\n ],\n \"session_set_save_handler\": [\n \"void session_set_save_handler(string open, string close, string read, string write, string destroy, string gc)\",\n \"Sets user-level functions\"\n ],\n \"session_start\": [\n \"bool session_start(void)\",\n \"Begin session - reinitializes freezed variables, registers browsers etc\"\n ],\n \"session_unregister\": [\n \"bool session_unregister(string varname)\",\n \"Removes varname from the list of variables which are freezed at the session end\"\n ],\n \"session_unset\": [\n \"void session_unset(void)\",\n \"Unset all registered variables\"\n ],\n \"session_write_close\": [\n \"void session_write_close(void)\",\n \"Write session data and end session\"\n ],\n \"set_error_handler\": [\n \"string set_error_handler(string error_handler [, int error_types])\",\n \"Sets a user-defined error handler function. Returns the previously defined error handler, or false on error\"\n ],\n \"set_exception_handler\": [\n \"string set_exception_handler(callable exception_handler)\",\n \"Sets a user-defined exception handler function. Returns the previously defined exception handler, or false on error\"\n ],\n \"set_include_path\": [\n \"string set_include_path(string new_include_path)\",\n \"Sets the include_path configuration option\"\n ],\n \"set_magic_quotes_runtime\": [\n \"bool set_magic_quotes_runtime(int new_setting)\",\n \"Set the current active configuration setting of magic_quotes_runtime and return previous\"\n ],\n \"set_time_limit\": [\n \"bool set_time_limit(int seconds)\",\n \"Sets the maximum time a script can run\"\n ],\n \"setcookie\": [\n \"bool setcookie(string name [, string value [, int expires [, string path [, string domain [, bool secure[, bool httponly]]]]]])\",\n \"Send a cookie\"\n ],\n \"setlocale\": [\n \"string setlocale(mixed category, string locale [, string ...])\",\n \"Set locale information\"\n ],\n \"setrawcookie\": [\n \"bool setrawcookie(string name [, string value [, int expires [, string path [, string domain [, bool secure[, bool httponly]]]]]])\",\n \"Send a cookie with no url encoding of the value\"\n ],\n \"settype\": [\n \"bool settype(mixed var, string type)\",\n \"Set the type of the variable\"\n ],\n \"sha1\": [\n \"string sha1(string str [, bool raw_output])\",\n \"Calculate the sha1 hash of a string\"\n ],\n \"sha1_file\": [\n \"string sha1_file(string filename [, bool raw_output])\",\n \"Calculate the sha1 hash of given filename\"\n ],\n \"shell_exec\": [\n \"string shell_exec(string cmd)\",\n \"Execute command via shell and return complete output as string\"\n ],\n \"shm_attach\": [\n \"int shm_attach(int key [, int memsize [, int perm]])\",\n \"Creates or open a shared memory segment\"\n ],\n \"shm_detach\": [\n \"bool shm_detach(resource shm_identifier)\",\n \"Disconnects from shared memory segment\"\n ],\n \"shm_get_var\": [\n \"mixed shm_get_var(resource id, int variable_key)\",\n \"Returns a variable from shared memory\"\n ],\n \"shm_has_var\": [\n \"bool shm_has_var(resource id, int variable_key)\",\n \"Checks whether a specific entry exists\"\n ],\n \"shm_put_var\": [\n \"bool shm_put_var(resource shm_identifier, int variable_key, mixed variable)\",\n \"Inserts or updates a variable in shared memory\"\n ],\n \"shm_remove\": [\n \"bool shm_remove(resource shm_identifier)\",\n \"Removes shared memory from Unix systems\"\n ],\n \"shm_remove_var\": [\n \"bool shm_remove_var(resource id, int variable_key)\",\n \"Removes variable from shared memory\"\n ],\n \"shmop_close\": [\n \"void shmop_close (int shmid)\",\n \"closes a shared memory segment\"\n ],\n \"shmop_delete\": [\n \"bool shmop_delete (int shmid)\",\n \"mark segment for deletion\"\n ],\n \"shmop_open\": [\n \"int shmop_open (int key, string flags, int mode, int size)\",\n \"gets and attaches a shared memory segment\"\n ],\n \"shmop_read\": [\n \"string shmop_read (int shmid, int start, int count)\",\n \"reads from a shm segment\"\n ],\n \"shmop_size\": [\n \"int shmop_size (int shmid)\",\n \"returns the shm size\"\n ],\n \"shmop_write\": [\n \"int shmop_write (int shmid, string data, int offset)\",\n \"writes to a shared memory segment\"\n ],\n \"shuffle\": [\n \"bool shuffle(array array_arg)\",\n \"Randomly shuffle the contents of an array\"\n ],\n \"similar_text\": [\n \"int similar_text(string str1, string str2 [, float percent])\",\n \"Calculates the similarity between two strings\"\n ],\n \"simplexml_import_dom\": [\n \"simplemxml_element simplexml_import_dom(domNode node [, string class_name])\",\n \"Get a simplexml_element object from dom to allow for processing\"\n ],\n \"simplexml_load_file\": [\n \"simplemxml_element simplexml_load_file(string filename [, string class_name [, int options [, string ns [, bool is_prefix]]]])\",\n \"Load a filename and return a simplexml_element object to allow for processing\"\n ],\n \"simplexml_load_string\": [\n \"simplemxml_element simplexml_load_string(string data [, string class_name [, int options [, string ns [, bool is_prefix]]]])\",\n \"Load a string and return a simplexml_element object to allow for processing\"\n ],\n \"sin\": [\n \"float sin(float number)\",\n \"Returns the sine of the number in radians\"\n ],\n \"sinh\": [\n \"float sinh(float number)\",\n \"Returns the hyperbolic sine of the number, defined as (exp(number) - exp(-number))/2\"\n ],\n \"sleep\": [\n \"void sleep(int seconds)\",\n \"Delay for a given number of seconds\"\n ],\n \"smfi_addheader\": [\n \"bool smfi_addheader(string headerf, string headerv)\",\n \"Adds a header to the current message.\"\n ],\n \"smfi_addrcpt\": [\n \"bool smfi_addrcpt(string rcpt)\",\n \"Add a recipient to the message envelope.\"\n ],\n \"smfi_chgheader\": [\n \"bool smfi_chgheader(string headerf, string headerv)\",\n \"Changes a header's value for the current message.\"\n ],\n \"smfi_delrcpt\": [\n \"bool smfi_delrcpt(string rcpt)\",\n \"Removes the named recipient from the current message's envelope.\"\n ],\n \"smfi_getsymval\": [\n \"string smfi_getsymval(string macro)\",\n \"Returns the value of the given macro or NULL if the macro is not defined.\"\n ],\n \"smfi_replacebody\": [\n \"bool smfi_replacebody(string body)\",\n \"Replaces the body of the current message. If called more than once, subsequent calls result in data being appended to the new body.\"\n ],\n \"smfi_setflags\": [\n \"void smfi_setflags(long flags)\",\n \"Sets the flags describing the actions the filter may take.\"\n ],\n \"smfi_setreply\": [\n \"bool smfi_setreply(string rcode, string xcode, string message)\",\n \"Directly set the SMTP error reply code for this connection. This code will be used on subsequent error replies resulting from actions taken by this filter.\"\n ],\n \"smfi_settimeout\": [\n \"void smfi_settimeout(long timeout)\",\n \"Sets the number of seconds libmilter will wait for an MTA connection before timing out a socket.\"\n ],\n \"snmp2_get\": [\n \"string snmp2_get(string host, string community, string object_id [, int timeout [, int retries]])\",\n \"Fetch a SNMP object\"\n ],\n \"snmp2_getnext\": [\n \"string snmp2_getnext(string host, string community, string object_id [, int timeout [, int retries]])\",\n \"Fetch a SNMP object\"\n ],\n \"snmp2_real_walk\": [\n \"array snmp2_real_walk(string host, string community, string object_id [, int timeout [, int retries]])\",\n \"Return all objects including their respective object id withing the specified one\"\n ],\n \"snmp2_set\": [\n \"int snmp2_set(string host, string community, string object_id, string type, mixed value [, int timeout [, int retries]])\",\n \"Set the value of a SNMP object\"\n ],\n \"snmp2_walk\": [\n \"array snmp2_walk(string host, string community, string object_id [, int timeout [, int retries]])\",\n \"Return all objects under the specified object id\"\n ],\n \"snmp3_get\": [\n \"int snmp3_get(string host, string sec_name, string sec_level, string auth_protocol, string auth_passphrase, string priv_protocol, string priv_passphrase, string object_id [, int timeout [, int retries]])\",\n \"Fetch the value of a SNMP object\"\n ],\n \"snmp3_getnext\": [\n \"int snmp3_getnext(string host, string sec_name, string sec_level, string auth_protocol, string auth_passphrase, string priv_protocol, string priv_passphrase, string object_id [, int timeout [, int retries]])\",\n \"Fetch the value of a SNMP object\"\n ],\n \"snmp3_real_walk\": [\n \"int snmp3_real_walk(string host, string sec_name, string sec_level, string auth_protocol, string auth_passphrase, string priv_protocol, string priv_passphrase, string object_id [, int timeout [, int retries]])\",\n \"Fetch the value of a SNMP object\"\n ],\n \"snmp3_set\": [\n \"int snmp3_set(string host, string sec_name, string sec_level, string auth_protocol, string auth_passphrase, string priv_protocol, string priv_passphrase, string object_id, string type, mixed value [, int timeout [, int retries]])\",\n \"Fetch the value of a SNMP object\"\n ],\n \"snmp3_walk\": [\n \"int snmp3_walk(string host, string sec_name, string sec_level, string auth_protocol, string auth_passphrase, string priv_protocol, string priv_passphrase, string object_id [, int timeout [, int retries]])\",\n \"Fetch the value of a SNMP object\"\n ],\n \"snmp_get_quick_print\": [\n \"bool snmp_get_quick_print(void)\",\n \"Return the current status of quick_print\"\n ],\n \"snmp_get_valueretrieval\": [\n \"int snmp_get_valueretrieval()\",\n \"Return the method how the SNMP values will be returned\"\n ],\n \"snmp_read_mib\": [\n \"int snmp_read_mib(string filename)\",\n \"Reads and parses a MIB file into the active MIB tree.\"\n ],\n \"snmp_set_enum_print\": [\n \"void snmp_set_enum_print(int enum_print)\",\n \"Return all values that are enums with their enum value instead of the raw integer\"\n ],\n \"snmp_set_oid_output_format\": [\n \"void snmp_set_oid_output_format(int oid_format)\",\n \"Set the OID output format.\"\n ],\n \"snmp_set_quick_print\": [\n \"void snmp_set_quick_print(int quick_print)\",\n \"Return all objects including their respective object id withing the specified one\"\n ],\n \"snmp_set_valueretrieval\": [\n \"void snmp_set_valueretrieval(int method)\",\n \"Specify the method how the SNMP values will be returned\"\n ],\n \"snmpget\": [\n \"string snmpget(string host, string community, string object_id [, int timeout [, int retries]])\",\n \"Fetch a SNMP object\"\n ],\n \"snmpgetnext\": [\n \"string snmpgetnext(string host, string community, string object_id [, int timeout [, int retries]])\",\n \"Fetch a SNMP object\"\n ],\n \"snmprealwalk\": [\n \"array snmprealwalk(string host, string community, string object_id [, int timeout [, int retries]])\",\n \"Return all objects including their respective object id withing the specified one\"\n ],\n \"snmpset\": [\n \"int snmpset(string host, string community, string object_id, string type, mixed value [, int timeout [, int retries]])\",\n \"Set the value of a SNMP object\"\n ],\n \"snmpwalk\": [\n \"array snmpwalk(string host, string community, string object_id [, int timeout [, int retries]])\",\n \"Return all objects under the specified object id\"\n ],\n \"socket_accept\": [\n \"resource socket_accept(resource socket)\",\n \"Accepts a connection on the listening socket fd\"\n ],\n \"socket_bind\": [\n \"bool socket_bind(resource socket, string addr [, int port])\",\n \"Binds an open socket to a listening port, port is only specified in AF_INET family.\"\n ],\n \"socket_clear_error\": [\n \"void socket_clear_error([resource socket])\",\n \"Clears the error on the socket or the last error code.\"\n ],\n \"socket_close\": [\n \"void socket_close(resource socket)\",\n \"Closes a file descriptor\"\n ],\n \"socket_connect\": [\n \"bool socket_connect(resource socket, string addr [, int port])\",\n \"Opens a connection to addr:port on the socket specified by socket\"\n ],\n \"socket_create\": [\n \"resource socket_create(int domain, int type, int protocol)\",\n \"Creates an endpoint for communication in the domain specified by domain, of type specified by type\"\n ],\n \"socket_create_listen\": [\n \"resource socket_create_listen(int port[, int backlog])\",\n \"Opens a socket on port to accept connections\"\n ],\n \"socket_create_pair\": [\n \"bool socket_create_pair(int domain, int type, int protocol, array &fd)\",\n \"Creates a pair of indistinguishable sockets and stores them in fds.\"\n ],\n \"socket_get_option\": [\n \"mixed socket_get_option(resource socket, int level, int optname)\",\n \"Gets socket options for the socket\"\n ],\n \"socket_getpeername\": [\n \"bool socket_getpeername(resource socket, string &addr[, int &port])\",\n \"Queries the remote side of the given socket which may either result in host/port or in a UNIX filesystem path, dependent on its type.\"\n ],\n \"socket_getsockname\": [\n \"bool socket_getsockname(resource socket, string &addr[, int &port])\",\n \"Queries the remote side of the given socket which may either result in host/port or in a UNIX filesystem path, dependent on its type.\"\n ],\n \"socket_last_error\": [\n \"int socket_last_error([resource socket])\",\n \"Returns the last socket error (either the last used or the provided socket resource)\"\n ],\n \"socket_listen\": [\n \"bool socket_listen(resource socket[, int backlog])\",\n \"Sets the maximum number of connections allowed to be waited for on the socket specified by fd\"\n ],\n \"socket_read\": [\n \"string socket_read(resource socket, int length [, int type])\",\n \"Reads a maximum of length bytes from socket\"\n ],\n \"socket_recv\": [\n \"int socket_recv(resource socket, string &buf, int len, int flags)\",\n \"Receives data from a connected socket\"\n ],\n \"socket_recvfrom\": [\n \"int socket_recvfrom(resource socket, string &buf, int len, int flags, string &name [, int &port])\",\n \"Receives data from a socket, connected or not\"\n ],\n \"socket_select\": [\n \"int socket_select(array &read_fds, array &write_fds, array &except_fds, int tv_sec[, int tv_usec])\",\n \"Runs the select() system call on the sets mentioned with a timeout specified by tv_sec and tv_usec\"\n ],\n \"socket_send\": [\n \"int socket_send(resource socket, string buf, int len, int flags)\",\n \"Sends data to a connected socket\"\n ],\n \"socket_sendto\": [\n \"int socket_sendto(resource socket, string buf, int len, int flags, string addr [, int port])\",\n \"Sends a message to a socket, whether it is connected or not\"\n ],\n \"socket_set_block\": [\n \"bool socket_set_block(resource socket)\",\n \"Sets blocking mode on a socket resource\"\n ],\n \"socket_set_nonblock\": [\n \"bool socket_set_nonblock(resource socket)\",\n \"Sets nonblocking mode on a socket resource\"\n ],\n \"socket_set_option\": [\n \"bool socket_set_option(resource socket, int level, int optname, int|array optval)\",\n \"Sets socket options for the socket\"\n ],\n \"socket_shutdown\": [\n \"bool socket_shutdown(resource socket[, int how])\",\n \"Shuts down a socket for receiving, sending, or both.\"\n ],\n \"socket_strerror\": [\n \"string socket_strerror(int errno)\",\n \"Returns a string describing an error\"\n ],\n \"socket_write\": [\n \"int socket_write(resource socket, string buf[, int length])\",\n \"Writes the buffer to the socket resource, length is optional\"\n ],\n \"solid_fetch_prev\": [\n \"bool solid_fetch_prev(resource result_id)\",\n \"\"\n ],\n \"sort\": [\n \"bool sort(array &array_arg [, int sort_flags])\",\n \"Sort an array\"\n ],\n \"soundex\": [\n \"string soundex(string str)\",\n \"Calculate the soundex key of a string\"\n ],\n \"spl_autoload\": [\n \"void spl_autoload(string class_name [, string file_extensions])\",\n \"Default implementation for __autoload()\"\n ],\n \"spl_autoload_call\": [\n \"void spl_autoload_call(string class_name)\",\n \"Try all registerd autoload function to load the requested class\"\n ],\n \"spl_autoload_extensions\": [\n \"string spl_autoload_extensions([string file_extensions])\",\n \"Register and return default file extensions for spl_autoload\"\n ],\n \"spl_autoload_functions\": [\n \"false|array spl_autoload_functions()\",\n \"Return all registered __autoload() functionns\"\n ],\n \"spl_autoload_register\": [\n \"bool spl_autoload_register([mixed autoload_function = \\\"spl_autoload\\\" [, throw = true [, prepend]]])\",\n \"Register given function as __autoload() implementation\"\n ],\n \"spl_autoload_unregister\": [\n \"bool spl_autoload_unregister(mixed autoload_function)\",\n \"Unregister given function as __autoload() implementation\"\n ],\n \"spl_classes\": [\n \"array spl_classes()\",\n \"Return an array containing the names of all clsses and interfaces defined in SPL\"\n ],\n \"spl_object_hash\": [\n \"string spl_object_hash(object obj)\",\n \"Return hash id for given object\"\n ],\n \"split\": [\n \"array split(string pattern, string string [, int limit])\",\n \"Split string into array by regular expression\"\n ],\n \"spliti\": [\n \"array spliti(string pattern, string string [, int limit])\",\n \"Split string into array by regular expression case-insensitive\"\n ],\n \"sprintf\": [\n \"string sprintf(string format [, mixed arg1 [, mixed ...]])\",\n \"Return a formatted string\"\n ],\n \"sql_regcase\": [\n \"string sql_regcase(string string)\",\n \"Make regular expression for case insensitive match\"\n ],\n \"sqlite_array_query\": [\n \"array sqlite_array_query(resource db, string query [ , int result_type [, bool decode_binary]])\",\n \"Executes a query against a given database and returns an array of arrays.\"\n ],\n \"sqlite_busy_timeout\": [\n \"void sqlite_busy_timeout(resource db, int ms)\",\n \"Set busy timeout duration. If ms <= 0, all busy handlers are disabled.\"\n ],\n \"sqlite_changes\": [\n \"int sqlite_changes(resource db)\",\n \"Returns the number of rows that were changed by the most recent SQL statement.\"\n ],\n \"sqlite_close\": [\n \"void sqlite_close(resource db)\",\n \"Closes an open sqlite database.\"\n ],\n \"sqlite_column\": [\n \"mixed sqlite_column(resource result, mixed index_or_name [, bool decode_binary])\",\n \"Fetches a column from the current row of a result set.\"\n ],\n \"sqlite_create_aggregate\": [\n \"bool sqlite_create_aggregate(resource db, string funcname, mixed step_func, mixed finalize_func[, long num_args])\",\n \"Registers an aggregate function for queries.\"\n ],\n \"sqlite_create_function\": [\n \"bool sqlite_create_function(resource db, string funcname, mixed callback[, long num_args])\",\n \"Registers a \\\"regular\\\" function for queries.\"\n ],\n \"sqlite_current\": [\n \"array sqlite_current(resource result [, int result_type [, bool decode_binary]])\",\n \"Fetches the current row from a result set as an array.\"\n ],\n \"sqlite_error_string\": [\n \"string sqlite_error_string(int error_code)\",\n \"Returns the textual description of an error code.\"\n ],\n \"sqlite_escape_string\": [\n \"string sqlite_escape_string(string item)\",\n \"Escapes a string for use as a query parameter.\"\n ],\n \"sqlite_exec\": [\n \"boolean sqlite_exec(string query, resource db[, string &error_message])\",\n \"Executes a result-less query against a given database\"\n ],\n \"sqlite_factory\": [\n \"object sqlite_factory(string filename [, int mode [, string &error_message]])\",\n \"Opens a SQLite database and creates an object for it. Will create the database if it does not exist.\"\n ],\n \"sqlite_fetch_all\": [\n \"array sqlite_fetch_all(resource result [, int result_type [, bool decode_binary]])\",\n \"Fetches all rows from a result set as an array of arrays.\"\n ],\n \"sqlite_fetch_array\": [\n \"array sqlite_fetch_array(resource result [, int result_type [, bool decode_binary]])\",\n \"Fetches the next row from a result set as an array.\"\n ],\n \"sqlite_fetch_column_types\": [\n \"resource sqlite_fetch_column_types(string table_name, resource db [, int result_type])\",\n \"Return an array of column types from a particular table.\"\n ],\n \"sqlite_fetch_object\": [\n \"object sqlite_fetch_object(resource result [, string class_name [, NULL|array ctor_params [, bool decode_binary]]])\",\n \"Fetches the next row from a result set as an object.\"\n ],\n \"sqlite_fetch_single\": [\n \"string sqlite_fetch_single(resource result [, bool decode_binary])\",\n \"Fetches the first column of a result set as a string.\"\n ],\n \"sqlite_field_name\": [\n \"string sqlite_field_name(resource result, int field_index)\",\n \"Returns the name of a particular field of a result set.\"\n ],\n \"sqlite_has_prev\": [\n \"bool sqlite_has_prev(resource result)\",\n \"* Returns whether a previous row is available.\"\n ],\n \"sqlite_key\": [\n \"int sqlite_key(resource result)\",\n \"Return the current row index of a buffered result.\"\n ],\n \"sqlite_last_error\": [\n \"int sqlite_last_error(resource db)\",\n \"Returns the error code of the last error for a database.\"\n ],\n \"sqlite_last_insert_rowid\": [\n \"int sqlite_last_insert_rowid(resource db)\",\n \"Returns the rowid of the most recently inserted row.\"\n ],\n \"sqlite_libencoding\": [\n \"string sqlite_libencoding()\",\n \"Returns the encoding (iso8859 or UTF-8) of the linked SQLite library.\"\n ],\n \"sqlite_libversion\": [\n \"string sqlite_libversion()\",\n \"Returns the version of the linked SQLite library.\"\n ],\n \"sqlite_next\": [\n \"bool sqlite_next(resource result)\",\n \"Seek to the next row number of a result set.\"\n ],\n \"sqlite_num_fields\": [\n \"int sqlite_num_fields(resource result)\",\n \"Returns the number of fields in a result set.\"\n ],\n \"sqlite_num_rows\": [\n \"int sqlite_num_rows(resource result)\",\n \"Returns the number of rows in a buffered result set.\"\n ],\n \"sqlite_open\": [\n \"resource sqlite_open(string filename [, int mode [, string &error_message]])\",\n \"Opens a SQLite database. Will create the database if it does not exist.\"\n ],\n \"sqlite_popen\": [\n \"resource sqlite_popen(string filename [, int mode [, string &error_message]])\",\n \"Opens a persistent handle to a SQLite database. Will create the database if it does not exist.\"\n ],\n \"sqlite_prev\": [\n \"bool sqlite_prev(resource result)\",\n \"* Seek to the previous row number of a result set.\"\n ],\n \"sqlite_query\": [\n \"resource sqlite_query(string query, resource db [, int result_type [, string &error_message]])\",\n \"Executes a query against a given database and returns a result handle.\"\n ],\n \"sqlite_rewind\": [\n \"bool sqlite_rewind(resource result)\",\n \"Seek to the first row number of a buffered result set.\"\n ],\n \"sqlite_seek\": [\n \"bool sqlite_seek(resource result, int row)\",\n \"Seek to a particular row number of a buffered result set.\"\n ],\n \"sqlite_single_query\": [\n \"array sqlite_single_query(resource db, string query [, bool first_row_only [, bool decode_binary]])\",\n \"Executes a query and returns either an array for one single column or the value of the first row.\"\n ],\n \"sqlite_udf_decode_binary\": [\n \"string sqlite_udf_decode_binary(string data)\",\n \"Decode binary encoding on a string parameter passed to an UDF.\"\n ],\n \"sqlite_udf_encode_binary\": [\n \"string sqlite_udf_encode_binary(string data)\",\n \"Apply binary encoding (if required) to a string to return from an UDF.\"\n ],\n \"sqlite_unbuffered_query\": [\n \"resource sqlite_unbuffered_query(string query, resource db [ , int result_type [, string &error_message]])\",\n \"Executes a query that does not prefetch and buffer all data.\"\n ],\n \"sqlite_valid\": [\n \"bool sqlite_valid(resource result)\",\n \"Returns whether more rows are available.\"\n ],\n \"sqrt\": [\n \"float sqrt(float number)\",\n \"Returns the square root of the number\"\n ],\n \"srand\": [\n \"void srand([int seed])\",\n \"Seeds random number generator\"\n ],\n \"sscanf\": [\n \"mixed sscanf(string str, string format [, string ...])\",\n \"Implements an ANSI C compatible sscanf\"\n ],\n \"stat\": [\n \"array stat(string filename)\",\n \"Give information about a file\"\n ],\n \"str_getcsv\": [\n \"array str_getcsv(string input[, string delimiter[, string enclosure[, string escape]]])\",\n \"Parse a CSV string into an array\"\n ],\n \"str_ireplace\": [\n \"mixed str_ireplace(mixed search, mixed replace, mixed subject [, int &replace_count])\",\n \"Replaces all occurrences of search in haystack with replace / case-insensitive\"\n ],\n \"str_pad\": [\n \"string str_pad(string input, int pad_length [, string pad_string [, int pad_type]])\",\n \"Returns input string padded on the left or right to specified length with pad_string\"\n ],\n \"str_repeat\": [\n \"string str_repeat(string input, int mult)\",\n \"Returns the input string repeat mult times\"\n ],\n \"str_replace\": [\n \"mixed str_replace(mixed search, mixed replace, mixed subject [, int &replace_count])\",\n \"Replaces all occurrences of search in haystack with replace\"\n ],\n \"str_rot13\": [\n \"string str_rot13(string str)\",\n \"Perform the rot13 transform on a string\"\n ],\n \"str_shuffle\": [\n \"void str_shuffle(string str)\",\n \"Shuffles string. One permutation of all possible is created\"\n ],\n \"str_split\": [\n \"array str_split(string str [, int split_length])\",\n \"Convert a string to an array. If split_length is specified, break the string down into chunks each split_length characters long.\"\n ],\n \"str_word_count\": [\n \"mixed str_word_count(string str, [int format [, string charlist]])\",\n \"Counts the number of words inside a string. If format of 1 is specified, then the function will return an array containing all the words found inside the string. If format of 2 is specified, then the function will return an associated array where the position of the word is the key and the word itself is the value. For the purpose of this function, 'word' is defined as a locale dependent string containing alphabetic characters, which also may contain, but not start with \\\"'\\\" and \\\"-\\\" characters.\"\n ],\n \"strcasecmp\": [\n \"int strcasecmp(string str1, string str2)\",\n \"Binary safe case-insensitive string comparison\"\n ],\n \"strchr\": [\n \"string strchr(string haystack, string needle)\",\n \"An alias for strstr\"\n ],\n \"strcmp\": [\n \"int strcmp(string str1, string str2)\",\n \"Binary safe string comparison\"\n ],\n \"strcoll\": [\n \"int strcoll(string str1, string str2)\",\n \"Compares two strings using the current locale\"\n ],\n \"strcspn\": [\n \"int strcspn(string str, string mask [, start [, len]])\",\n \"Finds length of initial segment consisting entirely of characters not found in mask. If start or/and length is provide works like strcspn(substr($s,$start,$len),$bad_chars)\"\n ],\n \"stream_bucket_append\": [\n \"void stream_bucket_append(resource brigade, resource bucket)\",\n \"Append bucket to brigade\"\n ],\n \"stream_bucket_make_writeable\": [\n \"object stream_bucket_make_writeable(resource brigade)\",\n \"Return a bucket object from the brigade for operating on\"\n ],\n \"stream_bucket_new\": [\n \"resource stream_bucket_new(resource stream, string buffer)\",\n \"Create a new bucket for use on the current stream\"\n ],\n \"stream_bucket_prepend\": [\n \"void stream_bucket_prepend(resource brigade, resource bucket)\",\n \"Prepend bucket to brigade\"\n ],\n \"stream_context_create\": [\n \"resource stream_context_create([array options[, array params]])\",\n \"Create a file context and optionally set parameters\"\n ],\n \"stream_context_get_default\": [\n \"resource stream_context_get_default([array options])\",\n \"Get a handle on the default file/stream context and optionally set parameters\"\n ],\n \"stream_context_get_options\": [\n \"array stream_context_get_options(resource context|resource stream)\",\n \"Retrieve options for a stream/wrapper/context\"\n ],\n \"stream_context_get_params\": [\n \"array stream_context_get_params(resource context|resource stream)\",\n \"Get parameters of a file context\"\n ],\n \"stream_context_set_default\": [\n \"resource stream_context_set_default(array options)\",\n \"Set default file/stream context, returns the context as a resource\"\n ],\n \"stream_context_set_option\": [\n \"bool stream_context_set_option(resource context|resource stream, string wrappername, string optionname, mixed value)\",\n \"Set an option for a wrapper\"\n ],\n \"stream_context_set_params\": [\n \"bool stream_context_set_params(resource context|resource stream, array options)\",\n \"Set parameters for a file context\"\n ],\n \"stream_copy_to_stream\": [\n \"long stream_copy_to_stream(resource source, resource dest [, long maxlen [, long pos]])\",\n \"Reads up to maxlen bytes from source stream and writes them to dest stream.\"\n ],\n \"stream_filter_append\": [\n \"resource stream_filter_append(resource stream, string filtername[, int read_write[, string filterparams]])\",\n \"Append a filter to a stream\"\n ],\n \"stream_filter_prepend\": [\n \"resource stream_filter_prepend(resource stream, string filtername[, int read_write[, string filterparams]])\",\n \"Prepend a filter to a stream\"\n ],\n \"stream_filter_register\": [\n \"bool stream_filter_register(string filtername, string classname)\",\n \"Registers a custom filter handler class\"\n ],\n \"stream_filter_remove\": [\n \"bool stream_filter_remove(resource stream_filter)\",\n \"Flushes any data in the filter's internal buffer, removes it from the chain, and frees the resource\"\n ],\n \"stream_get_contents\": [\n \"string stream_get_contents(resource source [, long maxlen [, long offset]])\",\n \"Reads all remaining bytes (or up to maxlen bytes) from a stream and returns them as a string.\"\n ],\n \"stream_get_filters\": [\n \"array stream_get_filters(void)\",\n \"Returns a list of registered filters\"\n ],\n \"stream_get_line\": [\n \"string stream_get_line(resource stream, int maxlen [, string ending])\",\n \"Read up to maxlen bytes from a stream or until the ending string is found\"\n ],\n \"stream_get_meta_data\": [\n \"array stream_get_meta_data(resource fp)\",\n \"Retrieves header/meta data from streams/file pointers\"\n ],\n \"stream_get_transports\": [\n \"array stream_get_transports()\",\n \"Retrieves list of registered socket transports\"\n ],\n \"stream_get_wrappers\": [\n \"array stream_get_wrappers()\",\n \"Retrieves list of registered stream wrappers\"\n ],\n \"stream_is_local\": [\n \"bool stream_is_local(resource stream|string url)\",\n \"\"\n ],\n \"stream_resolve_include_path\": [\n \"string stream_resolve_include_path(string filename)\",\n \"Determine what file will be opened by calls to fopen() with a relative path\"\n ],\n \"stream_select\": [\n \"int stream_select(array &read_streams, array &write_streams, array &except_streams, int tv_sec[, int tv_usec])\",\n \"Runs the select() system call on the sets of streams with a timeout specified by tv_sec and tv_usec\"\n ],\n \"stream_set_blocking\": [\n \"bool stream_set_blocking(resource socket, int mode)\",\n \"Set blocking/non-blocking mode on a socket or stream\"\n ],\n \"stream_set_timeout\": [\n \"bool stream_set_timeout(resource stream, int seconds [, int microseconds])\",\n \"Set timeout on stream read to seconds + microseonds\"\n ],\n \"stream_set_write_buffer\": [\n \"int stream_set_write_buffer(resource fp, int buffer)\",\n \"Set file write buffer\"\n ],\n \"stream_socket_accept\": [\n \"resource stream_socket_accept(resource serverstream, [ double timeout [, string &peername ]])\",\n \"Accept a client connection from a server socket\"\n ],\n \"stream_socket_client\": [\n \"resource stream_socket_client(string remoteaddress [, long &errcode [, string &errstring [, double timeout [, long flags [, resource context]]]]])\",\n \"Open a client connection to a remote address\"\n ],\n \"stream_socket_enable_crypto\": [\n \"int stream_socket_enable_crypto(resource stream, bool enable [, int cryptokind [, resource sessionstream]])\",\n \"Enable or disable a specific kind of crypto on the stream\"\n ],\n \"stream_socket_get_name\": [\n \"string stream_socket_get_name(resource stream, bool want_peer)\",\n \"Returns either the locally bound or remote name for a socket stream\"\n ],\n \"stream_socket_pair\": [\n \"array stream_socket_pair(int domain, int type, int protocol)\",\n \"Creates a pair of connected, indistinguishable socket streams\"\n ],\n \"stream_socket_recvfrom\": [\n \"string stream_socket_recvfrom(resource stream, long amount [, long flags [, string &remote_addr]])\",\n \"Receives data from a socket stream\"\n ],\n \"stream_socket_sendto\": [\n \"long stream_socket_sendto(resouce stream, string data [, long flags [, string target_addr]])\",\n \"Send data to a socket stream. If target_addr is specified it must be in dotted quad (or [ipv6]) format\"\n ],\n \"stream_socket_server\": [\n \"resource stream_socket_server(string localaddress [, long &errcode [, string &errstring [, long flags [, resource context]]]])\",\n \"Create a server socket bound to localaddress\"\n ],\n \"stream_socket_shutdown\": [\n \"int stream_socket_shutdown(resource stream, int how)\",\n \"causes all or part of a full-duplex connection on the socket associated with stream to be shut down. If how is SHUT_RD, further receptions will be disallowed. If how is SHUT_WR, further transmissions will be disallowed. If how is SHUT_RDWR, further receptions and transmissions will be disallowed.\"\n ],\n \"stream_supports_lock\": [\n \"bool stream_supports_lock(resource stream)\",\n \"Tells whether the stream supports locking through flock().\"\n ],\n \"stream_wrapper_register\": [\n \"bool stream_wrapper_register(string protocol, string classname[, integer flags])\",\n \"Registers a custom URL protocol handler class\"\n ],\n \"stream_wrapper_restore\": [\n \"bool stream_wrapper_restore(string protocol)\",\n \"Restore the original protocol handler, overriding if necessary\"\n ],\n \"stream_wrapper_unregister\": [\n \"bool stream_wrapper_unregister(string protocol)\",\n \"Unregister a wrapper for the life of the current request.\"\n ],\n \"strftime\": [\n \"string strftime(string format [, int timestamp])\",\n \"Format a local time/date according to locale settings\"\n ],\n \"strip_tags\": [\n \"string strip_tags(string str [, string allowable_tags])\",\n \"Strips HTML and PHP tags from a string\"\n ],\n \"stripcslashes\": [\n \"string stripcslashes(string str)\",\n \"Strips backslashes from a string. Uses C-style conventions\"\n ],\n \"stripos\": [\n \"int stripos(string haystack, string needle [, int offset])\",\n \"Finds position of first occurrence of a string within another, case insensitive\"\n ],\n \"stripslashes\": [\n \"string stripslashes(string str)\",\n \"Strips backslashes from a string\"\n ],\n \"stristr\": [\n \"string stristr(string haystack, string needle[, bool part])\",\n \"Finds first occurrence of a string within another, case insensitive\"\n ],\n \"strlen\": [\n \"int strlen(string str)\",\n \"Get string length\"\n ],\n \"strnatcasecmp\": [\n \"int strnatcasecmp(string s1, string s2)\",\n \"Returns the result of case-insensitive string comparison using 'natural' algorithm\"\n ],\n \"strnatcmp\": [\n \"int strnatcmp(string s1, string s2)\",\n \"Returns the result of string comparison using 'natural' algorithm\"\n ],\n \"strncasecmp\": [\n \"int strncasecmp(string str1, string str2, int len)\",\n \"Binary safe string comparison\"\n ],\n \"strncmp\": [\n \"int strncmp(string str1, string str2, int len)\",\n \"Binary safe string comparison\"\n ],\n \"strpbrk\": [\n \"array strpbrk(string haystack, string char_list)\",\n \"Search a string for any of a set of characters\"\n ],\n \"strpos\": [\n \"int strpos(string haystack, string needle [, int offset])\",\n \"Finds position of first occurrence of a string within another\"\n ],\n \"strptime\": [\n \"string strptime(string timestamp, string format)\",\n \"Parse a time/date generated with strftime()\"\n ],\n \"strrchr\": [\n \"string strrchr(string haystack, string needle)\",\n \"Finds the last occurrence of a character in a string within another\"\n ],\n \"strrev\": [\n \"string strrev(string str)\",\n \"Reverse a string\"\n ],\n \"strripos\": [\n \"int strripos(string haystack, string needle [, int offset])\",\n \"Finds position of last occurrence of a string within another string\"\n ],\n \"strrpos\": [\n \"int strrpos(string haystack, string needle [, int offset])\",\n \"Finds position of last occurrence of a string within another string\"\n ],\n \"strspn\": [\n \"int strspn(string str, string mask [, start [, len]])\",\n \"Finds length of initial segment consisting entirely of characters found in mask. If start or/and length is provided works like strspn(substr($s,$start,$len),$good_chars)\"\n ],\n \"strstr\": [\n \"string strstr(string haystack, string needle[, bool part])\",\n \"Finds first occurrence of a string within another\"\n ],\n \"strtok\": [\n \"string strtok([string str,] string token)\",\n \"Tokenize a string\"\n ],\n \"strtolower\": [\n \"string strtolower(string str)\",\n \"Makes a string lowercase\"\n ],\n \"strtotime\": [\n \"int strtotime(string time [, int now ])\",\n \"Convert string representation of date and time to a timestamp\"\n ],\n \"strtoupper\": [\n \"string strtoupper(string str)\",\n \"Makes a string uppercase\"\n ],\n \"strtr\": [\n \"string strtr(string str, string from[, string to])\",\n \"Translates characters in str using given translation tables\"\n ],\n \"strval\": [\n \"string strval(mixed var)\",\n \"Get the string value of a variable\"\n ],\n \"substr\": [\n \"string substr(string str, int start [, int length])\",\n \"Returns part of a string\"\n ],\n \"substr_compare\": [\n \"int substr_compare(string main_str, string str, int offset [, int length [, bool case_sensitivity]])\",\n \"Binary safe optionally case insensitive comparison of 2 strings from an offset, up to length characters\"\n ],\n \"substr_count\": [\n \"int substr_count(string haystack, string needle [, int offset [, int length]])\",\n \"Returns the number of times a substring occurs in the string\"\n ],\n \"substr_replace\": [\n \"mixed substr_replace(mixed str, mixed repl, mixed start [, mixed length])\",\n \"Replaces part of a string with another string\"\n ],\n \"sybase_affected_rows\": [\n \"int sybase_affected_rows([resource link_id])\",\n \"Get number of affected rows in last query\"\n ],\n \"sybase_close\": [\n \"bool sybase_close([resource link_id])\",\n \"Close Sybase connection\"\n ],\n \"sybase_connect\": [\n \"int sybase_connect([string host [, string user [, string password [, string charset [, string appname [, bool new]]]]]])\",\n \"Open Sybase server connection\"\n ],\n \"sybase_data_seek\": [\n \"bool sybase_data_seek(resource result, int offset)\",\n \"Move internal row pointer\"\n ],\n \"sybase_deadlock_retry_count\": [\n \"void sybase_deadlock_retry_count(int retry_count)\",\n \"Sets deadlock retry count\"\n ],\n \"sybase_fetch_array\": [\n \"array sybase_fetch_array(resource result)\",\n \"Fetch row as array\"\n ],\n \"sybase_fetch_assoc\": [\n \"array sybase_fetch_assoc(resource result)\",\n \"Fetch row as array without numberic indices\"\n ],\n \"sybase_fetch_field\": [\n \"object sybase_fetch_field(resource result [, int offset])\",\n \"Get field information\"\n ],\n \"sybase_fetch_object\": [\n \"object sybase_fetch_object(resource result [, mixed object])\",\n \"Fetch row as object\"\n ],\n \"sybase_fetch_row\": [\n \"array sybase_fetch_row(resource result)\",\n \"Get row as enumerated array\"\n ],\n \"sybase_field_seek\": [\n \"bool sybase_field_seek(resource result, int offset)\",\n \"Set field offset\"\n ],\n \"sybase_free_result\": [\n \"bool sybase_free_result(resource result)\",\n \"Free result memory\"\n ],\n \"sybase_get_last_message\": [\n \"string sybase_get_last_message(void)\",\n \"Returns the last message from server (over min_message_severity)\"\n ],\n \"sybase_min_client_severity\": [\n \"void sybase_min_client_severity(int severity)\",\n \"Sets minimum client severity\"\n ],\n \"sybase_min_server_severity\": [\n \"void sybase_min_server_severity(int severity)\",\n \"Sets minimum server severity\"\n ],\n \"sybase_num_fields\": [\n \"int sybase_num_fields(resource result)\",\n \"Get number of fields in result\"\n ],\n \"sybase_num_rows\": [\n \"int sybase_num_rows(resource result)\",\n \"Get number of rows in result\"\n ],\n \"sybase_pconnect\": [\n \"int sybase_pconnect([string host [, string user [, string password [, string charset [, string appname]]]]])\",\n \"Open persistent Sybase connection\"\n ],\n \"sybase_query\": [\n \"int sybase_query(string query [, resource link_id])\",\n \"Send Sybase query\"\n ],\n \"sybase_result\": [\n \"string sybase_result(resource result, int row, mixed field)\",\n \"Get result data\"\n ],\n \"sybase_select_db\": [\n \"bool sybase_select_db(string database [, resource link_id])\",\n \"Select Sybase database\"\n ],\n \"sybase_set_message_handler\": [\n \"bool sybase_set_message_handler(mixed error_func [, resource connection])\",\n \"Set the error handler, to be called when a server message is raised. If error_func is NULL the handler will be deleted\"\n ],\n \"sybase_unbuffered_query\": [\n \"int sybase_unbuffered_query(string query [, resource link_id])\",\n \"Send Sybase query\"\n ],\n \"symlink\": [\n \"int symlink(string target, string link)\",\n \"Create a symbolic link\"\n ],\n \"sys_get_temp_dir\": [\n \"string sys_get_temp_dir()\",\n \"Returns directory path used for temporary files\"\n ],\n \"sys_getloadavg\": [\n \"array sys_getloadavg()\",\n \"\"\n ],\n \"syslog\": [\n \"bool syslog(int priority, string message)\",\n \"Generate a system log message\"\n ],\n \"system\": [\n \"int system(string command [, int &return_value])\",\n \"Execute an external program and display output\"\n ],\n \"tan\": [\n \"float tan(float number)\",\n \"Returns the tangent of the number in radians\"\n ],\n \"tanh\": [\n \"float tanh(float number)\",\n \"Returns the hyperbolic tangent of the number, defined as sinh(number)/cosh(number)\"\n ],\n \"tempnam\": [\n \"string tempnam(string dir, string prefix)\",\n \"Create a unique filename in a directory\"\n ],\n \"textdomain\": [\n \"string textdomain(string domain)\",\n \"Set the textdomain to \\\"domain\\\". Returns the current domain\"\n ],\n \"tidy_access_count\": [\n \"int tidy_access_count()\",\n \"Returns the Number of Tidy accessibility warnings encountered for specified document.\"\n ],\n \"tidy_clean_repair\": [\n \"boolean tidy_clean_repair()\",\n \"Execute configured cleanup and repair operations on parsed markup\"\n ],\n \"tidy_config_count\": [\n \"int tidy_config_count()\",\n \"Returns the Number of Tidy configuration errors encountered for specified document.\"\n ],\n \"tidy_diagnose\": [\n \"boolean tidy_diagnose()\",\n \"Run configured diagnostics on parsed and repaired markup.\"\n ],\n \"tidy_error_count\": [\n \"int tidy_error_count()\",\n \"Returns the Number of Tidy errors encountered for specified document.\"\n ],\n \"tidy_get_body\": [\n \"TidyNode tidy_get_body(resource tidy)\",\n \"Returns a TidyNode Object starting from the tag of the tidy parse tree\"\n ],\n \"tidy_get_config\": [\n \"array tidy_get_config()\",\n \"Get current Tidy configuarion\"\n ],\n \"tidy_get_error_buffer\": [\n \"string tidy_get_error_buffer([boolean detailed])\",\n \"Return warnings and errors which occured parsing the specified document\"\n ],\n \"tidy_get_head\": [\n \"TidyNode tidy_get_head()\",\n \"Returns a TidyNode Object starting from the tag of the tidy parse tree\"\n ],\n \"tidy_get_html\": [\n \"TidyNode tidy_get_html()\",\n \"Returns a TidyNode Object starting from the tag of the tidy parse tree\"\n ],\n \"tidy_get_html_ver\": [\n \"int tidy_get_html_ver()\",\n \"Get the Detected HTML version for the specified document.\"\n ],\n \"tidy_get_opt_doc\": [\n \"string tidy_get_opt_doc(tidy resource, string optname)\",\n \"Returns the documentation for the given option name\"\n ],\n \"tidy_get_output\": [\n \"string tidy_get_output()\",\n \"Return a string representing the parsed tidy markup\"\n ],\n \"tidy_get_release\": [\n \"string tidy_get_release()\",\n \"Get release date (version) for Tidy library\"\n ],\n \"tidy_get_root\": [\n \"TidyNode tidy_get_root()\",\n \"Returns a TidyNode Object representing the root of the tidy parse tree\"\n ],\n \"tidy_get_status\": [\n \"int tidy_get_status()\",\n \"Get status of specfied document.\"\n ],\n \"tidy_getopt\": [\n \"mixed tidy_getopt(string option)\",\n \"Returns the value of the specified configuration option for the tidy document.\"\n ],\n \"tidy_is_xhtml\": [\n \"boolean tidy_is_xhtml()\",\n \"Indicates if the document is a XHTML document.\"\n ],\n \"tidy_is_xml\": [\n \"boolean tidy_is_xml()\",\n \"Indicates if the document is a generic (non HTML/XHTML) XML document.\"\n ],\n \"tidy_parse_file\": [\n \"boolean tidy_parse_file(string file [, mixed config_options [, string encoding [, bool use_include_path]]])\",\n \"Parse markup in file or URI\"\n ],\n \"tidy_parse_string\": [\n \"bool tidy_parse_string(string input [, mixed config_options [, string encoding]])\",\n \"Parse a document stored in a string\"\n ],\n \"tidy_repair_file\": [\n \"boolean tidy_repair_file(string filename [, mixed config_file [, string encoding [, bool use_include_path]]])\",\n \"Repair a file using an optionally provided configuration file\"\n ],\n \"tidy_repair_string\": [\n \"boolean tidy_repair_string(string data [, mixed config_file [, string encoding]])\",\n \"Repair a string using an optionally provided configuration file\"\n ],\n \"tidy_warning_count\": [\n \"int tidy_warning_count()\",\n \"Returns the Number of Tidy warnings encountered for specified document.\"\n ],\n \"time\": [\n \"int time(void)\",\n \"Return current UNIX timestamp\"\n ],\n \"time_nanosleep\": [\n \"mixed time_nanosleep(long seconds, long nanoseconds)\",\n \"Delay for a number of seconds and nano seconds\"\n ],\n \"time_sleep_until\": [\n \"mixed time_sleep_until(float timestamp)\",\n \"Make the script sleep until the specified time\"\n ],\n \"timezone_abbreviations_list\": [\n \"array timezone_abbreviations_list()\",\n \"Returns associative array containing dst, offset and the timezone name\"\n ],\n \"timezone_identifiers_list\": [\n \"array timezone_identifiers_list([long what[, string country]])\",\n \"Returns numerically index array with all timezone identifiers.\"\n ],\n \"timezone_location_get\": [\n \"array timezone_location_get()\",\n \"Returns location information for a timezone, including country code, latitude/longitude and comments\"\n ],\n \"timezone_name_from_abbr\": [\n \"string timezone_name_from_abbr(string abbr[, long gmtOffset[, long isdst]])\",\n \"Returns the timezone name from abbrevation\"\n ],\n \"timezone_name_get\": [\n \"string timezone_name_get(DateTimeZone object)\",\n \"Returns the name of the timezone.\"\n ],\n \"timezone_offset_get\": [\n \"long timezone_offset_get(DateTimeZone object, DateTime object)\",\n \"Returns the timezone offset.\"\n ],\n \"timezone_open\": [\n \"DateTimeZone timezone_open(string timezone)\",\n \"Returns new DateTimeZone object\"\n ],\n \"timezone_transitions_get\": [\n \"array timezone_transitions_get(DateTimeZone object [, long timestamp_begin [, long timestamp_end ]])\",\n \"Returns numerically indexed array containing associative array for all transitions in the specified range for the timezone.\"\n ],\n \"timezone_version_get\": [\n \"array timezone_version_get()\",\n \"Returns the Olson database version number.\"\n ],\n \"tmpfile\": [\n \"resource tmpfile(void)\",\n \"Create a temporary file that will be deleted automatically after use\"\n ],\n \"token_get_all\": [\n \"array token_get_all(string source)\",\n \"\"\n ],\n \"token_name\": [\n \"string token_name(int type)\",\n \"\"\n ],\n \"touch\": [\n \"bool touch(string filename [, int time [, int atime]])\",\n \"Set modification time of file\"\n ],\n \"trigger_error\": [\n \"void trigger_error(string messsage [, int error_type])\",\n \"Generates a user-level error/warning/notice message\"\n ],\n \"trim\": [\n \"string trim(string str [, string character_mask])\",\n \"Strips whitespace from the beginning and end of a string\"\n ],\n \"uasort\": [\n \"bool uasort(array array_arg, string cmp_function)\",\n \"Sort an array with a user-defined comparison function and maintain index association\"\n ],\n \"ucfirst\": [\n \"string ucfirst(string str)\",\n \"Make a string's first character lowercase\"\n ],\n \"ucwords\": [\n \"string ucwords(string str)\",\n \"Uppercase the first character of every word in a string\"\n ],\n \"uksort\": [\n \"bool uksort(array array_arg, string cmp_function)\",\n \"Sort an array by keys using a user-defined comparison function\"\n ],\n \"umask\": [\n \"int umask([int mask])\",\n \"Return or change the umask\"\n ],\n \"uniqid\": [\n \"string uniqid([string prefix [, bool more_entropy]])\",\n \"Generates a unique ID\"\n ],\n \"unixtojd\": [\n \"int unixtojd([int timestamp])\",\n \"Convert UNIX timestamp to Julian Day\"\n ],\n \"unlink\": [\n \"bool unlink(string filename[, context context])\",\n \"Delete a file\"\n ],\n \"unpack\": [\n \"array unpack(string format, string input)\",\n \"Unpack binary string into named array elements according to format argument\"\n ],\n \"unregister_tick_function\": [\n \"void unregister_tick_function(string function_name)\",\n \"Unregisters a tick callback function\"\n ],\n \"unserialize\": [\n \"mixed unserialize(string variable_representation)\",\n \"Takes a string representation of variable and recreates it\"\n ],\n \"unset\": [\n \"void unset (mixed var [, mixed var])\",\n \"Unset a given variable\"\n ],\n \"urldecode\": [\n \"string urldecode(string str)\",\n \"Decodes URL-encoded string\"\n ],\n \"urlencode\": [\n \"string urlencode(string str)\",\n \"URL-encodes string\"\n ],\n \"usleep\": [\n \"void usleep(int micro_seconds)\",\n \"Delay for a given number of micro seconds\"\n ],\n \"usort\": [\n \"bool usort(array array_arg, string cmp_function)\",\n \"Sort an array by values using a user-defined comparison function\"\n ],\n \"utf8_decode\": [\n \"string utf8_decode(string data)\",\n \"Converts a UTF-8 encoded string to ISO-8859-1\"\n ],\n \"utf8_encode\": [\n \"string utf8_encode(string data)\",\n \"Encodes an ISO-8859-1 string to UTF-8\"\n ],\n \"var_dump\": [\n \"void var_dump(mixed var)\",\n \"Dumps a string representation of variable to output\"\n ],\n \"var_export\": [\n \"mixed var_export(mixed var [, bool return])\",\n \"Outputs or returns a string representation of a variable\"\n ],\n \"variant_abs\": [\n \"mixed variant_abs(mixed left)\",\n \"Returns the absolute value of a variant\"\n ],\n \"variant_add\": [\n \"mixed variant_add(mixed left, mixed right)\",\n \"\\\"Adds\\\" two variant values together and returns the result\"\n ],\n \"variant_and\": [\n \"mixed variant_and(mixed left, mixed right)\",\n \"performs a bitwise AND operation between two variants and returns the result\"\n ],\n \"variant_cast\": [\n \"object variant_cast(object variant, int type)\",\n \"Convert a variant into a new variant object of another type\"\n ],\n \"variant_cat\": [\n \"mixed variant_cat(mixed left, mixed right)\",\n \"concatenates two variant values together and returns the result\"\n ],\n \"variant_cmp\": [\n \"int variant_cmp(mixed left, mixed right [, int lcid [, int flags]])\",\n \"Compares two variants\"\n ],\n \"variant_date_from_timestamp\": [\n \"object variant_date_from_timestamp(int timestamp)\",\n \"Returns a variant date representation of a unix timestamp\"\n ],\n \"variant_date_to_timestamp\": [\n \"int variant_date_to_timestamp(object variant)\",\n \"Converts a variant date/time value to unix timestamp\"\n ],\n \"variant_div\": [\n \"mixed variant_div(mixed left, mixed right)\",\n \"Returns the result from dividing two variants\"\n ],\n \"variant_eqv\": [\n \"mixed variant_eqv(mixed left, mixed right)\",\n \"Performs a bitwise equivalence on two variants\"\n ],\n \"variant_fix\": [\n \"mixed variant_fix(mixed left)\",\n \"Returns the integer part ? of a variant\"\n ],\n \"variant_get_type\": [\n \"int variant_get_type(object variant)\",\n \"Returns the VT_XXX type code for a variant\"\n ],\n \"variant_idiv\": [\n \"mixed variant_idiv(mixed left, mixed right)\",\n \"Converts variants to integers and then returns the result from dividing them\"\n ],\n \"variant_imp\": [\n \"mixed variant_imp(mixed left, mixed right)\",\n \"Performs a bitwise implication on two variants\"\n ],\n \"variant_int\": [\n \"mixed variant_int(mixed left)\",\n \"Returns the integer portion of a variant\"\n ],\n \"variant_mod\": [\n \"mixed variant_mod(mixed left, mixed right)\",\n \"Divides two variants and returns only the remainder\"\n ],\n \"variant_mul\": [\n \"mixed variant_mul(mixed left, mixed right)\",\n \"multiplies the values of the two variants and returns the result\"\n ],\n \"variant_neg\": [\n \"mixed variant_neg(mixed left)\",\n \"Performs logical negation on a variant\"\n ],\n \"variant_not\": [\n \"mixed variant_not(mixed left)\",\n \"Performs bitwise not negation on a variant\"\n ],\n \"variant_or\": [\n \"mixed variant_or(mixed left, mixed right)\",\n \"Performs a logical disjunction on two variants\"\n ],\n \"variant_pow\": [\n \"mixed variant_pow(mixed left, mixed right)\",\n \"Returns the result of performing the power function with two variants\"\n ],\n \"variant_round\": [\n \"mixed variant_round(mixed left, int decimals)\",\n \"Rounds a variant to the specified number of decimal places\"\n ],\n \"variant_set\": [\n \"void variant_set(object variant, mixed value)\",\n \"Assigns a new value for a variant object\"\n ],\n \"variant_set_type\": [\n \"void variant_set_type(object variant, int type)\",\n \"Convert a variant into another type. Variant is modified \\\"in-place\\\"\"\n ],\n \"variant_sub\": [\n \"mixed variant_sub(mixed left, mixed right)\",\n \"subtracts the value of the right variant from the left variant value and returns the result\"\n ],\n \"variant_xor\": [\n \"mixed variant_xor(mixed left, mixed right)\",\n \"Performs a logical exclusion on two variants\"\n ],\n \"version_compare\": [\n \"int version_compare(string ver1, string ver2 [, string oper])\",\n \"Compares two \\\"PHP-standardized\\\" version number strings\"\n ],\n \"vfprintf\": [\n \"int vfprintf(resource stream, string format, array args)\",\n \"Output a formatted string into a stream\"\n ],\n \"virtual\": [\n \"bool virtual(string filename)\",\n \"Perform an Apache sub-request\"\n ],\n \"vprintf\": [\n \"int vprintf(string format, array args)\",\n \"Output a formatted string\"\n ],\n \"vsprintf\": [\n \"string vsprintf(string format, array args)\",\n \"Return a formatted string\"\n ],\n \"wddx_add_vars\": [\n \"int wddx_add_vars(resource packet_id, mixed var_names [, mixed ...])\",\n \"Serializes given variables and adds them to packet given by packet_id\"\n ],\n \"wddx_deserialize\": [\n \"mixed wddx_deserialize(mixed packet)\",\n \"Deserializes given packet and returns a PHP value\"\n ],\n \"wddx_packet_end\": [\n \"string wddx_packet_end(resource packet_id)\",\n \"Ends specified WDDX packet and returns the string containing the packet\"\n ],\n \"wddx_packet_start\": [\n \"resource wddx_packet_start([string comment])\",\n \"Starts a WDDX packet with optional comment and returns the packet id\"\n ],\n \"wddx_serialize_value\": [\n \"string wddx_serialize_value(mixed var [, string comment])\",\n \"Creates a new packet and serializes the given value\"\n ],\n \"wddx_serialize_vars\": [\n \"string wddx_serialize_vars(mixed var_name [, mixed ...])\",\n \"Creates a new packet and serializes given variables into a struct\"\n ],\n \"wordwrap\": [\n \"string wordwrap(string str [, int width [, string break [, boolean cut]]])\",\n \"Wraps buffer to selected number of characters using string break char\"\n ],\n \"xml_error_string\": [\n \"string xml_error_string(int code)\",\n \"Get XML parser error string\"\n ],\n \"xml_get_current_byte_index\": [\n \"int xml_get_current_byte_index(resource parser)\",\n \"Get current byte index for an XML parser\"\n ],\n \"xml_get_current_column_number\": [\n \"int xml_get_current_column_number(resource parser)\",\n \"Get current column number for an XML parser\"\n ],\n \"xml_get_current_line_number\": [\n \"int xml_get_current_line_number(resource parser)\",\n \"Get current line number for an XML parser\"\n ],\n \"xml_get_error_code\": [\n \"int xml_get_error_code(resource parser)\",\n \"Get XML parser error code\"\n ],\n \"xml_parse\": [\n \"int xml_parse(resource parser, string data [, int isFinal])\",\n \"Start parsing an XML document\"\n ],\n \"xml_parse_into_struct\": [\n \"int xml_parse_into_struct(resource parser, string data, array &values [, array &index ])\",\n \"Parsing a XML document\"\n ],\n \"xml_parser_create\": [\n \"resource xml_parser_create([string encoding])\",\n \"Create an XML parser\"\n ],\n \"xml_parser_create_ns\": [\n \"resource xml_parser_create_ns([string encoding [, string sep]])\",\n \"Create an XML parser\"\n ],\n \"xml_parser_free\": [\n \"int xml_parser_free(resource parser)\",\n \"Free an XML parser\"\n ],\n \"xml_parser_get_option\": [\n \"int xml_parser_get_option(resource parser, int option)\",\n \"Get options from an XML parser\"\n ],\n \"xml_parser_set_option\": [\n \"int xml_parser_set_option(resource parser, int option, mixed value)\",\n \"Set options in an XML parser\"\n ],\n \"xml_set_character_data_handler\": [\n \"int xml_set_character_data_handler(resource parser, string hdl)\",\n \"Set up character data handler\"\n ],\n \"xml_set_default_handler\": [\n \"int xml_set_default_handler(resource parser, string hdl)\",\n \"Set up default handler\"\n ],\n \"xml_set_element_handler\": [\n \"int xml_set_element_handler(resource parser, string shdl, string ehdl)\",\n \"Set up start and end element handlers\"\n ],\n \"xml_set_end_namespace_decl_handler\": [\n \"int xml_set_end_namespace_decl_handler(resource parser, string hdl)\",\n \"Set up character data handler\"\n ],\n \"xml_set_external_entity_ref_handler\": [\n \"int xml_set_external_entity_ref_handler(resource parser, string hdl)\",\n \"Set up external entity reference handler\"\n ],\n \"xml_set_notation_decl_handler\": [\n \"int xml_set_notation_decl_handler(resource parser, string hdl)\",\n \"Set up notation declaration handler\"\n ],\n \"xml_set_object\": [\n \"int xml_set_object(resource parser, object &obj)\",\n \"Set up object which should be used for callbacks\"\n ],\n \"xml_set_processing_instruction_handler\": [\n \"int xml_set_processing_instruction_handler(resource parser, string hdl)\",\n \"Set up processing instruction (PI) handler\"\n ],\n \"xml_set_start_namespace_decl_handler\": [\n \"int xml_set_start_namespace_decl_handler(resource parser, string hdl)\",\n \"Set up character data handler\"\n ],\n \"xml_set_unparsed_entity_decl_handler\": [\n \"int xml_set_unparsed_entity_decl_handler(resource parser, string hdl)\",\n \"Set up unparsed entity declaration handler\"\n ],\n \"xmlrpc_decode\": [\n \"array xmlrpc_decode(string xml [, string encoding])\",\n \"Decodes XML into native PHP types\"\n ],\n \"xmlrpc_decode_request\": [\n \"array xmlrpc_decode_request(string xml, string& method [, string encoding])\",\n \"Decodes XML into native PHP types\"\n ],\n \"xmlrpc_encode\": [\n \"string xmlrpc_encode(mixed value)\",\n \"Generates XML for a PHP value\"\n ],\n \"xmlrpc_encode_request\": [\n \"string xmlrpc_encode_request(string method, mixed params [, array output_options])\",\n \"Generates XML for a method request\"\n ],\n \"xmlrpc_get_type\": [\n \"string xmlrpc_get_type(mixed value)\",\n \"Gets xmlrpc type for a PHP value. Especially useful for base64 and datetime strings\"\n ],\n \"xmlrpc_is_fault\": [\n \"bool xmlrpc_is_fault(array)\",\n \"Determines if an array value represents an XMLRPC fault.\"\n ],\n \"xmlrpc_parse_method_descriptions\": [\n \"array xmlrpc_parse_method_descriptions(string xml)\",\n \"Decodes XML into a list of method descriptions\"\n ],\n \"xmlrpc_server_add_introspection_data\": [\n \"int xmlrpc_server_add_introspection_data(resource server, array desc)\",\n \"Adds introspection documentation\"\n ],\n \"xmlrpc_server_call_method\": [\n \"mixed xmlrpc_server_call_method(resource server, string xml, mixed user_data [, array output_options])\",\n \"Parses XML requests and call methods\"\n ],\n \"xmlrpc_server_create\": [\n \"resource xmlrpc_server_create(void)\",\n \"Creates an xmlrpc server\"\n ],\n \"xmlrpc_server_destroy\": [\n \"int xmlrpc_server_destroy(resource server)\",\n \"Destroys server resources\"\n ],\n \"xmlrpc_server_register_introspection_callback\": [\n \"bool xmlrpc_server_register_introspection_callback(resource server, string function)\",\n \"Register a PHP function to generate documentation\"\n ],\n \"xmlrpc_server_register_method\": [\n \"bool xmlrpc_server_register_method(resource server, string method_name, string function)\",\n \"Register a PHP function to handle method matching method_name\"\n ],\n \"xmlrpc_set_type\": [\n \"bool xmlrpc_set_type(string value, string type)\",\n \"Sets xmlrpc type, base64 or datetime, for a PHP string value\"\n ],\n \"xmlwriter_end_attribute\": [\n \"bool xmlwriter_end_attribute(resource xmlwriter)\",\n \"End attribute - returns FALSE on error\"\n ],\n \"xmlwriter_end_cdata\": [\n \"bool xmlwriter_end_cdata(resource xmlwriter)\",\n \"End current CDATA - returns FALSE on error\"\n ],\n \"xmlwriter_end_comment\": [\n \"bool xmlwriter_end_comment(resource xmlwriter)\",\n \"Create end comment - returns FALSE on error\"\n ],\n \"xmlwriter_end_document\": [\n \"bool xmlwriter_end_document(resource xmlwriter)\",\n \"End current document - returns FALSE on error\"\n ],\n \"xmlwriter_end_dtd\": [\n \"bool xmlwriter_end_dtd(resource xmlwriter)\",\n \"End current DTD - returns FALSE on error\"\n ],\n \"xmlwriter_end_dtd_attlist\": [\n \"bool xmlwriter_end_dtd_attlist(resource xmlwriter)\",\n \"End current DTD AttList - returns FALSE on error\"\n ],\n \"xmlwriter_end_dtd_element\": [\n \"bool xmlwriter_end_dtd_element(resource xmlwriter)\",\n \"End current DTD element - returns FALSE on error\"\n ],\n \"xmlwriter_end_dtd_entity\": [\n \"bool xmlwriter_end_dtd_entity(resource xmlwriter)\",\n \"End current DTD Entity - returns FALSE on error\"\n ],\n \"xmlwriter_end_element\": [\n \"bool xmlwriter_end_element(resource xmlwriter)\",\n \"End current element - returns FALSE on error\"\n ],\n \"xmlwriter_end_pi\": [\n \"bool xmlwriter_end_pi(resource xmlwriter)\",\n \"End current PI - returns FALSE on error\"\n ],\n \"xmlwriter_flush\": [\n \"mixed xmlwriter_flush(resource xmlwriter [,bool empty])\",\n \"Output current buffer\"\n ],\n \"xmlwriter_full_end_element\": [\n \"bool xmlwriter_full_end_element(resource xmlwriter)\",\n \"End current element - returns FALSE on error\"\n ],\n \"xmlwriter_open_memory\": [\n \"resource xmlwriter_open_memory()\",\n \"Create new xmlwriter using memory for string output\"\n ],\n \"xmlwriter_open_uri\": [\n \"resource xmlwriter_open_uri(resource xmlwriter, string source)\",\n \"Create new xmlwriter using source uri for output\"\n ],\n \"xmlwriter_output_memory\": [\n \"string xmlwriter_output_memory(resource xmlwriter [,bool flush])\",\n \"Output current buffer as string\"\n ],\n \"xmlwriter_set_indent\": [\n \"bool xmlwriter_set_indent(resource xmlwriter, bool indent)\",\n \"Toggle indentation on/off - returns FALSE on error\"\n ],\n \"xmlwriter_set_indent_string\": [\n \"bool xmlwriter_set_indent_string(resource xmlwriter, string indentString)\",\n \"Set string used for indenting - returns FALSE on error\"\n ],\n \"xmlwriter_start_attribute\": [\n \"bool xmlwriter_start_attribute(resource xmlwriter, string name)\",\n \"Create start attribute - returns FALSE on error\"\n ],\n \"xmlwriter_start_attribute_ns\": [\n \"bool xmlwriter_start_attribute_ns(resource xmlwriter, string prefix, string name, string uri)\",\n \"Create start namespaced attribute - returns FALSE on error\"\n ],\n \"xmlwriter_start_cdata\": [\n \"bool xmlwriter_start_cdata(resource xmlwriter)\",\n \"Create start CDATA tag - returns FALSE on error\"\n ],\n \"xmlwriter_start_comment\": [\n \"bool xmlwriter_start_comment(resource xmlwriter)\",\n \"Create start comment - returns FALSE on error\"\n ],\n \"xmlwriter_start_document\": [\n \"bool xmlwriter_start_document(resource xmlwriter, string version, string encoding, string standalone)\",\n \"Create document tag - returns FALSE on error\"\n ],\n \"xmlwriter_start_dtd\": [\n \"bool xmlwriter_start_dtd(resource xmlwriter, string name, string pubid, string sysid)\",\n \"Create start DTD tag - returns FALSE on error\"\n ],\n \"xmlwriter_start_dtd_attlist\": [\n \"bool xmlwriter_start_dtd_attlist(resource xmlwriter, string name)\",\n \"Create start DTD AttList - returns FALSE on error\"\n ],\n \"xmlwriter_start_dtd_element\": [\n \"bool xmlwriter_start_dtd_element(resource xmlwriter, string name)\",\n \"Create start DTD element - returns FALSE on error\"\n ],\n \"xmlwriter_start_dtd_entity\": [\n \"bool xmlwriter_start_dtd_entity(resource xmlwriter, string name, bool isparam)\",\n \"Create start DTD Entity - returns FALSE on error\"\n ],\n \"xmlwriter_start_element\": [\n \"bool xmlwriter_start_element(resource xmlwriter, string name)\",\n \"Create start element tag - returns FALSE on error\"\n ],\n \"xmlwriter_start_element_ns\": [\n \"bool xmlwriter_start_element_ns(resource xmlwriter, string prefix, string name, string uri)\",\n \"Create start namespaced element tag - returns FALSE on error\"\n ],\n \"xmlwriter_start_pi\": [\n \"bool xmlwriter_start_pi(resource xmlwriter, string target)\",\n \"Create start PI tag - returns FALSE on error\"\n ],\n \"xmlwriter_text\": [\n \"bool xmlwriter_text(resource xmlwriter, string content)\",\n \"Write text - returns FALSE on error\"\n ],\n \"xmlwriter_write_attribute\": [\n \"bool xmlwriter_write_attribute(resource xmlwriter, string name, string content)\",\n \"Write full attribute - returns FALSE on error\"\n ],\n \"xmlwriter_write_attribute_ns\": [\n \"bool xmlwriter_write_attribute_ns(resource xmlwriter, string prefix, string name, string uri, string content)\",\n \"Write full namespaced attribute - returns FALSE on error\"\n ],\n \"xmlwriter_write_cdata\": [\n \"bool xmlwriter_write_cdata(resource xmlwriter, string content)\",\n \"Write full CDATA tag - returns FALSE on error\"\n ],\n \"xmlwriter_write_comment\": [\n \"bool xmlwriter_write_comment(resource xmlwriter, string content)\",\n \"Write full comment tag - returns FALSE on error\"\n ],\n \"xmlwriter_write_dtd\": [\n \"bool xmlwriter_write_dtd(resource xmlwriter, string name, string pubid, string sysid, string subset)\",\n \"Write full DTD tag - returns FALSE on error\"\n ],\n \"xmlwriter_write_dtd_attlist\": [\n \"bool xmlwriter_write_dtd_attlist(resource xmlwriter, string name, string content)\",\n \"Write full DTD AttList tag - returns FALSE on error\"\n ],\n \"xmlwriter_write_dtd_element\": [\n \"bool xmlwriter_write_dtd_element(resource xmlwriter, string name, string content)\",\n \"Write full DTD element tag - returns FALSE on error\"\n ],\n \"xmlwriter_write_dtd_entity\": [\n \"bool xmlwriter_write_dtd_entity(resource xmlwriter, string name, string content [, int pe [, string pubid [, string sysid [, string ndataid]]]])\",\n \"Write full DTD Entity tag - returns FALSE on error\"\n ],\n \"xmlwriter_write_element\": [\n \"bool xmlwriter_write_element(resource xmlwriter, string name[, string content])\",\n \"Write full element tag - returns FALSE on error\"\n ],\n \"xmlwriter_write_element_ns\": [\n \"bool xmlwriter_write_element_ns(resource xmlwriter, string prefix, string name, string uri[, string content])\",\n \"Write full namesapced element tag - returns FALSE on error\"\n ],\n \"xmlwriter_write_pi\": [\n \"bool xmlwriter_write_pi(resource xmlwriter, string target, string content)\",\n \"Write full PI tag - returns FALSE on error\"\n ],\n \"xmlwriter_write_raw\": [\n \"bool xmlwriter_write_raw(resource xmlwriter, string content)\",\n \"Write text - returns FALSE on error\"\n ],\n \"xsl_xsltprocessor_get_parameter\": [\n \"string xsl_xsltprocessor_get_parameter(string namespace, string name);\",\n \"\"\n ],\n \"xsl_xsltprocessor_has_exslt_support\": [\n \"bool xsl_xsltprocessor_has_exslt_support();\",\n \"\"\n ],\n \"xsl_xsltprocessor_import_stylesheet\": [\n \"void xsl_xsltprocessor_import_stylesheet(domdocument doc);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html# Since:\"\n ],\n \"xsl_xsltprocessor_register_php_functions\": [\n \"void xsl_xsltprocessor_register_php_functions([mixed $restrict]);\",\n \"\"\n ],\n \"xsl_xsltprocessor_remove_parameter\": [\n \"bool xsl_xsltprocessor_remove_parameter(string namespace, string name);\",\n \"\"\n ],\n \"xsl_xsltprocessor_set_parameter\": [\n \"bool xsl_xsltprocessor_set_parameter(string namespace, mixed name [, string value]);\",\n \"\"\n ],\n \"xsl_xsltprocessor_set_profiling\": [\n \"bool xsl_xsltprocessor_set_profiling(string filename) */\",\n \"PHP_FUNCTION(xsl_xsltprocessor_set_profiling) { zval *id; xsl_object *intern; char *filename = NULL; int filename_len; DOM_GET_THIS(id); if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS() TSRMLS_CC, \\\"s!\\\", &filename, &filename_len) == SUCCESS) { intern = (xsl_object *)zend_object_store_get_object(id TSRMLS_CC); if (intern->profiling) { efree(intern->profiling); } if (filename != NULL) { intern->profiling = estrndup(filename,filename_len); } else { intern->profiling = NULL; } RETURN_TRUE; } else { WRONG_PARAM_COUNT; } } /* }}} end xsl_xsltprocessor_set_profiling\"\n ],\n \"xsl_xsltprocessor_transform_to_doc\": [\n \"domdocument xsl_xsltprocessor_transform_to_doc(domnode doc);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html# Since:\"\n ],\n \"xsl_xsltprocessor_transform_to_uri\": [\n \"int xsl_xsltprocessor_transform_to_uri(domdocument doc, string uri);\",\n \"\"\n ],\n \"xsl_xsltprocessor_transform_to_xml\": [\n \"string xsl_xsltprocessor_transform_to_xml(domdocument doc);\",\n \"\"\n ],\n \"zend_logo_guid\": [\n \"string zend_logo_guid(void)\",\n \"Return the special ID used to request the Zend logo in phpinfo screens\"\n ],\n \"zend_version\": [\n \"string zend_version(void)\",\n \"Get the version of the Zend Engine\"\n ],\n \"zip_close\": [\n \"void zip_close(resource zip)\",\n \"Close a Zip archive\"\n ],\n \"zip_entry_close\": [\n \"void zip_entry_close(resource zip_ent)\",\n \"Close a zip entry\"\n ],\n \"zip_entry_compressedsize\": [\n \"int zip_entry_compressedsize(resource zip_entry)\",\n \"Return the compressed size of a ZZip entry\"\n ],\n \"zip_entry_compressionmethod\": [\n \"string zip_entry_compressionmethod(resource zip_entry)\",\n \"Return a string containing the compression method used on a particular entry\"\n ],\n \"zip_entry_filesize\": [\n \"int zip_entry_filesize(resource zip_entry)\",\n \"Return the actual filesize of a ZZip entry\"\n ],\n \"zip_entry_name\": [\n \"string zip_entry_name(resource zip_entry)\",\n \"Return the name given a ZZip entry\"\n ],\n \"zip_entry_open\": [\n \"bool zip_entry_open(resource zip_dp, resource zip_entry [, string mode])\",\n \"Open a Zip File, pointed by the resource entry\"\n ],\n \"zip_entry_read\": [\n \"mixed zip_entry_read(resource zip_entry [, int len])\",\n \"Read from an open directory entry\"\n ],\n \"zip_open\": [\n \"resource zip_open(string filename)\",\n \"Create new zip using source uri for output\"\n ],\n \"zip_read\": [\n \"resource zip_read(resource zip)\",\n \"Returns the next file in the archive\"\n ],\n \"zlib_get_coding_type\": [\n \"string zlib_get_coding_type(void)\",\n \"Returns the coding type used for output compression\"\n ]\n};\n\nvar variableMap = {\n \"$_COOKIE\": {\n type: \"array\"\n },\n \"$_ENV\": {\n type: \"array\"\n },\n \"$_FILES\": {\n type: \"array\"\n },\n \"$_GET\": {\n type: \"array\"\n },\n \"$_POST\": {\n type: \"array\"\n },\n \"$_REQUEST\": {\n type: \"array\"\n },\n \"$_SERVER\": {\n type: \"array\",\n value: {\n \"DOCUMENT_ROOT\": 1,\n \"GATEWAY_INTERFACE\": 1,\n \"HTTP_ACCEPT\": 1,\n \"HTTP_ACCEPT_CHARSET\": 1,\n \"HTTP_ACCEPT_ENCODING\": 1 ,\n \"HTTP_ACCEPT_LANGUAGE\": 1,\n \"HTTP_CONNECTION\": 1,\n \"HTTP_HOST\": 1,\n \"HTTP_REFERER\": 1,\n \"HTTP_USER_AGENT\": 1,\n \"PATH_TRANSLATED\": 1,\n \"PHP_SELF\": 1,\n \"QUERY_STRING\": 1,\n \"REMOTE_ADDR\": 1,\n \"REMOTE_PORT\": 1,\n \"REQUEST_METHOD\": 1,\n \"REQUEST_URI\": 1,\n \"SCRIPT_FILENAME\": 1,\n \"SCRIPT_NAME\": 1,\n \"SERVER_ADMIN\": 1,\n \"SERVER_NAME\": 1,\n \"SERVER_PORT\": 1,\n \"SERVER_PROTOCOL\": 1,\n \"SERVER_SIGNATURE\": 1,\n \"SERVER_SOFTWARE\": 1\n }\n },\n \"$_SESSION\": {\n type: \"array\"\n },\n \"$GLOBALS\": {\n type: \"array\"\n }\n};\n\nfunction is(token, type) {\n return token.type.lastIndexOf(type) > -1;\n}\n\nvar PhpCompletions = function() {\n\n};\n\n(function() {\n\n this.getCompletions = function(state, session, pos, prefix) {\n var token = session.getTokenAt(pos.row, pos.column);\n\n if (!token)\n return [];\n \n if (token.type==='support.php_tag' && token.value===' 0) {\n var prevToken = session.getTokenAt(pos.row, token.start);\n if (prevToken.type==='support.php_tag') {\n return this.getTagCompletions(state, session, pos, prefix);\n }\n }\n return this.getFunctionCompletions(state, session, pos, prefix);\n }\n if (is(token, \"variable\"))\n return this.getVariableCompletions(state, session, pos, prefix);\n var line = session.getLine(pos.row).substr(0, pos.column);\n if (token.type==='string' && /(\\$[\\w]*)\\[[\"']([^'\"]*)$/i.test(line))\n return this.getArrayKeyCompletions(state, session, pos, prefix);\n\n return [];\n };\n \n this.getTagCompletions = function(state, session, pos, prefix) {\n return [{\n caption: 'php',\n value: 'php',\n meta: \"php tag\",\n score: 1000000\n }, {\n caption: '=',\n value: '=',\n meta: \"php tag\",\n score: 1000000\n }];\n };\n\n this.getFunctionCompletions = function(state, session, pos, prefix) {\n var functions = Object.keys(functionMap);\n return functions.map(function(func){\n return {\n caption: func,\n snippet: func + '($0)',\n meta: \"php function\",\n score: 1000000,\n docHTML: functionMap[func][1]\n };\n });\n };\n\n this.getVariableCompletions = function(state, session, pos, prefix) {\n var variables = Object.keys(variableMap);\n return variables.map(function(variable){\n return {\n caption: variable,\n value: variable,\n meta: \"php variable\",\n score: 1000000\n };\n });\n };\n\n this.getArrayKeyCompletions = function(state, session, pos, prefix) {\n var line = session.getLine(pos.row).substr(0, pos.column);\n var variable = line.match(/(\\$[\\w]*)\\[[\"']([^'\"]*)$/i)[1];\n\n if (!variableMap[variable]) {\n return [];\n }\n\n var keys = [];\n if (variableMap[variable].type==='array' && variableMap[variable].value)\n keys = Object.keys(variableMap[variable].value);\n\n return keys.map(function(key) {\n return {\n caption: key,\n value: key,\n meta: \"php array key\",\n score: 1000000\n };\n });\n };\n\n}).call(PhpCompletions.prototype);\n\nexports.PhpCompletions = PhpCompletions;\n});\n\nace.define(\"ace/mode/folding/cstyle\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/range\",\"ace/mode/folding/fold_mode\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Range = require(\"../../range\").Range;\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function(commentRegex) {\n if (commentRegex) {\n this.foldingStartMarker = new RegExp(\n this.foldingStartMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.start)\n );\n this.foldingStopMarker = new RegExp(\n this.foldingStopMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.end)\n );\n }\n};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n \n this.foldingStartMarker = /([\\{\\[\\(])[^\\}\\]\\)]*$|^\\s*(\\/\\*)/;\n this.foldingStopMarker = /^[^\\[\\{\\(]*([\\}\\]\\)])|^[\\s\\*]*(\\*\\/)/;\n this.singleLineBlockCommentRe= /^\\s*(\\/\\*).*\\*\\/\\s*$/;\n this.tripleStarBlockCommentRe = /^\\s*(\\/\\*\\*\\*).*\\*\\/\\s*$/;\n this.startRegionRe = /^\\s*(\\/\\*|\\/\\/)#?region\\b/;\n this._getFoldWidgetBase = this.getFoldWidget;\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n \n if (this.singleLineBlockCommentRe.test(line)) {\n if (!this.startRegionRe.test(line) && !this.tripleStarBlockCommentRe.test(line))\n return \"\";\n }\n \n var fw = this._getFoldWidgetBase(session, foldStyle, row);\n \n if (!fw && this.startRegionRe.test(line))\n return \"start\"; // lineCommentRegionStart\n \n return fw;\n };\n\n this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {\n var line = session.getLine(row);\n \n if (this.startRegionRe.test(line))\n return this.getCommentRegionBlock(session, line, row);\n \n var match = line.match(this.foldingStartMarker);\n if (match) {\n var i = match.index;\n\n if (match[1])\n return this.openingBracketBlock(session, match[1], row, i);\n \n var range = session.getCommentFoldRange(row, i + match[0].length, 1);\n \n if (range && !range.isMultiLine()) {\n if (forceMultiline) {\n range = this.getSectionRange(session, row);\n } else if (foldStyle != \"all\")\n range = null;\n }\n \n return range;\n }\n\n if (foldStyle === \"markbegin\")\n return;\n\n var match = line.match(this.foldingStopMarker);\n if (match) {\n var i = match.index + match[0].length;\n\n if (match[1])\n return this.closingBracketBlock(session, match[1], row, i);\n\n return session.getCommentFoldRange(row, i, -1);\n }\n };\n \n this.getSectionRange = function(session, row) {\n var line = session.getLine(row);\n var startIndent = line.search(/\\S/);\n var startRow = row;\n var startColumn = line.length;\n row = row + 1;\n var endRow = row;\n var maxRow = session.getLength();\n while (++row < maxRow) {\n line = session.getLine(row);\n var indent = line.search(/\\S/);\n if (indent === -1)\n continue;\n if (startIndent > indent)\n break;\n var subRange = this.getFoldWidgetRange(session, \"all\", row);\n \n if (subRange) {\n if (subRange.start.row <= startRow) {\n break;\n } else if (subRange.isMultiLine()) {\n row = subRange.end.row;\n } else if (startIndent == indent) {\n break;\n }\n }\n endRow = row;\n }\n \n return new Range(startRow, startColumn, endRow, session.getLine(endRow).length);\n };\n this.getCommentRegionBlock = function(session, line, row) {\n var startColumn = line.search(/\\s*$/);\n var maxRow = session.getLength();\n var startRow = row;\n \n var re = /^\\s*(?:\\/\\*|\\/\\/|--)#?(end)?region\\b/;\n var depth = 1;\n while (++row < maxRow) {\n line = session.getLine(row);\n var m = re.exec(line);\n if (!m) continue;\n if (m[1]) depth--;\n else depth++;\n\n if (!depth) break;\n }\n\n var endRow = row;\n if (endRow > startRow) {\n return new Range(startRow, startColumn, endRow, line.length);\n }\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/javascript\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/javascript_highlight_rules\",\"ace/mode/matching_brace_outdent\",\"ace/worker/worker_client\",\"ace/mode/behaviour/cstyle\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar JavaScriptHighlightRules = require(\"./javascript_highlight_rules\").JavaScriptHighlightRules;\nvar MatchingBraceOutdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\nvar WorkerClient = require(\"../worker/worker_client\").WorkerClient;\nvar CstyleBehaviour = require(\"./behaviour/cstyle\").CstyleBehaviour;\nvar CStyleFoldMode = require(\"./folding/cstyle\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = JavaScriptHighlightRules;\n \n this.$outdent = new MatchingBraceOutdent();\n this.$behaviour = new CstyleBehaviour();\n this.foldingRules = new CStyleFoldMode();\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.lineCommentStart = \"//\";\n this.blockComment = {start: \"/*\", end: \"*/\"};\n this.$quotes = {'\"': '\"', \"'\": \"'\", \"`\": \"`\"};\n\n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n\n var tokenizedLine = this.getTokenizer().getLineTokens(line, state);\n var tokens = tokenizedLine.tokens;\n var endState = tokenizedLine.state;\n\n if (tokens.length && tokens[tokens.length-1].type == \"comment\") {\n return indent;\n }\n\n if (state == \"start\" || state == \"no_regex\") {\n var match = line.match(/^.*(?:\\bcase\\b.*:|[\\{\\(\\[])\\s*$/);\n if (match) {\n indent += tab;\n }\n } else if (state == \"doc-start\") {\n if (endState == \"start\" || endState == \"no_regex\") {\n return \"\";\n }\n var match = line.match(/^\\s*(\\/?)\\*/);\n if (match) {\n if (match[1]) {\n indent += \" \";\n }\n indent += \"* \";\n }\n }\n\n return indent;\n };\n\n this.checkOutdent = function(state, line, input) {\n return this.$outdent.checkOutdent(line, input);\n };\n\n this.autoOutdent = function(state, doc, row) {\n this.$outdent.autoOutdent(doc, row);\n };\n\n this.createWorker = function(session) {\n var worker = new WorkerClient([\"ace\"], \"ace/mode/javascript_worker\", \"JavaScriptWorker\");\n worker.attachToDocument(session.getDocument());\n\n worker.on(\"annotate\", function(results) {\n session.setAnnotations(results.data);\n });\n\n worker.on(\"terminate\", function() {\n session.clearAnnotations();\n });\n\n return worker;\n };\n\n this.$id = \"ace/mode/javascript\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n});\n\nace.define(\"ace/mode/css_completions\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nvar propertyMap = {\n \"background\": {\"#$0\": 1},\n \"background-color\": {\"#$0\": 1, \"transparent\": 1, \"fixed\": 1},\n \"background-image\": {\"url('/$0')\": 1},\n \"background-repeat\": {\"repeat\": 1, \"repeat-x\": 1, \"repeat-y\": 1, \"no-repeat\": 1, \"inherit\": 1},\n \"background-position\": {\"bottom\":2, \"center\":2, \"left\":2, \"right\":2, \"top\":2, \"inherit\":2},\n \"background-attachment\": {\"scroll\": 1, \"fixed\": 1},\n \"background-size\": {\"cover\": 1, \"contain\": 1},\n \"background-clip\": {\"border-box\": 1, \"padding-box\": 1, \"content-box\": 1},\n \"background-origin\": {\"border-box\": 1, \"padding-box\": 1, \"content-box\": 1},\n \"border\": {\"solid $0\": 1, \"dashed $0\": 1, \"dotted $0\": 1, \"#$0\": 1},\n \"border-color\": {\"#$0\": 1},\n \"border-style\": {\"solid\":2, \"dashed\":2, \"dotted\":2, \"double\":2, \"groove\":2, \"hidden\":2, \"inherit\":2, \"inset\":2, \"none\":2, \"outset\":2, \"ridged\":2},\n \"border-collapse\": {\"collapse\": 1, \"separate\": 1},\n \"bottom\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"clear\": {\"left\": 1, \"right\": 1, \"both\": 1, \"none\": 1},\n \"color\": {\"#$0\": 1, \"rgb(#$00,0,0)\": 1},\n \"cursor\": {\"default\": 1, \"pointer\": 1, \"move\": 1, \"text\": 1, \"wait\": 1, \"help\": 1, \"progress\": 1, \"n-resize\": 1, \"ne-resize\": 1, \"e-resize\": 1, \"se-resize\": 1, \"s-resize\": 1, \"sw-resize\": 1, \"w-resize\": 1, \"nw-resize\": 1},\n \"display\": {\"none\": 1, \"block\": 1, \"inline\": 1, \"inline-block\": 1, \"table-cell\": 1},\n \"empty-cells\": {\"show\": 1, \"hide\": 1},\n \"float\": {\"left\": 1, \"right\": 1, \"none\": 1},\n \"font-family\": {\"Arial\":2,\"Comic Sans MS\":2,\"Consolas\":2,\"Courier New\":2,\"Courier\":2,\"Georgia\":2,\"Monospace\":2,\"Sans-Serif\":2, \"Segoe UI\":2,\"Tahoma\":2,\"Times New Roman\":2,\"Trebuchet MS\":2,\"Verdana\": 1},\n \"font-size\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"font-weight\": {\"bold\": 1, \"normal\": 1},\n \"font-style\": {\"italic\": 1, \"normal\": 1},\n \"font-variant\": {\"normal\": 1, \"small-caps\": 1},\n \"height\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"left\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"letter-spacing\": {\"normal\": 1},\n \"line-height\": {\"normal\": 1},\n \"list-style-type\": {\"none\": 1, \"disc\": 1, \"circle\": 1, \"square\": 1, \"decimal\": 1, \"decimal-leading-zero\": 1, \"lower-roman\": 1, \"upper-roman\": 1, \"lower-greek\": 1, \"lower-latin\": 1, \"upper-latin\": 1, \"georgian\": 1, \"lower-alpha\": 1, \"upper-alpha\": 1},\n \"margin\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"margin-right\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"margin-left\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"margin-top\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"margin-bottom\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"max-height\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"max-width\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"min-height\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"min-width\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"overflow\": {\"hidden\": 1, \"visible\": 1, \"auto\": 1, \"scroll\": 1},\n \"overflow-x\": {\"hidden\": 1, \"visible\": 1, \"auto\": 1, \"scroll\": 1},\n \"overflow-y\": {\"hidden\": 1, \"visible\": 1, \"auto\": 1, \"scroll\": 1},\n \"padding\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"padding-top\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"padding-right\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"padding-bottom\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"padding-left\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"page-break-after\": {\"auto\": 1, \"always\": 1, \"avoid\": 1, \"left\": 1, \"right\": 1},\n \"page-break-before\": {\"auto\": 1, \"always\": 1, \"avoid\": 1, \"left\": 1, \"right\": 1},\n \"position\": {\"absolute\": 1, \"relative\": 1, \"fixed\": 1, \"static\": 1},\n \"right\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"table-layout\": {\"fixed\": 1, \"auto\": 1},\n \"text-decoration\": {\"none\": 1, \"underline\": 1, \"line-through\": 1, \"blink\": 1},\n \"text-align\": {\"left\": 1, \"right\": 1, \"center\": 1, \"justify\": 1},\n \"text-transform\": {\"capitalize\": 1, \"uppercase\": 1, \"lowercase\": 1, \"none\": 1},\n \"top\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"vertical-align\": {\"top\": 1, \"bottom\": 1},\n \"visibility\": {\"hidden\": 1, \"visible\": 1},\n \"white-space\": {\"nowrap\": 1, \"normal\": 1, \"pre\": 1, \"pre-line\": 1, \"pre-wrap\": 1},\n \"width\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"word-spacing\": {\"normal\": 1},\n \"filter\": {\"alpha(opacity=$0100)\": 1},\n\n \"text-shadow\": {\"$02px 2px 2px #777\": 1},\n \"text-overflow\": {\"ellipsis-word\": 1, \"clip\": 1, \"ellipsis\": 1},\n \"-moz-border-radius\": 1,\n \"-moz-border-radius-topright\": 1,\n \"-moz-border-radius-bottomright\": 1,\n \"-moz-border-radius-topleft\": 1,\n \"-moz-border-radius-bottomleft\": 1,\n \"-webkit-border-radius\": 1,\n \"-webkit-border-top-right-radius\": 1,\n \"-webkit-border-top-left-radius\": 1,\n \"-webkit-border-bottom-right-radius\": 1,\n \"-webkit-border-bottom-left-radius\": 1,\n \"-moz-box-shadow\": 1,\n \"-webkit-box-shadow\": 1,\n \"transform\": {\"rotate($00deg)\": 1, \"skew($00deg)\": 1},\n \"-moz-transform\": {\"rotate($00deg)\": 1, \"skew($00deg)\": 1},\n \"-webkit-transform\": {\"rotate($00deg)\": 1, \"skew($00deg)\": 1 }\n};\n\nvar CssCompletions = function() {\n\n};\n\n(function() {\n\n this.completionsDefined = false;\n\n this.defineCompletions = function() {\n if (document) {\n var style = document.createElement('c').style;\n\n for (var i in style) {\n if (typeof style[i] !== 'string')\n continue;\n\n var name = i.replace(/[A-Z]/g, function(x) {\n return '-' + x.toLowerCase();\n });\n\n if (!propertyMap.hasOwnProperty(name))\n propertyMap[name] = 1;\n }\n }\n\n this.completionsDefined = true;\n };\n\n this.getCompletions = function(state, session, pos, prefix) {\n if (!this.completionsDefined) {\n this.defineCompletions();\n }\n\n var token = session.getTokenAt(pos.row, pos.column);\n\n if (!token)\n return [];\n if (state==='ruleset'){\n var line = session.getLine(pos.row).substr(0, pos.column);\n if (/:[^;]+$/.test(line)) {\n /([\\w\\-]+):[^:]*$/.test(line);\n\n return this.getPropertyValueCompletions(state, session, pos, prefix);\n } else {\n return this.getPropertyCompletions(state, session, pos, prefix);\n }\n }\n\n return [];\n };\n\n this.getPropertyCompletions = function(state, session, pos, prefix) {\n var properties = Object.keys(propertyMap);\n return properties.map(function(property){\n return {\n caption: property,\n snippet: property + ': $0;',\n meta: \"property\",\n score: 1000000\n };\n });\n };\n\n this.getPropertyValueCompletions = function(state, session, pos, prefix) {\n var line = session.getLine(pos.row).substr(0, pos.column);\n var property = (/([\\w\\-]+):[^:]*$/.exec(line) || {})[1];\n\n if (!property)\n return [];\n var values = [];\n if (property in propertyMap && typeof propertyMap[property] === \"object\") {\n values = Object.keys(propertyMap[property]);\n }\n return values.map(function(value){\n return {\n caption: value,\n snippet: value,\n meta: \"property value\",\n score: 1000000\n };\n });\n };\n\n}).call(CssCompletions.prototype);\n\nexports.CssCompletions = CssCompletions;\n});\n\nace.define(\"ace/mode/behaviour/css\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/behaviour\",\"ace/mode/behaviour/cstyle\",\"ace/token_iterator\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Behaviour = require(\"../behaviour\").Behaviour;\nvar CstyleBehaviour = require(\"./cstyle\").CstyleBehaviour;\nvar TokenIterator = require(\"../../token_iterator\").TokenIterator;\n\nvar CssBehaviour = function () {\n\n this.inherit(CstyleBehaviour);\n\n this.add(\"colon\", \"insertion\", function (state, action, editor, session, text) {\n if (text === ':' && editor.selection.isEmpty()) {\n var cursor = editor.getCursorPosition();\n var iterator = new TokenIterator(session, cursor.row, cursor.column);\n var token = iterator.getCurrentToken();\n if (token && token.value.match(/\\s+/)) {\n token = iterator.stepBackward();\n }\n if (token && token.type === 'support.type') {\n var line = session.doc.getLine(cursor.row);\n var rightChar = line.substring(cursor.column, cursor.column + 1);\n if (rightChar === ':') {\n return {\n text: '',\n selection: [1, 1]\n };\n }\n if (/^(\\s+[^;]|\\s*$)/.test(line.substring(cursor.column))) {\n return {\n text: ':;',\n selection: [1, 1]\n };\n }\n }\n }\n });\n\n this.add(\"colon\", \"deletion\", function (state, action, editor, session, range) {\n var selected = session.doc.getTextRange(range);\n if (!range.isMultiLine() && selected === ':') {\n var cursor = editor.getCursorPosition();\n var iterator = new TokenIterator(session, cursor.row, cursor.column);\n var token = iterator.getCurrentToken();\n if (token && token.value.match(/\\s+/)) {\n token = iterator.stepBackward();\n }\n if (token && token.type === 'support.type') {\n var line = session.doc.getLine(range.start.row);\n var rightChar = line.substring(range.end.column, range.end.column + 1);\n if (rightChar === ';') {\n range.end.column ++;\n return range;\n }\n }\n }\n });\n\n this.add(\"semicolon\", \"insertion\", function (state, action, editor, session, text) {\n if (text === ';' && editor.selection.isEmpty()) {\n var cursor = editor.getCursorPosition();\n var line = session.doc.getLine(cursor.row);\n var rightChar = line.substring(cursor.column, cursor.column + 1);\n if (rightChar === ';') {\n return {\n text: '',\n selection: [1, 1]\n };\n }\n }\n });\n\n this.add(\"!important\", \"insertion\", function (state, action, editor, session, text) {\n if (text === '!' && editor.selection.isEmpty()) {\n var cursor = editor.getCursorPosition();\n var line = session.doc.getLine(cursor.row);\n\n if (/^\\s*(;|}|$)/.test(line.substring(cursor.column))) {\n return {\n text: '!important',\n selection: [10, 10]\n };\n }\n }\n });\n\n};\noop.inherits(CssBehaviour, CstyleBehaviour);\n\nexports.CssBehaviour = CssBehaviour;\n});\n\nace.define(\"ace/mode/css\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/css_highlight_rules\",\"ace/mode/matching_brace_outdent\",\"ace/worker/worker_client\",\"ace/mode/css_completions\",\"ace/mode/behaviour/css\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar CssHighlightRules = require(\"./css_highlight_rules\").CssHighlightRules;\nvar MatchingBraceOutdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\nvar WorkerClient = require(\"../worker/worker_client\").WorkerClient;\nvar CssCompletions = require(\"./css_completions\").CssCompletions;\nvar CssBehaviour = require(\"./behaviour/css\").CssBehaviour;\nvar CStyleFoldMode = require(\"./folding/cstyle\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = CssHighlightRules;\n this.$outdent = new MatchingBraceOutdent();\n this.$behaviour = new CssBehaviour();\n this.$completer = new CssCompletions();\n this.foldingRules = new CStyleFoldMode();\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.foldingRules = \"cStyle\";\n this.blockComment = {start: \"/*\", end: \"*/\"};\n\n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n var tokens = this.getTokenizer().getLineTokens(line, state).tokens;\n if (tokens.length && tokens[tokens.length-1].type == \"comment\") {\n return indent;\n }\n\n var match = line.match(/^.*\\{\\s*$/);\n if (match) {\n indent += tab;\n }\n\n return indent;\n };\n\n this.checkOutdent = function(state, line, input) {\n return this.$outdent.checkOutdent(line, input);\n };\n\n this.autoOutdent = function(state, doc, row) {\n this.$outdent.autoOutdent(doc, row);\n };\n\n this.getCompletions = function(state, session, pos, prefix) {\n return this.$completer.getCompletions(state, session, pos, prefix);\n };\n\n this.createWorker = function(session) {\n var worker = new WorkerClient([\"ace\"], \"ace/mode/css_worker\", \"Worker\");\n worker.attachToDocument(session.getDocument());\n\n worker.on(\"annotate\", function(e) {\n session.setAnnotations(e.data);\n });\n\n worker.on(\"terminate\", function() {\n session.clearAnnotations();\n });\n\n return worker;\n };\n\n this.$id = \"ace/mode/css\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n\n});\n\nace.define(\"ace/mode/behaviour/xml\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/behaviour\",\"ace/token_iterator\",\"ace/lib/lang\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Behaviour = require(\"../behaviour\").Behaviour;\nvar TokenIterator = require(\"../../token_iterator\").TokenIterator;\nvar lang = require(\"../../lib/lang\");\n\nfunction is(token, type) {\n return token && token.type.lastIndexOf(type + \".xml\") > -1;\n}\n\nvar XmlBehaviour = function () {\n\n this.add(\"string_dquotes\", \"insertion\", function (state, action, editor, session, text) {\n if (text == '\"' || text == \"'\") {\n var quote = text;\n var selected = session.doc.getTextRange(editor.getSelectionRange());\n if (selected !== \"\" && selected !== \"'\" && selected != '\"' && editor.getWrapBehavioursEnabled()) {\n return {\n text: quote + selected + quote,\n selection: false\n };\n }\n\n var cursor = editor.getCursorPosition();\n var line = session.doc.getLine(cursor.row);\n var rightChar = line.substring(cursor.column, cursor.column + 1);\n var iterator = new TokenIterator(session, cursor.row, cursor.column);\n var token = iterator.getCurrentToken();\n\n if (rightChar == quote && (is(token, \"attribute-value\") || is(token, \"string\"))) {\n return {\n text: \"\",\n selection: [1, 1]\n };\n }\n\n if (!token)\n token = iterator.stepBackward();\n\n if (!token)\n return;\n\n while (is(token, \"tag-whitespace\") || is(token, \"whitespace\")) {\n token = iterator.stepBackward();\n }\n var rightSpace = !rightChar || rightChar.match(/\\s/);\n if (is(token, \"attribute-equals\") && (rightSpace || rightChar == '>') || (is(token, \"decl-attribute-equals\") && (rightSpace || rightChar == '?'))) {\n return {\n text: quote + quote,\n selection: [1, 1]\n };\n }\n }\n });\n\n this.add(\"string_dquotes\", \"deletion\", function(state, action, editor, session, range) {\n var selected = session.doc.getTextRange(range);\n if (!range.isMultiLine() && (selected == '\"' || selected == \"'\")) {\n var line = session.doc.getLine(range.start.row);\n var rightChar = line.substring(range.start.column + 1, range.start.column + 2);\n if (rightChar == selected) {\n range.end.column++;\n return range;\n }\n }\n });\n\n this.add(\"autoclosing\", \"insertion\", function (state, action, editor, session, text) {\n if (text == '>') {\n var position = editor.getSelectionRange().start;\n var iterator = new TokenIterator(session, position.row, position.column);\n var token = iterator.getCurrentToken() || iterator.stepBackward();\n if (!token || !(is(token, \"tag-name\") || is(token, \"tag-whitespace\") || is(token, \"attribute-name\") || is(token, \"attribute-equals\") || is(token, \"attribute-value\")))\n return;\n if (is(token, \"reference.attribute-value\"))\n return;\n if (is(token, \"attribute-value\")) {\n var tokenEndColumn = iterator.getCurrentTokenColumn() + token.value.length;\n if (position.column < tokenEndColumn)\n return;\n if (position.column == tokenEndColumn) {\n var nextToken = iterator.stepForward();\n if (nextToken && is(nextToken, \"attribute-value\"))\n return;\n iterator.stepBackward();\n }\n }\n \n if (/^\\s*>/.test(session.getLine(position.row).slice(position.column)))\n return;\n while (!is(token, \"tag-name\")) {\n token = iterator.stepBackward();\n if (token.value == \"<\") {\n token = iterator.stepForward();\n break;\n }\n }\n\n var tokenRow = iterator.getCurrentTokenRow();\n var tokenColumn = iterator.getCurrentTokenColumn();\n if (is(iterator.stepBackward(), \"end-tag-open\"))\n return;\n\n var element = token.value;\n if (tokenRow == position.row)\n element = element.substring(0, position.column - tokenColumn);\n\n if (this.voidElements.hasOwnProperty(element.toLowerCase()))\n return;\n\n return {\n text: \">\" + \"\",\n selection: [1, 1]\n };\n }\n });\n\n this.add(\"autoindent\", \"insertion\", function (state, action, editor, session, text) {\n if (text == \"\\n\") {\n var cursor = editor.getCursorPosition();\n var line = session.getLine(cursor.row);\n var iterator = new TokenIterator(session, cursor.row, cursor.column);\n var token = iterator.getCurrentToken();\n\n if (token && token.type.indexOf(\"tag-close\") !== -1) {\n if (token.value == \"/>\")\n return;\n while (token && token.type.indexOf(\"tag-name\") === -1) {\n token = iterator.stepBackward();\n }\n\n if (!token) {\n return;\n }\n\n var tag = token.value;\n var row = iterator.getCurrentTokenRow();\n token = iterator.stepBackward();\n if (!token || token.type.indexOf(\"end-tag\") !== -1) {\n return;\n }\n\n if (this.voidElements && !this.voidElements[tag]) {\n var nextToken = session.getTokenAt(cursor.row, cursor.column+1);\n var line = session.getLine(row);\n var nextIndent = this.$getIndent(line);\n var indent = nextIndent + session.getTabString();\n\n if (nextToken && nextToken.value === \" -1;\n}\n\n(function() {\n\n this.getFoldWidget = function(session, foldStyle, row) {\n var tag = this._getFirstTagInLine(session, row);\n\n if (!tag)\n return this.getCommentFoldWidget(session, row);\n\n if (tag.closing || (!tag.tagName && tag.selfClosing))\n return foldStyle == \"markbeginend\" ? \"end\" : \"\";\n\n if (!tag.tagName || tag.selfClosing || this.voidElements.hasOwnProperty(tag.tagName.toLowerCase()))\n return \"\";\n\n if (this._findEndTagInLine(session, row, tag.tagName, tag.end.column))\n return \"\";\n\n return \"start\";\n };\n \n this.getCommentFoldWidget = function(session, row) {\n if (/comment/.test(session.getState(row)) && /';\n break;\n }\n }\n return tag;\n } else if (is(token, \"tag-close\")) {\n tag.selfClosing = token.value == '/>';\n return tag;\n }\n tag.start.column += token.value.length;\n }\n\n return null;\n };\n\n this._findEndTagInLine = function(session, row, tagName, startColumn) {\n var tokens = session.getTokens(row);\n var column = 0;\n for (var i = 0; i < tokens.length; i++) {\n var token = tokens[i];\n column += token.value.length;\n if (column < startColumn)\n continue;\n if (is(token, \"end-tag-open\")) {\n token = tokens[i + 1];\n if (token && token.value == tagName)\n return true;\n }\n }\n return false;\n };\n this._readTagForward = function(iterator) {\n var token = iterator.getCurrentToken();\n if (!token)\n return null;\n\n var tag = new Tag();\n do {\n if (is(token, \"tag-open\")) {\n tag.closing = is(token, \"end-tag-open\");\n tag.start.row = iterator.getCurrentTokenRow();\n tag.start.column = iterator.getCurrentTokenColumn();\n } else if (is(token, \"tag-name\")) {\n tag.tagName = token.value;\n } else if (is(token, \"tag-close\")) {\n tag.selfClosing = token.value == \"/>\";\n tag.end.row = iterator.getCurrentTokenRow();\n tag.end.column = iterator.getCurrentTokenColumn() + token.value.length;\n iterator.stepForward();\n return tag;\n }\n } while(token = iterator.stepForward());\n\n return null;\n };\n \n this._readTagBackward = function(iterator) {\n var token = iterator.getCurrentToken();\n if (!token)\n return null;\n\n var tag = new Tag();\n do {\n if (is(token, \"tag-open\")) {\n tag.closing = is(token, \"end-tag-open\");\n tag.start.row = iterator.getCurrentTokenRow();\n tag.start.column = iterator.getCurrentTokenColumn();\n iterator.stepBackward();\n return tag;\n } else if (is(token, \"tag-name\")) {\n tag.tagName = token.value;\n } else if (is(token, \"tag-close\")) {\n tag.selfClosing = token.value == \"/>\";\n tag.end.row = iterator.getCurrentTokenRow();\n tag.end.column = iterator.getCurrentTokenColumn() + token.value.length;\n }\n } while(token = iterator.stepBackward());\n\n return null;\n };\n \n this._pop = function(stack, tag) {\n while (stack.length) {\n \n var top = stack[stack.length-1];\n if (!tag || top.tagName == tag.tagName) {\n return stack.pop();\n }\n else if (this.optionalEndTags.hasOwnProperty(top.tagName)) {\n stack.pop();\n continue;\n } else {\n return null;\n }\n }\n };\n \n this.getFoldWidgetRange = function(session, foldStyle, row) {\n var firstTag = this._getFirstTagInLine(session, row);\n \n if (!firstTag) {\n return this.getCommentFoldWidget(session, row)\n && session.getCommentFoldRange(row, session.getLine(row).length);\n }\n \n var isBackward = firstTag.closing || firstTag.selfClosing;\n var stack = [];\n var tag;\n \n if (!isBackward) {\n var iterator = new TokenIterator(session, row, firstTag.start.column);\n var start = {\n row: row,\n column: firstTag.start.column + firstTag.tagName.length + 2\n };\n if (firstTag.start.row == firstTag.end.row)\n start.column = firstTag.end.column;\n while (tag = this._readTagForward(iterator)) {\n if (tag.selfClosing) {\n if (!stack.length) {\n tag.start.column += tag.tagName.length + 2;\n tag.end.column -= 2;\n return Range.fromPoints(tag.start, tag.end);\n } else\n continue;\n }\n \n if (tag.closing) {\n this._pop(stack, tag);\n if (stack.length == 0)\n return Range.fromPoints(start, tag.start);\n }\n else {\n stack.push(tag);\n }\n }\n }\n else {\n var iterator = new TokenIterator(session, row, firstTag.end.column);\n var end = {\n row: row,\n column: firstTag.start.column\n };\n \n while (tag = this._readTagBackward(iterator)) {\n if (tag.selfClosing) {\n if (!stack.length) {\n tag.start.column += tag.tagName.length + 2;\n tag.end.column -= 2;\n return Range.fromPoints(tag.start, tag.end);\n } else\n continue;\n }\n \n if (!tag.closing) {\n this._pop(stack, tag);\n if (stack.length == 0) {\n tag.start.column += tag.tagName.length + 2;\n if (tag.start.row == tag.end.row && tag.start.column < tag.end.column)\n tag.start.column = tag.end.column;\n return Range.fromPoints(tag.start, end);\n }\n }\n else {\n stack.push(tag);\n }\n }\n }\n \n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/folding/html\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/folding/mixed\",\"ace/mode/folding/xml\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar MixedFoldMode = require(\"./mixed\").FoldMode;\nvar XmlFoldMode = require(\"./xml\").FoldMode;\nvar CStyleFoldMode = require(\"./cstyle\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function(voidElements, optionalTags) {\n MixedFoldMode.call(this, new XmlFoldMode(voidElements, optionalTags), {\n \"js-\": new CStyleFoldMode(),\n \"css-\": new CStyleFoldMode()\n });\n};\n\noop.inherits(FoldMode, MixedFoldMode);\n\n});\n\nace.define(\"ace/mode/html_completions\",[\"require\",\"exports\",\"module\",\"ace/token_iterator\"], function(require, exports, module) {\n\"use strict\";\n\nvar TokenIterator = require(\"../token_iterator\").TokenIterator;\n\nvar commonAttributes = [\n \"accesskey\",\n \"class\",\n \"contenteditable\",\n \"contextmenu\",\n \"dir\",\n \"draggable\",\n \"dropzone\",\n \"hidden\",\n \"id\",\n \"inert\",\n \"itemid\",\n \"itemprop\",\n \"itemref\",\n \"itemscope\",\n \"itemtype\",\n \"lang\",\n \"spellcheck\",\n \"style\",\n \"tabindex\",\n \"title\",\n \"translate\"\n];\n\nvar eventAttributes = [\n \"onabort\",\n \"onblur\",\n \"oncancel\",\n \"oncanplay\",\n \"oncanplaythrough\",\n \"onchange\",\n \"onclick\",\n \"onclose\",\n \"oncontextmenu\",\n \"oncuechange\",\n \"ondblclick\",\n \"ondrag\",\n \"ondragend\",\n \"ondragenter\",\n \"ondragleave\",\n \"ondragover\",\n \"ondragstart\",\n \"ondrop\",\n \"ondurationchange\",\n \"onemptied\",\n \"onended\",\n \"onerror\",\n \"onfocus\",\n \"oninput\",\n \"oninvalid\",\n \"onkeydown\",\n \"onkeypress\",\n \"onkeyup\",\n \"onload\",\n \"onloadeddata\",\n \"onloadedmetadata\",\n \"onloadstart\",\n \"onmousedown\",\n \"onmousemove\",\n \"onmouseout\",\n \"onmouseover\",\n \"onmouseup\",\n \"onmousewheel\",\n \"onpause\",\n \"onplay\",\n \"onplaying\",\n \"onprogress\",\n \"onratechange\",\n \"onreset\",\n \"onscroll\",\n \"onseeked\",\n \"onseeking\",\n \"onselect\",\n \"onshow\",\n \"onstalled\",\n \"onsubmit\",\n \"onsuspend\",\n \"ontimeupdate\",\n \"onvolumechange\",\n \"onwaiting\"\n];\n\nvar globalAttributes = commonAttributes.concat(eventAttributes);\n\nvar attributeMap = {\n \"a\": {\"href\": 1, \"target\": {\"_blank\": 1, \"top\": 1}, \"ping\": 1, \"rel\": {\"nofollow\": 1, \"alternate\": 1, \"author\": 1, \"bookmark\": 1, \"help\": 1, \"license\": 1, \"next\": 1, \"noreferrer\": 1, \"prefetch\": 1, \"prev\": 1, \"search\": 1, \"tag\": 1}, \"media\": 1, \"hreflang\": 1, \"type\": 1},\n \"abbr\": {},\n \"address\": {},\n \"area\": {\"shape\": 1, \"coords\": 1, \"href\": 1, \"hreflang\": 1, \"alt\": 1, \"target\": 1, \"media\": 1, \"rel\": 1, \"ping\": 1, \"type\": 1},\n \"article\": {\"pubdate\": 1},\n \"aside\": {},\n \"audio\": {\"src\": 1, \"autobuffer\": 1, \"autoplay\": {\"autoplay\": 1}, \"loop\": {\"loop\": 1}, \"controls\": {\"controls\": 1}, \"muted\": {\"muted\": 1}, \"preload\": {\"auto\": 1, \"metadata\": 1, \"none\": 1 }},\n \"b\": {},\n \"base\": {\"href\": 1, \"target\": 1},\n \"bdi\": {},\n \"bdo\": {},\n \"blockquote\": {\"cite\": 1},\n \"body\": {\"onafterprint\": 1, \"onbeforeprint\": 1, \"onbeforeunload\": 1, \"onhashchange\": 1, \"onmessage\": 1, \"onoffline\": 1, \"onpopstate\": 1, \"onredo\": 1, \"onresize\": 1, \"onstorage\": 1, \"onundo\": 1, \"onunload\": 1},\n \"br\": {},\n \"button\": {\"autofocus\": 1, \"disabled\": {\"disabled\": 1}, \"form\": 1, \"formaction\": 1, \"formenctype\": 1, \"formmethod\": 1, \"formnovalidate\": 1, \"formtarget\": 1, \"name\": 1, \"value\": 1, \"type\": {\"button\": 1, \"submit\": 1}},\n \"canvas\": {\"width\": 1, \"height\": 1},\n \"caption\": {},\n \"cite\": {},\n \"code\": {},\n \"col\": {\"span\": 1},\n \"colgroup\": {\"span\": 1},\n \"command\": {\"type\": 1, \"label\": 1, \"icon\": 1, \"disabled\": 1, \"checked\": 1, \"radiogroup\": 1, \"command\": 1},\n \"data\": {},\n \"datalist\": {},\n \"dd\": {},\n \"del\": {\"cite\": 1, \"datetime\": 1},\n \"details\": {\"open\": 1},\n \"dfn\": {},\n \"dialog\": {\"open\": 1},\n \"div\": {},\n \"dl\": {},\n \"dt\": {},\n \"em\": {},\n \"embed\": {\"src\": 1, \"height\": 1, \"width\": 1, \"type\": 1},\n \"fieldset\": {\"disabled\": 1, \"form\": 1, \"name\": 1},\n \"figcaption\": {},\n \"figure\": {},\n \"footer\": {},\n \"form\": {\"accept-charset\": 1, \"action\": 1, \"autocomplete\": 1, \"enctype\": {\"multipart/form-data\": 1, \"application/x-www-form-urlencoded\": 1}, \"method\": {\"get\": 1, \"post\": 1}, \"name\": 1, \"novalidate\": 1, \"target\": {\"_blank\": 1, \"top\": 1}},\n \"h1\": {},\n \"h2\": {},\n \"h3\": {},\n \"h4\": {},\n \"h5\": {},\n \"h6\": {},\n \"head\": {},\n \"header\": {},\n \"hr\": {},\n \"html\": {\"manifest\": 1},\n \"i\": {},\n \"iframe\": {\"name\": 1, \"src\": 1, \"height\": 1, \"width\": 1, \"sandbox\": {\"allow-same-origin\": 1, \"allow-top-navigation\": 1, \"allow-forms\": 1, \"allow-scripts\": 1}, \"seamless\": {\"seamless\": 1}},\n \"img\": {\"alt\": 1, \"src\": 1, \"height\": 1, \"width\": 1, \"usemap\": 1, \"ismap\": 1},\n \"input\": {\n \"type\": {\"text\": 1, \"password\": 1, \"hidden\": 1, \"checkbox\": 1, \"submit\": 1, \"radio\": 1, \"file\": 1, \"button\": 1, \"reset\": 1, \"image\": 31, \"color\": 1, \"date\": 1, \"datetime\": 1, \"datetime-local\": 1, \"email\": 1, \"month\": 1, \"number\": 1, \"range\": 1, \"search\": 1, \"tel\": 1, \"time\": 1, \"url\": 1, \"week\": 1},\n \"accept\": 1, \"alt\": 1, \"autocomplete\": {\"on\": 1, \"off\": 1}, \"autofocus\": {\"autofocus\": 1}, \"checked\": {\"checked\": 1}, \"disabled\": {\"disabled\": 1}, \"form\": 1, \"formaction\": 1, \"formenctype\": {\"application/x-www-form-urlencoded\": 1, \"multipart/form-data\": 1, \"text/plain\": 1}, \"formmethod\": {\"get\": 1, \"post\": 1}, \"formnovalidate\": {\"formnovalidate\": 1}, \"formtarget\": {\"_blank\": 1, \"_self\": 1, \"_parent\": 1, \"_top\": 1}, \"height\": 1, \"list\": 1, \"max\": 1, \"maxlength\": 1, \"min\": 1, \"multiple\": {\"multiple\": 1}, \"name\": 1, \"pattern\": 1, \"placeholder\": 1, \"readonly\": {\"readonly\": 1}, \"required\": {\"required\": 1}, \"size\": 1, \"src\": 1, \"step\": 1, \"width\": 1, \"files\": 1, \"value\": 1},\n \"ins\": {\"cite\": 1, \"datetime\": 1},\n \"kbd\": {},\n \"keygen\": {\"autofocus\": 1, \"challenge\": {\"challenge\": 1}, \"disabled\": {\"disabled\": 1}, \"form\": 1, \"keytype\": {\"rsa\": 1, \"dsa\": 1, \"ec\": 1}, \"name\": 1},\n \"label\": {\"form\": 1, \"for\": 1},\n \"legend\": {},\n \"li\": {\"value\": 1},\n \"link\": {\"href\": 1, \"hreflang\": 1, \"rel\": {\"stylesheet\": 1, \"icon\": 1}, \"media\": {\"all\": 1, \"screen\": 1, \"print\": 1}, \"type\": {\"text/css\": 1, \"image/png\": 1, \"image/jpeg\": 1, \"image/gif\": 1}, \"sizes\": 1},\n \"main\": {},\n \"map\": {\"name\": 1},\n \"mark\": {},\n \"math\": {},\n \"menu\": {\"type\": 1, \"label\": 1},\n \"meta\": {\"http-equiv\": {\"content-type\": 1}, \"name\": {\"description\": 1, \"keywords\": 1}, \"content\": {\"text/html; charset=UTF-8\": 1}, \"charset\": 1},\n \"meter\": {\"value\": 1, \"min\": 1, \"max\": 1, \"low\": 1, \"high\": 1, \"optimum\": 1},\n \"nav\": {},\n \"noscript\": {\"href\": 1},\n \"object\": {\"param\": 1, \"data\": 1, \"type\": 1, \"height\" : 1, \"width\": 1, \"usemap\": 1, \"name\": 1, \"form\": 1, \"classid\": 1},\n \"ol\": {\"start\": 1, \"reversed\": 1},\n \"optgroup\": {\"disabled\": 1, \"label\": 1},\n \"option\": {\"disabled\": 1, \"selected\": 1, \"label\": 1, \"value\": 1},\n \"output\": {\"for\": 1, \"form\": 1, \"name\": 1},\n \"p\": {},\n \"param\": {\"name\": 1, \"value\": 1},\n \"pre\": {},\n \"progress\": {\"value\": 1, \"max\": 1},\n \"q\": {\"cite\": 1},\n \"rp\": {},\n \"rt\": {},\n \"ruby\": {},\n \"s\": {},\n \"samp\": {},\n \"script\": {\"charset\": 1, \"type\": {\"text/javascript\": 1}, \"src\": 1, \"defer\": 1, \"async\": 1},\n \"select\": {\"autofocus\": 1, \"disabled\": 1, \"form\": 1, \"multiple\": {\"multiple\": 1}, \"name\": 1, \"size\": 1, \"readonly\":{\"readonly\": 1}},\n \"small\": {},\n \"source\": {\"src\": 1, \"type\": 1, \"media\": 1},\n \"span\": {},\n \"strong\": {},\n \"style\": {\"type\": 1, \"media\": {\"all\": 1, \"screen\": 1, \"print\": 1}, \"scoped\": 1},\n \"sub\": {},\n \"sup\": {},\n \"svg\": {},\n \"table\": {\"summary\": 1},\n \"tbody\": {},\n \"td\": {\"headers\": 1, \"rowspan\": 1, \"colspan\": 1},\n \"textarea\": {\"autofocus\": {\"autofocus\": 1}, \"disabled\": {\"disabled\": 1}, \"form\": 1, \"maxlength\": 1, \"name\": 1, \"placeholder\": 1, \"readonly\": {\"readonly\": 1}, \"required\": {\"required\": 1}, \"rows\": 1, \"cols\": 1, \"wrap\": {\"on\": 1, \"off\": 1, \"hard\": 1, \"soft\": 1}},\n \"tfoot\": {},\n \"th\": {\"headers\": 1, \"rowspan\": 1, \"colspan\": 1, \"scope\": 1},\n \"thead\": {},\n \"time\": {\"datetime\": 1},\n \"title\": {},\n \"tr\": {},\n \"track\": {\"kind\": 1, \"src\": 1, \"srclang\": 1, \"label\": 1, \"default\": 1},\n \"section\": {},\n \"summary\": {},\n \"u\": {},\n \"ul\": {},\n \"var\": {},\n \"video\": {\"src\": 1, \"autobuffer\": 1, \"autoplay\": {\"autoplay\": 1}, \"loop\": {\"loop\": 1}, \"controls\": {\"controls\": 1}, \"width\": 1, \"height\": 1, \"poster\": 1, \"muted\": {\"muted\": 1}, \"preload\": {\"auto\": 1, \"metadata\": 1, \"none\": 1}},\n \"wbr\": {}\n};\n\nvar elements = Object.keys(attributeMap);\n\nfunction is(token, type) {\n return token.type.lastIndexOf(type + \".xml\") > -1;\n}\n\nfunction findTagName(session, pos) {\n var iterator = new TokenIterator(session, pos.row, pos.column);\n var token = iterator.getCurrentToken();\n while (token && !is(token, \"tag-name\")){\n token = iterator.stepBackward();\n }\n if (token)\n return token.value;\n}\n\nfunction findAttributeName(session, pos) {\n var iterator = new TokenIterator(session, pos.row, pos.column);\n var token = iterator.getCurrentToken();\n while (token && !is(token, \"attribute-name\")){\n token = iterator.stepBackward();\n }\n if (token)\n return token.value;\n}\n\nvar HtmlCompletions = function() {\n\n};\n\n(function() {\n\n this.getCompletions = function(state, session, pos, prefix) {\n var token = session.getTokenAt(pos.row, pos.column);\n\n if (!token)\n return [];\n if (is(token, \"tag-name\") || is(token, \"tag-open\") || is(token, \"end-tag-open\"))\n return this.getTagCompletions(state, session, pos, prefix);\n if (is(token, \"tag-whitespace\") || is(token, \"attribute-name\"))\n return this.getAttributeCompletions(state, session, pos, prefix);\n if (is(token, \"attribute-value\"))\n return this.getAttributeValueCompletions(state, session, pos, prefix);\n var line = session.getLine(pos.row).substr(0, pos.column);\n if (/&[a-z]*$/i.test(line))\n return this.getHTMLEntityCompletions(state, session, pos, prefix);\n\n return [];\n };\n\n this.getTagCompletions = function(state, session, pos, prefix) {\n return elements.map(function(element){\n return {\n value: element,\n meta: \"tag\",\n score: 1000000\n };\n });\n };\n\n this.getAttributeCompletions = function(state, session, pos, prefix) {\n var tagName = findTagName(session, pos);\n if (!tagName)\n return [];\n var attributes = globalAttributes;\n if (tagName in attributeMap) {\n attributes = attributes.concat(Object.keys(attributeMap[tagName]));\n }\n return attributes.map(function(attribute){\n return {\n caption: attribute,\n snippet: attribute + '=\"$0\"',\n meta: \"attribute\",\n score: 1000000\n };\n });\n };\n\n this.getAttributeValueCompletions = function(state, session, pos, prefix) {\n var tagName = findTagName(session, pos);\n var attributeName = findAttributeName(session, pos);\n \n if (!tagName)\n return [];\n var values = [];\n if (tagName in attributeMap && attributeName in attributeMap[tagName] && typeof attributeMap[tagName][attributeName] === \"object\") {\n values = Object.keys(attributeMap[tagName][attributeName]);\n }\n return values.map(function(value){\n return {\n caption: value,\n snippet: value,\n meta: \"attribute value\",\n score: 1000000\n };\n });\n };\n\n this.getHTMLEntityCompletions = function(state, session, pos, prefix) {\n var values = ['Aacute;', 'aacute;', 'Acirc;', 'acirc;', 'acute;', 'AElig;', 'aelig;', 'Agrave;', 'agrave;', 'alefsym;', 'Alpha;', 'alpha;', 'amp;', 'and;', 'ang;', 'Aring;', 'aring;', 'asymp;', 'Atilde;', 'atilde;', 'Auml;', 'auml;', 'bdquo;', 'Beta;', 'beta;', 'brvbar;', 'bull;', 'cap;', 'Ccedil;', 'ccedil;', 'cedil;', 'cent;', 'Chi;', 'chi;', 'circ;', 'clubs;', 'cong;', 'copy;', 'crarr;', 'cup;', 'curren;', 'Dagger;', 'dagger;', 'dArr;', 'darr;', 'deg;', 'Delta;', 'delta;', 'diams;', 'divide;', 'Eacute;', 'eacute;', 'Ecirc;', 'ecirc;', 'Egrave;', 'egrave;', 'empty;', 'emsp;', 'ensp;', 'Epsilon;', 'epsilon;', 'equiv;', 'Eta;', 'eta;', 'ETH;', 'eth;', 'Euml;', 'euml;', 'euro;', 'exist;', 'fnof;', 'forall;', 'frac12;', 'frac14;', 'frac34;', 'frasl;', 'Gamma;', 'gamma;', 'ge;', 'gt;', 'hArr;', 'harr;', 'hearts;', 'hellip;', 'Iacute;', 'iacute;', 'Icirc;', 'icirc;', 'iexcl;', 'Igrave;', 'igrave;', 'image;', 'infin;', 'int;', 'Iota;', 'iota;', 'iquest;', 'isin;', 'Iuml;', 'iuml;', 'Kappa;', 'kappa;', 'Lambda;', 'lambda;', 'lang;', 'laquo;', 'lArr;', 'larr;', 'lceil;', 'ldquo;', 'le;', 'lfloor;', 'lowast;', 'loz;', 'lrm;', 'lsaquo;', 'lsquo;', 'lt;', 'macr;', 'mdash;', 'micro;', 'middot;', 'minus;', 'Mu;', 'mu;', 'nabla;', 'nbsp;', 'ndash;', 'ne;', 'ni;', 'not;', 'notin;', 'nsub;', 'Ntilde;', 'ntilde;', 'Nu;', 'nu;', 'Oacute;', 'oacute;', 'Ocirc;', 'ocirc;', 'OElig;', 'oelig;', 'Ograve;', 'ograve;', 'oline;', 'Omega;', 'omega;', 'Omicron;', 'omicron;', 'oplus;', 'or;', 'ordf;', 'ordm;', 'Oslash;', 'oslash;', 'Otilde;', 'otilde;', 'otimes;', 'Ouml;', 'ouml;', 'para;', 'part;', 'permil;', 'perp;', 'Phi;', 'phi;', 'Pi;', 'pi;', 'piv;', 'plusmn;', 'pound;', 'Prime;', 'prime;', 'prod;', 'prop;', 'Psi;', 'psi;', 'quot;', 'radic;', 'rang;', 'raquo;', 'rArr;', 'rarr;', 'rceil;', 'rdquo;', 'real;', 'reg;', 'rfloor;', 'Rho;', 'rho;', 'rlm;', 'rsaquo;', 'rsquo;', 'sbquo;', 'Scaron;', 'scaron;', 'sdot;', 'sect;', 'shy;', 'Sigma;', 'sigma;', 'sigmaf;', 'sim;', 'spades;', 'sub;', 'sube;', 'sum;', 'sup;', 'sup1;', 'sup2;', 'sup3;', 'supe;', 'szlig;', 'Tau;', 'tau;', 'there4;', 'Theta;', 'theta;', 'thetasym;', 'thinsp;', 'THORN;', 'thorn;', 'tilde;', 'times;', 'trade;', 'Uacute;', 'uacute;', 'uArr;', 'uarr;', 'Ucirc;', 'ucirc;', 'Ugrave;', 'ugrave;', 'uml;', 'upsih;', 'Upsilon;', 'upsilon;', 'Uuml;', 'uuml;', 'weierp;', 'Xi;', 'xi;', 'Yacute;', 'yacute;', 'yen;', 'Yuml;', 'yuml;', 'Zeta;', 'zeta;', 'zwj;', 'zwnj;'];\n\n return values.map(function(value){\n return {\n caption: value,\n snippet: value,\n meta: \"html entity\",\n score: 1000000\n };\n });\n };\n\n}).call(HtmlCompletions.prototype);\n\nexports.HtmlCompletions = HtmlCompletions;\n});\n\nace.define(\"ace/mode/html\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/text\",\"ace/mode/javascript\",\"ace/mode/css\",\"ace/mode/html_highlight_rules\",\"ace/mode/behaviour/xml\",\"ace/mode/folding/html\",\"ace/mode/html_completions\",\"ace/worker/worker_client\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar TextMode = require(\"./text\").Mode;\nvar JavaScriptMode = require(\"./javascript\").Mode;\nvar CssMode = require(\"./css\").Mode;\nvar HtmlHighlightRules = require(\"./html_highlight_rules\").HtmlHighlightRules;\nvar XmlBehaviour = require(\"./behaviour/xml\").XmlBehaviour;\nvar HtmlFoldMode = require(\"./folding/html\").FoldMode;\nvar HtmlCompletions = require(\"./html_completions\").HtmlCompletions;\nvar WorkerClient = require(\"../worker/worker_client\").WorkerClient;\nvar voidElements = [\"area\", \"base\", \"br\", \"col\", \"embed\", \"hr\", \"img\", \"input\", \"keygen\", \"link\", \"meta\", \"menuitem\", \"param\", \"source\", \"track\", \"wbr\"];\nvar optionalEndTags = [\"li\", \"dt\", \"dd\", \"p\", \"rt\", \"rp\", \"optgroup\", \"option\", \"colgroup\", \"td\", \"th\"];\n\nvar Mode = function(options) {\n this.fragmentContext = options && options.fragmentContext;\n this.HighlightRules = HtmlHighlightRules;\n this.$behaviour = new XmlBehaviour();\n this.$completer = new HtmlCompletions();\n \n this.createModeDelegates({\n \"js-\": JavaScriptMode,\n \"css-\": CssMode\n });\n \n this.foldingRules = new HtmlFoldMode(this.voidElements, lang.arrayToMap(optionalEndTags));\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.blockComment = {start: \"\"};\n\n this.voidElements = lang.arrayToMap(voidElements);\n\n this.getNextLineIndent = function(state, line, tab) {\n return this.$getIndent(line);\n };\n\n this.checkOutdent = function(state, line, input) {\n return false;\n };\n\n this.getCompletions = function(state, session, pos, prefix) {\n return this.$completer.getCompletions(state, session, pos, prefix);\n };\n\n this.createWorker = function(session) {\n if (this.constructor != Mode)\n return;\n var worker = new WorkerClient([\"ace\"], \"ace/mode/html_worker\", \"Worker\");\n worker.attachToDocument(session.getDocument());\n\n if (this.fragmentContext)\n worker.call(\"setOptions\", [{context: this.fragmentContext}]);\n\n worker.on(\"error\", function(e) {\n session.setAnnotations(e.data);\n });\n\n worker.on(\"terminate\", function() {\n session.clearAnnotations();\n });\n\n return worker;\n };\n\n this.$id = \"ace/mode/html\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n});\n\nace.define(\"ace/mode/php\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/php_highlight_rules\",\"ace/mode/php_highlight_rules\",\"ace/mode/matching_brace_outdent\",\"ace/range\",\"ace/worker/worker_client\",\"ace/mode/php_completions\",\"ace/mode/behaviour/cstyle\",\"ace/mode/folding/cstyle\",\"ace/unicode\",\"ace/mode/html\",\"ace/mode/javascript\",\"ace/mode/css\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar PhpHighlightRules = require(\"./php_highlight_rules\").PhpHighlightRules;\nvar PhpLangHighlightRules = require(\"./php_highlight_rules\").PhpLangHighlightRules;\nvar MatchingBraceOutdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\nvar Range = require(\"../range\").Range;\nvar WorkerClient = require(\"../worker/worker_client\").WorkerClient;\nvar PhpCompletions = require(\"./php_completions\").PhpCompletions;\nvar CstyleBehaviour = require(\"./behaviour/cstyle\").CstyleBehaviour;\nvar CStyleFoldMode = require(\"./folding/cstyle\").FoldMode;\nvar unicode = require(\"../unicode\");\nvar HtmlMode = require(\"./html\").Mode;\nvar JavaScriptMode = require(\"./javascript\").Mode;\nvar CssMode = require(\"./css\").Mode;\n\nvar PhpMode = function(opts) {\n this.HighlightRules = PhpLangHighlightRules;\n this.$outdent = new MatchingBraceOutdent();\n this.$behaviour = new CstyleBehaviour();\n this.$completer = new PhpCompletions();\n this.foldingRules = new CStyleFoldMode();\n};\noop.inherits(PhpMode, TextMode);\n\n(function() {\n\n this.tokenRe = new RegExp(\"^[\" + unicode.wordChars + \"_]+\", \"g\");\n this.nonTokenRe = new RegExp(\"^(?:[^\" + unicode.wordChars + \"_]|\\\\s])+\", \"g\");\n\n this.lineCommentStart = [\"//\", \"#\"];\n this.blockComment = {start: \"/*\", end: \"*/\"};\n\n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n\n var tokenizedLine = this.getTokenizer().getLineTokens(line, state);\n var tokens = tokenizedLine.tokens;\n var endState = tokenizedLine.state;\n\n if (tokens.length && tokens[tokens.length-1].type == \"comment\") {\n return indent;\n }\n\n if (state == \"start\") {\n var match = line.match(/^.*[\\{\\(\\[:]\\s*$/);\n if (match) {\n indent += tab;\n }\n } else if (state == \"doc-start\") {\n if (endState != \"doc-start\") {\n return \"\";\n }\n var match = line.match(/^\\s*(\\/?)\\*/);\n if (match) {\n if (match[1]) {\n indent += \" \";\n }\n indent += \"* \";\n }\n }\n\n return indent;\n };\n\n this.checkOutdent = function(state, line, input) {\n return this.$outdent.checkOutdent(line, input);\n };\n\n this.autoOutdent = function(state, doc, row) {\n this.$outdent.autoOutdent(doc, row);\n };\n\n this.getCompletions = function(state, session, pos, prefix) {\n return this.$completer.getCompletions(state, session, pos, prefix);\n };\n\n this.$id = \"ace/mode/php-inline\";\n}).call(PhpMode.prototype);\n\nvar Mode = function(opts) {\n if (opts && opts.inline) {\n var mode = new PhpMode();\n mode.createWorker = this.createWorker;\n mode.inlinePhp = true;\n return mode;\n }\n HtmlMode.call(this);\n this.HighlightRules = PhpHighlightRules;\n this.createModeDelegates({\n \"js-\": JavaScriptMode,\n \"css-\": CssMode,\n \"php-\": PhpMode\n });\n this.foldingRules.subModes[\"php-\"] = new CStyleFoldMode();\n};\noop.inherits(Mode, HtmlMode);\n\n(function() {\n\n this.createWorker = function(session) {\n var worker = new WorkerClient([\"ace\"], \"ace/mode/php_worker\", \"PhpWorker\");\n worker.attachToDocument(session.getDocument());\n\n if (this.inlinePhp)\n worker.call(\"setOptions\", [{inline: true}]);\n\n worker.on(\"annotate\", function(e) {\n session.setAnnotations(e.data);\n });\n\n worker.on(\"terminate\", function() {\n session.clearAnnotations();\n });\n\n return worker;\n };\n\n this.$id = \"ace/mode/php\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n});\n\nace.define(\"ace/mode/php_laravel_blade\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/php_laravel_blade_highlight_rules\",\"ace/mode/php\",\"ace/mode/javascript\",\"ace/mode/css\",\"ace/mode/html\"], function(require, exports, module) {\n \"use strict\";\n\n var oop = require(\"../lib/oop\");\n var PHPLaravelBladeHighlightRules = require(\"./php_laravel_blade_highlight_rules\").PHPLaravelBladeHighlightRules;\n var PHPMode = require(\"./php\").Mode;\n var JavaScriptMode = require(\"./javascript\").Mode;\n var CssMode = require(\"./css\").Mode;\n var HtmlMode = require(\"./html\").Mode;\n\n var Mode = function() {\n PHPMode.call(this);\n\n this.HighlightRules = PHPLaravelBladeHighlightRules;\n this.createModeDelegates({\n \"js-\": JavaScriptMode,\n \"css-\": CssMode,\n \"html-\": HtmlMode\n });\n };\n oop.inherits(Mode, PHPMode);\n\n (function() {\n\n this.$id = \"ace/mode/php_laravel_blade\";\n }).call(Mode.prototype);\n\n exports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/php_laravel_blade\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file1h := &embedded.EmbeddedFile{ Filename: "1d837e2c9de35cbb09a85208da4a0d8a.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/abap_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar AbapHighlightRules = function() {\n\n var keywordMapper = this.createKeywordMapper({\n \"variable.language\": \"this\",\n \"keyword\": \n \"ADD ALIAS ALIASES ASCENDING ASSERT ASSIGN ASSIGNING AT BACK\" +\n \" CALL CASE CATCH CHECK CLASS CLEAR CLOSE CNT COLLECT COMMIT COMMUNICATION COMPUTE CONCATENATE CONDENSE CONSTANTS CONTINUE CONTROLS CONVERT CREATE CURRENCY\" +\n \" DATA DEFINE DEFINITION DEFERRED DELETE DESCENDING DESCRIBE DETAIL DIVIDE DO\" +\n \" ELSE ELSEIF ENDAT ENDCASE ENDCLASS ENDDO ENDEXEC ENDFORM ENDFUNCTION ENDIF ENDIFEND ENDINTERFACE ENDLOOP ENDMETHOD ENDMODULE ENDON ENDPROVIDE ENDSELECT ENDTRY ENDWHILE EVENT EVENTS EXEC EXIT EXPORT EXPORTING EXTRACT\" +\n \" FETCH FIELDS FORM FORMAT FREE FROM FUNCTION\" +\n \" GENERATE GET\" +\n \" HIDE\" +\n \" IF IMPORT IMPORTING INDEX INFOTYPES INITIALIZATION INTERFACE INTERFACES INPUT INSERT IMPLEMENTATION\" +\n \" LEAVE LIKE LINE LOAD LOCAL LOOP\" +\n \" MESSAGE METHOD METHODS MODIFY MODULE MOVE MULTIPLY\" +\n \" ON OVERLAY OPTIONAL OTHERS\" +\n \" PACK PARAMETERS PERFORM POSITION PROGRAM PROVIDE PUT\" +\n \" RAISE RANGES READ RECEIVE RECEIVING REDEFINITION REFERENCE REFRESH REJECT REPLACE REPORT RESERVE RESTORE RETURN RETURNING ROLLBACK\" +\n \" SCAN SCROLL SEARCH SELECT SET SHIFT SKIP SORT SORTED SPLIT STANDARD STATICS STEP STOP SUBMIT SUBTRACT SUM SUMMARY SUPPRESS\" +\n \" TABLES TIMES TRANSFER TRANSLATE TRY TYPE TYPES\" +\n \" UNASSIGN ULINE UNPACK UPDATE\" +\n \" WHEN WHILE WINDOW WRITE\" +\n \" OCCURS STRUCTURE OBJECT PROPERTY\" +\n \" CASTING APPEND RAISING VALUE COLOR\" +\n \" CHANGING EXCEPTION EXCEPTIONS DEFAULT CHECKBOX COMMENT\" +\n \" ID NUMBER FOR TITLE OUTPUT\" +\n \" WITH EXIT USING\" +\n \" INTO WHERE GROUP BY HAVING ORDER BY SINGLE\" +\n \" APPENDING CORRESPONDING FIELDS OF TABLE\" +\n \" LEFT RIGHT OUTER INNER JOIN AS CLIENT SPECIFIED BYPASSING BUFFER UP TO ROWS CONNECTING\" +\n \" EQ NE LT LE GT GE NOT AND OR XOR IN LIKE BETWEEN\",\n \"constant.language\": \n \"TRUE FALSE NULL SPACE\",\n \"support.type\": \n \"c n i p f d t x string xstring decfloat16 decfloat34\",\n \"keyword.operator\":\n \"abs sign ceil floor trunc frac acos asin atan cos sin tan\" +\n \" abapOperator cosh sinh tanh exp log log10 sqrt\" +\n \" strlen xstrlen charlen numofchar dbmaxlen lines\" \n }, \"text\", true, \" \");\n\n var compoundKeywords = \"WITH\\\\W+(?:HEADER\\\\W+LINE|FRAME|KEY)|NO\\\\W+STANDARD\\\\W+PAGE\\\\W+HEADING|\"+\n \"EXIT\\\\W+FROM\\\\W+STEP\\\\W+LOOP|BEGIN\\\\W+OF\\\\W+(?:BLOCK|LINE)|BEGIN\\\\W+OF|\"+\n \"END\\\\W+OF\\\\W+(?:BLOCK|LINE)|END\\\\W+OF|NO\\\\W+INTERVALS|\"+\n \"RESPECTING\\\\W+BLANKS|SEPARATED\\\\W+BY|USING\\\\W+(?:EDIT\\\\W+MASK)|\"+\n \"WHERE\\\\W+(?:LINE)|RADIOBUTTON\\\\W+GROUP|REF\\\\W+TO|\"+\n \"(?:PUBLIC|PRIVATE|PROTECTED)(?:\\\\W+SECTION)?|DELETING\\\\W+(?:TRAILING|LEADING)\"+\n \"(?:ALL\\\\W+OCCURRENCES)|(?:FIRST|LAST)\\\\W+OCCURRENCE|INHERITING\\\\W+FROM|\"+\n \"LINE-COUNT|ADD-CORRESPONDING|AUTHORITY-CHECK|BREAK-POINT|CLASS-DATA|CLASS-METHODS|\"+\n \"CLASS-METHOD|DIVIDE-CORRESPONDING|EDITOR-CALL|END-OF-DEFINITION|END-OF-PAGE|END-OF-SELECTION|\"+\n \"FIELD-GROUPS|FIELD-SYMBOLS|FUNCTION-POOL|MOVE-CORRESPONDING|MULTIPLY-CORRESPONDING|NEW-LINE|\"+\n \"NEW-PAGE|NEW-SECTION|PRINT-CONTROL|RP-PROVIDE-FROM-LAST|SELECT-OPTIONS|SELECTION-SCREEN|\"+\n \"START-OF-SELECTION|SUBTRACT-CORRESPONDING|SYNTAX-CHECK|SYNTAX-TRACE|TOP-OF-PAGE|TYPE-POOL|\"+\n \"TYPE-POOLS|LINE-SIZE|LINE-COUNT|MESSAGE-ID|DISPLAY-MODE|READ(?:-ONLY)?|\"+\n \"IS\\\\W+(?:NOT\\\\W+)?(?:ASSIGNED|BOUND|INITIAL|SUPPLIED)\";\n \n this.$rules = {\n \"start\" : [\n {token : \"string\", regex : \"`\", next : \"string\"},\n {token : \"string\", regex : \"'\", next : \"qstring\"},\n {token : \"doc.comment\", regex : /^\\*.+/},\n {token : \"comment\", regex : /\".+$/},\n {token : \"invalid\", regex: \"\\\\.{2,}\"},\n {token : \"keyword.operator\", regex: /\\W[\\-+%=<>*]\\W|\\*\\*|[~:,\\.&$]|->*?|=>/},\n {token : \"paren.lparen\", regex : \"[\\\\[({]\"},\n {token : \"paren.rparen\", regex : \"[\\\\])}]\"},\n {token : \"constant.numeric\", regex: \"[+-]?\\\\d+\\\\b\"},\n {token : \"variable.parameter\", regex : /sy|pa?\\d\\d\\d\\d\\|t\\d\\d\\d\\.|innnn/}, \n {token : \"keyword\", regex : compoundKeywords}, \n {token : \"variable.parameter\", regex : /\\w+-\\w[\\-\\w]*/},\n {token : keywordMapper, regex : \"\\\\b\\\\w+\\\\b\"},\n {caseInsensitive: true}\n ],\n \"qstring\" : [\n {token : \"constant.language.escape\", regex : \"''\"},\n {token : \"string\", regex : \"'\", next : \"start\"},\n {defaultToken : \"string\"}\n ],\n \"string\" : [\n {token : \"constant.language.escape\", regex : \"``\"},\n {token : \"string\", regex : \"`\", next : \"start\"},\n {defaultToken : \"string\"}\n ]\n };\n};\noop.inherits(AbapHighlightRules, TextHighlightRules);\n\nexports.AbapHighlightRules = AbapHighlightRules;\n});\n\nace.define(\"ace/mode/folding/coffee\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/folding/fold_mode\",\"ace/range\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\nvar Range = require(\"../../range\").Range;\n\nvar FoldMode = exports.FoldMode = function() {};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n\n this.getFoldWidgetRange = function(session, foldStyle, row) {\n var range = this.indentationBlock(session, row);\n if (range)\n return range;\n\n var re = /\\S/;\n var line = session.getLine(row);\n var startLevel = line.search(re);\n if (startLevel == -1 || line[startLevel] != \"#\")\n return;\n\n var startColumn = line.length;\n var maxRow = session.getLength();\n var startRow = row;\n var endRow = row;\n\n while (++row < maxRow) {\n line = session.getLine(row);\n var level = line.search(re);\n\n if (level == -1)\n continue;\n\n if (line[level] != \"#\")\n break;\n\n endRow = row;\n }\n\n if (endRow > startRow) {\n var endColumn = session.getLine(endRow).length;\n return new Range(startRow, startColumn, endRow, endColumn);\n }\n };\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n var indent = line.search(/\\S/);\n var next = session.getLine(row + 1);\n var prev = session.getLine(row - 1);\n var prevIndent = prev.search(/\\S/);\n var nextIndent = next.search(/\\S/);\n\n if (indent == -1) {\n session.foldWidgets[row - 1] = prevIndent!= -1 && prevIndent < nextIndent ? \"start\" : \"\";\n return \"\";\n }\n if (prevIndent == -1) {\n if (indent == nextIndent && line[indent] == \"#\" && next[indent] == \"#\") {\n session.foldWidgets[row - 1] = \"\";\n session.foldWidgets[row + 1] = \"\";\n return \"start\";\n }\n } else if (prevIndent == indent && line[indent] == \"#\" && prev[indent] == \"#\") {\n if (session.getLine(row - 2).search(/\\S/) == -1) {\n session.foldWidgets[row - 1] = \"start\";\n session.foldWidgets[row + 1] = \"\";\n return \"\";\n }\n }\n\n if (prevIndent!= -1 && prevIndent < indent)\n session.foldWidgets[row - 1] = \"start\";\n else\n session.foldWidgets[row - 1] = \"\";\n\n if (indent < nextIndent)\n return \"start\";\n else\n return \"\";\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/abap\",[\"require\",\"exports\",\"module\",\"ace/mode/abap_highlight_rules\",\"ace/mode/folding/coffee\",\"ace/range\",\"ace/mode/text\",\"ace/lib/oop\"], function(require, exports, module) {\n\"use strict\";\n\nvar Rules = require(\"./abap_highlight_rules\").AbapHighlightRules;\nvar FoldMode = require(\"./folding/coffee\").FoldMode;\nvar Range = require(\"../range\").Range;\nvar TextMode = require(\"./text\").Mode;\nvar oop = require(\"../lib/oop\");\n\nfunction Mode() {\n this.HighlightRules = Rules;\n this.foldingRules = new FoldMode();\n}\n\noop.inherits(Mode, TextMode);\n\n(function() {\n \n this.lineCommentStart = '\"';\n \n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n return indent;\n }; \n \n this.$id = \"ace/mode/abap\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n\n}); (function() {\n ace.require([\"ace/mode/abap\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file1i := &embedded.EmbeddedFile{ Filename: "1dc321da606125ce0592e274e01c728d.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/julia\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText =undefined;\nexports.scope = \"julia\";\n\n}); (function() {\n ace.require([\"ace/snippets/julia\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file1j := &embedded.EmbeddedFile{ Filename: "1e33cb44dfab039b4a7e88a3ee1bbfe7.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/matching_brace_outdent\",[\"require\",\"exports\",\"module\",\"ace/range\"], function(require, exports, module) {\n\"use strict\";\n\nvar Range = require(\"../range\").Range;\n\nvar MatchingBraceOutdent = function() {};\n\n(function() {\n\n this.checkOutdent = function(line, input) {\n if (! /^\\s+$/.test(line))\n return false;\n\n return /^\\s*\\}/.test(input);\n };\n\n this.autoOutdent = function(doc, row) {\n var line = doc.getLine(row);\n var match = line.match(/^(\\s*\\})/);\n\n if (!match) return 0;\n\n var column = match[1].length;\n var openBracePos = doc.findMatchingBracket({row: row, column: column});\n\n if (!openBracePos || openBracePos.row == row) return 0;\n\n var indent = this.$getIndent(doc.getLine(openBracePos.row));\n doc.replace(new Range(row, 0, row, column-1), indent);\n };\n\n this.$getIndent = function(line) {\n return line.match(/^\\s*/)[0];\n };\n\n}).call(MatchingBraceOutdent.prototype);\n\nexports.MatchingBraceOutdent = MatchingBraceOutdent;\n});\n\nace.define(\"ace/mode/livescript\",[\"require\",\"exports\",\"module\",\"ace/tokenizer\",\"ace/mode/matching_brace_outdent\",\"ace/mode/behaviour/cstyle\",\"ace/mode/text\"], function(require, exports, module){\n var identifier, LiveScriptMode, keywordend, stringfill;\n identifier = '(?![\\\\d\\\\s])[$\\\\w\\\\xAA-\\\\uFFDC](?:(?!\\\\s)[$\\\\w\\\\xAA-\\\\uFFDC]|-[A-Za-z])*';\n exports.Mode = LiveScriptMode = (function(superclass){\n var indenter, prototype = extend$((import$(LiveScriptMode, superclass).displayName = 'LiveScriptMode', LiveScriptMode), superclass).prototype, constructor = LiveScriptMode;\n function LiveScriptMode(){\n var that;\n this.$tokenizer = new (require('../tokenizer')).Tokenizer(LiveScriptMode.Rules);\n if (that = require('../mode/matching_brace_outdent')) {\n this.$outdent = new that.MatchingBraceOutdent;\n }\n this.$id = \"ace/mode/livescript\";\n this.$behaviour = new (require(\"./behaviour/cstyle\").CstyleBehaviour)();\n }\n indenter = RegExp('(?:[({[=:]|[-~]>|\\\\b(?:e(?:lse|xport)|d(?:o|efault)|t(?:ry|hen)|finally|import(?:\\\\s*all)?|const|var|let|new|catch(?:\\\\s*' + identifier + ')?))\\\\s*$');\n prototype.getNextLineIndent = function(state, line, tab){\n var indent, tokens;\n indent = this.$getIndent(line);\n tokens = this.$tokenizer.getLineTokens(line, state).tokens;\n if (!(tokens.length && tokens[tokens.length - 1].type === 'comment')) {\n if (state === 'start' && indenter.test(line)) {\n indent += tab;\n }\n }\n return indent;\n };\n prototype.lineCommentStart = \"#\";\n prototype.blockComment = {start: \"###\", end: \"###\"};\n prototype.checkOutdent = function(state, line, input){\n var ref$;\n return (ref$ = this.$outdent) != null ? ref$.checkOutdent(line, input) : void 8;\n };\n prototype.autoOutdent = function(state, doc, row){\n var ref$;\n return (ref$ = this.$outdent) != null ? ref$.autoOutdent(doc, row) : void 8;\n };\n return LiveScriptMode;\n }(require('../mode/text').Mode));\n keywordend = '(?![$\\\\w]|-[A-Za-z]|\\\\s*:(?![:=]))';\n stringfill = {\n defaultToken: 'string'\n };\n LiveScriptMode.Rules = {\n start: [\n {\n token: 'keyword',\n regex: '(?:t(?:h(?:is|row|en)|ry|ypeof!?)|c(?:on(?:tinue|st)|a(?:se|tch)|lass)|i(?:n(?:stanceof)?|mp(?:ort(?:\\\\s+all)?|lements)|[fs])|d(?:e(?:fault|lete|bugger)|o)|f(?:or(?:\\\\s+own)?|inally|unction)|s(?:uper|witch)|e(?:lse|x(?:tends|port)|val)|a(?:nd|rguments)|n(?:ew|ot)|un(?:less|til)|w(?:hile|ith)|o[fr]|return|break|let|var|loop)' + keywordend\n }, {\n token: 'constant.language',\n regex: '(?:true|false|yes|no|on|off|null|void|undefined)' + keywordend\n }, {\n token: 'invalid.illegal',\n regex: '(?:p(?:ackage|r(?:ivate|otected)|ublic)|i(?:mplements|nterface)|enum|static|yield)' + keywordend\n }, {\n token: 'language.support.class',\n regex: '(?:R(?:e(?:gExp|ferenceError)|angeError)|S(?:tring|yntaxError)|E(?:rror|valError)|Array|Boolean|Date|Function|Number|Object|TypeError|URIError)' + keywordend\n }, {\n token: 'language.support.function',\n regex: '(?:is(?:NaN|Finite)|parse(?:Int|Float)|Math|JSON|(?:en|de)codeURI(?:Component)?)' + keywordend\n }, {\n token: 'variable.language',\n regex: '(?:t(?:hat|il|o)|f(?:rom|allthrough)|it|by|e)' + keywordend\n }, {\n token: 'identifier',\n regex: identifier + '\\\\s*:(?![:=])'\n }, {\n token: 'variable',\n regex: identifier\n }, {\n token: 'keyword.operator',\n regex: '(?:\\\\.{3}|\\\\s+\\\\?)'\n }, {\n token: 'keyword.variable',\n regex: '(?:@+|::|\\\\.\\\\.)',\n next: 'key'\n }, {\n token: 'keyword.operator',\n regex: '\\\\.\\\\s*',\n next: 'key'\n }, {\n token: 'string',\n regex: '\\\\\\\\\\\\S[^\\\\s,;)}\\\\]]*'\n }, {\n token: 'string.doc',\n regex: '\\'\\'\\'',\n next: 'qdoc'\n }, {\n token: 'string.doc',\n regex: '\"\"\"',\n next: 'qqdoc'\n }, {\n token: 'string',\n regex: '\\'',\n next: 'qstring'\n }, {\n token: 'string',\n regex: '\"',\n next: 'qqstring'\n }, {\n token: 'string',\n regex: '`',\n next: 'js'\n }, {\n token: 'string',\n regex: '<\\\\[',\n next: 'words'\n }, {\n token: 'string.regex',\n regex: '//',\n next: 'heregex'\n }, {\n token: 'comment.doc',\n regex: '/\\\\*',\n next: 'comment'\n }, {\n token: 'comment',\n regex: '#.*'\n }, {\n token: 'string.regex',\n regex: '\\\\/(?:[^[\\\\/\\\\n\\\\\\\\]*(?:(?:\\\\\\\\.|\\\\[[^\\\\]\\\\n\\\\\\\\]*(?:\\\\\\\\.[^\\\\]\\\\n\\\\\\\\]*)*\\\\])[^[\\\\/\\\\n\\\\\\\\]*)*)\\\\/[gimy$]{0,4}',\n next: 'key'\n }, {\n token: 'constant.numeric',\n regex: '(?:0x[\\\\da-fA-F][\\\\da-fA-F_]*|(?:[2-9]|[12]\\\\d|3[0-6])r[\\\\da-zA-Z][\\\\da-zA-Z_]*|(?:\\\\d[\\\\d_]*(?:\\\\.\\\\d[\\\\d_]*)?|\\\\.\\\\d[\\\\d_]*)(?:e[+-]?\\\\d[\\\\d_]*)?[\\\\w$]*)'\n }, {\n token: 'lparen',\n regex: '[({[]'\n }, {\n token: 'rparen',\n regex: '[)}\\\\]]',\n next: 'key'\n }, {\n token: 'keyword.operator',\n regex: '[\\\\^!|&%+\\\\-]+'\n }, {\n token: 'text',\n regex: '\\\\s+'\n }\n ],\n heregex: [\n {\n token: 'string.regex',\n regex: '.*?//[gimy$?]{0,4}',\n next: 'start'\n }, {\n token: 'string.regex',\n regex: '\\\\s*#{'\n }, {\n token: 'comment.regex',\n regex: '\\\\s+(?:#.*)?'\n }, {\n defaultToken: 'string.regex'\n }\n ],\n key: [\n {\n token: 'keyword.operator',\n regex: '[.?@!]+'\n }, {\n token: 'identifier',\n regex: identifier,\n next: 'start'\n }, {\n token: 'text',\n regex: '',\n next: 'start'\n }\n ],\n comment: [\n {\n token: 'comment.doc',\n regex: '.*?\\\\*/',\n next: 'start'\n }, {\n defaultToken: 'comment.doc'\n }\n ],\n qdoc: [\n {\n token: 'string',\n regex: \".*?'''\",\n next: 'key'\n }, stringfill\n ],\n qqdoc: [\n {\n token: 'string',\n regex: '.*?\"\"\"',\n next: 'key'\n }, stringfill\n ],\n qstring: [\n {\n token: 'string',\n regex: '[^\\\\\\\\\\']*(?:\\\\\\\\.[^\\\\\\\\\\']*)*\\'',\n next: 'key'\n }, stringfill\n ],\n qqstring: [\n {\n token: 'string',\n regex: '[^\\\\\\\\\"]*(?:\\\\\\\\.[^\\\\\\\\\"]*)*\"',\n next: 'key'\n }, stringfill\n ],\n js: [\n {\n token: 'string',\n regex: '[^\\\\\\\\`]*(?:\\\\\\\\.[^\\\\\\\\`]*)*`',\n next: 'key'\n }, stringfill\n ],\n words: [\n {\n token: 'string',\n regex: '.*?\\\\]>',\n next: 'key'\n }, stringfill\n ]\n };\nfunction extend$(sub, sup){\n function fun(){} fun.prototype = (sub.superclass = sup).prototype;\n (sub.prototype = new fun).constructor = sub;\n if (typeof sup.extended == 'function') sup.extended(sub);\n return sub;\n}\nfunction import$(obj, src){\n var own = {}.hasOwnProperty;\n for (var key in src) if (own.call(src, key)) obj[key] = src[key];\n return obj;\n}\n}); (function() {\n ace.require([\"ace/mode/livescript\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file1k := &embedded.EmbeddedFile{ Filename: "1f03c9a69a8b9f79bcb7a338963f80c8.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/ext/elastic_tabstops_lite\",[\"require\",\"exports\",\"module\",\"ace/editor\",\"ace/config\"], function(require, exports, module) {\n\"use strict\";\n\nvar ElasticTabstopsLite = function(editor) {\n this.$editor = editor;\n var self = this;\n var changedRows = [];\n var recordChanges = false;\n this.onAfterExec = function() {\n recordChanges = false;\n self.processRows(changedRows);\n changedRows = [];\n };\n this.onExec = function() {\n recordChanges = true;\n };\n this.onChange = function(delta) {\n if (recordChanges) {\n if (changedRows.indexOf(delta.start.row) == -1)\n changedRows.push(delta.start.row);\n if (delta.end.row != delta.start.row)\n changedRows.push(delta.end.row);\n }\n };\n};\n\n(function() {\n this.processRows = function(rows) {\n this.$inChange = true;\n var checkedRows = [];\n\n for (var r = 0, rowCount = rows.length; r < rowCount; r++) {\n var row = rows[r];\n\n if (checkedRows.indexOf(row) > -1)\n continue;\n\n var cellWidthObj = this.$findCellWidthsForBlock(row);\n var cellWidths = this.$setBlockCellWidthsToMax(cellWidthObj.cellWidths);\n var rowIndex = cellWidthObj.firstRow;\n\n for (var w = 0, l = cellWidths.length; w < l; w++) {\n var widths = cellWidths[w];\n checkedRows.push(rowIndex);\n this.$adjustRow(rowIndex, widths);\n rowIndex++;\n }\n }\n this.$inChange = false;\n };\n\n this.$findCellWidthsForBlock = function(row) {\n var cellWidths = [], widths;\n var rowIter = row;\n while (rowIter >= 0) {\n widths = this.$cellWidthsForRow(rowIter);\n if (widths.length == 0)\n break;\n\n cellWidths.unshift(widths);\n rowIter--;\n }\n var firstRow = rowIter + 1;\n rowIter = row;\n var numRows = this.$editor.session.getLength();\n\n while (rowIter < numRows - 1) {\n rowIter++;\n\n widths = this.$cellWidthsForRow(rowIter);\n if (widths.length == 0)\n break;\n\n cellWidths.push(widths);\n }\n\n return { cellWidths: cellWidths, firstRow: firstRow };\n };\n\n this.$cellWidthsForRow = function(row) {\n var selectionColumns = this.$selectionColumnsForRow(row);\n\n var tabs = [-1].concat(this.$tabsForRow(row));\n var widths = tabs.map(function(el) { return 0; } ).slice(1);\n var line = this.$editor.session.getLine(row);\n\n for (var i = 0, len = tabs.length - 1; i < len; i++) {\n var leftEdge = tabs[i]+1;\n var rightEdge = tabs[i+1];\n\n var rightmostSelection = this.$rightmostSelectionInCell(selectionColumns, rightEdge);\n var cell = line.substring(leftEdge, rightEdge);\n widths[i] = Math.max(cell.replace(/\\s+$/g,'').length, rightmostSelection - leftEdge);\n }\n\n return widths;\n };\n\n this.$selectionColumnsForRow = function(row) {\n var selections = [], cursor = this.$editor.getCursorPosition();\n if (this.$editor.session.getSelection().isEmpty()) {\n if (row == cursor.row)\n selections.push(cursor.column);\n }\n\n return selections;\n };\n\n this.$setBlockCellWidthsToMax = function(cellWidths) {\n var startingNewBlock = true, blockStartRow, blockEndRow, maxWidth;\n var columnInfo = this.$izip_longest(cellWidths);\n\n for (var c = 0, l = columnInfo.length; c < l; c++) {\n var column = columnInfo[c];\n if (!column.push) {\n console.error(column);\n continue;\n }\n column.push(NaN);\n\n for (var r = 0, s = column.length; r < s; r++) {\n var width = column[r];\n if (startingNewBlock) {\n blockStartRow = r;\n maxWidth = 0;\n startingNewBlock = false;\n }\n if (isNaN(width)) {\n blockEndRow = r;\n\n for (var j = blockStartRow; j < blockEndRow; j++) {\n cellWidths[j][c] = maxWidth;\n }\n startingNewBlock = true;\n }\n\n maxWidth = Math.max(maxWidth, width);\n }\n }\n\n return cellWidths;\n };\n\n this.$rightmostSelectionInCell = function(selectionColumns, cellRightEdge) {\n var rightmost = 0;\n\n if (selectionColumns.length) {\n var lengths = [];\n for (var s = 0, length = selectionColumns.length; s < length; s++) {\n if (selectionColumns[s] <= cellRightEdge)\n lengths.push(s);\n else\n lengths.push(0);\n }\n rightmost = Math.max.apply(Math, lengths);\n }\n\n return rightmost;\n };\n\n this.$tabsForRow = function(row) {\n var rowTabs = [], line = this.$editor.session.getLine(row),\n re = /\\t/g, match;\n\n while ((match = re.exec(line)) != null) {\n rowTabs.push(match.index);\n }\n\n return rowTabs;\n };\n\n this.$adjustRow = function(row, widths) {\n var rowTabs = this.$tabsForRow(row);\n\n if (rowTabs.length == 0)\n return;\n\n var bias = 0, location = -1;\n var expandedSet = this.$izip(widths, rowTabs);\n\n for (var i = 0, l = expandedSet.length; i < l; i++) {\n var w = expandedSet[i][0], it = expandedSet[i][1];\n location += 1 + w;\n it += bias;\n var difference = location - it;\n\n if (difference == 0)\n continue;\n\n var partialLine = this.$editor.session.getLine(row).substr(0, it );\n var strippedPartialLine = partialLine.replace(/\\s*$/g, \"\");\n var ispaces = partialLine.length - strippedPartialLine.length;\n\n if (difference > 0) {\n this.$editor.session.getDocument().insertInLine({row: row, column: it + 1}, Array(difference + 1).join(\" \") + \"\\t\");\n this.$editor.session.getDocument().removeInLine(row, it, it + 1);\n\n bias += difference;\n }\n\n if (difference < 0 && ispaces >= -difference) {\n this.$editor.session.getDocument().removeInLine(row, it + difference, it);\n bias += difference;\n }\n }\n };\n this.$izip_longest = function(iterables) {\n if (!iterables[0])\n return [];\n var longest = iterables[0].length;\n var iterablesLength = iterables.length;\n\n for (var i = 1; i < iterablesLength; i++) {\n var iLength = iterables[i].length;\n if (iLength > longest)\n longest = iLength;\n }\n\n var expandedSet = [];\n\n for (var l = 0; l < longest; l++) {\n var set = [];\n for (var i = 0; i < iterablesLength; i++) {\n if (iterables[i][l] === \"\")\n set.push(NaN);\n else\n set.push(iterables[i][l]);\n }\n\n expandedSet.push(set);\n }\n\n\n return expandedSet;\n };\n this.$izip = function(widths, tabs) {\n var size = widths.length >= tabs.length ? tabs.length : widths.length;\n\n var expandedSet = [];\n for (var i = 0; i < size; i++) {\n var set = [ widths[i], tabs[i] ];\n expandedSet.push(set);\n }\n return expandedSet;\n };\n\n}).call(ElasticTabstopsLite.prototype);\n\nexports.ElasticTabstopsLite = ElasticTabstopsLite;\n\nvar Editor = require(\"../editor\").Editor;\nrequire(\"../config\").defineOptions(Editor.prototype, \"editor\", {\n useElasticTabstops: {\n set: function(val) {\n if (val) {\n if (!this.elasticTabstops)\n this.elasticTabstops = new ElasticTabstopsLite(this);\n this.commands.on(\"afterExec\", this.elasticTabstops.onAfterExec);\n this.commands.on(\"exec\", this.elasticTabstops.onExec);\n this.on(\"change\", this.elasticTabstops.onChange);\n } else if (this.elasticTabstops) {\n this.commands.removeListener(\"afterExec\", this.elasticTabstops.onAfterExec);\n this.commands.removeListener(\"exec\", this.elasticTabstops.onExec);\n this.removeListener(\"change\", this.elasticTabstops.onChange);\n }\n }\n }\n});\n\n}); (function() {\n ace.require([\"ace/ext/elastic_tabstops_lite\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file1l := &embedded.EmbeddedFile{ Filename: "20f40fcbcb3ea91ce1da172a1c02f8d1.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/cirru_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar CirruHighlightRules = function() {\n this.$rules = {\n start: [{\n token: 'constant.numeric',\n regex: /[\\d\\.]+/\n }, {\n token: 'comment.line.double-dash',\n regex: /--/,\n next: 'comment'\n }, {\n token: 'storage.modifier',\n regex: /\\(/\n }, {\n token: 'storage.modifier',\n regex: /,/,\n next: 'line'\n }, {\n token: 'support.function',\n regex: /[^\\(\\)\"\\s]+/,\n next: 'line'\n }, {\n token: 'string.quoted.double',\n regex: /\"/,\n next: 'string'\n }, {\n token: 'storage.modifier',\n regex: /\\)/\n }],\n comment: [{\n token: 'comment.line.double-dash',\n regex: / +[^\\n]+/,\n next: 'start'\n }],\n string: [{\n token: 'string.quoted.double',\n regex: /\"/,\n next: 'line'\n }, {\n token: 'constant.character.escape',\n regex: /\\\\/,\n next: 'escape'\n }, {\n token: 'string.quoted.double',\n regex: /[^\\\\\"]+/\n }],\n escape: [{\n token: 'constant.character.escape',\n regex: /./,\n next: 'string'\n }],\n line: [{\n token: 'constant.numeric',\n regex: /[\\d\\.]+/\n }, {\n token: 'markup.raw',\n regex: /^\\s*/,\n next: 'start'\n }, {\n token: 'storage.modifier',\n regex: /\\$/,\n next: 'start'\n }, {\n token: 'variable.parameter',\n regex: /[^\\(\\)\"\\s]+/\n }, {\n token: 'storage.modifier',\n regex: /\\(/,\n next: 'start'\n }, {\n token: 'storage.modifier',\n regex: /\\)/\n }, {\n token: 'markup.raw',\n regex: /^ */,\n next: 'start'\n }, {\n token: 'string.quoted.double',\n regex: /\"/,\n next: 'string'\n }]\n };\n\n};\n\noop.inherits(CirruHighlightRules, TextHighlightRules);\n\nexports.CirruHighlightRules = CirruHighlightRules;\n});\n\nace.define(\"ace/mode/folding/coffee\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/folding/fold_mode\",\"ace/range\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\nvar Range = require(\"../../range\").Range;\n\nvar FoldMode = exports.FoldMode = function() {};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n\n this.getFoldWidgetRange = function(session, foldStyle, row) {\n var range = this.indentationBlock(session, row);\n if (range)\n return range;\n\n var re = /\\S/;\n var line = session.getLine(row);\n var startLevel = line.search(re);\n if (startLevel == -1 || line[startLevel] != \"#\")\n return;\n\n var startColumn = line.length;\n var maxRow = session.getLength();\n var startRow = row;\n var endRow = row;\n\n while (++row < maxRow) {\n line = session.getLine(row);\n var level = line.search(re);\n\n if (level == -1)\n continue;\n\n if (line[level] != \"#\")\n break;\n\n endRow = row;\n }\n\n if (endRow > startRow) {\n var endColumn = session.getLine(endRow).length;\n return new Range(startRow, startColumn, endRow, endColumn);\n }\n };\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n var indent = line.search(/\\S/);\n var next = session.getLine(row + 1);\n var prev = session.getLine(row - 1);\n var prevIndent = prev.search(/\\S/);\n var nextIndent = next.search(/\\S/);\n\n if (indent == -1) {\n session.foldWidgets[row - 1] = prevIndent!= -1 && prevIndent < nextIndent ? \"start\" : \"\";\n return \"\";\n }\n if (prevIndent == -1) {\n if (indent == nextIndent && line[indent] == \"#\" && next[indent] == \"#\") {\n session.foldWidgets[row - 1] = \"\";\n session.foldWidgets[row + 1] = \"\";\n return \"start\";\n }\n } else if (prevIndent == indent && line[indent] == \"#\" && prev[indent] == \"#\") {\n if (session.getLine(row - 2).search(/\\S/) == -1) {\n session.foldWidgets[row - 1] = \"start\";\n session.foldWidgets[row + 1] = \"\";\n return \"\";\n }\n }\n\n if (prevIndent!= -1 && prevIndent < indent)\n session.foldWidgets[row - 1] = \"start\";\n else\n session.foldWidgets[row - 1] = \"\";\n\n if (indent < nextIndent)\n return \"start\";\n else\n return \"\";\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/cirru\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/cirru_highlight_rules\",\"ace/mode/folding/coffee\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar CirruHighlightRules = require(\"./cirru_highlight_rules\").CirruHighlightRules;\nvar CoffeeFoldMode = require(\"./folding/coffee\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = CirruHighlightRules;\n this.foldingRules = new CoffeeFoldMode();\n this.$behaviour = this.$defaultBehaviour;\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n this.lineCommentStart = \"--\";\n this.$id = \"ace/mode/cirru\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/cirru\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file1m := &embedded.EmbeddedFile{ Filename: "21590b70d0b20f1192e60416ab778583.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/lucene_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar LuceneHighlightRules = function() {\n this.$rules = {\n \"start\" : [\n {\n token: \"constant.language.escape\",\n regex: /\\\\[\\+\\-&\\|!\\(\\)\\{\\}\\[\\]^\"~\\*\\?:\\\\]/\n }, {\n token: \"constant.character.negation\",\n regex: \"\\\\-\"\n }, {\n token: \"constant.character.interro\",\n regex: \"\\\\?\"\n }, {\n token: \"constant.character.required\",\n regex: \"\\\\+\"\n }, {\n token: \"constant.character.asterisk\",\n regex: \"\\\\*\"\n }, {\n token: 'constant.character.proximity',\n regex: '~(?:0\\\\.[0-9]+|[0-9]+)?'\n }, {\n token: 'keyword.operator',\n regex: '(AND|OR|NOT|TO)\\\\b'\n }, {\n token: \"paren.lparen\",\n regex: \"[\\\\(\\\\{\\\\[]\"\n }, {\n token: \"paren.rparen\",\n regex: \"[\\\\)\\\\}\\\\]]\"\n }, {\n token: \"keyword\",\n regex: \"(?:\\\\\\\\.|[^\\\\s:\\\\\\\\])+:\"\n }, {\n token: \"string\", // \" string\n regex: '\"(?:\\\\\\\\\"|[^\"])*\"'\n }, {\n token: \"term\",\n regex: \"\\\\w+\"\n }, {\n token: \"text\",\n regex: \"\\\\s+\"\n }\n ]\n };\n};\n\noop.inherits(LuceneHighlightRules, TextHighlightRules);\n\nexports.LuceneHighlightRules = LuceneHighlightRules;\n});\n\nace.define(\"ace/mode/lucene\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/lucene_highlight_rules\"], function(require, exports, module) {\n'use strict';\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar LuceneHighlightRules = require(\"./lucene_highlight_rules\").LuceneHighlightRules;\n\nvar Mode = function() {\n this.HighlightRules = LuceneHighlightRules;\n this.$behaviour = this.$defaultBehaviour;\n};\n\noop.inherits(Mode, TextMode);\n\n(function() {\n this.$id = \"ace/mode/lucene\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/lucene\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file1n := &embedded.EmbeddedFile{ Filename: "2208705283adad817bb4a5af647f77ab.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/theme/tomorrow_night_blue\",[\"require\",\"exports\",\"module\",\"ace/lib/dom\"], function(require, exports, module) {\n\nexports.isDark = true;\nexports.cssClass = \"ace-tomorrow-night-blue\";\nexports.cssText = \".ace-tomorrow-night-blue .ace_gutter {\\\nbackground: #00204b;\\\ncolor: #7388b5\\\n}\\\n.ace-tomorrow-night-blue .ace_print-margin {\\\nwidth: 1px;\\\nbackground: #00204b\\\n}\\\n.ace-tomorrow-night-blue {\\\nbackground-color: #002451;\\\ncolor: #FFFFFF\\\n}\\\n.ace-tomorrow-night-blue .ace_constant.ace_other,\\\n.ace-tomorrow-night-blue .ace_cursor {\\\ncolor: #FFFFFF\\\n}\\\n.ace-tomorrow-night-blue .ace_marker-layer .ace_selection {\\\nbackground: #003F8E\\\n}\\\n.ace-tomorrow-night-blue.ace_multiselect .ace_selection.ace_start {\\\nbox-shadow: 0 0 3px 0px #002451;\\\n}\\\n.ace-tomorrow-night-blue .ace_marker-layer .ace_step {\\\nbackground: rgb(127, 111, 19)\\\n}\\\n.ace-tomorrow-night-blue .ace_marker-layer .ace_bracket {\\\nmargin: -1px 0 0 -1px;\\\nborder: 1px solid #404F7D\\\n}\\\n.ace-tomorrow-night-blue .ace_marker-layer .ace_active-line {\\\nbackground: #00346E\\\n}\\\n.ace-tomorrow-night-blue .ace_gutter-active-line {\\\nbackground-color: #022040\\\n}\\\n.ace-tomorrow-night-blue .ace_marker-layer .ace_selected-word {\\\nborder: 1px solid #003F8E\\\n}\\\n.ace-tomorrow-night-blue .ace_invisible {\\\ncolor: #404F7D\\\n}\\\n.ace-tomorrow-night-blue .ace_keyword,\\\n.ace-tomorrow-night-blue .ace_meta,\\\n.ace-tomorrow-night-blue .ace_storage,\\\n.ace-tomorrow-night-blue .ace_storage.ace_type,\\\n.ace-tomorrow-night-blue .ace_support.ace_type {\\\ncolor: #EBBBFF\\\n}\\\n.ace-tomorrow-night-blue .ace_keyword.ace_operator {\\\ncolor: #99FFFF\\\n}\\\n.ace-tomorrow-night-blue .ace_constant.ace_character,\\\n.ace-tomorrow-night-blue .ace_constant.ace_language,\\\n.ace-tomorrow-night-blue .ace_constant.ace_numeric,\\\n.ace-tomorrow-night-blue .ace_keyword.ace_other.ace_unit,\\\n.ace-tomorrow-night-blue .ace_support.ace_constant,\\\n.ace-tomorrow-night-blue .ace_variable.ace_parameter {\\\ncolor: #FFC58F\\\n}\\\n.ace-tomorrow-night-blue .ace_invalid {\\\ncolor: #FFFFFF;\\\nbackground-color: #F99DA5\\\n}\\\n.ace-tomorrow-night-blue .ace_invalid.ace_deprecated {\\\ncolor: #FFFFFF;\\\nbackground-color: #EBBBFF\\\n}\\\n.ace-tomorrow-night-blue .ace_fold {\\\nbackground-color: #BBDAFF;\\\nborder-color: #FFFFFF\\\n}\\\n.ace-tomorrow-night-blue .ace_entity.ace_name.ace_function,\\\n.ace-tomorrow-night-blue .ace_support.ace_function,\\\n.ace-tomorrow-night-blue .ace_variable {\\\ncolor: #BBDAFF\\\n}\\\n.ace-tomorrow-night-blue .ace_support.ace_class,\\\n.ace-tomorrow-night-blue .ace_support.ace_type {\\\ncolor: #FFEEAD\\\n}\\\n.ace-tomorrow-night-blue .ace_heading,\\\n.ace-tomorrow-night-blue .ace_markup.ace_heading,\\\n.ace-tomorrow-night-blue .ace_string {\\\ncolor: #D1F1A9\\\n}\\\n.ace-tomorrow-night-blue .ace_entity.ace_name.ace_tag,\\\n.ace-tomorrow-night-blue .ace_entity.ace_other.ace_attribute-name,\\\n.ace-tomorrow-night-blue .ace_meta.ace_tag,\\\n.ace-tomorrow-night-blue .ace_string.ace_regexp,\\\n.ace-tomorrow-night-blue .ace_variable {\\\ncolor: #FF9DA4\\\n}\\\n.ace-tomorrow-night-blue .ace_comment {\\\ncolor: #7285B7\\\n}\\\n.ace-tomorrow-night-blue .ace_indent-guide {\\\nbackground: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWNgYGBgYJDzqfwPAANXAeNsiA+ZAAAAAElFTkSuQmCC) right repeat-y\\\n}\";\n\nvar dom = require(\"../lib/dom\");\ndom.importCssString(exports.cssText, exports.cssClass);\n}); (function() {\n ace.require([\"ace/theme/tomorrow_night_blue\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file1o := &embedded.EmbeddedFile{ Filename: "223593fe8dd78b83f22808f9aad86ae9.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/batchfile_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar BatchFileHighlightRules = function() {\n\n this.$rules = { start: \n [ { token: 'keyword.command.dosbatch',\n regex: '\\\\b(?:append|assoc|at|attrib|break|cacls|cd|chcp|chdir|chkdsk|chkntfs|cls|cmd|color|comp|compact|convert|copy|date|del|dir|diskcomp|diskcopy|doskey|echo|endlocal|erase|fc|find|findstr|format|ftype|graftabl|help|keyb|label|md|mkdir|mode|more|move|path|pause|popd|print|prompt|pushd|rd|recover|ren|rename|replace|restore|rmdir|set|setlocal|shift|sort|start|subst|time|title|tree|type|ver|verify|vol|xcopy)\\\\b',\n caseInsensitive: true },\n { token: 'keyword.control.statement.dosbatch',\n regex: '\\\\b(?:goto|call|exit)\\\\b',\n caseInsensitive: true },\n { token: 'keyword.control.conditional.if.dosbatch',\n regex: '\\\\bif\\\\s+not\\\\s+(?:exist|defined|errorlevel|cmdextversion)\\\\b',\n caseInsensitive: true },\n { token: 'keyword.control.conditional.dosbatch',\n regex: '\\\\b(?:if|else)\\\\b',\n caseInsensitive: true },\n { token: 'keyword.control.repeat.dosbatch',\n regex: '\\\\bfor\\\\b',\n caseInsensitive: true },\n { token: 'keyword.operator.dosbatch',\n regex: '\\\\b(?:EQU|NEQ|LSS|LEQ|GTR|GEQ)\\\\b' },\n { token: ['doc.comment', 'comment'],\n regex: '(?:^|\\\\b)(rem)($|\\\\s.*$)',\n caseInsensitive: true },\n { token: 'comment.line.colons.dosbatch',\n regex: '::.*$' },\n { include: 'variable' },\n { token: 'punctuation.definition.string.begin.shell',\n regex: '\"',\n push: [ \n { token: 'punctuation.definition.string.end.shell', regex: '\"', next: 'pop' },\n { include: 'variable' },\n { defaultToken: 'string.quoted.double.dosbatch' } ] },\n { token: 'keyword.operator.pipe.dosbatch', regex: '[|]' },\n { token: 'keyword.operator.redirect.shell',\n regex: '&>|\\\\d*>&\\\\d*|\\\\d*(?:>>|>|<)|\\\\d*<&|\\\\d*<>' } ],\n variable: [\n { token: 'constant.numeric', regex: '%%\\\\w+|%[*\\\\d]|%\\\\w+%'},\n { token: 'constant.numeric', regex: '%~\\\\d+'},\n { token: ['markup.list', 'constant.other', 'markup.list'],\n regex: '(%)(\\\\w+)(%?)' }]};\n \n this.normalizeRules();\n};\n\nBatchFileHighlightRules.metaData = { name: 'Batch File',\n scopeName: 'source.dosbatch',\n fileTypes: [ 'bat' ] };\n\n\noop.inherits(BatchFileHighlightRules, TextHighlightRules);\n\nexports.BatchFileHighlightRules = BatchFileHighlightRules;\n});\n\nace.define(\"ace/mode/folding/cstyle\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/range\",\"ace/mode/folding/fold_mode\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Range = require(\"../../range\").Range;\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function(commentRegex) {\n if (commentRegex) {\n this.foldingStartMarker = new RegExp(\n this.foldingStartMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.start)\n );\n this.foldingStopMarker = new RegExp(\n this.foldingStopMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.end)\n );\n }\n};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n \n this.foldingStartMarker = /([\\{\\[\\(])[^\\}\\]\\)]*$|^\\s*(\\/\\*)/;\n this.foldingStopMarker = /^[^\\[\\{\\(]*([\\}\\]\\)])|^[\\s\\*]*(\\*\\/)/;\n this.singleLineBlockCommentRe= /^\\s*(\\/\\*).*\\*\\/\\s*$/;\n this.tripleStarBlockCommentRe = /^\\s*(\\/\\*\\*\\*).*\\*\\/\\s*$/;\n this.startRegionRe = /^\\s*(\\/\\*|\\/\\/)#?region\\b/;\n this._getFoldWidgetBase = this.getFoldWidget;\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n \n if (this.singleLineBlockCommentRe.test(line)) {\n if (!this.startRegionRe.test(line) && !this.tripleStarBlockCommentRe.test(line))\n return \"\";\n }\n \n var fw = this._getFoldWidgetBase(session, foldStyle, row);\n \n if (!fw && this.startRegionRe.test(line))\n return \"start\"; // lineCommentRegionStart\n \n return fw;\n };\n\n this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {\n var line = session.getLine(row);\n \n if (this.startRegionRe.test(line))\n return this.getCommentRegionBlock(session, line, row);\n \n var match = line.match(this.foldingStartMarker);\n if (match) {\n var i = match.index;\n\n if (match[1])\n return this.openingBracketBlock(session, match[1], row, i);\n \n var range = session.getCommentFoldRange(row, i + match[0].length, 1);\n \n if (range && !range.isMultiLine()) {\n if (forceMultiline) {\n range = this.getSectionRange(session, row);\n } else if (foldStyle != \"all\")\n range = null;\n }\n \n return range;\n }\n\n if (foldStyle === \"markbegin\")\n return;\n\n var match = line.match(this.foldingStopMarker);\n if (match) {\n var i = match.index + match[0].length;\n\n if (match[1])\n return this.closingBracketBlock(session, match[1], row, i);\n\n return session.getCommentFoldRange(row, i, -1);\n }\n };\n \n this.getSectionRange = function(session, row) {\n var line = session.getLine(row);\n var startIndent = line.search(/\\S/);\n var startRow = row;\n var startColumn = line.length;\n row = row + 1;\n var endRow = row;\n var maxRow = session.getLength();\n while (++row < maxRow) {\n line = session.getLine(row);\n var indent = line.search(/\\S/);\n if (indent === -1)\n continue;\n if (startIndent > indent)\n break;\n var subRange = this.getFoldWidgetRange(session, \"all\", row);\n \n if (subRange) {\n if (subRange.start.row <= startRow) {\n break;\n } else if (subRange.isMultiLine()) {\n row = subRange.end.row;\n } else if (startIndent == indent) {\n break;\n }\n }\n endRow = row;\n }\n \n return new Range(startRow, startColumn, endRow, session.getLine(endRow).length);\n };\n this.getCommentRegionBlock = function(session, line, row) {\n var startColumn = line.search(/\\s*$/);\n var maxRow = session.getLength();\n var startRow = row;\n \n var re = /^\\s*(?:\\/\\*|\\/\\/|--)#?(end)?region\\b/;\n var depth = 1;\n while (++row < maxRow) {\n line = session.getLine(row);\n var m = re.exec(line);\n if (!m) continue;\n if (m[1]) depth--;\n else depth++;\n\n if (!depth) break;\n }\n\n var endRow = row;\n if (endRow > startRow) {\n return new Range(startRow, startColumn, endRow, line.length);\n }\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/batchfile\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/batchfile_highlight_rules\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar BatchFileHighlightRules = require(\"./batchfile_highlight_rules\").BatchFileHighlightRules;\nvar FoldMode = require(\"./folding/cstyle\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = BatchFileHighlightRules;\n this.foldingRules = new FoldMode();\n this.$behaviour = this.$defaultBehaviour;\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n this.lineCommentStart = \"::\";\n this.blockComment = \"\";\n this.$id = \"ace/mode/batchfile\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/batchfile\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file1p := &embedded.EmbeddedFile{ Filename: "22b1c8bf4c2bdd7e438f832b888c75e4.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/pig_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar PigHighlightRules = function() {\n\n this.$rules = {\n start: [{\n token: \"comment.block.pig\",\n regex: /\\/\\*/,\n push: [{\n token: \"comment.block.pig\",\n regex: /\\*\\//,\n next: \"pop\"\n }, {\n defaultToken: \"comment.block.pig\"\n }]\n }, {\n token: \"comment.line.double-dash.asciidoc\",\n regex: /--.*$/\n }, {\n token: \"keyword.control.pig\",\n regex: /\\b(?:ASSERT|LOAD|STORE|DUMP|FILTER|DISTINCT|FOREACH|GENERATE|STREAM|JOIN|COGROUP|GROUP|CROSS|ORDER|LIMIT|UNION|SPLIT|DESCRIBE|EXPLAIN|ILLUSTRATE|AS|BY|INTO|USING|LIMIT|PARALLEL|OUTER|INNER|DEFAULT|LEFT|SAMPLE|RANK|CUBE|ALL|KILL|QUIT|MAPREDUCE|ASC|DESC|THROUGH|SHIP|CACHE|DECLARE|CASE|WHEN|THEN|END|IN|PARTITION|FULL|IMPORT|IF|ONSCHEMA|INPUT|OUTPUT)\\b/,\n caseInsensitive: true\n }, {\n token: \"storage.datatypes.pig\",\n regex: /\\b(?:int|long|float|double|chararray|bytearray|boolean|datetime|biginteger|bigdecimal|tuple|bag|map)\\b/,\n caseInsensitive: true\n }, {\n token: \"support.function.storage.pig\",\n regex: /\\b(?:PigStorage|BinStorage|BinaryStorage|PigDump|HBaseStorage|JsonLoader|JsonStorage|AvroStorage|TextLoader|PigStreaming|TrevniStorage|AccumuloStorage)\\b/\n }, {\n token: \"support.function.udf.pig\",\n regex: /\\b(?:DIFF|TOBAG|TOMAP|TOP|TOTUPLE|RANDOM|FLATTEN|flatten|CUBE|ROLLUP|IsEmpty|ARITY|PluckTuple|SUBTRACT|BagToString)\\b/\n }, {\n token: \"support.function.udf.math.pig\",\n regex: /\\b(?:ABS|ACOS|ASIN|ATAN|CBRT|CEIL|COS|COSH|EXP|FLOOR|LOG|LOG10|ROUND|ROUND_TO|SIN|SINH|SQRT|TAN|TANH|AVG|COUNT|COUNT_STAR|MAX|MIN|SUM|COR|COV)\\b/\n }, {\n token: \"support.function.udf.string.pig\",\n regex: /\\b(?:CONCAT|INDEXOF|LAST_INDEX_OF|LCFIRST|LOWER|REGEX_EXTRACT|REGEX_EXTRACT_ALL|REPLACE|SIZE|STRSPLIT|SUBSTRING|TOKENIZE|TRIM|UCFIRST|UPPER|LTRIM|RTRIM|ENDSWITH|STARTSWITH|TRIM)\\b/\n }, {\n token: \"support.function.udf.datetime.pig\",\n regex: /\\b(?:AddDuration|CurrentTime|DaysBetween|GetDay|GetHour|GetMilliSecond|GetMinute|GetMonth|GetSecond|GetWeek|GetWeekYear|GetYear|HoursBetween|MilliSecondsBetween|MinutesBetween|MonthsBetween|SecondsBetween|SubtractDuration|ToDate|WeeksBetween|YearsBetween|ToMilliSeconds|ToString|ToUnixTime)\\b/\n }, {\n token: \"support.function.command.pig\",\n regex: /\\b(?:cat|cd|copyFromLocal|copyToLocal|cp|ls|mkdir|mv|pwd|rm)\\b/\n }, {\n token: \"variable.pig\",\n regex: /\\$[a_zA-Z0-9_]+/\n }, {\n token: \"constant.language.pig\",\n regex: /\\b(?:NULL|true|false|stdin|stdout|stderr)\\b/,\n caseInsensitive: true\n }, {\n token: \"constant.numeric.pig\",\n regex: /\\b\\d+(?:\\.\\d+)?\\b/\n }, {\n token: \"keyword.operator.comparison.pig\",\n regex: /!=|==|<|>|<=|>=|\\b(?:MATCHES|IS|OR|AND|NOT)\\b/,\n caseInsensitive: true\n }, {\n token: \"keyword.operator.arithmetic.pig\",\n regex: /\\+|\\-|\\*|\\/|\\%|\\?|:|::|\\.\\.|#/\n }, {\n token: \"string.quoted.double.pig\",\n regex: /\"/,\n push: [{\n token: \"string.quoted.double.pig\",\n regex: /\"/,\n next: \"pop\"\n }, {\n token: \"constant.character.escape.pig\",\n regex: /\\\\./\n }, {\n defaultToken: \"string.quoted.double.pig\"\n }]\n }, {\n token: \"string.quoted.single.pig\",\n regex: /'/,\n push: [{\n token: \"string.quoted.single.pig\",\n regex: /'/,\n next: \"pop\"\n }, {\n token: \"constant.character.escape.pig\",\n regex: /\\\\./\n }, {\n defaultToken: \"string.quoted.single.pig\"\n }]\n }, {\n todo: {\n token: [\n \"text\",\n \"keyword.parameter.pig\",\n \"text\",\n \"storage.type.parameter.pig\"\n ],\n regex: /^(\\s*)(set)(\\s+)(\\S+)/,\n caseInsensitive: true,\n push: [{\n token: \"text\",\n regex: /$/,\n next: \"pop\"\n }, {\n include: \"$self\"\n }]\n }\n }, {\n token: [\n \"text\",\n \"keyword.alias.pig\",\n \"text\",\n \"storage.type.alias.pig\"\n ],\n regex: /(\\s*)(DEFINE|DECLARE|REGISTER)(\\s+)(\\S+)/,\n caseInsensitive: true,\n push: [{\n token: \"text\",\n regex: /;?$/,\n next: \"pop\"\n }]\n }]\n };\n \n this.normalizeRules();\n};\n\nPigHighlightRules.metaData = {\n fileTypes: [\"pig\"],\n name: \"Pig\",\n scopeName: \"source.pig\"\n};\n\n\noop.inherits(PigHighlightRules, TextHighlightRules);\n\nexports.PigHighlightRules = PigHighlightRules;\n});\n\nace.define(\"ace/mode/folding/cstyle\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/range\",\"ace/mode/folding/fold_mode\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Range = require(\"../../range\").Range;\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function(commentRegex) {\n if (commentRegex) {\n this.foldingStartMarker = new RegExp(\n this.foldingStartMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.start)\n );\n this.foldingStopMarker = new RegExp(\n this.foldingStopMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.end)\n );\n }\n};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n \n this.foldingStartMarker = /([\\{\\[\\(])[^\\}\\]\\)]*$|^\\s*(\\/\\*)/;\n this.foldingStopMarker = /^[^\\[\\{\\(]*([\\}\\]\\)])|^[\\s\\*]*(\\*\\/)/;\n this.singleLineBlockCommentRe= /^\\s*(\\/\\*).*\\*\\/\\s*$/;\n this.tripleStarBlockCommentRe = /^\\s*(\\/\\*\\*\\*).*\\*\\/\\s*$/;\n this.startRegionRe = /^\\s*(\\/\\*|\\/\\/)#?region\\b/;\n this._getFoldWidgetBase = this.getFoldWidget;\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n \n if (this.singleLineBlockCommentRe.test(line)) {\n if (!this.startRegionRe.test(line) && !this.tripleStarBlockCommentRe.test(line))\n return \"\";\n }\n \n var fw = this._getFoldWidgetBase(session, foldStyle, row);\n \n if (!fw && this.startRegionRe.test(line))\n return \"start\"; // lineCommentRegionStart\n \n return fw;\n };\n\n this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {\n var line = session.getLine(row);\n \n if (this.startRegionRe.test(line))\n return this.getCommentRegionBlock(session, line, row);\n \n var match = line.match(this.foldingStartMarker);\n if (match) {\n var i = match.index;\n\n if (match[1])\n return this.openingBracketBlock(session, match[1], row, i);\n \n var range = session.getCommentFoldRange(row, i + match[0].length, 1);\n \n if (range && !range.isMultiLine()) {\n if (forceMultiline) {\n range = this.getSectionRange(session, row);\n } else if (foldStyle != \"all\")\n range = null;\n }\n \n return range;\n }\n\n if (foldStyle === \"markbegin\")\n return;\n\n var match = line.match(this.foldingStopMarker);\n if (match) {\n var i = match.index + match[0].length;\n\n if (match[1])\n return this.closingBracketBlock(session, match[1], row, i);\n\n return session.getCommentFoldRange(row, i, -1);\n }\n };\n \n this.getSectionRange = function(session, row) {\n var line = session.getLine(row);\n var startIndent = line.search(/\\S/);\n var startRow = row;\n var startColumn = line.length;\n row = row + 1;\n var endRow = row;\n var maxRow = session.getLength();\n while (++row < maxRow) {\n line = session.getLine(row);\n var indent = line.search(/\\S/);\n if (indent === -1)\n continue;\n if (startIndent > indent)\n break;\n var subRange = this.getFoldWidgetRange(session, \"all\", row);\n \n if (subRange) {\n if (subRange.start.row <= startRow) {\n break;\n } else if (subRange.isMultiLine()) {\n row = subRange.end.row;\n } else if (startIndent == indent) {\n break;\n }\n }\n endRow = row;\n }\n \n return new Range(startRow, startColumn, endRow, session.getLine(endRow).length);\n };\n this.getCommentRegionBlock = function(session, line, row) {\n var startColumn = line.search(/\\s*$/);\n var maxRow = session.getLength();\n var startRow = row;\n \n var re = /^\\s*(?:\\/\\*|\\/\\/|--)#?(end)?region\\b/;\n var depth = 1;\n while (++row < maxRow) {\n line = session.getLine(row);\n var m = re.exec(line);\n if (!m) continue;\n if (m[1]) depth--;\n else depth++;\n\n if (!depth) break;\n }\n\n var endRow = row;\n if (endRow > startRow) {\n return new Range(startRow, startColumn, endRow, line.length);\n }\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/pig\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/pig_highlight_rules\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar PigHighlightRules = require(\"./pig_highlight_rules\").PigHighlightRules;\nvar FoldMode = require(\"./folding/cstyle\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = PigHighlightRules;\n this.foldingRules = new FoldMode();\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n this.lineCommentStart = \"--\";\n this.blockComment = {start: \"/*\", end: \"*/\"};\n this.$id = \"ace/mode/pig\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/pig\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file1q := &embedded.EmbeddedFile{ Filename: "232ec126b4babd38fc463222ffeeafa4.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/lucene\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText =undefined;\nexports.scope = \"lucene\";\n\n}); (function() {\n ace.require([\"ace/snippets/lucene\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file1r := &embedded.EmbeddedFile{ Filename: "24344120218dd5c1a38ac2ccd534ed49.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/puppet\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText =undefined;\nexports.scope = \"puppet\";\n\n}); (function() {\n ace.require([\"ace/snippets/puppet\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file1s := &embedded.EmbeddedFile{ Filename: "243d8101969c933d25388b5287bb3425.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/coffee\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText = \"# Closure loop\\n\\\nsnippet forindo\\n\\\n\tfor ${1:name} in ${2:array}\\n\\\n\t\tdo ($1) ->\\n\\\n\t\t\t${3:// body}\\n\\\n# Array comprehension\\n\\\nsnippet fora\\n\\\n\tfor ${1:name} in ${2:array}\\n\\\n\t\t${3:// body...}\\n\\\n# Object comprehension\\n\\\nsnippet foro\\n\\\n\tfor ${1:key}, ${2:value} of ${3:object}\\n\\\n\t\t${4:// body...}\\n\\\n# Range comprehension (inclusive)\\n\\\nsnippet forr\\n\\\n\tfor ${1:name} in [${2:start}..${3:finish}]\\n\\\n\t\t${4:// body...}\\n\\\nsnippet forrb\\n\\\n\tfor ${1:name} in [${2:start}..${3:finish}] by ${4:step}\\n\\\n\t\t${5:// body...}\\n\\\n# Range comprehension (exclusive)\\n\\\nsnippet forrex\\n\\\n\tfor ${1:name} in [${2:start}...${3:finish}]\\n\\\n\t\t${4:// body...}\\n\\\nsnippet forrexb\\n\\\n\tfor ${1:name} in [${2:start}...${3:finish}] by ${4:step}\\n\\\n\t\t${5:// body...}\\n\\\n# Function\\n\\\nsnippet fun\\n\\\n\t(${1:args}) ->\\n\\\n\t\t${2:// body...}\\n\\\n# Function (bound)\\n\\\nsnippet bfun\\n\\\n\t(${1:args}) =>\\n\\\n\t\t${2:// body...}\\n\\\n# Class\\n\\\nsnippet cla class ..\\n\\\n\tclass ${1:`substitute(Filename(), '\\\\(_\\\\|^\\\\)\\\\(.\\\\)', '\\\\u\\\\2', 'g')`}\\n\\\n\t\t${2}\\n\\\nsnippet cla class .. constructor: ..\\n\\\n\tclass ${1:`substitute(Filename(), '\\\\(_\\\\|^\\\\)\\\\(.\\\\)', '\\\\u\\\\2', 'g')`}\\n\\\n\t\tconstructor: (${2:args}) ->\\n\\\n\t\t\t${3}\\n\\\n\\n\\\n\t\t${4}\\n\\\nsnippet cla class .. extends ..\\n\\\n\tclass ${1:`substitute(Filename(), '\\\\(_\\\\|^\\\\)\\\\(.\\\\)', '\\\\u\\\\2', 'g')`} extends ${2:ParentClass}\\n\\\n\t\t${3}\\n\\\nsnippet cla class .. extends .. constructor: ..\\n\\\n\tclass ${1:`substitute(Filename(), '\\\\(_\\\\|^\\\\)\\\\(.\\\\)', '\\\\u\\\\2', 'g')`} extends ${2:ParentClass}\\n\\\n\t\tconstructor: (${3:args}) ->\\n\\\n\t\t\t${4}\\n\\\n\\n\\\n\t\t${5}\\n\\\n# If\\n\\\nsnippet if\\n\\\n\tif ${1:condition}\\n\\\n\t\t${2:// body...}\\n\\\n# If __ Else\\n\\\nsnippet ife\\n\\\n\tif ${1:condition}\\n\\\n\t\t${2:// body...}\\n\\\n\telse\\n\\\n\t\t${3:// body...}\\n\\\n# Else if\\n\\\nsnippet elif\\n\\\n\telse if ${1:condition}\\n\\\n\t\t${2:// body...}\\n\\\n# Ternary If\\n\\\nsnippet ifte\\n\\\n\tif ${1:condition} then ${2:value} else ${3:other}\\n\\\n# Unless\\n\\\nsnippet unl\\n\\\n\t${1:action} unless ${2:condition}\\n\\\n# Switch\\n\\\nsnippet swi\\n\\\n\tswitch ${1:object}\\n\\\n\t\twhen ${2:value}\\n\\\n\t\t\t${3:// body...}\\n\\\n\\n\\\n# Log\\n\\\nsnippet log\\n\\\n\tconsole.log ${1}\\n\\\n# Try __ Catch\\n\\\nsnippet try\\n\\\n\ttry\\n\\\n\t\t${1}\\n\\\n\tcatch ${2:error}\\n\\\n\t\t${3}\\n\\\n# Require\\n\\\nsnippet req\\n\\\n\t${2:$1} = require '${1:sys}'${3}\\n\\\n# Export\\n\\\nsnippet exp\\n\\\n\t${1:root} = exports ? this\\n\\\n\";\nexports.scope = \"coffee\";\n\n}); (function() {\n ace.require([\"ace/snippets/coffee\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file1t := &embedded.EmbeddedFile{ Filename: "24dba425022a2cc94cb07980b04f60b8.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/slim\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n \"use strict\";\n\n exports.snippetText =undefined;\n exports.scope = \"slim\";\n\n}); (function() {\n ace.require([\"ace/snippets/slim\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file1u := &embedded.EmbeddedFile{ Filename: "2713cf58a182cbabbc2538f42ce83a58.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/doc_comment_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar DocCommentHighlightRules = function() {\n this.$rules = {\n \"start\" : [ {\n token : \"comment.doc.tag\",\n regex : \"@[\\\\w\\\\d_]+\" // TODO: fix email addresses\n }, \n DocCommentHighlightRules.getTagRule(),\n {\n defaultToken : \"comment.doc\",\n caseInsensitive: true\n }]\n };\n};\n\noop.inherits(DocCommentHighlightRules, TextHighlightRules);\n\nDocCommentHighlightRules.getTagRule = function(start) {\n return {\n token : \"comment.doc.tag.storage.type\",\n regex : \"\\\\b(?:TODO|FIXME|XXX|HACK)\\\\b\"\n };\n};\n\nDocCommentHighlightRules.getStartRule = function(start) {\n return {\n token : \"comment.doc\", // doc comment\n regex : \"\\\\/\\\\*(?=\\\\*)\",\n next : start\n };\n};\n\nDocCommentHighlightRules.getEndRule = function (start) {\n return {\n token : \"comment.doc\", // closing comment\n regex : \"\\\\*\\\\/\",\n next : start\n };\n};\n\n\nexports.DocCommentHighlightRules = DocCommentHighlightRules;\n\n});\n\nace.define(\"ace/mode/asl_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/doc_comment_highlight_rules\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n \"use strict\";\n\n var oop = require(\"../lib/oop\");\n var DocCommentHighlightRules = require(\"./doc_comment_highlight_rules\").DocCommentHighlightRules;\n var TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\n var ASLHighlightRules = function() {\n var keywords = (\n \"Default|DefinitionBlock|Device|Method|Else|ElseIf|For|Function|If|Include|Method|Return|\" +\n \"Scope|Switch|Case|While|Break|BreakPoint|Continue|NoOp|Wait\"\n );\n\n var keywordOperators = (\n \"Add|And|Decrement|Divide|Increment|Index|LAnd|LEqual|LGreater|LGreaterEqual|\" +\n \"LLess|LLessEqual|LNot|LNotEqual|LOr|Mod|Multiply|NAnd|NOr|Not|Or|RefOf|Revision|\" +\n \"ShiftLeft|ShiftRight|Subtract|XOr|DerefOf\"\n );\n\n var buildinFunctions = (\n \"AccessAs|Acquire|Alias|BankField|Buffer|Concatenate|ConcatenateResTemplate|\" +\n \"CondRefOf|Connection|CopyObject|CreateBitField|CreateByteField|CreateDWordField|\" +\n \"CreateField|CreateQWordField|CreateWordField|DataTableRegion|Debug|\" +\n \"DMA|DWordIO|DWordMemory|DWordSpace|EisaId|EISAID|EndDependentFn|Event|ExtendedIO|\" +\n \"ExtendedMemory|ExtendedSpace|External|Fatal|Field|FindSetLeftBit|FindSetRightBit|\" +\n \"FixedDMA|FixedIO|Fprintf|FromBCD|GpioInt|GpioIo|I2CSerialBusV2|IndexField|\" +\n \"Interrupt|IO|IRQ|IRQNoFlags|Load|LoadTable|Match|Memory32|Memory32Fixed|\" +\n \"Mid|Mutex|Name|Notify|Offset|ObjectType|OperationRegion|Package|PowerResource|Printf|\" +\n \"QWordIO|QWordMemory|QWordSpace|RawDataBuffer|Register|Release|Reset|ResourceTemplate|\" +\n \"Signal|SizeOf|Sleep|SPISerialBusV2|Stall|StartDependentFn|StartDependentFnNoPri|\" +\n \"Store|ThermalZone|Timer|ToBCD|ToBuffer|ToDecimalString|ToInteger|ToPLD|ToString|\" +\n \"ToUUID|UARTSerialBusV2|Unicode|Unload|VendorLong|VendorShort|WordBusNumber|WordIO|\" +\n \"WordSpace\"\n );\n\n var flags = (\n \"AttribQuick|AttribSendReceive|AttribByte|AttribBytes|AttribRawBytes|\" +\n \"AttribRawProcessBytes|AttribWord|AttribBlock|AttribProcessCall|AttribBlockProcessCall|\" +\n \"AnyAcc|ByteAcc|WordAcc|DWordAcc|QWordAcc|BufferAcc|\" +\n \"AddressRangeMemory|AddressRangeReserved|AddressRangeNVS|AddressRangeACPI|\" +\n \"RegionSpaceKeyword|FFixedHW|PCC|\" +\n \"AddressingMode7Bit|AddressingMode10Bit|\" +\n \"DataBitsFive|DataBitsSix|DataBitsSeven|DataBitsEight|DataBitsNine|\" +\n \"BusMaster|NotBusMaster|\" +\n \"ClockPhaseFirst|ClockPhaseSecond|ClockPolarityLow|ClockPolarityHigh|\" +\n \"SubDecode|PosDecode|\" +\n \"BigEndianing|LittleEndian|\" +\n \"FlowControlNone|FlowControlXon|FlowControlHardware|\" +\n \"Edge|Level|ActiveHigh|ActiveLow|ActiveBoth|Decode16|Decode10|\" +\n \"IoRestrictionNone|IoRestrictionInputOnly|IoRestrictionOutputOnly|\" +\n \"IoRestrictionNoneAndPreserve|Lock|NoLock|MTR|MEQ|MLE|MLT|MGE|MGT|\" +\n \"MaxFixed|MaxNotFixed|Cacheable|WriteCombining|Prefetchable|NonCacheable|\" +\n \"MinFixed|MinNotFixed|\" +\n \"ParityTypeNone|ParityTypeSpace|ParityTypeMark|ParityTypeOdd|ParityTypeEven|\" +\n \"PullDefault|PullUp|PullDown|PullNone|PolarityHigh|PolarityLow|\" +\n \"ISAOnlyRanges|NonISAOnlyRanges|EntireRange|ReadWrite|ReadOnly|\" +\n \"UserDefRegionSpace|SystemIO|SystemMemory|PCI_Config|EmbeddedControl|\" +\n \"SMBus|SystemCMOS|PciBarTarget|IPMI|GeneralPurposeIO|GenericSerialBus|\" +\n \"ResourceConsumer|ResourceProducer|Serialized|NotSerialized|\" +\n \"Shared|Exclusive|SharedAndWake|ExclusiveAndWake|ControllerInitiated|DeviceInitiated|\" +\n \"StopBitsZero|StopBitsOne|StopBitsOnePlusHalf|StopBitsTwo|\" +\n \"Width8Bit|Width16Bit|Width32Bit|Width64Bit|Width128Bit|Width256Bit|\" +\n \"SparseTranslation|DenseTranslation|TypeTranslation|TypeStatic|\" +\n \"Preserve|WriteAsOnes|WriteAsZeros|Transfer8|Transfer16|Transfer8_16|\" +\n \"ThreeWireMode|FourWireMode\"\n );\n\n var storageTypes = (\n \"UnknownObj|IntObj|StrObj|BuffObj|PkgObj|FieldUnitObj|DeviceObj|\" +\n \"EventObj|MethodObj|MutexObj|OpRegionObj|PowerResObj|ProcessorObj|\" +\n \"ThermalZoneObj|BuffFieldObj|DDBHandleObj\"\n );\n\n var buildinConstants = (\n \"__FILE__|__PATH__|__LINE__|__DATE__|__IASL__\"\n );\n\n var deprecated = (\n \"Memory24|Processor\"\n );\n\n var keywordMapper = this.createKeywordMapper({\n \"keyword\": keywords,\n \"keyword.operator\": keywordOperators,\n \"function.buildin\": buildinFunctions,\n \"constant.language\": buildinConstants,\n \"storage.type\": storageTypes,\n \"constant.character\": flags,\n \"invalid.deprecated\": deprecated\n }, \"identifier\");\n\n this.$rules = {\n \"start\" : [\n {\n token : \"comment\",\n regex : \"\\\\/\\\\/.*$\"\n },\n DocCommentHighlightRules.getStartRule(\"doc-start\"),\n {\n token : \"comment\", // multi line comment\n regex : \"\\\\/\\\\*\",\n next : \"comment\"\n },\n DocCommentHighlightRules.getStartRule(\"doc-start\"),\n {\n token : \"comment\", // ignored fields / comments\n regex : \"\\\\\\[\",\n next : \"ignoredfield\"\n }, {\n token : \"variable\",\n regex : \"\\\\Local[0-7]|\\\\Arg[0-6]\"\n }, {\n token : \"keyword\", // pre-compiler directives\n regex : \"#\\\\s*(?:define|elif|else|endif|error|if|ifdef|ifndef|include|includebuffer|line|pragma|undef|warning)\\\\b\",\n next : \"directive\"\n }, {\n token : \"string\", // single line\n regex : '[\"](?:(?:\\\\\\\\.)|(?:[^\"\\\\\\\\]))*?[\"]'\n }, {\n token : \"constant.character\", // single line\n regex : \"['](?:(?:\\\\\\\\.)|(?:[^'\\\\\\\\]))*?[']\"\n }, {\n token : \"constant.numeric\", // hex\n regex : /0[xX][0-9a-fA-F]+\\b/\n }, {\n token : \"constant.numeric\",\n regex : /(One(s)?|Zero|True|False|[0-9]+)\\b/\n }, {\n token : keywordMapper,\n regex : \"[a-zA-Z_$][a-zA-Z0-9_$]*\\\\b\"\n }, {\n token : \"keyword.operator\",\n regex : \"/|!|\\\\$|%|&|\\\\||\\\\*|\\\\-\\\\-|\\\\-|\\\\+\\\\+|\\\\+|~|==|=|!=|\\\\^|<=|>=|<<=|>>=|>>>=|<>|<|>|!|&&|\\\\|\\\\||\\\\?\\\\:|\\\\*=|%=|\\\\+=|\\\\-=|&=|\\\\^=|\\\\|=\"\n }, {\n token : \"lparen\",\n regex : \"[[({]\"\n }, {\n token : \"rparen\",\n regex : \"[\\\\])}]\"\n }, {\n token : \"text\",\n regex : \"\\\\s+\"\n }\n ],\n \"comment\" : [\n {\n token : \"comment\", // closing comment\n regex : \"\\\\*\\\\/\",\n next : \"start\"\n }, {\n defaultToken : \"comment\"\n }\n ],\n \"ignoredfield\" : [\n {\n token : \"comment\", // closing ignored fields / comments\n regex : \"\\\\\\]\",\n next : \"start\"\n }, {\n defaultToken : \"comment\"\n }\n ],\n \"directive\" : [\n {\n token : \"constant.other.multiline\",\n regex : /\\\\/\n },\n {\n token : \"constant.other.multiline\",\n regex : /.*\\\\/\n },\n {\n token : \"constant.other\",\n regex : \"\\\\s*<.+?>*s\",\n next : \"start\"\n },\n {\n token : \"constant.other\", // single line\n regex : '\\\\s*[\"](?:(?:\\\\\\\\.)|(?:[^\"\\\\\\\\]))*?[\"]*s',\n next : \"start\"\n },\n {\n token : \"constant.other\", // single line\n regex : \"\\\\s*['](?:(?:\\\\\\\\.)|(?:[^'\\\\\\\\]))*?[']\",\n next : \"start\"\n },\n {\n token : \"constant.other\",\n regex : /[^\\\\\\/]+/,\n next : \"start\"\n }\n ]\n };\n\n this.embedRules(DocCommentHighlightRules, \"doc-\",\n [ DocCommentHighlightRules.getEndRule(\"start\") ]);\n };\n\n oop.inherits(ASLHighlightRules, TextHighlightRules);\n\n exports.ASLHighlightRules = ASLHighlightRules;\n});\n\nace.define(\"ace/mode/folding/cstyle\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/range\",\"ace/mode/folding/fold_mode\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Range = require(\"../../range\").Range;\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function(commentRegex) {\n if (commentRegex) {\n this.foldingStartMarker = new RegExp(\n this.foldingStartMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.start)\n );\n this.foldingStopMarker = new RegExp(\n this.foldingStopMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.end)\n );\n }\n};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n \n this.foldingStartMarker = /([\\{\\[\\(])[^\\}\\]\\)]*$|^\\s*(\\/\\*)/;\n this.foldingStopMarker = /^[^\\[\\{\\(]*([\\}\\]\\)])|^[\\s\\*]*(\\*\\/)/;\n this.singleLineBlockCommentRe= /^\\s*(\\/\\*).*\\*\\/\\s*$/;\n this.tripleStarBlockCommentRe = /^\\s*(\\/\\*\\*\\*).*\\*\\/\\s*$/;\n this.startRegionRe = /^\\s*(\\/\\*|\\/\\/)#?region\\b/;\n this._getFoldWidgetBase = this.getFoldWidget;\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n \n if (this.singleLineBlockCommentRe.test(line)) {\n if (!this.startRegionRe.test(line) && !this.tripleStarBlockCommentRe.test(line))\n return \"\";\n }\n \n var fw = this._getFoldWidgetBase(session, foldStyle, row);\n \n if (!fw && this.startRegionRe.test(line))\n return \"start\"; // lineCommentRegionStart\n \n return fw;\n };\n\n this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {\n var line = session.getLine(row);\n \n if (this.startRegionRe.test(line))\n return this.getCommentRegionBlock(session, line, row);\n \n var match = line.match(this.foldingStartMarker);\n if (match) {\n var i = match.index;\n\n if (match[1])\n return this.openingBracketBlock(session, match[1], row, i);\n \n var range = session.getCommentFoldRange(row, i + match[0].length, 1);\n \n if (range && !range.isMultiLine()) {\n if (forceMultiline) {\n range = this.getSectionRange(session, row);\n } else if (foldStyle != \"all\")\n range = null;\n }\n \n return range;\n }\n\n if (foldStyle === \"markbegin\")\n return;\n\n var match = line.match(this.foldingStopMarker);\n if (match) {\n var i = match.index + match[0].length;\n\n if (match[1])\n return this.closingBracketBlock(session, match[1], row, i);\n\n return session.getCommentFoldRange(row, i, -1);\n }\n };\n \n this.getSectionRange = function(session, row) {\n var line = session.getLine(row);\n var startIndent = line.search(/\\S/);\n var startRow = row;\n var startColumn = line.length;\n row = row + 1;\n var endRow = row;\n var maxRow = session.getLength();\n while (++row < maxRow) {\n line = session.getLine(row);\n var indent = line.search(/\\S/);\n if (indent === -1)\n continue;\n if (startIndent > indent)\n break;\n var subRange = this.getFoldWidgetRange(session, \"all\", row);\n \n if (subRange) {\n if (subRange.start.row <= startRow) {\n break;\n } else if (subRange.isMultiLine()) {\n row = subRange.end.row;\n } else if (startIndent == indent) {\n break;\n }\n }\n endRow = row;\n }\n \n return new Range(startRow, startColumn, endRow, session.getLine(endRow).length);\n };\n this.getCommentRegionBlock = function(session, line, row) {\n var startColumn = line.search(/\\s*$/);\n var maxRow = session.getLength();\n var startRow = row;\n \n var re = /^\\s*(?:\\/\\*|\\/\\/|--)#?(end)?region\\b/;\n var depth = 1;\n while (++row < maxRow) {\n line = session.getLine(row);\n var m = re.exec(line);\n if (!m) continue;\n if (m[1]) depth--;\n else depth++;\n\n if (!depth) break;\n }\n\n var endRow = row;\n if (endRow > startRow) {\n return new Range(startRow, startColumn, endRow, line.length);\n }\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/asl\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/asl_highlight_rules\",\"ace/mode/folding/cstyle\"], function (require, exports, module) {\n \"use strict\";\n\n var oop = require(\"../lib/oop\");\n var TextMode = require(\"./text\").Mode;\n var ASLHighlightRules = require(\"./asl_highlight_rules\").ASLHighlightRules;\n var FoldMode = require(\"./folding/cstyle\").FoldMode;\n\n var Mode = function () {\n this.HighlightRules = ASLHighlightRules;\n this.foldingRules = new FoldMode();\n this.$behaviour = this.$defaultBehaviour;\n };\n oop.inherits(Mode, TextMode);\n\n (function () {\n this.$id = \"ace/mode/asl\";\n }).call(Mode.prototype);\n\n exports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/asl\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file1v := &embedded.EmbeddedFile{ Filename: "276cc30bcf58182e7a4f893e0f8e1326.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/vbscript_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar VBScriptHighlightRules = function() {\n\n var keywordMapper = this.createKeywordMapper({\n \"keyword.control.asp\": \"If|Then|Else|ElseIf|End|While|Wend|For|To|Each|Case|Select|Return\"\n + \"|Continue|Do|Until|Loop|Next|With|Exit|Function|Property|Type|Enum|Sub|IIf\",\n \"storage.type.asp\": \"Dim|Call|Class|Const|Dim|Redim|Set|Let|Get|New|Randomize|Option|Explicit\",\n \"storage.modifier.asp\": \"Private|Public|Default\",\n \"keyword.operator.asp\": \"Mod|And|Not|Or|Xor|as\",\n \"constant.language.asp\": \"Empty|False|Nothing|Null|True\",\n \"support.class.asp\": \"Application|ObjectContext|Request|Response|Server|Session\",\n \"support.class.collection.asp\": \"Contents|StaticObjects|ClientCertificate|Cookies|Form|QueryString|ServerVariables\",\n \"support.constant.asp\": \"TotalBytes|Buffer|CacheControl|Charset|ContentType|Expires|ExpiresAbsolute\"\n + \"|IsClientConnected|PICS|Status|ScriptTimeout|CodePage|LCID|SessionID|Timeout\",\n \"support.function.asp\": \"Lock|Unlock|SetAbort|SetComplete|BinaryRead|AddHeader|AppendToLog\"\n + \"|BinaryWrite|Clear|Flush|Redirect|Write|CreateObject|HTMLEncode|MapPath|URLEncode|Abandon|Convert|Regex\",\n \"support.function.event.asp\": \"Application_OnEnd|Application_OnStart\"\n + \"|OnTransactionAbort|OnTransactionCommit|Session_OnEnd|Session_OnStart\",\n \"support.function.vb.asp\": \"Array|Add|Asc|Atn|CBool|CByte|CCur|CDate|CDbl|Chr|CInt|CLng\"\n + \"|Conversions|Cos|CreateObject|CSng|CStr|Date|DateAdd|DateDiff|DatePart|DateSerial\"\n + \"|DateValue|Day|Derived|Math|Escape|Eval|Exists|Exp|Filter|FormatCurrency\"\n + \"|FormatDateTime|FormatNumber|FormatPercent|GetLocale|GetObject|GetRef|Hex\"\n + \"|Hour|InputBox|InStr|InStrRev|Int|Fix|IsArray|IsDate|IsEmpty|IsNull|IsNumeric\"\n + \"|IsObject|Item|Items|Join|Keys|LBound|LCase|Left|Len|LoadPicture|Log|LTrim|RTrim\"\n + \"|Trim|Maths|Mid|Minute|Month|MonthName|MsgBox|Now|Oct|Remove|RemoveAll|Replace\"\n + \"|RGB|Right|Rnd|Round|ScriptEngine|ScriptEngineBuildVersion|ScriptEngineMajorVersion\"\n + \"|ScriptEngineMinorVersion|Second|SetLocale|Sgn|Sin|Space|Split|Sqr|StrComp|String|StrReverse\"\n + \"|Tan|Time|Timer|TimeSerial|TimeValue|TypeName|UBound|UCase|Unescape|VarType|Weekday|WeekdayName|Year\",\n \"support.type.vb.asp\": \"vbtrue|vbfalse|vbcr|vbcrlf|vbformfeed|vblf|vbnewline|vbnullchar|vbnullstring|\"\n + \"int32|vbtab|vbverticaltab|vbbinarycompare|vbtextcomparevbsunday|vbmonday|vbtuesday|vbwednesday\"\n + \"|vbthursday|vbfriday|vbsaturday|vbusesystemdayofweek|vbfirstjan1|vbfirstfourdays|vbfirstfullweek\"\n + \"|vbgeneraldate|vblongdate|vbshortdate|vblongtime|vbshorttime|vbobjecterror|vbEmpty|vbNull|vbInteger\"\n + \"|vbLong|vbSingle|vbDouble|vbCurrency|vbDate|vbString|vbObject|vbError|vbBoolean|vbVariant\"\n + \"|vbDataObject|vbDecimal|vbByte|vbArray\"\n }, \"identifier\", true);\n\n this.$rules = {\n \"start\": [\n {\n token: [\n \"meta.ending-space\"\n ],\n regex: \"$\"\n },\n {\n token: [null],\n regex: \"^(?=\\\\t)\",\n next: \"state_3\"\n },\n {\n token: [null],\n regex: \"^(?= )\",\n next: \"state_4\"\n },\n {\n token: [\n \"text\",\n \"storage.type.function.asp\",\n \"text\",\n \"entity.name.function.asp\",\n \"text\",\n \"punctuation.definition.parameters.asp\",\n \"variable.parameter.function.asp\",\n \"punctuation.definition.parameters.asp\"\n ],\n regex: \"^(\\\\s*)(Function|Sub)(\\\\s+)([a-zA-Z_]\\\\w*)(\\\\s*)(\\\\()([^)]*)(\\\\))\"\n },\n {\n token: \"punctuation.definition.comment.asp\",\n regex: \"'|REM(?=\\\\s|$)\",\n next: \"comment\",\n caseInsensitive: true\n },\n {\n token: \"storage.type.asp\",\n regex: \"On Error Resume Next|On Error GoTo\",\n caseInsensitive: true\n },\n {\n token: \"punctuation.definition.string.begin.asp\",\n regex: '\"',\n next: \"string\"\n },\n {\n token: [\n \"punctuation.definition.variable.asp\"\n ],\n regex: \"(\\\\$)[a-zA-Z_x7f-xff][a-zA-Z0-9_x7f-xff]*?\\\\b\\\\s*\"\n },\n {\n token: \"constant.numeric.asp\",\n regex: \"-?\\\\b(?:(?:0(?:x|X)[0-9a-fA-F]*)|(?:(?:[0-9]+\\\\.?[0-9]*)|(?:\\\\.[0-9]+))(?:(?:e|E)(?:\\\\+|-)?[0-9]+)?)(?:L|l|UL|ul|u|U|F|f)?\\\\b\"\n },\n {\n regex: \"\\\\w+\",\n token: keywordMapper\n },\n {\n token: [\"entity.name.function.asp\"],\n regex: \"(?:(\\\\b[a-zA-Z_x7f-xff][a-zA-Z0-9_x7f-xff]*?\\\\b)(?=\\\\(\\\\)?))\"\n },\n {\n token: [\"keyword.operator.asp\"],\n regex: \"\\\\-|\\\\+|\\\\*\\\\/|\\\\>|\\\\<|\\\\=|\\\\&\"\n }\n ],\n \"state_3\": [\n {\n token: [\n \"meta.odd-tab.tabs\",\n \"meta.even-tab.tabs\"\n ],\n regex: \"(\\\\t)(\\\\t)?\"\n },\n {\n token: \"meta.leading-space\",\n regex: \"(?=[^\\\\t])\",\n next: \"start\"\n },\n {\n token: \"meta.leading-space\",\n regex: \".\",\n next: \"state_3\"\n }\n ],\n \"state_4\": [\n {\n token: [\"meta.odd-tab.spaces\", \"meta.even-tab.spaces\"],\n regex: \"( )( )?\"\n },\n {\n token: \"meta.leading-space\",\n regex: \"(?=[^ ])\",\n next: \"start\"\n },\n {\n defaultToken: \"meta.leading-space\"\n }\n ],\n \"comment\": [\n {\n token: \"comment.line.apostrophe.asp\",\n regex: \"$|(?=(?:%>))\",\n next: \"start\"\n },\n {\n defaultToken: \"comment.line.apostrophe.asp\"\n }\n ],\n \"string\": [\n {\n token: \"constant.character.escape.apostrophe.asp\",\n regex: '\"\"'\n },\n {\n token: \"string.quoted.double.asp\",\n regex: '\"',\n next: \"start\"\n },\n {\n defaultToken: \"string.quoted.double.asp\"\n }\n ]\n};\n\n};\n\noop.inherits(VBScriptHighlightRules, TextHighlightRules);\n\nexports.VBScriptHighlightRules = VBScriptHighlightRules;\n});\n\nace.define(\"ace/mode/vbscript\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/vbscript_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar VBScriptHighlightRules = require(\"./vbscript_highlight_rules\").VBScriptHighlightRules;\n\nvar Mode = function() {\n this.HighlightRules = VBScriptHighlightRules;\n this.$behaviour = this.$defaultBehaviour;\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n \n this.lineCommentStart = [\"'\", \"REM\"];\n \n this.$id = \"ace/mode/vbscript\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/vbscript\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file1w := &embedded.EmbeddedFile{ Filename: "279a6baa1089231c58d050c4c4182590.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/forth\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText =undefined;\nexports.scope = \"forth\";\n\n}); (function() {\n ace.require([\"ace/snippets/forth\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file1x := &embedded.EmbeddedFile{ Filename: "27b0610b05b99da6573eb4f329c7c3f5.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/erlang_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar ErlangHighlightRules = function() {\n\n this.$rules = { start: \n [ { include: '#module-directive' },\n { include: '#import-export-directive' },\n { include: '#behaviour-directive' },\n { include: '#record-directive' },\n { include: '#define-directive' },\n { include: '#macro-directive' },\n { include: '#directive' },\n { include: '#function' },\n { include: '#everything-else' } ],\n '#atom': \n [ { token: 'punctuation.definition.symbol.begin.erlang',\n regex: '\\'',\n push: \n [ { token: 'punctuation.definition.symbol.end.erlang',\n regex: '\\'',\n next: 'pop' },\n { token: \n [ 'punctuation.definition.escape.erlang',\n 'constant.other.symbol.escape.erlang',\n 'punctuation.definition.escape.erlang',\n 'constant.other.symbol.escape.erlang',\n 'constant.other.symbol.escape.erlang' ],\n regex: '(\\\\\\\\)(?:([bdefnrstv\\\\\\\\\\'\"])|(\\\\^)([@-_])|([0-7]{1,3}))' },\n { token: 'invalid.illegal.atom.erlang', regex: '\\\\\\\\\\\\^?.?' },\n { defaultToken: 'constant.other.symbol.quoted.single.erlang' } ] },\n { token: 'constant.other.symbol.unquoted.erlang',\n regex: '[a-z][a-zA-Z\\\\d@_]*' } ],\n '#behaviour-directive': \n [ { token: \n [ 'meta.directive.behaviour.erlang',\n 'punctuation.section.directive.begin.erlang',\n 'meta.directive.behaviour.erlang',\n 'keyword.control.directive.behaviour.erlang',\n 'meta.directive.behaviour.erlang',\n 'punctuation.definition.parameters.begin.erlang',\n 'meta.directive.behaviour.erlang',\n 'entity.name.type.class.behaviour.definition.erlang',\n 'meta.directive.behaviour.erlang',\n 'punctuation.definition.parameters.end.erlang',\n 'meta.directive.behaviour.erlang',\n 'punctuation.section.directive.end.erlang' ],\n regex: '^(\\\\s*)(-)(\\\\s*)(behaviour)(\\\\s*)(\\\\()(\\\\s*)([a-z][a-zA-Z\\\\d@_]*)(\\\\s*)(\\\\))(\\\\s*)(\\\\.)' } ],\n '#binary': \n [ { token: 'punctuation.definition.binary.begin.erlang',\n regex: '<<',\n push: \n [ { token: 'punctuation.definition.binary.end.erlang',\n regex: '>>',\n next: 'pop' },\n { token: \n [ 'punctuation.separator.binary.erlang',\n 'punctuation.separator.value-size.erlang' ],\n regex: '(,)|(:)' },\n { include: '#internal-type-specifiers' },\n { include: '#everything-else' },\n { defaultToken: 'meta.structure.binary.erlang' } ] } ],\n '#character': \n [ { token: \n [ 'punctuation.definition.character.erlang',\n 'punctuation.definition.escape.erlang',\n 'constant.character.escape.erlang',\n 'punctuation.definition.escape.erlang',\n 'constant.character.escape.erlang',\n 'constant.character.escape.erlang' ],\n regex: '(\\\\$)(\\\\\\\\)(?:([bdefnrstv\\\\\\\\\\'\"])|(\\\\^)([@-_])|([0-7]{1,3}))' },\n { token: 'invalid.illegal.character.erlang',\n regex: '\\\\$\\\\\\\\\\\\^?.?' },\n { token: \n [ 'punctuation.definition.character.erlang',\n 'constant.character.erlang' ],\n regex: '(\\\\$)(\\\\S)' },\n { token: 'invalid.illegal.character.erlang', regex: '\\\\$.?' } ],\n '#comment': \n [ { token: 'punctuation.definition.comment.erlang',\n regex: '%.*$',\n push_: \n [ { token: 'comment.line.percentage.erlang',\n regex: '$',\n next: 'pop' },\n { defaultToken: 'comment.line.percentage.erlang' } ] } ],\n '#define-directive': \n [ { token: \n [ 'meta.directive.define.erlang',\n 'punctuation.section.directive.begin.erlang',\n 'meta.directive.define.erlang',\n 'keyword.control.directive.define.erlang',\n 'meta.directive.define.erlang',\n 'punctuation.definition.parameters.begin.erlang',\n 'meta.directive.define.erlang',\n 'entity.name.function.macro.definition.erlang',\n 'meta.directive.define.erlang',\n 'punctuation.separator.parameters.erlang' ],\n regex: '^(\\\\s*)(-)(\\\\s*)(define)(\\\\s*)(\\\\()(\\\\s*)([a-zA-Z\\\\d@_]+)(\\\\s*)(,)',\n push: \n [ { token: \n [ 'punctuation.definition.parameters.end.erlang',\n 'meta.directive.define.erlang',\n 'punctuation.section.directive.end.erlang' ],\n regex: '(\\\\))(\\\\s*)(\\\\.)',\n next: 'pop' },\n { include: '#everything-else' },\n { defaultToken: 'meta.directive.define.erlang' } ] },\n { token: 'meta.directive.define.erlang',\n regex: '(?=^\\\\s*-\\\\s*define\\\\s*\\\\(\\\\s*[a-zA-Z\\\\d@_]+\\\\s*\\\\()',\n push: \n [ { token: \n [ 'punctuation.definition.parameters.end.erlang',\n 'meta.directive.define.erlang',\n 'punctuation.section.directive.end.erlang' ],\n regex: '(\\\\))(\\\\s*)(\\\\.)',\n next: 'pop' },\n { token: \n [ 'text',\n 'punctuation.section.directive.begin.erlang',\n 'text',\n 'keyword.control.directive.define.erlang',\n 'text',\n 'punctuation.definition.parameters.begin.erlang',\n 'text',\n 'entity.name.function.macro.definition.erlang',\n 'text',\n 'punctuation.definition.parameters.begin.erlang' ],\n regex: '^(\\\\s*)(-)(\\\\s*)(define)(\\\\s*)(\\\\()(\\\\s*)([a-zA-Z\\\\d@_]+)(\\\\s*)(\\\\()',\n push: \n [ { token: \n [ 'punctuation.definition.parameters.end.erlang',\n 'text',\n 'punctuation.separator.parameters.erlang' ],\n regex: '(\\\\))(\\\\s*)(,)',\n next: 'pop' },\n { token: 'punctuation.separator.parameters.erlang', regex: ',' },\n { include: '#everything-else' } ] },\n { token: 'punctuation.separator.define.erlang',\n regex: '\\\\|\\\\||\\\\||:|;|,|\\\\.|->' },\n { include: '#everything-else' },\n { defaultToken: 'meta.directive.define.erlang' } ] } ],\n '#directive': \n [ { token: \n [ 'meta.directive.erlang',\n 'punctuation.section.directive.begin.erlang',\n 'meta.directive.erlang',\n 'keyword.control.directive.erlang',\n 'meta.directive.erlang',\n 'punctuation.definition.parameters.begin.erlang' ],\n regex: '^(\\\\s*)(-)(\\\\s*)([a-z][a-zA-Z\\\\d@_]*)(\\\\s*)(\\\\(?)',\n push: \n [ { token: \n [ 'punctuation.definition.parameters.end.erlang',\n 'meta.directive.erlang',\n 'punctuation.section.directive.end.erlang' ],\n regex: '(\\\\)?)(\\\\s*)(\\\\.)',\n next: 'pop' },\n { include: '#everything-else' },\n { defaultToken: 'meta.directive.erlang' } ] },\n { token: \n [ 'meta.directive.erlang',\n 'punctuation.section.directive.begin.erlang',\n 'meta.directive.erlang',\n 'keyword.control.directive.erlang',\n 'meta.directive.erlang',\n 'punctuation.section.directive.end.erlang' ],\n regex: '^(\\\\s*)(-)(\\\\s*)([a-z][a-zA-Z\\\\d@_]*)(\\\\s*)(\\\\.)' } ],\n '#everything-else': \n [ { include: '#comment' },\n { include: '#record-usage' },\n { include: '#macro-usage' },\n { include: '#expression' },\n { include: '#keyword' },\n { include: '#textual-operator' },\n { include: '#function-call' },\n { include: '#tuple' },\n { include: '#list' },\n { include: '#binary' },\n { include: '#parenthesized-expression' },\n { include: '#character' },\n { include: '#number' },\n { include: '#atom' },\n { include: '#string' },\n { include: '#symbolic-operator' },\n { include: '#variable' } ],\n '#expression': \n [ { token: 'keyword.control.if.erlang',\n regex: '\\\\bif\\\\b',\n push: \n [ { token: 'keyword.control.end.erlang',\n regex: '\\\\bend\\\\b',\n next: 'pop' },\n { include: '#internal-expression-punctuation' },\n { include: '#everything-else' },\n { defaultToken: 'meta.expression.if.erlang' } ] },\n { token: 'keyword.control.case.erlang',\n regex: '\\\\bcase\\\\b',\n push: \n [ { token: 'keyword.control.end.erlang',\n regex: '\\\\bend\\\\b',\n next: 'pop' },\n { include: '#internal-expression-punctuation' },\n { include: '#everything-else' },\n { defaultToken: 'meta.expression.case.erlang' } ] },\n { token: 'keyword.control.receive.erlang',\n regex: '\\\\breceive\\\\b',\n push: \n [ { token: 'keyword.control.end.erlang',\n regex: '\\\\bend\\\\b',\n next: 'pop' },\n { include: '#internal-expression-punctuation' },\n { include: '#everything-else' },\n { defaultToken: 'meta.expression.receive.erlang' } ] },\n { token: \n [ 'keyword.control.fun.erlang',\n 'text',\n 'entity.name.type.class.module.erlang',\n 'text',\n 'punctuation.separator.module-function.erlang',\n 'text',\n 'entity.name.function.erlang',\n 'text',\n 'punctuation.separator.function-arity.erlang' ],\n regex: '\\\\b(fun)(\\\\s*)(?:([a-z][a-zA-Z\\\\d@_]*)(\\\\s*)(:)(\\\\s*))?([a-z][a-zA-Z\\\\d@_]*)(\\\\s*)(/)' },\n { token: 'keyword.control.fun.erlang',\n regex: '\\\\bfun\\\\b',\n push: \n [ { token: 'keyword.control.end.erlang',\n regex: '\\\\bend\\\\b',\n next: 'pop' },\n { token: 'text',\n regex: '(?=\\\\()',\n push: \n [ { token: 'punctuation.separator.clauses.erlang',\n regex: ';|(?=\\\\bend\\\\b)',\n next: 'pop' },\n { include: '#internal-function-parts' } ] },\n { include: '#everything-else' },\n { defaultToken: 'meta.expression.fun.erlang' } ] },\n { token: 'keyword.control.try.erlang',\n regex: '\\\\btry\\\\b',\n push: \n [ { token: 'keyword.control.end.erlang',\n regex: '\\\\bend\\\\b',\n next: 'pop' },\n { include: '#internal-expression-punctuation' },\n { include: '#everything-else' },\n { defaultToken: 'meta.expression.try.erlang' } ] },\n { token: 'keyword.control.begin.erlang',\n regex: '\\\\bbegin\\\\b',\n push: \n [ { token: 'keyword.control.end.erlang',\n regex: '\\\\bend\\\\b',\n next: 'pop' },\n { include: '#internal-expression-punctuation' },\n { include: '#everything-else' },\n { defaultToken: 'meta.expression.begin.erlang' } ] },\n { token: 'keyword.control.query.erlang',\n regex: '\\\\bquery\\\\b',\n push: \n [ { token: 'keyword.control.end.erlang',\n regex: '\\\\bend\\\\b',\n next: 'pop' },\n { include: '#everything-else' },\n { defaultToken: 'meta.expression.query.erlang' } ] } ],\n '#function': \n [ { token: \n [ 'meta.function.erlang',\n 'entity.name.function.definition.erlang',\n 'meta.function.erlang' ],\n regex: '^(\\\\s*)([a-z][a-zA-Z\\\\d@_]*|\\'[^\\']*\\')(\\\\s*)(?=\\\\()',\n push: \n [ { token: 'punctuation.terminator.function.erlang',\n regex: '\\\\.',\n next: 'pop' },\n { token: [ 'text', 'entity.name.function.erlang', 'text' ],\n regex: '^(\\\\s*)([a-z][a-zA-Z\\\\d@_]*|\\'[^\\']*\\')(\\\\s*)(?=\\\\()' },\n { token: 'text',\n regex: '(?=\\\\()',\n push: \n [ { token: 'punctuation.separator.clauses.erlang',\n regex: ';|(?=\\\\.)',\n next: 'pop' },\n { include: '#parenthesized-expression' },\n { include: '#internal-function-parts' } ] },\n { include: '#everything-else' },\n { defaultToken: 'meta.function.erlang' } ] } ],\n '#function-call': \n [ { token: 'meta.function-call.erlang',\n regex: '(?=(?:[a-z][a-zA-Z\\\\d@_]*|\\'[^\\']*\\')\\\\s*(?:\\\\(|:\\\\s*(?:[a-z][a-zA-Z\\\\d@_]*|\\'[^\\']*\\')\\\\s*\\\\())',\n push: \n [ { token: 'punctuation.definition.parameters.end.erlang',\n regex: '\\\\)',\n next: 'pop' },\n { token: \n [ 'entity.name.type.class.module.erlang',\n 'text',\n 'punctuation.separator.module-function.erlang',\n 'text',\n 'entity.name.function.guard.erlang',\n 'text',\n 'punctuation.definition.parameters.begin.erlang' ],\n regex: '(?:(erlang)(\\\\s*)(:)(\\\\s*))?(is_atom|is_binary|is_constant|is_float|is_function|is_integer|is_list|is_number|is_pid|is_port|is_reference|is_tuple|is_record|abs|element|hd|length|node|round|self|size|tl|trunc)(\\\\s*)(\\\\()',\n push: \n [ { token: 'text', regex: '(?=\\\\))', next: 'pop' },\n { token: 'punctuation.separator.parameters.erlang', regex: ',' },\n { include: '#everything-else' } ] },\n { token: \n [ 'entity.name.type.class.module.erlang',\n 'text',\n 'punctuation.separator.module-function.erlang',\n 'text',\n 'entity.name.function.erlang',\n 'text',\n 'punctuation.definition.parameters.begin.erlang' ],\n regex: '(?:([a-z][a-zA-Z\\\\d@_]*|\\'[^\\']*\\')(\\\\s*)(:)(\\\\s*))?([a-z][a-zA-Z\\\\d@_]*|\\'[^\\']*\\')(\\\\s*)(\\\\()',\n push: \n [ { token: 'text', regex: '(?=\\\\))', next: 'pop' },\n { token: 'punctuation.separator.parameters.erlang', regex: ',' },\n { include: '#everything-else' } ] },\n { defaultToken: 'meta.function-call.erlang' } ] } ],\n '#import-export-directive': \n [ { token: \n [ 'meta.directive.import.erlang',\n 'punctuation.section.directive.begin.erlang',\n 'meta.directive.import.erlang',\n 'keyword.control.directive.import.erlang',\n 'meta.directive.import.erlang',\n 'punctuation.definition.parameters.begin.erlang',\n 'meta.directive.import.erlang',\n 'entity.name.type.class.module.erlang',\n 'meta.directive.import.erlang',\n 'punctuation.separator.parameters.erlang' ],\n regex: '^(\\\\s*)(-)(\\\\s*)(import)(\\\\s*)(\\\\()(\\\\s*)([a-z][a-zA-Z\\\\d@_]*|\\'[^\\']*\\')(\\\\s*)(,)',\n push: \n [ { token: \n [ 'punctuation.definition.parameters.end.erlang',\n 'meta.directive.import.erlang',\n 'punctuation.section.directive.end.erlang' ],\n regex: '(\\\\))(\\\\s*)(\\\\.)',\n next: 'pop' },\n { include: '#internal-function-list' },\n { defaultToken: 'meta.directive.import.erlang' } ] },\n { token: \n [ 'meta.directive.export.erlang',\n 'punctuation.section.directive.begin.erlang',\n 'meta.directive.export.erlang',\n 'keyword.control.directive.export.erlang',\n 'meta.directive.export.erlang',\n 'punctuation.definition.parameters.begin.erlang' ],\n regex: '^(\\\\s*)(-)(\\\\s*)(export)(\\\\s*)(\\\\()',\n push: \n [ { token: \n [ 'punctuation.definition.parameters.end.erlang',\n 'meta.directive.export.erlang',\n 'punctuation.section.directive.end.erlang' ],\n regex: '(\\\\))(\\\\s*)(\\\\.)',\n next: 'pop' },\n { include: '#internal-function-list' },\n { defaultToken: 'meta.directive.export.erlang' } ] } ],\n '#internal-expression-punctuation': \n [ { token: \n [ 'punctuation.separator.clause-head-body.erlang',\n 'punctuation.separator.clauses.erlang',\n 'punctuation.separator.expressions.erlang' ],\n regex: '(->)|(;)|(,)' } ],\n '#internal-function-list': \n [ { token: 'punctuation.definition.list.begin.erlang',\n regex: '\\\\[',\n push: \n [ { token: 'punctuation.definition.list.end.erlang',\n regex: '\\\\]',\n next: 'pop' },\n { token: \n [ 'entity.name.function.erlang',\n 'text',\n 'punctuation.separator.function-arity.erlang' ],\n regex: '([a-z][a-zA-Z\\\\d@_]*|\\'[^\\']*\\')(\\\\s*)(/)',\n push: \n [ { token: 'punctuation.separator.list.erlang',\n regex: ',|(?=\\\\])',\n next: 'pop' },\n { include: '#everything-else' } ] },\n { include: '#everything-else' },\n { defaultToken: 'meta.structure.list.function.erlang' } ] } ],\n '#internal-function-parts': \n [ { token: 'text',\n regex: '(?=\\\\()',\n push: \n [ { token: 'punctuation.separator.clause-head-body.erlang',\n regex: '->',\n next: 'pop' },\n { token: 'punctuation.definition.parameters.begin.erlang',\n regex: '\\\\(',\n push: \n [ { token: 'punctuation.definition.parameters.end.erlang',\n regex: '\\\\)',\n next: 'pop' },\n { token: 'punctuation.separator.parameters.erlang', regex: ',' },\n { include: '#everything-else' } ] },\n { token: 'punctuation.separator.guards.erlang', regex: ',|;' },\n { include: '#everything-else' } ] },\n { token: 'punctuation.separator.expressions.erlang',\n regex: ',' },\n { include: '#everything-else' } ],\n '#internal-record-body': \n [ { token: 'punctuation.definition.class.record.begin.erlang',\n regex: '\\\\{',\n push: \n [ { token: 'meta.structure.record.erlang',\n regex: '(?=\\\\})',\n next: 'pop' },\n { token: \n [ 'variable.other.field.erlang',\n 'variable.language.omitted.field.erlang',\n 'text',\n 'keyword.operator.assignment.erlang' ],\n regex: '(?:([a-z][a-zA-Z\\\\d@_]*|\\'[^\\']*\\')|(_))(\\\\s*)(=|::)',\n push: \n [ { token: 'punctuation.separator.class.record.erlang',\n regex: ',|(?=\\\\})',\n next: 'pop' },\n { include: '#everything-else' } ] },\n { token: \n [ 'variable.other.field.erlang',\n 'text',\n 'punctuation.separator.class.record.erlang' ],\n regex: '([a-z][a-zA-Z\\\\d@_]*|\\'[^\\']*\\')(\\\\s*)((?:,)?)' },\n { include: '#everything-else' },\n { defaultToken: 'meta.structure.record.erlang' } ] } ],\n '#internal-type-specifiers': \n [ { token: 'punctuation.separator.value-type.erlang',\n regex: '/',\n push: \n [ { token: 'text', regex: '(?=,|:|>>)', next: 'pop' },\n { token: \n [ 'storage.type.erlang',\n 'storage.modifier.signedness.erlang',\n 'storage.modifier.endianness.erlang',\n 'storage.modifier.unit.erlang',\n 'punctuation.separator.type-specifiers.erlang' ],\n regex: '(integer|float|binary|bytes|bitstring|bits)|(signed|unsigned)|(big|little|native)|(unit)|(-)' } ] } ],\n '#keyword': \n [ { token: 'keyword.control.erlang',\n regex: '\\\\b(?:after|begin|case|catch|cond|end|fun|if|let|of|query|try|receive|when)\\\\b' } ],\n '#list': \n [ { token: 'punctuation.definition.list.begin.erlang',\n regex: '\\\\[',\n push: \n [ { token: 'punctuation.definition.list.end.erlang',\n regex: '\\\\]',\n next: 'pop' },\n { token: 'punctuation.separator.list.erlang',\n regex: '\\\\||\\\\|\\\\||,' },\n { include: '#everything-else' },\n { defaultToken: 'meta.structure.list.erlang' } ] } ],\n '#macro-directive': \n [ { token: \n [ 'meta.directive.ifdef.erlang',\n 'punctuation.section.directive.begin.erlang',\n 'meta.directive.ifdef.erlang',\n 'keyword.control.directive.ifdef.erlang',\n 'meta.directive.ifdef.erlang',\n 'punctuation.definition.parameters.begin.erlang',\n 'meta.directive.ifdef.erlang',\n 'entity.name.function.macro.erlang',\n 'meta.directive.ifdef.erlang',\n 'punctuation.definition.parameters.end.erlang',\n 'meta.directive.ifdef.erlang',\n 'punctuation.section.directive.end.erlang' ],\n regex: '^(\\\\s*)(-)(\\\\s*)(ifdef)(\\\\s*)(\\\\()(\\\\s*)([a-zA-Z\\\\d@_]+)(\\\\s*)(\\\\))(\\\\s*)(\\\\.)' },\n { token: \n [ 'meta.directive.ifndef.erlang',\n 'punctuation.section.directive.begin.erlang',\n 'meta.directive.ifndef.erlang',\n 'keyword.control.directive.ifndef.erlang',\n 'meta.directive.ifndef.erlang',\n 'punctuation.definition.parameters.begin.erlang',\n 'meta.directive.ifndef.erlang',\n 'entity.name.function.macro.erlang',\n 'meta.directive.ifndef.erlang',\n 'punctuation.definition.parameters.end.erlang',\n 'meta.directive.ifndef.erlang',\n 'punctuation.section.directive.end.erlang' ],\n regex: '^(\\\\s*)(-)(\\\\s*)(ifndef)(\\\\s*)(\\\\()(\\\\s*)([a-zA-Z\\\\d@_]+)(\\\\s*)(\\\\))(\\\\s*)(\\\\.)' },\n { token: \n [ 'meta.directive.undef.erlang',\n 'punctuation.section.directive.begin.erlang',\n 'meta.directive.undef.erlang',\n 'keyword.control.directive.undef.erlang',\n 'meta.directive.undef.erlang',\n 'punctuation.definition.parameters.begin.erlang',\n 'meta.directive.undef.erlang',\n 'entity.name.function.macro.erlang',\n 'meta.directive.undef.erlang',\n 'punctuation.definition.parameters.end.erlang',\n 'meta.directive.undef.erlang',\n 'punctuation.section.directive.end.erlang' ],\n regex: '^(\\\\s*)(-)(\\\\s*)(undef)(\\\\s*)(\\\\()(\\\\s*)([a-zA-Z\\\\d@_]+)(\\\\s*)(\\\\))(\\\\s*)(\\\\.)' } ],\n '#macro-usage': \n [ { token: \n [ 'keyword.operator.macro.erlang',\n 'meta.macro-usage.erlang',\n 'entity.name.function.macro.erlang' ],\n regex: '(\\\\?\\\\??)(\\\\s*)([a-zA-Z\\\\d@_]+)' } ],\n '#module-directive': \n [ { token: \n [ 'meta.directive.module.erlang',\n 'punctuation.section.directive.begin.erlang',\n 'meta.directive.module.erlang',\n 'keyword.control.directive.module.erlang',\n 'meta.directive.module.erlang',\n 'punctuation.definition.parameters.begin.erlang',\n 'meta.directive.module.erlang',\n 'entity.name.type.class.module.definition.erlang',\n 'meta.directive.module.erlang',\n 'punctuation.definition.parameters.end.erlang',\n 'meta.directive.module.erlang',\n 'punctuation.section.directive.end.erlang' ],\n regex: '^(\\\\s*)(-)(\\\\s*)(module)(\\\\s*)(\\\\()(\\\\s*)([a-z][a-zA-Z\\\\d@_]*)(\\\\s*)(\\\\))(\\\\s*)(\\\\.)' } ],\n '#number': \n [ { token: 'text',\n regex: '(?=\\\\d)',\n push: \n [ { token: 'text', regex: '(?!\\\\d)', next: 'pop' },\n { token: \n [ 'constant.numeric.float.erlang',\n 'punctuation.separator.integer-float.erlang',\n 'constant.numeric.float.erlang',\n 'punctuation.separator.float-exponent.erlang' ],\n regex: '(\\\\d+)(\\\\.)(\\\\d+)((?:[eE][\\\\+\\\\-]?\\\\d+)?)' },\n { token: \n [ 'constant.numeric.integer.binary.erlang',\n 'punctuation.separator.base-integer.erlang',\n 'constant.numeric.integer.binary.erlang' ],\n regex: '(2)(#)([0-1]+)' },\n { token: \n [ 'constant.numeric.integer.base-3.erlang',\n 'punctuation.separator.base-integer.erlang',\n 'constant.numeric.integer.base-3.erlang' ],\n regex: '(3)(#)([0-2]+)' },\n { token: \n [ 'constant.numeric.integer.base-4.erlang',\n 'punctuation.separator.base-integer.erlang',\n 'constant.numeric.integer.base-4.erlang' ],\n regex: '(4)(#)([0-3]+)' },\n { token: \n [ 'constant.numeric.integer.base-5.erlang',\n 'punctuation.separator.base-integer.erlang',\n 'constant.numeric.integer.base-5.erlang' ],\n regex: '(5)(#)([0-4]+)' },\n { token: \n [ 'constant.numeric.integer.base-6.erlang',\n 'punctuation.separator.base-integer.erlang',\n 'constant.numeric.integer.base-6.erlang' ],\n regex: '(6)(#)([0-5]+)' },\n { token: \n [ 'constant.numeric.integer.base-7.erlang',\n 'punctuation.separator.base-integer.erlang',\n 'constant.numeric.integer.base-7.erlang' ],\n regex: '(7)(#)([0-6]+)' },\n { token: \n [ 'constant.numeric.integer.octal.erlang',\n 'punctuation.separator.base-integer.erlang',\n 'constant.numeric.integer.octal.erlang' ],\n regex: '(8)(#)([0-7]+)' },\n { token: \n [ 'constant.numeric.integer.base-9.erlang',\n 'punctuation.separator.base-integer.erlang',\n 'constant.numeric.integer.base-9.erlang' ],\n regex: '(9)(#)([0-8]+)' },\n { token: \n [ 'constant.numeric.integer.decimal.erlang',\n 'punctuation.separator.base-integer.erlang',\n 'constant.numeric.integer.decimal.erlang' ],\n regex: '(10)(#)(\\\\d+)' },\n { token: \n [ 'constant.numeric.integer.base-11.erlang',\n 'punctuation.separator.base-integer.erlang',\n 'constant.numeric.integer.base-11.erlang' ],\n regex: '(11)(#)([\\\\daA]+)' },\n { token: \n [ 'constant.numeric.integer.base-12.erlang',\n 'punctuation.separator.base-integer.erlang',\n 'constant.numeric.integer.base-12.erlang' ],\n regex: '(12)(#)([\\\\da-bA-B]+)' },\n { token: \n [ 'constant.numeric.integer.base-13.erlang',\n 'punctuation.separator.base-integer.erlang',\n 'constant.numeric.integer.base-13.erlang' ],\n regex: '(13)(#)([\\\\da-cA-C]+)' },\n { token: \n [ 'constant.numeric.integer.base-14.erlang',\n 'punctuation.separator.base-integer.erlang',\n 'constant.numeric.integer.base-14.erlang' ],\n regex: '(14)(#)([\\\\da-dA-D]+)' },\n { token: \n [ 'constant.numeric.integer.base-15.erlang',\n 'punctuation.separator.base-integer.erlang',\n 'constant.numeric.integer.base-15.erlang' ],\n regex: '(15)(#)([\\\\da-eA-E]+)' },\n { token: \n [ 'constant.numeric.integer.hexadecimal.erlang',\n 'punctuation.separator.base-integer.erlang',\n 'constant.numeric.integer.hexadecimal.erlang' ],\n regex: '(16)(#)([\\\\da-fA-F]+)' },\n { token: \n [ 'constant.numeric.integer.base-17.erlang',\n 'punctuation.separator.base-integer.erlang',\n 'constant.numeric.integer.base-17.erlang' ],\n regex: '(17)(#)([\\\\da-gA-G]+)' },\n { token: \n [ 'constant.numeric.integer.base-18.erlang',\n 'punctuation.separator.base-integer.erlang',\n 'constant.numeric.integer.base-18.erlang' ],\n regex: '(18)(#)([\\\\da-hA-H]+)' },\n { token: \n [ 'constant.numeric.integer.base-19.erlang',\n 'punctuation.separator.base-integer.erlang',\n 'constant.numeric.integer.base-19.erlang' ],\n regex: '(19)(#)([\\\\da-iA-I]+)' },\n { token: \n [ 'constant.numeric.integer.base-20.erlang',\n 'punctuation.separator.base-integer.erlang',\n 'constant.numeric.integer.base-20.erlang' ],\n regex: '(20)(#)([\\\\da-jA-J]+)' },\n { token: \n [ 'constant.numeric.integer.base-21.erlang',\n 'punctuation.separator.base-integer.erlang',\n 'constant.numeric.integer.base-21.erlang' ],\n regex: '(21)(#)([\\\\da-kA-K]+)' },\n { token: \n [ 'constant.numeric.integer.base-22.erlang',\n 'punctuation.separator.base-integer.erlang',\n 'constant.numeric.integer.base-22.erlang' ],\n regex: '(22)(#)([\\\\da-lA-L]+)' },\n { token: \n [ 'constant.numeric.integer.base-23.erlang',\n 'punctuation.separator.base-integer.erlang',\n 'constant.numeric.integer.base-23.erlang' ],\n regex: '(23)(#)([\\\\da-mA-M]+)' },\n { token: \n [ 'constant.numeric.integer.base-24.erlang',\n 'punctuation.separator.base-integer.erlang',\n 'constant.numeric.integer.base-24.erlang' ],\n regex: '(24)(#)([\\\\da-nA-N]+)' },\n { token: \n [ 'constant.numeric.integer.base-25.erlang',\n 'punctuation.separator.base-integer.erlang',\n 'constant.numeric.integer.base-25.erlang' ],\n regex: '(25)(#)([\\\\da-oA-O]+)' },\n { token: \n [ 'constant.numeric.integer.base-26.erlang',\n 'punctuation.separator.base-integer.erlang',\n 'constant.numeric.integer.base-26.erlang' ],\n regex: '(26)(#)([\\\\da-pA-P]+)' },\n { token: \n [ 'constant.numeric.integer.base-27.erlang',\n 'punctuation.separator.base-integer.erlang',\n 'constant.numeric.integer.base-27.erlang' ],\n regex: '(27)(#)([\\\\da-qA-Q]+)' },\n { token: \n [ 'constant.numeric.integer.base-28.erlang',\n 'punctuation.separator.base-integer.erlang',\n 'constant.numeric.integer.base-28.erlang' ],\n regex: '(28)(#)([\\\\da-rA-R]+)' },\n { token: \n [ 'constant.numeric.integer.base-29.erlang',\n 'punctuation.separator.base-integer.erlang',\n 'constant.numeric.integer.base-29.erlang' ],\n regex: '(29)(#)([\\\\da-sA-S]+)' },\n { token: \n [ 'constant.numeric.integer.base-30.erlang',\n 'punctuation.separator.base-integer.erlang',\n 'constant.numeric.integer.base-30.erlang' ],\n regex: '(30)(#)([\\\\da-tA-T]+)' },\n { token: \n [ 'constant.numeric.integer.base-31.erlang',\n 'punctuation.separator.base-integer.erlang',\n 'constant.numeric.integer.base-31.erlang' ],\n regex: '(31)(#)([\\\\da-uA-U]+)' },\n { token: \n [ 'constant.numeric.integer.base-32.erlang',\n 'punctuation.separator.base-integer.erlang',\n 'constant.numeric.integer.base-32.erlang' ],\n regex: '(32)(#)([\\\\da-vA-V]+)' },\n { token: \n [ 'constant.numeric.integer.base-33.erlang',\n 'punctuation.separator.base-integer.erlang',\n 'constant.numeric.integer.base-33.erlang' ],\n regex: '(33)(#)([\\\\da-wA-W]+)' },\n { token: \n [ 'constant.numeric.integer.base-34.erlang',\n 'punctuation.separator.base-integer.erlang',\n 'constant.numeric.integer.base-34.erlang' ],\n regex: '(34)(#)([\\\\da-xA-X]+)' },\n { token: \n [ 'constant.numeric.integer.base-35.erlang',\n 'punctuation.separator.base-integer.erlang',\n 'constant.numeric.integer.base-35.erlang' ],\n regex: '(35)(#)([\\\\da-yA-Y]+)' },\n { token: \n [ 'constant.numeric.integer.base-36.erlang',\n 'punctuation.separator.base-integer.erlang',\n 'constant.numeric.integer.base-36.erlang' ],\n regex: '(36)(#)([\\\\da-zA-Z]+)' },\n { token: 'invalid.illegal.integer.erlang',\n regex: '\\\\d+#[\\\\da-zA-Z]+' },\n { token: 'constant.numeric.integer.decimal.erlang',\n regex: '\\\\d+' } ] } ],\n '#parenthesized-expression': \n [ { token: 'punctuation.section.expression.begin.erlang',\n regex: '\\\\(',\n push: \n [ { token: 'punctuation.section.expression.end.erlang',\n regex: '\\\\)',\n next: 'pop' },\n { include: '#everything-else' },\n { defaultToken: 'meta.expression.parenthesized' } ] } ],\n '#record-directive': \n [ { token: \n [ 'meta.directive.record.erlang',\n 'punctuation.section.directive.begin.erlang',\n 'meta.directive.record.erlang',\n 'keyword.control.directive.import.erlang',\n 'meta.directive.record.erlang',\n 'punctuation.definition.parameters.begin.erlang',\n 'meta.directive.record.erlang',\n 'entity.name.type.class.record.definition.erlang',\n 'meta.directive.record.erlang',\n 'punctuation.separator.parameters.erlang' ],\n regex: '^(\\\\s*)(-)(\\\\s*)(record)(\\\\s*)(\\\\()(\\\\s*)([a-z][a-zA-Z\\\\d@_]*|\\'[^\\']*\\')(\\\\s*)(,)',\n push: \n [ { token: \n [ 'punctuation.definition.class.record.end.erlang',\n 'meta.directive.record.erlang',\n 'punctuation.definition.parameters.end.erlang',\n 'meta.directive.record.erlang',\n 'punctuation.section.directive.end.erlang' ],\n regex: '(\\\\})(\\\\s*)(\\\\))(\\\\s*)(\\\\.)',\n next: 'pop' },\n { include: '#internal-record-body' },\n { defaultToken: 'meta.directive.record.erlang' } ] } ],\n '#record-usage': \n [ { token: \n [ 'keyword.operator.record.erlang',\n 'meta.record-usage.erlang',\n 'entity.name.type.class.record.erlang',\n 'meta.record-usage.erlang',\n 'punctuation.separator.record-field.erlang',\n 'meta.record-usage.erlang',\n 'variable.other.field.erlang' ],\n regex: '(#)(\\\\s*)([a-z][a-zA-Z\\\\d@_]*|\\'[^\\']*\\')(\\\\s*)(\\\\.)(\\\\s*)([a-z][a-zA-Z\\\\d@_]*|\\'[^\\']*\\')' },\n { token: \n [ 'keyword.operator.record.erlang',\n 'meta.record-usage.erlang',\n 'entity.name.type.class.record.erlang' ],\n regex: '(#)(\\\\s*)([a-z][a-zA-Z\\\\d@_]*|\\'[^\\']*\\')',\n push: \n [ { token: 'punctuation.definition.class.record.end.erlang',\n regex: '\\\\}',\n next: 'pop' },\n { include: '#internal-record-body' },\n { defaultToken: 'meta.record-usage.erlang' } ] } ],\n '#string': \n [ { token: 'punctuation.definition.string.begin.erlang',\n regex: '\"',\n push: \n [ { token: 'punctuation.definition.string.end.erlang',\n regex: '\"',\n next: 'pop' },\n { token: \n [ 'punctuation.definition.escape.erlang',\n 'constant.character.escape.erlang',\n 'punctuation.definition.escape.erlang',\n 'constant.character.escape.erlang',\n 'constant.character.escape.erlang' ],\n regex: '(\\\\\\\\)(?:([bdefnrstv\\\\\\\\\\'\"])|(\\\\^)([@-_])|([0-7]{1,3}))' },\n { token: 'invalid.illegal.string.erlang', regex: '\\\\\\\\\\\\^?.?' },\n { token: \n [ 'punctuation.definition.placeholder.erlang',\n 'punctuation.separator.placeholder-parts.erlang',\n 'constant.other.placeholder.erlang',\n 'punctuation.separator.placeholder-parts.erlang',\n 'punctuation.separator.placeholder-parts.erlang',\n 'constant.other.placeholder.erlang',\n 'punctuation.separator.placeholder-parts.erlang',\n 'punctuation.separator.placeholder-parts.erlang',\n 'punctuation.separator.placeholder-parts.erlang',\n 'constant.other.placeholder.erlang',\n 'constant.other.placeholder.erlang' ],\n regex: '(~)(?:((?:\\\\-)?)(\\\\d+)|(\\\\*))?(?:(\\\\.)(?:(\\\\d+)|(\\\\*)))?(?:(\\\\.)(?:(\\\\*)|(.)))?([~cfegswpWPBX#bx\\\\+ni])' },\n { token: \n [ 'punctuation.definition.placeholder.erlang',\n 'punctuation.separator.placeholder-parts.erlang',\n 'constant.other.placeholder.erlang',\n 'constant.other.placeholder.erlang' ],\n regex: '(~)((?:\\\\*)?)((?:\\\\d+)?)([~du\\\\-#fsacl])' },\n { token: 'invalid.illegal.string.erlang', regex: '~.?' },\n { defaultToken: 'string.quoted.double.erlang' } ] } ],\n '#symbolic-operator': \n [ { token: 'keyword.operator.symbolic.erlang',\n regex: '\\\\+\\\\+|\\\\+|--|-|\\\\*|/=|/|=/=|=:=|==|=<|=|<-|<|>=|>|!|::' } ],\n '#textual-operator': \n [ { token: 'keyword.operator.textual.erlang',\n regex: '\\\\b(?:andalso|band|and|bxor|xor|bor|orelse|or|bnot|not|bsl|bsr|div|rem)\\\\b' } ],\n '#tuple': \n [ { token: 'punctuation.definition.tuple.begin.erlang',\n regex: '\\\\{',\n push: \n [ { token: 'punctuation.definition.tuple.end.erlang',\n regex: '\\\\}',\n next: 'pop' },\n { token: 'punctuation.separator.tuple.erlang', regex: ',' },\n { include: '#everything-else' },\n { defaultToken: 'meta.structure.tuple.erlang' } ] } ],\n '#variable': \n [ { token: [ 'variable.other.erlang', 'variable.language.omitted.erlang' ],\n regex: '(_[a-zA-Z\\\\d@_]+|[A-Z][a-zA-Z\\\\d@_]*)|(_)' } ] };\n \n this.normalizeRules();\n};\n\nErlangHighlightRules.metaData = { comment: 'The recognition of function definitions and compiler directives (such as module, record and macro definitions) requires that each of the aforementioned constructs must be the first string inside a line (except for whitespace). Also, the function/module/record/macro names must be given unquoted. -- desp',\n fileTypes: [ 'erl', 'hrl' ],\n keyEquivalent: '^~E',\n name: 'Erlang',\n scopeName: 'source.erlang' };\n\n\noop.inherits(ErlangHighlightRules, TextHighlightRules);\n\nexports.ErlangHighlightRules = ErlangHighlightRules;\n});\n\nace.define(\"ace/mode/folding/cstyle\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/range\",\"ace/mode/folding/fold_mode\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Range = require(\"../../range\").Range;\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function(commentRegex) {\n if (commentRegex) {\n this.foldingStartMarker = new RegExp(\n this.foldingStartMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.start)\n );\n this.foldingStopMarker = new RegExp(\n this.foldingStopMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.end)\n );\n }\n};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n \n this.foldingStartMarker = /([\\{\\[\\(])[^\\}\\]\\)]*$|^\\s*(\\/\\*)/;\n this.foldingStopMarker = /^[^\\[\\{\\(]*([\\}\\]\\)])|^[\\s\\*]*(\\*\\/)/;\n this.singleLineBlockCommentRe= /^\\s*(\\/\\*).*\\*\\/\\s*$/;\n this.tripleStarBlockCommentRe = /^\\s*(\\/\\*\\*\\*).*\\*\\/\\s*$/;\n this.startRegionRe = /^\\s*(\\/\\*|\\/\\/)#?region\\b/;\n this._getFoldWidgetBase = this.getFoldWidget;\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n \n if (this.singleLineBlockCommentRe.test(line)) {\n if (!this.startRegionRe.test(line) && !this.tripleStarBlockCommentRe.test(line))\n return \"\";\n }\n \n var fw = this._getFoldWidgetBase(session, foldStyle, row);\n \n if (!fw && this.startRegionRe.test(line))\n return \"start\"; // lineCommentRegionStart\n \n return fw;\n };\n\n this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {\n var line = session.getLine(row);\n \n if (this.startRegionRe.test(line))\n return this.getCommentRegionBlock(session, line, row);\n \n var match = line.match(this.foldingStartMarker);\n if (match) {\n var i = match.index;\n\n if (match[1])\n return this.openingBracketBlock(session, match[1], row, i);\n \n var range = session.getCommentFoldRange(row, i + match[0].length, 1);\n \n if (range && !range.isMultiLine()) {\n if (forceMultiline) {\n range = this.getSectionRange(session, row);\n } else if (foldStyle != \"all\")\n range = null;\n }\n \n return range;\n }\n\n if (foldStyle === \"markbegin\")\n return;\n\n var match = line.match(this.foldingStopMarker);\n if (match) {\n var i = match.index + match[0].length;\n\n if (match[1])\n return this.closingBracketBlock(session, match[1], row, i);\n\n return session.getCommentFoldRange(row, i, -1);\n }\n };\n \n this.getSectionRange = function(session, row) {\n var line = session.getLine(row);\n var startIndent = line.search(/\\S/);\n var startRow = row;\n var startColumn = line.length;\n row = row + 1;\n var endRow = row;\n var maxRow = session.getLength();\n while (++row < maxRow) {\n line = session.getLine(row);\n var indent = line.search(/\\S/);\n if (indent === -1)\n continue;\n if (startIndent > indent)\n break;\n var subRange = this.getFoldWidgetRange(session, \"all\", row);\n \n if (subRange) {\n if (subRange.start.row <= startRow) {\n break;\n } else if (subRange.isMultiLine()) {\n row = subRange.end.row;\n } else if (startIndent == indent) {\n break;\n }\n }\n endRow = row;\n }\n \n return new Range(startRow, startColumn, endRow, session.getLine(endRow).length);\n };\n this.getCommentRegionBlock = function(session, line, row) {\n var startColumn = line.search(/\\s*$/);\n var maxRow = session.getLength();\n var startRow = row;\n \n var re = /^\\s*(?:\\/\\*|\\/\\/|--)#?(end)?region\\b/;\n var depth = 1;\n while (++row < maxRow) {\n line = session.getLine(row);\n var m = re.exec(line);\n if (!m) continue;\n if (m[1]) depth--;\n else depth++;\n\n if (!depth) break;\n }\n\n var endRow = row;\n if (endRow > startRow) {\n return new Range(startRow, startColumn, endRow, line.length);\n }\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/erlang\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/erlang_highlight_rules\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar ErlangHighlightRules = require(\"./erlang_highlight_rules\").ErlangHighlightRules;\nvar FoldMode = require(\"./folding/cstyle\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = ErlangHighlightRules;\n this.foldingRules = new FoldMode();\n this.$behaviour = this.$defaultBehaviour;\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n this.lineCommentStart = \"%\";\n this.blockComment = null;\n this.$id = \"ace/mode/erlang\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/erlang\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file1y := &embedded.EmbeddedFile{ Filename: "280ba139ff95428f262adbf81b77aeb4.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/theme/textmate\",[\"require\",\"exports\",\"module\",\"ace/lib/dom\"], function(require, exports, module) {\n\"use strict\";\n\nexports.isDark = false;\nexports.cssClass = \"ace-tm\";\nexports.cssText = \".ace-tm .ace_gutter {\\\nbackground: #f0f0f0;\\\ncolor: #333;\\\n}\\\n.ace-tm .ace_print-margin {\\\nwidth: 1px;\\\nbackground: #e8e8e8;\\\n}\\\n.ace-tm .ace_fold {\\\nbackground-color: #6B72E6;\\\n}\\\n.ace-tm {\\\nbackground-color: #FFFFFF;\\\ncolor: black;\\\n}\\\n.ace-tm .ace_cursor {\\\ncolor: black;\\\n}\\\n.ace-tm .ace_invisible {\\\ncolor: rgb(191, 191, 191);\\\n}\\\n.ace-tm .ace_storage,\\\n.ace-tm .ace_keyword {\\\ncolor: blue;\\\n}\\\n.ace-tm .ace_constant {\\\ncolor: rgb(197, 6, 11);\\\n}\\\n.ace-tm .ace_constant.ace_buildin {\\\ncolor: rgb(88, 72, 246);\\\n}\\\n.ace-tm .ace_constant.ace_language {\\\ncolor: rgb(88, 92, 246);\\\n}\\\n.ace-tm .ace_constant.ace_library {\\\ncolor: rgb(6, 150, 14);\\\n}\\\n.ace-tm .ace_invalid {\\\nbackground-color: rgba(255, 0, 0, 0.1);\\\ncolor: red;\\\n}\\\n.ace-tm .ace_support.ace_function {\\\ncolor: rgb(60, 76, 114);\\\n}\\\n.ace-tm .ace_support.ace_constant {\\\ncolor: rgb(6, 150, 14);\\\n}\\\n.ace-tm .ace_support.ace_type,\\\n.ace-tm .ace_support.ace_class {\\\ncolor: rgb(109, 121, 222);\\\n}\\\n.ace-tm .ace_keyword.ace_operator {\\\ncolor: rgb(104, 118, 135);\\\n}\\\n.ace-tm .ace_string {\\\ncolor: rgb(3, 106, 7);\\\n}\\\n.ace-tm .ace_comment {\\\ncolor: rgb(76, 136, 107);\\\n}\\\n.ace-tm .ace_comment.ace_doc {\\\ncolor: rgb(0, 102, 255);\\\n}\\\n.ace-tm .ace_comment.ace_doc.ace_tag {\\\ncolor: rgb(128, 159, 191);\\\n}\\\n.ace-tm .ace_constant.ace_numeric {\\\ncolor: rgb(0, 0, 205);\\\n}\\\n.ace-tm .ace_variable {\\\ncolor: rgb(49, 132, 149);\\\n}\\\n.ace-tm .ace_xml-pe {\\\ncolor: rgb(104, 104, 91);\\\n}\\\n.ace-tm .ace_entity.ace_name.ace_function {\\\ncolor: #0000A2;\\\n}\\\n.ace-tm .ace_heading {\\\ncolor: rgb(12, 7, 255);\\\n}\\\n.ace-tm .ace_list {\\\ncolor:rgb(185, 6, 144);\\\n}\\\n.ace-tm .ace_meta.ace_tag {\\\ncolor:rgb(0, 22, 142);\\\n}\\\n.ace-tm .ace_string.ace_regex {\\\ncolor: rgb(255, 0, 0)\\\n}\\\n.ace-tm .ace_marker-layer .ace_selection {\\\nbackground: rgb(181, 213, 255);\\\n}\\\n.ace-tm.ace_multiselect .ace_selection.ace_start {\\\nbox-shadow: 0 0 3px 0px white;\\\n}\\\n.ace-tm .ace_marker-layer .ace_step {\\\nbackground: rgb(252, 255, 0);\\\n}\\\n.ace-tm .ace_marker-layer .ace_stack {\\\nbackground: rgb(164, 229, 101);\\\n}\\\n.ace-tm .ace_marker-layer .ace_bracket {\\\nmargin: -1px 0 0 -1px;\\\nborder: 1px solid rgb(192, 192, 192);\\\n}\\\n.ace-tm .ace_marker-layer .ace_active-line {\\\nbackground: rgba(0, 0, 0, 0.07);\\\n}\\\n.ace-tm .ace_gutter-active-line {\\\nbackground-color : #dcdcdc;\\\n}\\\n.ace-tm .ace_marker-layer .ace_selected-word {\\\nbackground: rgb(250, 250, 255);\\\nborder: 1px solid rgb(200, 200, 250);\\\n}\\\n.ace-tm .ace_indent-guide {\\\nbackground: url(\\\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==\\\") right repeat-y;\\\n}\\\n\";\nexports.$id = \"ace/theme/textmate\";\n\nvar dom = require(\"../lib/dom\");\ndom.importCssString(exports.cssText, exports.cssClass);\n});\n\nace.define(\"ace/ext/textarea\",[\"require\",\"exports\",\"module\",\"ace/lib/event\",\"ace/lib/useragent\",\"ace/lib/net\",\"ace/ace\",\"ace/theme/textmate\"], function(require, exports, module) {\n\"use strict\";\n\nvar event = require(\"../lib/event\");\nvar UA = require(\"../lib/useragent\");\nvar net = require(\"../lib/net\");\nvar ace = require(\"../ace\");\n\nrequire(\"../theme/textmate\");\n\nmodule.exports = exports = ace;\nvar getCSSProperty = function(element, container, property) {\n var ret = element.style[property];\n\n if (!ret) {\n if (window.getComputedStyle) {\n ret = window.getComputedStyle(element, '').getPropertyValue(property);\n } else {\n ret = element.currentStyle[property];\n }\n }\n\n if (!ret || ret == 'auto' || ret == 'intrinsic') {\n ret = container.style[property];\n }\n return ret;\n};\n\nfunction applyStyles(elm, styles) {\n for (var style in styles) {\n elm.style[style] = styles[style];\n }\n}\n\nfunction setupContainer(element, getValue) {\n if (element.type != 'textarea') {\n throw new Error(\"Textarea required!\");\n }\n\n var parentNode = element.parentNode;\n var container = document.createElement('div');\n var resizeEvent = function() {\n var style = 'position:relative;';\n [\n 'margin-top', 'margin-left', 'margin-right', 'margin-bottom'\n ].forEach(function(item) {\n style += item + ':' +\n getCSSProperty(element, container, item) + ';';\n });\n var width = getCSSProperty(element, container, 'width') || (element.clientWidth + \"px\");\n var height = getCSSProperty(element, container, 'height') || (element.clientHeight + \"px\");\n style += 'height:' + height + ';width:' + width + ';';\n style += 'display:inline-block;';\n container.setAttribute('style', style);\n };\n event.addListener(window, 'resize', resizeEvent);\n resizeEvent();\n parentNode.insertBefore(container, element.nextSibling);\n while (parentNode !== document) {\n if (parentNode.tagName.toUpperCase() === 'FORM') {\n var oldSumit = parentNode.onsubmit;\n parentNode.onsubmit = function(evt) {\n element.value = getValue();\n if (oldSumit) {\n oldSumit.call(this, evt);\n }\n };\n break;\n }\n parentNode = parentNode.parentNode;\n }\n return container;\n}\n\nexports.transformTextarea = function(element, options) {\n var isFocused = element.autofocus || document.activeElement == element;\n var session;\n var container = setupContainer(element, function() {\n return session.getValue();\n });\n element.style.display = 'none';\n container.style.background = 'white';\n var editorDiv = document.createElement(\"div\");\n applyStyles(editorDiv, {\n top: \"0px\",\n left: \"0px\",\n right: \"0px\",\n bottom: \"0px\",\n border: \"1px solid gray\",\n position: \"absolute\"\n });\n container.appendChild(editorDiv);\n\n var settingOpener = document.createElement(\"div\");\n applyStyles(settingOpener, {\n position: \"absolute\",\n right: \"0px\",\n bottom: \"0px\",\n cursor: \"nw-resize\",\n border: \"solid 9px\",\n borderColor: \"lightblue gray gray #ceade6\",\n zIndex: 101\n });\n\n var settingDiv = document.createElement(\"div\");\n var settingDivStyles = {\n top: \"0px\",\n left: \"20%\",\n right: \"0px\",\n bottom: \"0px\",\n position: \"absolute\",\n padding: \"5px\",\n zIndex: 100,\n color: \"white\",\n display: \"none\",\n overflow: \"auto\",\n fontSize: \"14px\",\n boxShadow: \"-5px 2px 3px gray\"\n };\n if (!UA.isOldIE) {\n settingDivStyles.backgroundColor = \"rgba(0, 0, 0, 0.6)\";\n } else {\n settingDivStyles.backgroundColor = \"#333\";\n }\n\n applyStyles(settingDiv, settingDivStyles);\n container.appendChild(settingDiv);\n\n options = options || exports.defaultOptions;\n var editor = ace.edit(editorDiv);\n session = editor.getSession();\n\n session.setValue(element.value || element.innerHTML);\n if (isFocused)\n editor.focus();\n container.appendChild(settingOpener);\n setupApi(editor, editorDiv, settingDiv, ace, options);\n setupSettingPanel(settingDiv, settingOpener, editor);\n\n var state = \"\";\n event.addListener(settingOpener, \"mousemove\", function(e) {\n var rect = this.getBoundingClientRect();\n var x = e.clientX - rect.left, y = e.clientY - rect.top;\n if (x + y < (rect.width + rect.height)/2) {\n this.style.cursor = \"pointer\";\n state = \"toggle\";\n } else {\n state = \"resize\";\n this.style.cursor = \"nw-resize\";\n }\n });\n\n event.addListener(settingOpener, \"mousedown\", function(e) {\n e.preventDefault();\n if (state == \"toggle\") {\n editor.setDisplaySettings();\n return;\n }\n container.style.zIndex = 100000;\n var rect = container.getBoundingClientRect();\n var startX = rect.width + rect.left - e.clientX;\n var startY = rect.height + rect.top - e.clientY;\n event.capture(settingOpener, function(e) {\n container.style.width = e.clientX - rect.left + startX + \"px\";\n container.style.height = e.clientY - rect.top + startY + \"px\";\n editor.resize();\n }, function() {});\n });\n\n return editor;\n};\n\nfunction load(url, module, callback) {\n net.loadScript(url, function() {\n require([module], callback);\n });\n}\n\nfunction setupApi(editor, editorDiv, settingDiv, ace, options) {\n var session = editor.getSession();\n var renderer = editor.renderer;\n\n function toBool(value) {\n return value === \"true\" || value == true;\n }\n\n editor.setDisplaySettings = function(display) {\n if (display == null)\n display = settingDiv.style.display == \"none\";\n if (display) {\n settingDiv.style.display = \"block\";\n settingDiv.hideButton.focus();\n editor.on(\"focus\", function onFocus() {\n editor.removeListener(\"focus\", onFocus);\n settingDiv.style.display = \"none\";\n });\n } else {\n editor.focus();\n }\n };\n\n editor.$setOption = editor.setOption;\n editor.$getOption = editor.getOption;\n editor.setOption = function(key, value) {\n switch (key) {\n case \"mode\":\n editor.$setOption(\"mode\", \"ace/mode/\" + value);\n break;\n case \"theme\":\n editor.$setOption(\"theme\", \"ace/theme/\" + value);\n break;\n case \"keybindings\":\n switch (value) {\n case \"vim\":\n editor.setKeyboardHandler(\"ace/keyboard/vim\");\n break;\n case \"emacs\":\n editor.setKeyboardHandler(\"ace/keyboard/emacs\");\n break;\n default:\n editor.setKeyboardHandler(null);\n }\n break;\n\n case \"wrap\":\n case \"fontSize\":\n editor.$setOption(key, value);\n break;\n \n default:\n editor.$setOption(key, toBool(value));\n }\n };\n\n editor.getOption = function(key) {\n switch (key) {\n case \"mode\":\n return editor.$getOption(\"mode\").substr(\"ace/mode/\".length);\n break;\n\n case \"theme\":\n return editor.$getOption(\"theme\").substr(\"ace/theme/\".length);\n break;\n\n case \"keybindings\":\n var value = editor.getKeyboardHandler();\n switch (value && value.$id) {\n case \"ace/keyboard/vim\":\n return \"vim\";\n case \"ace/keyboard/emacs\":\n return \"emacs\";\n default:\n return \"ace\";\n }\n break;\n\n default:\n return editor.$getOption(key);\n }\n };\n\n editor.setOptions(options);\n return editor;\n}\n\nfunction setupSettingPanel(settingDiv, settingOpener, editor) {\n var BOOL = null;\n\n var desc = {\n mode: \"Mode:\",\n wrap: \"Soft Wrap:\",\n theme: \"Theme:\",\n fontSize: \"Font Size:\",\n showGutter: \"Display Gutter:\",\n keybindings: \"Keyboard\",\n showPrintMargin: \"Show Print Margin:\",\n useSoftTabs: \"Use Soft Tabs:\",\n showInvisibles: \"Show Invisibles\"\n };\n\n var optionValues = {\n mode: {\n text: \"Plain\",\n javascript: \"JavaScript\",\n xml: \"XML\",\n html: \"HTML\",\n css: \"CSS\",\n scss: \"SCSS\",\n python: \"Python\",\n php: \"PHP\",\n java: \"Java\",\n ruby: \"Ruby\",\n c_cpp: \"C/C++\",\n coffee: \"CoffeeScript\",\n json: \"json\",\n perl: \"Perl\",\n clojure: \"Clojure\",\n ocaml: \"OCaml\",\n csharp: \"C#\",\n haxe: \"haXe\",\n svg: \"SVG\",\n textile: \"Textile\",\n groovy: \"Groovy\",\n liquid: \"Liquid\",\n Scala: \"Scala\"\n },\n theme: {\n clouds: \"Clouds\",\n clouds_midnight: \"Clouds Midnight\",\n cobalt: \"Cobalt\",\n crimson_editor: \"Crimson Editor\",\n dawn: \"Dawn\",\n gob: \"Green on Black\",\n eclipse: \"Eclipse\",\n idle_fingers: \"Idle Fingers\",\n kr_theme: \"Kr Theme\",\n merbivore: \"Merbivore\",\n merbivore_soft: \"Merbivore Soft\",\n mono_industrial: \"Mono Industrial\",\n monokai: \"Monokai\",\n pastel_on_dark: \"Pastel On Dark\",\n solarized_dark: \"Solarized Dark\",\n solarized_light: \"Solarized Light\",\n textmate: \"Textmate\",\n twilight: \"Twilight\",\n vibrant_ink: \"Vibrant Ink\"\n },\n showGutter: BOOL,\n fontSize: {\n \"10px\": \"10px\",\n \"11px\": \"11px\",\n \"12px\": \"12px\",\n \"14px\": \"14px\",\n \"16px\": \"16px\"\n },\n wrap: {\n off: \"Off\",\n 40: \"40\",\n 80: \"80\",\n free: \"Free\"\n },\n keybindings: {\n ace: \"ace\",\n vim: \"vim\",\n emacs: \"emacs\"\n },\n showPrintMargin: BOOL,\n useSoftTabs: BOOL,\n showInvisibles: BOOL\n };\n\n var table = [];\n table.push(\"\");\n\n function renderOption(builder, option, obj, cValue) {\n if (!obj) {\n builder.push(\n \"\"\n );\n return;\n }\n builder.push(\"\");\n }\n\n for (var option in exports.defaultOptions) {\n table.push(\"\");\n table.push(\"\");\n }\n table.push(\"
SettingValue
\", desc[option], \"\");\n renderOption(table, option, optionValues[option], editor.getOption(option));\n table.push(\"
\");\n settingDiv.innerHTML = table.join(\"\");\n\n var onChange = function(e) {\n var select = e.currentTarget;\n editor.setOption(select.title, select.value);\n };\n var onClick = function(e) {\n var cb = e.currentTarget;\n editor.setOption(cb.title, cb.checked);\n };\n var selects = settingDiv.getElementsByTagName(\"select\");\n for (var i = 0; i < selects.length; i++)\n selects[i].onchange = onChange;\n var cbs = settingDiv.getElementsByTagName(\"input\");\n for (var i = 0; i < cbs.length; i++)\n cbs[i].onclick = onClick;\n\n\n var button = document.createElement(\"input\");\n button.type = \"button\";\n button.value = \"Hide\";\n event.addListener(button, \"click\", function() {\n editor.setDisplaySettings(false);\n });\n settingDiv.appendChild(button);\n settingDiv.hideButton = button;\n}\nexports.defaultOptions = {\n mode: \"javascript\",\n theme: \"textmate\",\n wrap: \"off\",\n fontSize: \"12px\",\n showGutter: \"false\",\n keybindings: \"ace\",\n showPrintMargin: \"false\",\n useSoftTabs: \"true\",\n showInvisibles: \"false\"\n};\n\n}); (function() {\n ace.require([\"ace/ext/textarea\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file1z := &embedded.EmbeddedFile{ Filename: "2839e845bd0cf60f35f3a8ca90a5ee22.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/css_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar supportType = exports.supportType = \"align-content|align-items|align-self|all|animation|animation-delay|animation-direction|animation-duration|animation-fill-mode|animation-iteration-count|animation-name|animation-play-state|animation-timing-function|backface-visibility|background|background-attachment|background-blend-mode|background-clip|background-color|background-image|background-origin|background-position|background-repeat|background-size|border|border-bottom|border-bottom-color|border-bottom-left-radius|border-bottom-right-radius|border-bottom-style|border-bottom-width|border-collapse|border-color|border-image|border-image-outset|border-image-repeat|border-image-slice|border-image-source|border-image-width|border-left|border-left-color|border-left-style|border-left-width|border-radius|border-right|border-right-color|border-right-style|border-right-width|border-spacing|border-style|border-top|border-top-color|border-top-left-radius|border-top-right-radius|border-top-style|border-top-width|border-width|bottom|box-shadow|box-sizing|caption-side|clear|clip|color|column-count|column-fill|column-gap|column-rule|column-rule-color|column-rule-style|column-rule-width|column-span|column-width|columns|content|counter-increment|counter-reset|cursor|direction|display|empty-cells|filter|flex|flex-basis|flex-direction|flex-flow|flex-grow|flex-shrink|flex-wrap|float|font|font-family|font-size|font-size-adjust|font-stretch|font-style|font-variant|font-weight|hanging-punctuation|height|justify-content|left|letter-spacing|line-height|list-style|list-style-image|list-style-position|list-style-type|margin|margin-bottom|margin-left|margin-right|margin-top|max-height|max-width|max-zoom|min-height|min-width|min-zoom|nav-down|nav-index|nav-left|nav-right|nav-up|opacity|order|outline|outline-color|outline-offset|outline-style|outline-width|overflow|overflow-x|overflow-y|padding|padding-bottom|padding-left|padding-right|padding-top|page-break-after|page-break-before|page-break-inside|perspective|perspective-origin|position|quotes|resize|right|tab-size|table-layout|text-align|text-align-last|text-decoration|text-decoration-color|text-decoration-line|text-decoration-style|text-indent|text-justify|text-overflow|text-shadow|text-transform|top|transform|transform-origin|transform-style|transition|transition-delay|transition-duration|transition-property|transition-timing-function|unicode-bidi|user-select|user-zoom|vertical-align|visibility|white-space|width|word-break|word-spacing|word-wrap|z-index\";\nvar supportFunction = exports.supportFunction = \"rgb|rgba|url|attr|counter|counters\";\nvar supportConstant = exports.supportConstant = \"absolute|after-edge|after|all-scroll|all|alphabetic|always|antialiased|armenian|auto|avoid-column|avoid-page|avoid|balance|baseline|before-edge|before|below|bidi-override|block-line-height|block|bold|bolder|border-box|both|bottom|box|break-all|break-word|capitalize|caps-height|caption|center|central|char|circle|cjk-ideographic|clone|close-quote|col-resize|collapse|column|consider-shifts|contain|content-box|cover|crosshair|cubic-bezier|dashed|decimal-leading-zero|decimal|default|disabled|disc|disregard-shifts|distribute-all-lines|distribute-letter|distribute-space|distribute|dotted|double|e-resize|ease-in|ease-in-out|ease-out|ease|ellipsis|end|exclude-ruby|fill|fixed|georgian|glyphs|grid-height|groove|hand|hanging|hebrew|help|hidden|hiragana-iroha|hiragana|horizontal|icon|ideograph-alpha|ideograph-numeric|ideograph-parenthesis|ideograph-space|ideographic|inactive|include-ruby|inherit|initial|inline-block|inline-box|inline-line-height|inline-table|inline|inset|inside|inter-ideograph|inter-word|invert|italic|justify|katakana-iroha|katakana|keep-all|last|left|lighter|line-edge|line-through|line|linear|list-item|local|loose|lower-alpha|lower-greek|lower-latin|lower-roman|lowercase|lr-tb|ltr|mathematical|max-height|max-size|medium|menu|message-box|middle|move|n-resize|ne-resize|newspaper|no-change|no-close-quote|no-drop|no-open-quote|no-repeat|none|normal|not-allowed|nowrap|nw-resize|oblique|open-quote|outset|outside|overline|padding-box|page|pointer|pre-line|pre-wrap|pre|preserve-3d|progress|relative|repeat-x|repeat-y|repeat|replaced|reset-size|ridge|right|round|row-resize|rtl|s-resize|scroll|se-resize|separate|slice|small-caps|small-caption|solid|space|square|start|static|status-bar|step-end|step-start|steps|stretch|strict|sub|super|sw-resize|table-caption|table-cell|table-column-group|table-column|table-footer-group|table-header-group|table-row-group|table-row|table|tb-rl|text-after-edge|text-before-edge|text-bottom|text-size|text-top|text|thick|thin|transparent|underline|upper-alpha|upper-latin|upper-roman|uppercase|use-script|vertical-ideographic|vertical-text|visible|w-resize|wait|whitespace|z-index|zero|zoom\";\nvar supportConstantColor = exports.supportConstantColor = \"aliceblue|antiquewhite|aqua|aquamarine|azure|beige|bisque|black|blanchedalmond|blue|blueviolet|brown|burlywood|cadetblue|chartreuse|chocolate|coral|cornflowerblue|cornsilk|crimson|cyan|darkblue|darkcyan|darkgoldenrod|darkgray|darkgreen|darkgrey|darkkhaki|darkmagenta|darkolivegreen|darkorange|darkorchid|darkred|darksalmon|darkseagreen|darkslateblue|darkslategray|darkslategrey|darkturquoise|darkviolet|deeppink|deepskyblue|dimgray|dimgrey|dodgerblue|firebrick|floralwhite|forestgreen|fuchsia|gainsboro|ghostwhite|gold|goldenrod|gray|green|greenyellow|grey|honeydew|hotpink|indianred|indigo|ivory|khaki|lavender|lavenderblush|lawngreen|lemonchiffon|lightblue|lightcoral|lightcyan|lightgoldenrodyellow|lightgray|lightgreen|lightgrey|lightpink|lightsalmon|lightseagreen|lightskyblue|lightslategray|lightslategrey|lightsteelblue|lightyellow|lime|limegreen|linen|magenta|maroon|mediumaquamarine|mediumblue|mediumorchid|mediumpurple|mediumseagreen|mediumslateblue|mediumspringgreen|mediumturquoise|mediumvioletred|midnightblue|mintcream|mistyrose|moccasin|navajowhite|navy|oldlace|olive|olivedrab|orange|orangered|orchid|palegoldenrod|palegreen|paleturquoise|palevioletred|papayawhip|peachpuff|peru|pink|plum|powderblue|purple|rebeccapurple|red|rosybrown|royalblue|saddlebrown|salmon|sandybrown|seagreen|seashell|sienna|silver|skyblue|slateblue|slategray|slategrey|snow|springgreen|steelblue|tan|teal|thistle|tomato|turquoise|violet|wheat|white|whitesmoke|yellow|yellowgreen\";\nvar supportConstantFonts = exports.supportConstantFonts = \"arial|century|comic|courier|cursive|fantasy|garamond|georgia|helvetica|impact|lucida|symbol|system|tahoma|times|trebuchet|utopia|verdana|webdings|sans-serif|serif|monospace\";\n\nvar numRe = exports.numRe = \"\\\\-?(?:(?:[0-9]+(?:\\\\.[0-9]+)?)|(?:\\\\.[0-9]+))\";\nvar pseudoElements = exports.pseudoElements = \"(\\\\:+)\\\\b(after|before|first-letter|first-line|moz-selection|selection)\\\\b\";\nvar pseudoClasses = exports.pseudoClasses = \"(:)\\\\b(active|checked|disabled|empty|enabled|first-child|first-of-type|focus|hover|indeterminate|invalid|last-child|last-of-type|link|not|nth-child|nth-last-child|nth-last-of-type|nth-of-type|only-child|only-of-type|required|root|target|valid|visited)\\\\b\";\n\nvar CssHighlightRules = function() {\n\n var keywordMapper = this.createKeywordMapper({\n \"support.function\": supportFunction,\n \"support.constant\": supportConstant,\n \"support.type\": supportType,\n \"support.constant.color\": supportConstantColor,\n \"support.constant.fonts\": supportConstantFonts\n }, \"text\", true);\n\n this.$rules = {\n \"start\" : [{\n include : [\"strings\", \"url\", \"comments\"]\n }, {\n token: \"paren.lparen\",\n regex: \"\\\\{\",\n next: \"ruleset\"\n }, {\n token: \"paren.rparen\",\n regex: \"\\\\}\"\n }, {\n token: \"string\",\n regex: \"@(?!viewport)\",\n next: \"media\"\n }, {\n token: \"keyword\",\n regex: \"#[a-z0-9-_]+\"\n }, {\n token: \"keyword\",\n regex: \"%\"\n }, {\n token: \"variable\",\n regex: \"\\\\.[a-z0-9-_]+\"\n }, {\n token: \"string\",\n regex: \":[a-z0-9-_]+\"\n }, {\n token : \"constant.numeric\",\n regex : numRe\n }, {\n token: \"constant\",\n regex: \"[a-z0-9-_]+\"\n }, {\n caseInsensitive: true\n }],\n\n \"media\": [{\n include : [\"strings\", \"url\", \"comments\"]\n }, {\n token: \"paren.lparen\",\n regex: \"\\\\{\",\n next: \"start\"\n }, {\n token: \"paren.rparen\",\n regex: \"\\\\}\",\n next: \"start\"\n }, {\n token: \"string\",\n regex: \";\",\n next: \"start\"\n }, {\n token: \"keyword\",\n regex: \"(?:media|supports|document|charset|import|namespace|media|supports|document\"\n + \"|page|font|keyframes|viewport|counter-style|font-feature-values\"\n + \"|swash|ornaments|annotation|stylistic|styleset|character-variant)\"\n }],\n\n \"comments\" : [{\n token: \"comment\", // multi line comment\n regex: \"\\\\/\\\\*\",\n push: [{\n token : \"comment\",\n regex : \"\\\\*\\\\/\",\n next : \"pop\"\n }, {\n defaultToken : \"comment\"\n }]\n }],\n\n \"ruleset\" : [{\n regex : \"-(webkit|ms|moz|o)-\",\n token : \"text\"\n }, {\n token : \"punctuation.operator\",\n regex : \"[:;]\"\n }, {\n token : \"paren.rparen\",\n regex : \"\\\\}\",\n next : \"start\"\n }, {\n include : [\"strings\", \"url\", \"comments\"]\n }, {\n token : [\"constant.numeric\", \"keyword\"],\n regex : \"(\" + numRe + \")(ch|cm|deg|em|ex|fr|gd|grad|Hz|in|kHz|mm|ms|pc|pt|px|rad|rem|s|turn|vh|vmax|vmin|vm|vw|%)\"\n }, {\n token : \"constant.numeric\",\n regex : numRe\n }, {\n token : \"constant.numeric\", // hex6 color\n regex : \"#[a-f0-9]{6}\"\n }, {\n token : \"constant.numeric\", // hex3 color\n regex : \"#[a-f0-9]{3}\"\n }, {\n token : [\"punctuation\", \"entity.other.attribute-name.pseudo-element.css\"],\n regex : pseudoElements\n }, {\n token : [\"punctuation\", \"entity.other.attribute-name.pseudo-class.css\"],\n regex : pseudoClasses\n }, {\n include: \"url\"\n }, {\n token : keywordMapper,\n regex : \"\\\\-?[a-zA-Z_][a-zA-Z0-9_\\\\-]*\"\n }, {\n caseInsensitive: true\n }],\n\n url: [{\n token : \"support.function\",\n regex : \"(?:url(:?-prefix)?|domain|regexp)\\\\(\",\n push: [{\n token : \"support.function\",\n regex : \"\\\\)\",\n next : \"pop\"\n }, {\n defaultToken: \"string\"\n }]\n }],\n\n strings: [{\n token : \"string.start\",\n regex : \"'\",\n push : [{\n token : \"string.end\",\n regex : \"'|$\",\n next: \"pop\"\n }, {\n include : \"escapes\"\n }, {\n token : \"constant.language.escape\",\n regex : /\\\\$/,\n consumeLineEnd: true\n }, {\n defaultToken: \"string\"\n }]\n }, {\n token : \"string.start\",\n regex : '\"',\n push : [{\n token : \"string.end\",\n regex : '\"|$',\n next: \"pop\"\n }, {\n include : \"escapes\"\n }, {\n token : \"constant.language.escape\",\n regex : /\\\\$/,\n consumeLineEnd: true\n }, {\n defaultToken: \"string\"\n }]\n }],\n escapes: [{\n token : \"constant.language.escape\",\n regex : /\\\\([a-fA-F\\d]{1,6}|[^a-fA-F\\d])/\n }]\n\n };\n\n this.normalizeRules();\n};\n\noop.inherits(CssHighlightRules, TextHighlightRules);\n\nexports.CssHighlightRules = CssHighlightRules;\n\n});\n\nace.define(\"ace/mode/doc_comment_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar DocCommentHighlightRules = function() {\n this.$rules = {\n \"start\" : [ {\n token : \"comment.doc.tag\",\n regex : \"@[\\\\w\\\\d_]+\" // TODO: fix email addresses\n }, \n DocCommentHighlightRules.getTagRule(),\n {\n defaultToken : \"comment.doc\",\n caseInsensitive: true\n }]\n };\n};\n\noop.inherits(DocCommentHighlightRules, TextHighlightRules);\n\nDocCommentHighlightRules.getTagRule = function(start) {\n return {\n token : \"comment.doc.tag.storage.type\",\n regex : \"\\\\b(?:TODO|FIXME|XXX|HACK)\\\\b\"\n };\n};\n\nDocCommentHighlightRules.getStartRule = function(start) {\n return {\n token : \"comment.doc\", // doc comment\n regex : \"\\\\/\\\\*(?=\\\\*)\",\n next : start\n };\n};\n\nDocCommentHighlightRules.getEndRule = function (start) {\n return {\n token : \"comment.doc\", // closing comment\n regex : \"\\\\*\\\\/\",\n next : start\n };\n};\n\n\nexports.DocCommentHighlightRules = DocCommentHighlightRules;\n\n});\n\nace.define(\"ace/mode/javascript_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/doc_comment_highlight_rules\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar DocCommentHighlightRules = require(\"./doc_comment_highlight_rules\").DocCommentHighlightRules;\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar identifierRe = \"[a-zA-Z\\\\$_\\u00a1-\\uffff][a-zA-Z\\\\d\\\\$_\\u00a1-\\uffff]*\";\n\nvar JavaScriptHighlightRules = function(options) {\n var keywordMapper = this.createKeywordMapper({\n \"variable.language\":\n \"Array|Boolean|Date|Function|Iterator|Number|Object|RegExp|String|Proxy|\" + // Constructors\n \"Namespace|QName|XML|XMLList|\" + // E4X\n \"ArrayBuffer|Float32Array|Float64Array|Int16Array|Int32Array|Int8Array|\" +\n \"Uint16Array|Uint32Array|Uint8Array|Uint8ClampedArray|\" +\n \"Error|EvalError|InternalError|RangeError|ReferenceError|StopIteration|\" + // Errors\n \"SyntaxError|TypeError|URIError|\" +\n \"decodeURI|decodeURIComponent|encodeURI|encodeURIComponent|eval|isFinite|\" + // Non-constructor functions\n \"isNaN|parseFloat|parseInt|\" +\n \"JSON|Math|\" + // Other\n \"this|arguments|prototype|window|document\" , // Pseudo\n \"keyword\":\n \"const|yield|import|get|set|async|await|\" +\n \"break|case|catch|continue|default|delete|do|else|finally|for|function|\" +\n \"if|in|of|instanceof|new|return|switch|throw|try|typeof|let|var|while|with|debugger|\" +\n \"__parent__|__count__|escape|unescape|with|__proto__|\" +\n \"class|enum|extends|super|export|implements|private|public|interface|package|protected|static\",\n \"storage.type\":\n \"const|let|var|function\",\n \"constant.language\":\n \"null|Infinity|NaN|undefined\",\n \"support.function\":\n \"alert\",\n \"constant.language.boolean\": \"true|false\"\n }, \"identifier\");\n var kwBeforeRe = \"case|do|else|finally|in|instanceof|return|throw|try|typeof|yield|void\";\n\n var escapedRe = \"\\\\\\\\(?:x[0-9a-fA-F]{2}|\" + // hex\n \"u[0-9a-fA-F]{4}|\" + // unicode\n \"u{[0-9a-fA-F]{1,6}}|\" + // es6 unicode\n \"[0-2][0-7]{0,2}|\" + // oct\n \"3[0-7][0-7]?|\" + // oct\n \"[4-7][0-7]?|\" + //oct\n \".)\";\n\n this.$rules = {\n \"no_regex\" : [\n DocCommentHighlightRules.getStartRule(\"doc-start\"),\n comments(\"no_regex\"),\n {\n token : \"string\",\n regex : \"'(?=.)\",\n next : \"qstring\"\n }, {\n token : \"string\",\n regex : '\"(?=.)',\n next : \"qqstring\"\n }, {\n token : \"constant.numeric\", // hexadecimal, octal and binary\n regex : /0(?:[xX][0-9a-fA-F]+|[oO][0-7]+|[bB][01]+)\\b/\n }, {\n token : \"constant.numeric\", // decimal integers and floats\n regex : /(?:\\d\\d*(?:\\.\\d*)?|\\.\\d+)(?:[eE][+-]?\\d+\\b)?/\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"support.function\",\n \"punctuation.operator\", \"entity.name.function\", \"text\",\"keyword.operator\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(prototype)(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"entity.name.function\", \"text\", \"keyword.operator\", \"text\", \"storage.type\",\n \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\",\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s+)(\\\\w+)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(function)(\\\\s+)(\" + identifierRe + \")(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"entity.name.function\", \"text\", \"punctuation.operator\",\n \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\s*)(:)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"text\", \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(:)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : \"keyword\",\n regex : \"from(?=\\\\s*('|\\\"))\"\n }, {\n token : \"keyword\",\n regex : \"(?:\" + kwBeforeRe + \")\\\\b\",\n next : \"start\"\n }, {\n token : [\"support.constant\"],\n regex : /that\\b/\n }, {\n token : [\"storage.type\", \"punctuation.operator\", \"support.function.firebug\"],\n regex : /(console)(\\.)(warn|info|log|error|time|trace|timeEnd|assert)\\b/\n }, {\n token : keywordMapper,\n regex : identifierRe\n }, {\n token : \"punctuation.operator\",\n regex : /[.](?![.])/,\n next : \"property\"\n }, {\n token : \"storage.type\",\n regex : /=>/,\n next : \"start\"\n }, {\n token : \"keyword.operator\",\n regex : /--|\\+\\+|\\.{3}|===|==|=|!=|!==|<+=?|>+=?|!|&&|\\|\\||\\?:|[!$%&*+\\-~\\/^]=?/,\n next : \"start\"\n }, {\n token : \"punctuation.operator\",\n regex : /[?:,;.]/,\n next : \"start\"\n }, {\n token : \"paren.lparen\",\n regex : /[\\[({]/,\n next : \"start\"\n }, {\n token : \"paren.rparen\",\n regex : /[\\])}]/\n }, {\n token: \"comment\",\n regex: /^#!.*$/\n }\n ],\n property: [{\n token : \"text\",\n regex : \"\\\\s+\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\",\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(?:(\\\\s+)(\\\\w+))?(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : \"punctuation.operator\",\n regex : /[.](?![.])/\n }, {\n token : \"support.function\",\n regex : /(s(?:h(?:ift|ow(?:Mod(?:elessDialog|alDialog)|Help))|croll(?:X|By(?:Pages|Lines)?|Y|To)?|t(?:op|rike)|i(?:n|zeToContent|debar|gnText)|ort|u(?:p|b(?:str(?:ing)?)?)|pli(?:ce|t)|e(?:nd|t(?:Re(?:sizable|questHeader)|M(?:i(?:nutes|lliseconds)|onth)|Seconds|Ho(?:tKeys|urs)|Year|Cursor|Time(?:out)?|Interval|ZOptions|Date|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Date|FullYear)|FullYear|Active)|arch)|qrt|lice|avePreferences|mall)|h(?:ome|andleEvent)|navigate|c(?:har(?:CodeAt|At)|o(?:s|n(?:cat|textual|firm)|mpile)|eil|lear(?:Timeout|Interval)?|a(?:ptureEvents|ll)|reate(?:StyleSheet|Popup|EventObject))|t(?:o(?:GMTString|S(?:tring|ource)|U(?:TCString|pperCase)|Lo(?:caleString|werCase))|est|a(?:n|int(?:Enabled)?))|i(?:s(?:NaN|Finite)|ndexOf|talics)|d(?:isableExternalCapture|ump|etachEvent)|u(?:n(?:shift|taint|escape|watch)|pdateCommands)|j(?:oin|avaEnabled)|p(?:o(?:p|w)|ush|lugins.refresh|a(?:ddings|rse(?:Int|Float)?)|r(?:int|ompt|eference))|e(?:scape|nableExternalCapture|val|lementFromPoint|x(?:p|ec(?:Script|Command)?))|valueOf|UTC|queryCommand(?:State|Indeterm|Enabled|Value)|f(?:i(?:nd|le(?:ModifiedDate|Size|CreatedDate|UpdatedDate)|xed)|o(?:nt(?:size|color)|rward)|loor|romCharCode)|watch|l(?:ink|o(?:ad|g)|astIndexOf)|a(?:sin|nchor|cos|t(?:tachEvent|ob|an(?:2)?)|pply|lert|b(?:s|ort))|r(?:ou(?:nd|teEvents)|e(?:size(?:By|To)|calc|turnValue|place|verse|l(?:oad|ease(?:Capture|Events)))|andom)|g(?:o|et(?:ResponseHeader|M(?:i(?:nutes|lliseconds)|onth)|Se(?:conds|lection)|Hours|Year|Time(?:zoneOffset)?|Da(?:y|te)|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Da(?:y|te)|FullYear)|FullYear|A(?:ttention|llResponseHeaders)))|m(?:in|ove(?:B(?:y|elow)|To(?:Absolute)?|Above)|ergeAttributes|a(?:tch|rgins|x))|b(?:toa|ig|o(?:ld|rderWidths)|link|ack))\\b(?=\\()/\n }, {\n token : \"support.function.dom\",\n regex : /(s(?:ub(?:stringData|mit)|plitText|e(?:t(?:NamedItem|Attribute(?:Node)?)|lect))|has(?:ChildNodes|Feature)|namedItem|c(?:l(?:ick|o(?:se|neNode))|reate(?:C(?:omment|DATASection|aption)|T(?:Head|extNode|Foot)|DocumentFragment|ProcessingInstruction|E(?:ntityReference|lement)|Attribute))|tabIndex|i(?:nsert(?:Row|Before|Cell|Data)|tem)|open|delete(?:Row|C(?:ell|aption)|T(?:Head|Foot)|Data)|focus|write(?:ln)?|a(?:dd|ppend(?:Child|Data))|re(?:set|place(?:Child|Data)|move(?:NamedItem|Child|Attribute(?:Node)?)?)|get(?:NamedItem|Element(?:sBy(?:Name|TagName|ClassName)|ById)|Attribute(?:Node)?)|blur)\\b(?=\\()/\n }, {\n token : \"support.constant\",\n regex : /(s(?:ystemLanguage|cr(?:ipts|ollbars|een(?:X|Y|Top|Left))|t(?:yle(?:Sheets)?|atus(?:Text|bar)?)|ibling(?:Below|Above)|ource|uffixes|e(?:curity(?:Policy)?|l(?:ection|f)))|h(?:istory|ost(?:name)?|as(?:h|Focus))|y|X(?:MLDocument|SLDocument)|n(?:ext|ame(?:space(?:s|URI)|Prop))|M(?:IN_VALUE|AX_VALUE)|c(?:haracterSet|o(?:n(?:structor|trollers)|okieEnabled|lorDepth|mp(?:onents|lete))|urrent|puClass|l(?:i(?:p(?:boardData)?|entInformation)|osed|asses)|alle(?:e|r)|rypto)|t(?:o(?:olbar|p)|ext(?:Transform|Indent|Decoration|Align)|ags)|SQRT(?:1_2|2)|i(?:n(?:ner(?:Height|Width)|put)|ds|gnoreCase)|zIndex|o(?:scpu|n(?:readystatechange|Line)|uter(?:Height|Width)|p(?:sProfile|ener)|ffscreenBuffering)|NEGATIVE_INFINITY|d(?:i(?:splay|alog(?:Height|Top|Width|Left|Arguments)|rectories)|e(?:scription|fault(?:Status|Ch(?:ecked|arset)|View)))|u(?:ser(?:Profile|Language|Agent)|n(?:iqueID|defined)|pdateInterval)|_content|p(?:ixelDepth|ort|ersonalbar|kcs11|l(?:ugins|atform)|a(?:thname|dding(?:Right|Bottom|Top|Left)|rent(?:Window|Layer)?|ge(?:X(?:Offset)?|Y(?:Offset)?))|r(?:o(?:to(?:col|type)|duct(?:Sub)?|mpter)|e(?:vious|fix)))|e(?:n(?:coding|abledPlugin)|x(?:ternal|pando)|mbeds)|v(?:isibility|endor(?:Sub)?|Linkcolor)|URLUnencoded|P(?:I|OSITIVE_INFINITY)|f(?:ilename|o(?:nt(?:Size|Family|Weight)|rmName)|rame(?:s|Element)|gColor)|E|whiteSpace|l(?:i(?:stStyleType|n(?:eHeight|kColor))|o(?:ca(?:tion(?:bar)?|lName)|wsrc)|e(?:ngth|ft(?:Context)?)|a(?:st(?:M(?:odified|atch)|Index|Paren)|yer(?:s|X)|nguage))|a(?:pp(?:MinorVersion|Name|Co(?:deName|re)|Version)|vail(?:Height|Top|Width|Left)|ll|r(?:ity|guments)|Linkcolor|bove)|r(?:ight(?:Context)?|e(?:sponse(?:XML|Text)|adyState))|global|x|m(?:imeTypes|ultiline|enubar|argin(?:Right|Bottom|Top|Left))|L(?:N(?:10|2)|OG(?:10E|2E))|b(?:o(?:ttom|rder(?:Width|RightWidth|BottomWidth|Style|Color|TopWidth|LeftWidth))|ufferDepth|elow|ackground(?:Color|Image)))\\b/\n }, {\n token : \"identifier\",\n regex : identifierRe\n }, {\n regex: \"\",\n token: \"empty\",\n next: \"no_regex\"\n }\n ],\n \"start\": [\n DocCommentHighlightRules.getStartRule(\"doc-start\"),\n comments(\"start\"),\n {\n token: \"string.regexp\",\n regex: \"\\\\/\",\n next: \"regex\"\n }, {\n token : \"text\",\n regex : \"\\\\s+|^$\",\n next : \"start\"\n }, {\n token: \"empty\",\n regex: \"\",\n next: \"no_regex\"\n }\n ],\n \"regex\": [\n {\n token: \"regexp.keyword.operator\",\n regex: \"\\\\\\\\(?:u[\\\\da-fA-F]{4}|x[\\\\da-fA-F]{2}|.)\"\n }, {\n token: \"string.regexp\",\n regex: \"/[sxngimy]*\",\n next: \"no_regex\"\n }, {\n token : \"invalid\",\n regex: /\\{\\d+\\b,?\\d*\\}[+*]|[+*$^?][+*]|[$^][?]|\\?{3,}/\n }, {\n token : \"constant.language.escape\",\n regex: /\\(\\?[:=!]|\\)|\\{\\d+\\b,?\\d*\\}|[+*]\\?|[()$^+*?.]/\n }, {\n token : \"constant.language.delimiter\",\n regex: /\\|/\n }, {\n token: \"constant.language.escape\",\n regex: /\\[\\^?/,\n next: \"regex_character_class\"\n }, {\n token: \"empty\",\n regex: \"$\",\n next: \"no_regex\"\n }, {\n defaultToken: \"string.regexp\"\n }\n ],\n \"regex_character_class\": [\n {\n token: \"regexp.charclass.keyword.operator\",\n regex: \"\\\\\\\\(?:u[\\\\da-fA-F]{4}|x[\\\\da-fA-F]{2}|.)\"\n }, {\n token: \"constant.language.escape\",\n regex: \"]\",\n next: \"regex\"\n }, {\n token: \"constant.language.escape\",\n regex: \"-\"\n }, {\n token: \"empty\",\n regex: \"$\",\n next: \"no_regex\"\n }, {\n defaultToken: \"string.regexp.charachterclass\"\n }\n ],\n \"function_arguments\": [\n {\n token: \"variable.parameter\",\n regex: identifierRe\n }, {\n token: \"punctuation.operator\",\n regex: \"[, ]+\"\n }, {\n token: \"punctuation.operator\",\n regex: \"$\"\n }, {\n token: \"empty\",\n regex: \"\",\n next: \"no_regex\"\n }\n ],\n \"qqstring\" : [\n {\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"string\",\n regex : \"\\\\\\\\$\",\n consumeLineEnd : true\n }, {\n token : \"string\",\n regex : '\"|$',\n next : \"no_regex\"\n }, {\n defaultToken: \"string\"\n }\n ],\n \"qstring\" : [\n {\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"string\",\n regex : \"\\\\\\\\$\",\n consumeLineEnd : true\n }, {\n token : \"string\",\n regex : \"'|$\",\n next : \"no_regex\"\n }, {\n defaultToken: \"string\"\n }\n ]\n };\n\n\n if (!options || !options.noES6) {\n this.$rules.no_regex.unshift({\n regex: \"[{}]\", onMatch: function(val, state, stack) {\n this.next = val == \"{\" ? this.nextState : \"\";\n if (val == \"{\" && stack.length) {\n stack.unshift(\"start\", state);\n }\n else if (val == \"}\" && stack.length) {\n stack.shift();\n this.next = stack.shift();\n if (this.next.indexOf(\"string\") != -1 || this.next.indexOf(\"jsx\") != -1)\n return \"paren.quasi.end\";\n }\n return val == \"{\" ? \"paren.lparen\" : \"paren.rparen\";\n },\n nextState: \"start\"\n }, {\n token : \"string.quasi.start\",\n regex : /`/,\n push : [{\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"paren.quasi.start\",\n regex : /\\${/,\n push : \"start\"\n }, {\n token : \"string.quasi.end\",\n regex : /`/,\n next : \"pop\"\n }, {\n defaultToken: \"string.quasi\"\n }]\n });\n\n if (!options || options.jsx != false)\n JSX.call(this);\n }\n\n this.embedRules(DocCommentHighlightRules, \"doc-\",\n [ DocCommentHighlightRules.getEndRule(\"no_regex\") ]);\n\n this.normalizeRules();\n};\n\noop.inherits(JavaScriptHighlightRules, TextHighlightRules);\n\nfunction JSX() {\n var tagRegex = identifierRe.replace(\"\\\\d\", \"\\\\d\\\\-\");\n var jsxTag = {\n onMatch : function(val, state, stack) {\n var offset = val.charAt(1) == \"/\" ? 2 : 1;\n if (offset == 1) {\n if (state != this.nextState)\n stack.unshift(this.next, this.nextState, 0);\n else\n stack.unshift(this.next);\n stack[2]++;\n } else if (offset == 2) {\n if (state == this.nextState) {\n stack[1]--;\n if (!stack[1] || stack[1] < 0) {\n stack.shift();\n stack.shift();\n }\n }\n }\n return [{\n type: \"meta.tag.punctuation.\" + (offset == 1 ? \"\" : \"end-\") + \"tag-open.xml\",\n value: val.slice(0, offset)\n }, {\n type: \"meta.tag.tag-name.xml\",\n value: val.substr(offset)\n }];\n },\n regex : \"\",\n onMatch : function(value, currentState, stack) {\n if (currentState == stack[0])\n stack.shift();\n if (value.length == 2) {\n if (stack[0] == this.nextState)\n stack[1]--;\n if (!stack[1] || stack[1] < 0) {\n stack.splice(0, 2);\n }\n }\n this.next = stack[0] || \"start\";\n return [{type: this.token, value: value}];\n },\n nextState: \"jsx\"\n },\n jsxJsRule,\n comments(\"jsxAttributes\"),\n {\n token : \"entity.other.attribute-name.xml\",\n regex : tagRegex\n }, {\n token : \"keyword.operator.attribute-equals.xml\",\n regex : \"=\"\n }, {\n token : \"text.tag-whitespace.xml\",\n regex : \"\\\\s+\"\n }, {\n token : \"string.attribute-value.xml\",\n regex : \"'\",\n stateName : \"jsx_attr_q\",\n push : [\n {token : \"string.attribute-value.xml\", regex: \"'\", next: \"pop\"},\n {include : \"reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n }, {\n token : \"string.attribute-value.xml\",\n regex : '\"',\n stateName : \"jsx_attr_qq\",\n push : [\n {token : \"string.attribute-value.xml\", regex: '\"', next: \"pop\"},\n {include : \"reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n },\n jsxTag\n ];\n this.$rules.reference = [{\n token : \"constant.language.escape.reference.xml\",\n regex : \"(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\\\.-]+;)\"\n }];\n}\n\nfunction comments(next) {\n return [\n {\n token : \"comment\", // multi line comment\n regex : /\\/\\*/,\n next: [\n DocCommentHighlightRules.getTagRule(),\n {token : \"comment\", regex : \"\\\\*\\\\/\", next : next || \"pop\"},\n {defaultToken : \"comment\", caseInsensitive: true}\n ]\n }, {\n token : \"comment\",\n regex : \"\\\\/\\\\/\",\n next: [\n DocCommentHighlightRules.getTagRule(),\n {token : \"comment\", regex : \"$|^\", next : next || \"pop\"},\n {defaultToken : \"comment\", caseInsensitive: true}\n ]\n }\n ];\n}\nexports.JavaScriptHighlightRules = JavaScriptHighlightRules;\n});\n\nace.define(\"ace/mode/xml_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar XmlHighlightRules = function(normalize) {\n var tagRegex = \"[_:a-zA-Z\\xc0-\\uffff][-_:.a-zA-Z0-9\\xc0-\\uffff]*\";\n\n this.$rules = {\n start : [\n {token : \"string.cdata.xml\", regex : \"<\\\\!\\\\[CDATA\\\\[\", next : \"cdata\"},\n {\n token : [\"punctuation.instruction.xml\", \"keyword.instruction.xml\"],\n regex : \"(<\\\\?)(\" + tagRegex + \")\", next : \"processing_instruction\"\n },\n {token : \"comment.start.xml\", regex : \"<\\\\!--\", next : \"comment\"},\n {\n token : [\"xml-pe.doctype.xml\", \"xml-pe.doctype.xml\"],\n regex : \"(<\\\\!)(DOCTYPE)(?=[\\\\s])\", next : \"doctype\", caseInsensitive: true\n },\n {include : \"tag\"},\n {token : \"text.end-tag-open.xml\", regex: \"\",\n next : \"start\"\n }],\n\n doctype : [\n {include : \"whitespace\"},\n {include : \"string\"},\n {token : \"xml-pe.doctype.xml\", regex : \">\", next : \"start\"},\n {token : \"xml-pe.xml\", regex : \"[-_a-zA-Z0-9:]+\"},\n {token : \"punctuation.int-subset\", regex : \"\\\\[\", push : \"int_subset\"}\n ],\n\n int_subset : [{\n token : \"text.xml\",\n regex : \"\\\\s+\"\n }, {\n token: \"punctuation.int-subset.xml\",\n regex: \"]\",\n next: \"pop\"\n }, {\n token : [\"punctuation.markup-decl.xml\", \"keyword.markup-decl.xml\"],\n regex : \"(<\\\\!)(\" + tagRegex + \")\",\n push : [{\n token : \"text\",\n regex : \"\\\\s+\"\n },\n {\n token : \"punctuation.markup-decl.xml\",\n regex : \">\",\n next : \"pop\"\n },\n {include : \"string\"}]\n }],\n\n cdata : [\n {token : \"string.cdata.xml\", regex : \"\\\\]\\\\]>\", next : \"start\"},\n {token : \"text.xml\", regex : \"\\\\s+\"},\n {token : \"text.xml\", regex : \"(?:[^\\\\]]|\\\\](?!\\\\]>))+\"}\n ],\n\n comment : [\n {token : \"comment.end.xml\", regex : \"-->\", next : \"start\"},\n {defaultToken : \"comment.xml\"}\n ],\n\n reference : [{\n token : \"constant.language.escape.reference.xml\",\n regex : \"(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\\\.-]+;)\"\n }],\n\n attr_reference : [{\n token : \"constant.language.escape.reference.attribute-value.xml\",\n regex : \"(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\\\.-]+;)\"\n }],\n\n tag : [{\n token : [\"meta.tag.punctuation.tag-open.xml\", \"meta.tag.punctuation.end-tag-open.xml\", \"meta.tag.tag-name.xml\"],\n regex : \"(?:(<)|(\", next : \"start\"}\n ]\n }],\n\n tag_whitespace : [\n {token : \"text.tag-whitespace.xml\", regex : \"\\\\s+\"}\n ],\n whitespace : [\n {token : \"text.whitespace.xml\", regex : \"\\\\s+\"}\n ],\n string: [{\n token : \"string.xml\",\n regex : \"'\",\n push : [\n {token : \"string.xml\", regex: \"'\", next: \"pop\"},\n {defaultToken : \"string.xml\"}\n ]\n }, {\n token : \"string.xml\",\n regex : '\"',\n push : [\n {token : \"string.xml\", regex: '\"', next: \"pop\"},\n {defaultToken : \"string.xml\"}\n ]\n }],\n\n attributes: [{\n token : \"entity.other.attribute-name.xml\",\n regex : tagRegex\n }, {\n token : \"keyword.operator.attribute-equals.xml\",\n regex : \"=\"\n }, {\n include: \"tag_whitespace\"\n }, {\n include: \"attribute_value\"\n }],\n\n attribute_value: [{\n token : \"string.attribute-value.xml\",\n regex : \"'\",\n push : [\n {token : \"string.attribute-value.xml\", regex: \"'\", next: \"pop\"},\n {include : \"attr_reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n }, {\n token : \"string.attribute-value.xml\",\n regex : '\"',\n push : [\n {token : \"string.attribute-value.xml\", regex: '\"', next: \"pop\"},\n {include : \"attr_reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n }]\n };\n\n if (this.constructor === XmlHighlightRules)\n this.normalizeRules();\n};\n\n\n(function() {\n\n this.embedTagRules = function(HighlightRules, prefix, tag){\n this.$rules.tag.unshift({\n token : [\"meta.tag.punctuation.tag-open.xml\", \"meta.tag.\" + tag + \".tag-name.xml\"],\n regex : \"(<)(\" + tag + \"(?=\\\\s|>|$))\",\n next: [\n {include : \"attributes\"},\n {token : \"meta.tag.punctuation.tag-close.xml\", regex : \"/?>\", next : prefix + \"start\"}\n ]\n });\n\n this.$rules[tag + \"-end\"] = [\n {include : \"attributes\"},\n {token : \"meta.tag.punctuation.tag-close.xml\", regex : \"/?>\", next: \"start\",\n onMatch : function(value, currentState, stack) {\n stack.splice(0);\n return this.token;\n }}\n ];\n\n this.embedRules(HighlightRules, prefix, [{\n token: [\"meta.tag.punctuation.end-tag-open.xml\", \"meta.tag.\" + tag + \".tag-name.xml\"],\n regex : \"(|$))\",\n next: tag + \"-end\"\n }, {\n token: \"string.cdata.xml\",\n regex : \"<\\\\!\\\\[CDATA\\\\[\"\n }, {\n token: \"string.cdata.xml\",\n regex : \"\\\\]\\\\]>\"\n }]);\n };\n\n}).call(TextHighlightRules.prototype);\n\noop.inherits(XmlHighlightRules, TextHighlightRules);\n\nexports.XmlHighlightRules = XmlHighlightRules;\n});\n\nace.define(\"ace/mode/html_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/css_highlight_rules\",\"ace/mode/javascript_highlight_rules\",\"ace/mode/xml_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar CssHighlightRules = require(\"./css_highlight_rules\").CssHighlightRules;\nvar JavaScriptHighlightRules = require(\"./javascript_highlight_rules\").JavaScriptHighlightRules;\nvar XmlHighlightRules = require(\"./xml_highlight_rules\").XmlHighlightRules;\n\nvar tagMap = lang.createMap({\n a : 'anchor',\n button \t : 'form',\n form : 'form',\n img : 'image',\n input : 'form',\n label : 'form',\n option : 'form',\n script : 'script',\n select : 'form',\n textarea : 'form',\n style : 'style',\n table : 'table',\n tbody : 'table',\n td : 'table',\n tfoot : 'table',\n th : 'table',\n tr : 'table'\n});\n\nvar HtmlHighlightRules = function() {\n XmlHighlightRules.call(this);\n\n this.addRules({\n attributes: [{\n include : \"tag_whitespace\"\n }, {\n token : \"entity.other.attribute-name.xml\",\n regex : \"[-_a-zA-Z0-9:.]+\"\n }, {\n token : \"keyword.operator.attribute-equals.xml\",\n regex : \"=\",\n push : [{\n include: \"tag_whitespace\"\n }, {\n token : \"string.unquoted.attribute-value.html\",\n regex : \"[^<>='\\\"`\\\\s]+\",\n next : \"pop\"\n }, {\n token : \"empty\",\n regex : \"\",\n next : \"pop\"\n }]\n }, {\n include : \"attribute_value\"\n }],\n tag: [{\n token : function(start, tag) {\n var group = tagMap[tag];\n return [\"meta.tag.punctuation.\" + (start == \"<\" ? \"\" : \"end-\") + \"tag-open.xml\",\n \"meta.tag\" + (group ? \".\" + group : \"\") + \".tag-name.xml\"];\n },\n regex : \"(\", next : \"start\"}\n ]\n });\n\n this.embedTagRules(CssHighlightRules, \"css-\", \"style\");\n this.embedTagRules(new JavaScriptHighlightRules({jsx: false}).getRules(), \"js-\", \"script\");\n\n if (this.constructor === HtmlHighlightRules)\n this.normalizeRules();\n};\n\noop.inherits(HtmlHighlightRules, XmlHighlightRules);\n\nexports.HtmlHighlightRules = HtmlHighlightRules;\n});\n\nace.define(\"ace/mode/ftl_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/html_highlight_rules\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar HtmlHighlightRules = require(\"./html_highlight_rules\").HtmlHighlightRules;\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar FtlLangHighlightRules = function () {\n\n var stringBuiltIns = \"\\\\?|substring|cap_first|uncap_first|capitalize|chop_linebreak|date|time|datetime|\"\n + \"ends_with|html|groups|index_of|j_string|js_string|json_string|last_index_of|length|lower_case|\"\n + \"left_pad|right_pad|contains|matches|number|replace|rtf|url|split|starts_with|string|trim|\"\n + \"upper_case|word_list|xhtml|xml\";\n var numberBuiltIns = \"c|round|floor|ceiling\";\n var dateBuiltIns = \"iso_[a-z_]+\";\n var seqBuiltIns = \"first|last|seq_contains|seq_index_of|seq_last_index_of|reverse|size|sort|sort_by|chunk\";\n var hashBuiltIns = \"keys|values\";\n var xmlBuiltIns = \"children|parent|root|ancestors|node_name|node_type|node_namespace\";\n var expertBuiltIns = \"byte|double|float|int|long|short|number_to_date|number_to_time|number_to_datetime|\"\n + \"eval|has_content|interpret|is_[a-z_]+|namespacenew\";\n var allBuiltIns = stringBuiltIns + numberBuiltIns + dateBuiltIns + seqBuiltIns + hashBuiltIns\n + xmlBuiltIns + expertBuiltIns;\n\n var deprecatedBuiltIns = \"default|exists|if_exists|web_safe\";\n\n var variables = \"data_model|error|globals|lang|locale|locals|main|namespace|node|current_node|\"\n + \"now|output_encoding|template_name|url_escaping_charset|vars|version\";\n\n var operators = \"gt|gte|lt|lte|as|in|using\";\n\n var reserved = \"true|false\";\n\n var attributes = \"encoding|parse|locale|number_format|date_format|time_format|datetime_format|time_zone|\"\n + \"url_escaping_charset|classic_compatible|strip_whitespace|strip_text|strict_syntax|ns_prefixes|\"\n + \"attributes\";\n\n this.$rules = {\n \"start\" : [{\n token : \"constant.character.entity\",\n regex : /&[^;]+;/\n }, {\n token : \"support.function\",\n regex : \"\\\\?(\"+allBuiltIns+\")\"\n }, {\n token : \"support.function.deprecated\",\n regex : \"\\\\?(\"+deprecatedBuiltIns+\")\"\n }, {\n token : \"language.variable\",\n regex : \"\\\\.(?:\"+variables+\")\"\n }, {\n token : \"constant.language\",\n regex : \"\\\\b(\"+reserved+\")\\\\b\"\n }, {\n token : \"keyword.operator\",\n regex : \"\\\\b(?:\"+operators+\")\\\\b\"\n }, {\n token : \"entity.other.attribute-name\",\n regex : attributes\n }, {\n token : \"string\", //\n regex : /['\"]/,\n next : \"qstring\"\n }, {\n token : function(value) {\n if (value.match(\"^[+-]?\\\\d+(?:(?:\\\\.\\\\d*)?(?:[eE][+-]?\\\\d+)?)?$\")) {\n return \"constant.numeric\";\n } else {\n return \"variable\";\n }\n },\n regex : /[\\w.+\\-]+/\n }, {\n token : \"keyword.operator\",\n regex : \"!|\\\\.|\\\\$|%|&|\\\\*|\\\\-\\\\-|\\\\-|\\\\+\\\\+|\\\\+|~|===|==|=|!=|!==|<=|>=|<<=|>>=|>>>=|<>|<|>|&&|\\\\|\\\\||\\\\?\\\\:|\\\\*=|%=|\\\\+=|\\\\-=|&=|\\\\^=\"\n }, {\n token : \"paren.lparen\",\n regex : \"[[({]\"\n }, {\n token : \"paren.rparen\",\n regex : \"[\\\\])}]\"\n }, {\n token : \"text\",\n regex : \"\\\\s+\"\n }],\n\n \"qstring\" : [{\n token : \"constant.character.escape\",\n regex : '\\\\\\\\[nrtvef\\\\\\\\\"$]'\n }, {\n token : \"string\",\n regex : /['\"]/,\n next : \"start\"\n }, {\n defaultToken : \"string\"\n }]\n };\n};\n\noop.inherits(FtlLangHighlightRules, TextHighlightRules);\n\nvar FtlHighlightRules = function() {\n HtmlHighlightRules.call(this);\n\n var directives = \"assign|attempt|break|case|compress|default|elseif|else|escape|fallback|function|flush|\"\n + \"ftl|global|if|import|include|list|local|lt|macro|nested|noescape|noparse|nt|recover|recurse|return|rt|\"\n + \"setting|stop|switch|t|visit\";\n\n var startRules = [\n {\n token : \"comment\",\n regex : \"<#--\",\n next : \"ftl-dcomment\"\n }, {\n token : \"string.interpolated\",\n regex : \"\\\\${\",\n push : \"ftl-start\"\n }, {\n token : \"keyword.function\",\n regex : \"\",\n next : \"pop\"\n }, {\n token : \"string.interpolated\",\n regex : \"}\",\n next : \"pop\"\n }\n ];\n\n for (var key in this.$rules)\n this.$rules[key].unshift.apply(this.$rules[key], startRules);\n\n this.embedRules(FtlLangHighlightRules, \"ftl-\", endRules, [\"start\"]);\n\n this.addRules({\n \"ftl-dcomment\" : [{\n token : \"comment\",\n regex : \"-->\",\n next : \"pop\"\n }, {\n defaultToken : \"comment\"\n }]\n });\n\n this.normalizeRules();\n};\n\noop.inherits(FtlHighlightRules, HtmlHighlightRules);\n\nexports.FtlHighlightRules = FtlHighlightRules;\n});\n\nace.define(\"ace/mode/ftl\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/ftl_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar FtlHighlightRules = require(\"./ftl_highlight_rules\").FtlHighlightRules;\n\nvar Mode = function() {\n this.HighlightRules = FtlHighlightRules;\n this.$behaviour = this.$defaultBehaviour;\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.$id = \"ace/mode/ftl\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/ftl\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file20 := &embedded.EmbeddedFile{ Filename: "2888585c64276b0aa21da59f6a638343.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/doc_comment_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar DocCommentHighlightRules = function() {\n this.$rules = {\n \"start\" : [ {\n token : \"comment.doc.tag\",\n regex : \"@[\\\\w\\\\d_]+\" // TODO: fix email addresses\n }, \n DocCommentHighlightRules.getTagRule(),\n {\n defaultToken : \"comment.doc\",\n caseInsensitive: true\n }]\n };\n};\n\noop.inherits(DocCommentHighlightRules, TextHighlightRules);\n\nDocCommentHighlightRules.getTagRule = function(start) {\n return {\n token : \"comment.doc.tag.storage.type\",\n regex : \"\\\\b(?:TODO|FIXME|XXX|HACK)\\\\b\"\n };\n};\n\nDocCommentHighlightRules.getStartRule = function(start) {\n return {\n token : \"comment.doc\", // doc comment\n regex : \"\\\\/\\\\*(?=\\\\*)\",\n next : start\n };\n};\n\nDocCommentHighlightRules.getEndRule = function (start) {\n return {\n token : \"comment.doc\", // closing comment\n regex : \"\\\\*\\\\/\",\n next : start\n };\n};\n\n\nexports.DocCommentHighlightRules = DocCommentHighlightRules;\n\n});\n\nace.define(\"ace/mode/javascript_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/doc_comment_highlight_rules\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar DocCommentHighlightRules = require(\"./doc_comment_highlight_rules\").DocCommentHighlightRules;\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar identifierRe = \"[a-zA-Z\\\\$_\\u00a1-\\uffff][a-zA-Z\\\\d\\\\$_\\u00a1-\\uffff]*\";\n\nvar JavaScriptHighlightRules = function(options) {\n var keywordMapper = this.createKeywordMapper({\n \"variable.language\":\n \"Array|Boolean|Date|Function|Iterator|Number|Object|RegExp|String|Proxy|\" + // Constructors\n \"Namespace|QName|XML|XMLList|\" + // E4X\n \"ArrayBuffer|Float32Array|Float64Array|Int16Array|Int32Array|Int8Array|\" +\n \"Uint16Array|Uint32Array|Uint8Array|Uint8ClampedArray|\" +\n \"Error|EvalError|InternalError|RangeError|ReferenceError|StopIteration|\" + // Errors\n \"SyntaxError|TypeError|URIError|\" +\n \"decodeURI|decodeURIComponent|encodeURI|encodeURIComponent|eval|isFinite|\" + // Non-constructor functions\n \"isNaN|parseFloat|parseInt|\" +\n \"JSON|Math|\" + // Other\n \"this|arguments|prototype|window|document\" , // Pseudo\n \"keyword\":\n \"const|yield|import|get|set|async|await|\" +\n \"break|case|catch|continue|default|delete|do|else|finally|for|function|\" +\n \"if|in|of|instanceof|new|return|switch|throw|try|typeof|let|var|while|with|debugger|\" +\n \"__parent__|__count__|escape|unescape|with|__proto__|\" +\n \"class|enum|extends|super|export|implements|private|public|interface|package|protected|static\",\n \"storage.type\":\n \"const|let|var|function\",\n \"constant.language\":\n \"null|Infinity|NaN|undefined\",\n \"support.function\":\n \"alert\",\n \"constant.language.boolean\": \"true|false\"\n }, \"identifier\");\n var kwBeforeRe = \"case|do|else|finally|in|instanceof|return|throw|try|typeof|yield|void\";\n\n var escapedRe = \"\\\\\\\\(?:x[0-9a-fA-F]{2}|\" + // hex\n \"u[0-9a-fA-F]{4}|\" + // unicode\n \"u{[0-9a-fA-F]{1,6}}|\" + // es6 unicode\n \"[0-2][0-7]{0,2}|\" + // oct\n \"3[0-7][0-7]?|\" + // oct\n \"[4-7][0-7]?|\" + //oct\n \".)\";\n\n this.$rules = {\n \"no_regex\" : [\n DocCommentHighlightRules.getStartRule(\"doc-start\"),\n comments(\"no_regex\"),\n {\n token : \"string\",\n regex : \"'(?=.)\",\n next : \"qstring\"\n }, {\n token : \"string\",\n regex : '\"(?=.)',\n next : \"qqstring\"\n }, {\n token : \"constant.numeric\", // hexadecimal, octal and binary\n regex : /0(?:[xX][0-9a-fA-F]+|[oO][0-7]+|[bB][01]+)\\b/\n }, {\n token : \"constant.numeric\", // decimal integers and floats\n regex : /(?:\\d\\d*(?:\\.\\d*)?|\\.\\d+)(?:[eE][+-]?\\d+\\b)?/\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"support.function\",\n \"punctuation.operator\", \"entity.name.function\", \"text\",\"keyword.operator\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(prototype)(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"entity.name.function\", \"text\", \"keyword.operator\", \"text\", \"storage.type\",\n \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\",\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s+)(\\\\w+)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(function)(\\\\s+)(\" + identifierRe + \")(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"entity.name.function\", \"text\", \"punctuation.operator\",\n \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\s*)(:)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"text\", \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(:)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : \"keyword\",\n regex : \"from(?=\\\\s*('|\\\"))\"\n }, {\n token : \"keyword\",\n regex : \"(?:\" + kwBeforeRe + \")\\\\b\",\n next : \"start\"\n }, {\n token : [\"support.constant\"],\n regex : /that\\b/\n }, {\n token : [\"storage.type\", \"punctuation.operator\", \"support.function.firebug\"],\n regex : /(console)(\\.)(warn|info|log|error|time|trace|timeEnd|assert)\\b/\n }, {\n token : keywordMapper,\n regex : identifierRe\n }, {\n token : \"punctuation.operator\",\n regex : /[.](?![.])/,\n next : \"property\"\n }, {\n token : \"storage.type\",\n regex : /=>/,\n next : \"start\"\n }, {\n token : \"keyword.operator\",\n regex : /--|\\+\\+|\\.{3}|===|==|=|!=|!==|<+=?|>+=?|!|&&|\\|\\||\\?:|[!$%&*+\\-~\\/^]=?/,\n next : \"start\"\n }, {\n token : \"punctuation.operator\",\n regex : /[?:,;.]/,\n next : \"start\"\n }, {\n token : \"paren.lparen\",\n regex : /[\\[({]/,\n next : \"start\"\n }, {\n token : \"paren.rparen\",\n regex : /[\\])}]/\n }, {\n token: \"comment\",\n regex: /^#!.*$/\n }\n ],\n property: [{\n token : \"text\",\n regex : \"\\\\s+\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\",\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(?:(\\\\s+)(\\\\w+))?(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : \"punctuation.operator\",\n regex : /[.](?![.])/\n }, {\n token : \"support.function\",\n regex : /(s(?:h(?:ift|ow(?:Mod(?:elessDialog|alDialog)|Help))|croll(?:X|By(?:Pages|Lines)?|Y|To)?|t(?:op|rike)|i(?:n|zeToContent|debar|gnText)|ort|u(?:p|b(?:str(?:ing)?)?)|pli(?:ce|t)|e(?:nd|t(?:Re(?:sizable|questHeader)|M(?:i(?:nutes|lliseconds)|onth)|Seconds|Ho(?:tKeys|urs)|Year|Cursor|Time(?:out)?|Interval|ZOptions|Date|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Date|FullYear)|FullYear|Active)|arch)|qrt|lice|avePreferences|mall)|h(?:ome|andleEvent)|navigate|c(?:har(?:CodeAt|At)|o(?:s|n(?:cat|textual|firm)|mpile)|eil|lear(?:Timeout|Interval)?|a(?:ptureEvents|ll)|reate(?:StyleSheet|Popup|EventObject))|t(?:o(?:GMTString|S(?:tring|ource)|U(?:TCString|pperCase)|Lo(?:caleString|werCase))|est|a(?:n|int(?:Enabled)?))|i(?:s(?:NaN|Finite)|ndexOf|talics)|d(?:isableExternalCapture|ump|etachEvent)|u(?:n(?:shift|taint|escape|watch)|pdateCommands)|j(?:oin|avaEnabled)|p(?:o(?:p|w)|ush|lugins.refresh|a(?:ddings|rse(?:Int|Float)?)|r(?:int|ompt|eference))|e(?:scape|nableExternalCapture|val|lementFromPoint|x(?:p|ec(?:Script|Command)?))|valueOf|UTC|queryCommand(?:State|Indeterm|Enabled|Value)|f(?:i(?:nd|le(?:ModifiedDate|Size|CreatedDate|UpdatedDate)|xed)|o(?:nt(?:size|color)|rward)|loor|romCharCode)|watch|l(?:ink|o(?:ad|g)|astIndexOf)|a(?:sin|nchor|cos|t(?:tachEvent|ob|an(?:2)?)|pply|lert|b(?:s|ort))|r(?:ou(?:nd|teEvents)|e(?:size(?:By|To)|calc|turnValue|place|verse|l(?:oad|ease(?:Capture|Events)))|andom)|g(?:o|et(?:ResponseHeader|M(?:i(?:nutes|lliseconds)|onth)|Se(?:conds|lection)|Hours|Year|Time(?:zoneOffset)?|Da(?:y|te)|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Da(?:y|te)|FullYear)|FullYear|A(?:ttention|llResponseHeaders)))|m(?:in|ove(?:B(?:y|elow)|To(?:Absolute)?|Above)|ergeAttributes|a(?:tch|rgins|x))|b(?:toa|ig|o(?:ld|rderWidths)|link|ack))\\b(?=\\()/\n }, {\n token : \"support.function.dom\",\n regex : /(s(?:ub(?:stringData|mit)|plitText|e(?:t(?:NamedItem|Attribute(?:Node)?)|lect))|has(?:ChildNodes|Feature)|namedItem|c(?:l(?:ick|o(?:se|neNode))|reate(?:C(?:omment|DATASection|aption)|T(?:Head|extNode|Foot)|DocumentFragment|ProcessingInstruction|E(?:ntityReference|lement)|Attribute))|tabIndex|i(?:nsert(?:Row|Before|Cell|Data)|tem)|open|delete(?:Row|C(?:ell|aption)|T(?:Head|Foot)|Data)|focus|write(?:ln)?|a(?:dd|ppend(?:Child|Data))|re(?:set|place(?:Child|Data)|move(?:NamedItem|Child|Attribute(?:Node)?)?)|get(?:NamedItem|Element(?:sBy(?:Name|TagName|ClassName)|ById)|Attribute(?:Node)?)|blur)\\b(?=\\()/\n }, {\n token : \"support.constant\",\n regex : /(s(?:ystemLanguage|cr(?:ipts|ollbars|een(?:X|Y|Top|Left))|t(?:yle(?:Sheets)?|atus(?:Text|bar)?)|ibling(?:Below|Above)|ource|uffixes|e(?:curity(?:Policy)?|l(?:ection|f)))|h(?:istory|ost(?:name)?|as(?:h|Focus))|y|X(?:MLDocument|SLDocument)|n(?:ext|ame(?:space(?:s|URI)|Prop))|M(?:IN_VALUE|AX_VALUE)|c(?:haracterSet|o(?:n(?:structor|trollers)|okieEnabled|lorDepth|mp(?:onents|lete))|urrent|puClass|l(?:i(?:p(?:boardData)?|entInformation)|osed|asses)|alle(?:e|r)|rypto)|t(?:o(?:olbar|p)|ext(?:Transform|Indent|Decoration|Align)|ags)|SQRT(?:1_2|2)|i(?:n(?:ner(?:Height|Width)|put)|ds|gnoreCase)|zIndex|o(?:scpu|n(?:readystatechange|Line)|uter(?:Height|Width)|p(?:sProfile|ener)|ffscreenBuffering)|NEGATIVE_INFINITY|d(?:i(?:splay|alog(?:Height|Top|Width|Left|Arguments)|rectories)|e(?:scription|fault(?:Status|Ch(?:ecked|arset)|View)))|u(?:ser(?:Profile|Language|Agent)|n(?:iqueID|defined)|pdateInterval)|_content|p(?:ixelDepth|ort|ersonalbar|kcs11|l(?:ugins|atform)|a(?:thname|dding(?:Right|Bottom|Top|Left)|rent(?:Window|Layer)?|ge(?:X(?:Offset)?|Y(?:Offset)?))|r(?:o(?:to(?:col|type)|duct(?:Sub)?|mpter)|e(?:vious|fix)))|e(?:n(?:coding|abledPlugin)|x(?:ternal|pando)|mbeds)|v(?:isibility|endor(?:Sub)?|Linkcolor)|URLUnencoded|P(?:I|OSITIVE_INFINITY)|f(?:ilename|o(?:nt(?:Size|Family|Weight)|rmName)|rame(?:s|Element)|gColor)|E|whiteSpace|l(?:i(?:stStyleType|n(?:eHeight|kColor))|o(?:ca(?:tion(?:bar)?|lName)|wsrc)|e(?:ngth|ft(?:Context)?)|a(?:st(?:M(?:odified|atch)|Index|Paren)|yer(?:s|X)|nguage))|a(?:pp(?:MinorVersion|Name|Co(?:deName|re)|Version)|vail(?:Height|Top|Width|Left)|ll|r(?:ity|guments)|Linkcolor|bove)|r(?:ight(?:Context)?|e(?:sponse(?:XML|Text)|adyState))|global|x|m(?:imeTypes|ultiline|enubar|argin(?:Right|Bottom|Top|Left))|L(?:N(?:10|2)|OG(?:10E|2E))|b(?:o(?:ttom|rder(?:Width|RightWidth|BottomWidth|Style|Color|TopWidth|LeftWidth))|ufferDepth|elow|ackground(?:Color|Image)))\\b/\n }, {\n token : \"identifier\",\n regex : identifierRe\n }, {\n regex: \"\",\n token: \"empty\",\n next: \"no_regex\"\n }\n ],\n \"start\": [\n DocCommentHighlightRules.getStartRule(\"doc-start\"),\n comments(\"start\"),\n {\n token: \"string.regexp\",\n regex: \"\\\\/\",\n next: \"regex\"\n }, {\n token : \"text\",\n regex : \"\\\\s+|^$\",\n next : \"start\"\n }, {\n token: \"empty\",\n regex: \"\",\n next: \"no_regex\"\n }\n ],\n \"regex\": [\n {\n token: \"regexp.keyword.operator\",\n regex: \"\\\\\\\\(?:u[\\\\da-fA-F]{4}|x[\\\\da-fA-F]{2}|.)\"\n }, {\n token: \"string.regexp\",\n regex: \"/[sxngimy]*\",\n next: \"no_regex\"\n }, {\n token : \"invalid\",\n regex: /\\{\\d+\\b,?\\d*\\}[+*]|[+*$^?][+*]|[$^][?]|\\?{3,}/\n }, {\n token : \"constant.language.escape\",\n regex: /\\(\\?[:=!]|\\)|\\{\\d+\\b,?\\d*\\}|[+*]\\?|[()$^+*?.]/\n }, {\n token : \"constant.language.delimiter\",\n regex: /\\|/\n }, {\n token: \"constant.language.escape\",\n regex: /\\[\\^?/,\n next: \"regex_character_class\"\n }, {\n token: \"empty\",\n regex: \"$\",\n next: \"no_regex\"\n }, {\n defaultToken: \"string.regexp\"\n }\n ],\n \"regex_character_class\": [\n {\n token: \"regexp.charclass.keyword.operator\",\n regex: \"\\\\\\\\(?:u[\\\\da-fA-F]{4}|x[\\\\da-fA-F]{2}|.)\"\n }, {\n token: \"constant.language.escape\",\n regex: \"]\",\n next: \"regex\"\n }, {\n token: \"constant.language.escape\",\n regex: \"-\"\n }, {\n token: \"empty\",\n regex: \"$\",\n next: \"no_regex\"\n }, {\n defaultToken: \"string.regexp.charachterclass\"\n }\n ],\n \"function_arguments\": [\n {\n token: \"variable.parameter\",\n regex: identifierRe\n }, {\n token: \"punctuation.operator\",\n regex: \"[, ]+\"\n }, {\n token: \"punctuation.operator\",\n regex: \"$\"\n }, {\n token: \"empty\",\n regex: \"\",\n next: \"no_regex\"\n }\n ],\n \"qqstring\" : [\n {\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"string\",\n regex : \"\\\\\\\\$\",\n consumeLineEnd : true\n }, {\n token : \"string\",\n regex : '\"|$',\n next : \"no_regex\"\n }, {\n defaultToken: \"string\"\n }\n ],\n \"qstring\" : [\n {\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"string\",\n regex : \"\\\\\\\\$\",\n consumeLineEnd : true\n }, {\n token : \"string\",\n regex : \"'|$\",\n next : \"no_regex\"\n }, {\n defaultToken: \"string\"\n }\n ]\n };\n\n\n if (!options || !options.noES6) {\n this.$rules.no_regex.unshift({\n regex: \"[{}]\", onMatch: function(val, state, stack) {\n this.next = val == \"{\" ? this.nextState : \"\";\n if (val == \"{\" && stack.length) {\n stack.unshift(\"start\", state);\n }\n else if (val == \"}\" && stack.length) {\n stack.shift();\n this.next = stack.shift();\n if (this.next.indexOf(\"string\") != -1 || this.next.indexOf(\"jsx\") != -1)\n return \"paren.quasi.end\";\n }\n return val == \"{\" ? \"paren.lparen\" : \"paren.rparen\";\n },\n nextState: \"start\"\n }, {\n token : \"string.quasi.start\",\n regex : /`/,\n push : [{\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"paren.quasi.start\",\n regex : /\\${/,\n push : \"start\"\n }, {\n token : \"string.quasi.end\",\n regex : /`/,\n next : \"pop\"\n }, {\n defaultToken: \"string.quasi\"\n }]\n });\n\n if (!options || options.jsx != false)\n JSX.call(this);\n }\n\n this.embedRules(DocCommentHighlightRules, \"doc-\",\n [ DocCommentHighlightRules.getEndRule(\"no_regex\") ]);\n\n this.normalizeRules();\n};\n\noop.inherits(JavaScriptHighlightRules, TextHighlightRules);\n\nfunction JSX() {\n var tagRegex = identifierRe.replace(\"\\\\d\", \"\\\\d\\\\-\");\n var jsxTag = {\n onMatch : function(val, state, stack) {\n var offset = val.charAt(1) == \"/\" ? 2 : 1;\n if (offset == 1) {\n if (state != this.nextState)\n stack.unshift(this.next, this.nextState, 0);\n else\n stack.unshift(this.next);\n stack[2]++;\n } else if (offset == 2) {\n if (state == this.nextState) {\n stack[1]--;\n if (!stack[1] || stack[1] < 0) {\n stack.shift();\n stack.shift();\n }\n }\n }\n return [{\n type: \"meta.tag.punctuation.\" + (offset == 1 ? \"\" : \"end-\") + \"tag-open.xml\",\n value: val.slice(0, offset)\n }, {\n type: \"meta.tag.tag-name.xml\",\n value: val.substr(offset)\n }];\n },\n regex : \"\",\n onMatch : function(value, currentState, stack) {\n if (currentState == stack[0])\n stack.shift();\n if (value.length == 2) {\n if (stack[0] == this.nextState)\n stack[1]--;\n if (!stack[1] || stack[1] < 0) {\n stack.splice(0, 2);\n }\n }\n this.next = stack[0] || \"start\";\n return [{type: this.token, value: value}];\n },\n nextState: \"jsx\"\n },\n jsxJsRule,\n comments(\"jsxAttributes\"),\n {\n token : \"entity.other.attribute-name.xml\",\n regex : tagRegex\n }, {\n token : \"keyword.operator.attribute-equals.xml\",\n regex : \"=\"\n }, {\n token : \"text.tag-whitespace.xml\",\n regex : \"\\\\s+\"\n }, {\n token : \"string.attribute-value.xml\",\n regex : \"'\",\n stateName : \"jsx_attr_q\",\n push : [\n {token : \"string.attribute-value.xml\", regex: \"'\", next: \"pop\"},\n {include : \"reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n }, {\n token : \"string.attribute-value.xml\",\n regex : '\"',\n stateName : \"jsx_attr_qq\",\n push : [\n {token : \"string.attribute-value.xml\", regex: '\"', next: \"pop\"},\n {include : \"reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n },\n jsxTag\n ];\n this.$rules.reference = [{\n token : \"constant.language.escape.reference.xml\",\n regex : \"(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\\\.-]+;)\"\n }];\n}\n\nfunction comments(next) {\n return [\n {\n token : \"comment\", // multi line comment\n regex : /\\/\\*/,\n next: [\n DocCommentHighlightRules.getTagRule(),\n {token : \"comment\", regex : \"\\\\*\\\\/\", next : next || \"pop\"},\n {defaultToken : \"comment\", caseInsensitive: true}\n ]\n }, {\n token : \"comment\",\n regex : \"\\\\/\\\\/\",\n next: [\n DocCommentHighlightRules.getTagRule(),\n {token : \"comment\", regex : \"$|^\", next : next || \"pop\"},\n {defaultToken : \"comment\", caseInsensitive: true}\n ]\n }\n ];\n}\nexports.JavaScriptHighlightRules = JavaScriptHighlightRules;\n});\n\nace.define(\"ace/mode/matching_brace_outdent\",[\"require\",\"exports\",\"module\",\"ace/range\"], function(require, exports, module) {\n\"use strict\";\n\nvar Range = require(\"../range\").Range;\n\nvar MatchingBraceOutdent = function() {};\n\n(function() {\n\n this.checkOutdent = function(line, input) {\n if (! /^\\s+$/.test(line))\n return false;\n\n return /^\\s*\\}/.test(input);\n };\n\n this.autoOutdent = function(doc, row) {\n var line = doc.getLine(row);\n var match = line.match(/^(\\s*\\})/);\n\n if (!match) return 0;\n\n var column = match[1].length;\n var openBracePos = doc.findMatchingBracket({row: row, column: column});\n\n if (!openBracePos || openBracePos.row == row) return 0;\n\n var indent = this.$getIndent(doc.getLine(openBracePos.row));\n doc.replace(new Range(row, 0, row, column-1), indent);\n };\n\n this.$getIndent = function(line) {\n return line.match(/^\\s*/)[0];\n };\n\n}).call(MatchingBraceOutdent.prototype);\n\nexports.MatchingBraceOutdent = MatchingBraceOutdent;\n});\n\nace.define(\"ace/mode/folding/cstyle\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/range\",\"ace/mode/folding/fold_mode\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Range = require(\"../../range\").Range;\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function(commentRegex) {\n if (commentRegex) {\n this.foldingStartMarker = new RegExp(\n this.foldingStartMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.start)\n );\n this.foldingStopMarker = new RegExp(\n this.foldingStopMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.end)\n );\n }\n};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n \n this.foldingStartMarker = /([\\{\\[\\(])[^\\}\\]\\)]*$|^\\s*(\\/\\*)/;\n this.foldingStopMarker = /^[^\\[\\{\\(]*([\\}\\]\\)])|^[\\s\\*]*(\\*\\/)/;\n this.singleLineBlockCommentRe= /^\\s*(\\/\\*).*\\*\\/\\s*$/;\n this.tripleStarBlockCommentRe = /^\\s*(\\/\\*\\*\\*).*\\*\\/\\s*$/;\n this.startRegionRe = /^\\s*(\\/\\*|\\/\\/)#?region\\b/;\n this._getFoldWidgetBase = this.getFoldWidget;\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n \n if (this.singleLineBlockCommentRe.test(line)) {\n if (!this.startRegionRe.test(line) && !this.tripleStarBlockCommentRe.test(line))\n return \"\";\n }\n \n var fw = this._getFoldWidgetBase(session, foldStyle, row);\n \n if (!fw && this.startRegionRe.test(line))\n return \"start\"; // lineCommentRegionStart\n \n return fw;\n };\n\n this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {\n var line = session.getLine(row);\n \n if (this.startRegionRe.test(line))\n return this.getCommentRegionBlock(session, line, row);\n \n var match = line.match(this.foldingStartMarker);\n if (match) {\n var i = match.index;\n\n if (match[1])\n return this.openingBracketBlock(session, match[1], row, i);\n \n var range = session.getCommentFoldRange(row, i + match[0].length, 1);\n \n if (range && !range.isMultiLine()) {\n if (forceMultiline) {\n range = this.getSectionRange(session, row);\n } else if (foldStyle != \"all\")\n range = null;\n }\n \n return range;\n }\n\n if (foldStyle === \"markbegin\")\n return;\n\n var match = line.match(this.foldingStopMarker);\n if (match) {\n var i = match.index + match[0].length;\n\n if (match[1])\n return this.closingBracketBlock(session, match[1], row, i);\n\n return session.getCommentFoldRange(row, i, -1);\n }\n };\n \n this.getSectionRange = function(session, row) {\n var line = session.getLine(row);\n var startIndent = line.search(/\\S/);\n var startRow = row;\n var startColumn = line.length;\n row = row + 1;\n var endRow = row;\n var maxRow = session.getLength();\n while (++row < maxRow) {\n line = session.getLine(row);\n var indent = line.search(/\\S/);\n if (indent === -1)\n continue;\n if (startIndent > indent)\n break;\n var subRange = this.getFoldWidgetRange(session, \"all\", row);\n \n if (subRange) {\n if (subRange.start.row <= startRow) {\n break;\n } else if (subRange.isMultiLine()) {\n row = subRange.end.row;\n } else if (startIndent == indent) {\n break;\n }\n }\n endRow = row;\n }\n \n return new Range(startRow, startColumn, endRow, session.getLine(endRow).length);\n };\n this.getCommentRegionBlock = function(session, line, row) {\n var startColumn = line.search(/\\s*$/);\n var maxRow = session.getLength();\n var startRow = row;\n \n var re = /^\\s*(?:\\/\\*|\\/\\/|--)#?(end)?region\\b/;\n var depth = 1;\n while (++row < maxRow) {\n line = session.getLine(row);\n var m = re.exec(line);\n if (!m) continue;\n if (m[1]) depth--;\n else depth++;\n\n if (!depth) break;\n }\n\n var endRow = row;\n if (endRow > startRow) {\n return new Range(startRow, startColumn, endRow, line.length);\n }\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/javascript\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/javascript_highlight_rules\",\"ace/mode/matching_brace_outdent\",\"ace/worker/worker_client\",\"ace/mode/behaviour/cstyle\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar JavaScriptHighlightRules = require(\"./javascript_highlight_rules\").JavaScriptHighlightRules;\nvar MatchingBraceOutdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\nvar WorkerClient = require(\"../worker/worker_client\").WorkerClient;\nvar CstyleBehaviour = require(\"./behaviour/cstyle\").CstyleBehaviour;\nvar CStyleFoldMode = require(\"./folding/cstyle\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = JavaScriptHighlightRules;\n \n this.$outdent = new MatchingBraceOutdent();\n this.$behaviour = new CstyleBehaviour();\n this.foldingRules = new CStyleFoldMode();\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.lineCommentStart = \"//\";\n this.blockComment = {start: \"/*\", end: \"*/\"};\n this.$quotes = {'\"': '\"', \"'\": \"'\", \"`\": \"`\"};\n\n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n\n var tokenizedLine = this.getTokenizer().getLineTokens(line, state);\n var tokens = tokenizedLine.tokens;\n var endState = tokenizedLine.state;\n\n if (tokens.length && tokens[tokens.length-1].type == \"comment\") {\n return indent;\n }\n\n if (state == \"start\" || state == \"no_regex\") {\n var match = line.match(/^.*(?:\\bcase\\b.*:|[\\{\\(\\[])\\s*$/);\n if (match) {\n indent += tab;\n }\n } else if (state == \"doc-start\") {\n if (endState == \"start\" || endState == \"no_regex\") {\n return \"\";\n }\n var match = line.match(/^\\s*(\\/?)\\*/);\n if (match) {\n if (match[1]) {\n indent += \" \";\n }\n indent += \"* \";\n }\n }\n\n return indent;\n };\n\n this.checkOutdent = function(state, line, input) {\n return this.$outdent.checkOutdent(line, input);\n };\n\n this.autoOutdent = function(state, doc, row) {\n this.$outdent.autoOutdent(doc, row);\n };\n\n this.createWorker = function(session) {\n var worker = new WorkerClient([\"ace\"], \"ace/mode/javascript_worker\", \"JavaScriptWorker\");\n worker.attachToDocument(session.getDocument());\n\n worker.on(\"annotate\", function(results) {\n session.setAnnotations(results.data);\n });\n\n worker.on(\"terminate\", function() {\n session.clearAnnotations();\n });\n\n return worker;\n };\n\n this.$id = \"ace/mode/javascript\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n});\n\nace.define(\"ace/mode/typescript_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/javascript_highlight_rules\"], function (require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar JavaScriptHighlightRules = require(\"./javascript_highlight_rules\").JavaScriptHighlightRules;\n\nvar TypeScriptHighlightRules = function (options) {\n\n var tsRules = [\n {\n token: [\"storage.type\", \"text\", \"entity.name.function.ts\"],\n regex: \"(function)(\\\\s+)([a-zA-Z0-9\\$_\\u00a1-\\uffff][a-zA-Z0-9\\d\\$_\\u00a1-\\uffff]*)\"\n },\n {\n token: \"keyword\",\n regex: \"(?:\\\\b(constructor|declare|interface|as|AS|public|private|extends|export|super|readonly|module|namespace|abstract|implements)\\\\b)\"\n },\n {\n token: [\"keyword\", \"storage.type.variable.ts\"],\n regex: \"(class|type)(\\\\s+[a-zA-Z0-9_?.$][\\\\w?.$]*)\"\n },\n {\n token: \"keyword\",\n regex: \"\\\\b(?:super|export|import|keyof|infer)\\\\b\"\n }, \n {\n token: [\"storage.type.variable.ts\"],\n regex: \"(?:\\\\b(this\\\\.|string\\\\b|bool\\\\b|boolean\\\\b|number\\\\b|true\\\\b|false\\\\b|undefined\\\\b|any\\\\b|null\\\\b|(?:unique )?symbol\\\\b|object\\\\b|never\\\\b|enum\\\\b))\"\n }\n ];\n\n var JSRules = new JavaScriptHighlightRules({jsx: (options && options.jsx) == true}).getRules();\n \n JSRules.no_regex = tsRules.concat(JSRules.no_regex);\n this.$rules = JSRules;\n};\n\noop.inherits(TypeScriptHighlightRules, JavaScriptHighlightRules);\n\nexports.TypeScriptHighlightRules = TypeScriptHighlightRules;\n});\n\nace.define(\"ace/mode/typescript\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/javascript\",\"ace/mode/typescript_highlight_rules\",\"ace/mode/behaviour/cstyle\",\"ace/mode/folding/cstyle\",\"ace/mode/matching_brace_outdent\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar jsMode = require(\"./javascript\").Mode;\nvar TypeScriptHighlightRules = require(\"./typescript_highlight_rules\").TypeScriptHighlightRules;\nvar CstyleBehaviour = require(\"./behaviour/cstyle\").CstyleBehaviour;\nvar CStyleFoldMode = require(\"./folding/cstyle\").FoldMode;\nvar MatchingBraceOutdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\n\nvar Mode = function() {\n this.HighlightRules = TypeScriptHighlightRules;\n \n this.$outdent = new MatchingBraceOutdent();\n this.$behaviour = new CstyleBehaviour();\n this.foldingRules = new CStyleFoldMode();\n};\noop.inherits(Mode, jsMode);\n\n(function() {\n this.createWorker = function(session) {\n return null;\n };\n this.$id = \"ace/mode/typescript\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n});\n\nace.define(\"ace/mode/tsx\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/typescript\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar tsMode = require(\"./typescript\").Mode;\n\nvar Mode = function() {\n tsMode.call(this);\n this.$highlightRuleConfig = {jsx: true};\n};\noop.inherits(Mode, tsMode);\n\n(function() {\n this.$id = \"ace/mode/tsx\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/tsx\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file21 := &embedded.EmbeddedFile{ Filename: "294fbc5b00264d6215dd8ff838dc2999.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/edifact\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n \"use strict\";\n \n exports.snippetText = \"## Access Modifiers\\n\\\nsnippet u\\n\\\n\tUN\\n\\\nsnippet un\\n\\\n\tUNB\\n\\\nsnippet pr\\n\\\n\tprivate\\n\\\n##\\n\\\n## Annotations\\n\\\nsnippet before\\n\\\n\t@Before\\n\\\n\tstatic void ${1:intercept}(${2:args}) { ${3} }\\n\\\nsnippet mm\\n\\\n\t@ManyToMany\\n\\\n\t${1}\\n\\\nsnippet mo\\n\\\n\t@ManyToOne\\n\\\n\t${1}\\n\\\nsnippet om\\n\\\n\t@OneToMany${1:(cascade=CascadeType.ALL)}\\n\\\n\t${2}\\n\\\nsnippet oo\\n\\\n\t@OneToOne\\n\\\n\t${1}\\n\\\n##\\n\\\n## Basic Java packages and import\\n\\\nsnippet im\\n\\\n\timport\\n\\\nsnippet j.b\\n\\\n\tjava.beans.\\n\\\nsnippet j.i\\n\\\n\tjava.io.\\n\\\nsnippet j.m\\n\\\n\tjava.math.\\n\\\nsnippet j.n\\n\\\n\tjava.net.\\n\\\nsnippet j.u\\n\\\n\tjava.util.\\n\\\n##\\n\\\n## Class\\n\\\nsnippet cl\\n\\\n\tclass ${1:`Filename(\\\"\\\", \\\"untitled\\\")`} ${2}\\n\\\nsnippet in\\n\\\n\tinterface ${1:`Filename(\\\"\\\", \\\"untitled\\\")`} ${2:extends Parent}${3}\\n\\\nsnippet tc\\n\\\n\tpublic class ${1:`Filename()`} extends ${2:TestCase}\\n\\\n##\\n\\\n## Class Enhancements\\n\\\nsnippet ext\\n\\\n\textends \\n\\\nsnippet imp\\n\\\n\timplements\\n\\\n##\\n\\\n## Comments\\n\\\nsnippet /*\\n\\\n\t/*\\n\\\n\t * ${1}\\n\\\n\t */\\n\\\n##\\n\\\n## Constants\\n\\\nsnippet co\\n\\\n\tstatic public final ${1:String} ${2:var} = ${3};${4}\\n\\\nsnippet cos\\n\\\n\tstatic public final String ${1:var} = \\\"${2}\\\";${3}\\n\\\n##\\n\\\n## Control Statements\\n\\\nsnippet case\\n\\\n\tcase ${1}:\\n\\\n\t\t${2}\\n\\\nsnippet def\\n\\\n\tdefault:\\n\\\n\t\t${2}\\n\\\nsnippet el\\n\\\n\telse\\n\\\nsnippet elif\\n\\\n\telse if (${1}) ${2}\\n\\\nsnippet if\\n\\\n\tif (${1}) ${2}\\n\\\nsnippet sw\\n\\\n\tswitch (${1}) {\\n\\\n\t\t${2}\\n\\\n\t}\\n\\\n##\\n\\\n## Create a Method\\n\\\nsnippet m\\n\\\n\t${1:void} ${2:method}(${3}) ${4:throws }${5}\\n\\\n##\\n\\\n## Create a Variable\\n\\\nsnippet v\\n\\\n\t${1:String} ${2:var}${3: = null}${4};${5}\\n\\\n##\\n\\\n## Enhancements to Methods, variables, classes, etc.\\n\\\nsnippet ab\\n\\\n\tabstract\\n\\\nsnippet fi\\n\\\n\tfinal\\n\\\nsnippet st\\n\\\n\tstatic\\n\\\nsnippet sy\\n\\\n\tsynchronized\\n\\\n##\\n\\\n## Error Methods\\n\\\nsnippet err\\n\\\n\tSystem.err.print(\\\"${1:Message}\\\");\\n\\\nsnippet errf\\n\\\n\tSystem.err.printf(\\\"${1:Message}\\\", ${2:exception});\\n\\\nsnippet errln\\n\\\n\tSystem.err.println(\\\"${1:Message}\\\");\\n\\\n##\\n\\\n## Exception Handling\\n\\\nsnippet as\\n\\\n\tassert ${1:test} : \\\"${2:Failure message}\\\";${3}\\n\\\nsnippet ca\\n\\\n\tcatch(${1:Exception} ${2:e}) ${3}\\n\\\nsnippet thr\\n\\\n\tthrow\\n\\\nsnippet ths\\n\\\n\tthrows\\n\\\nsnippet try\\n\\\n\ttry {\\n\\\n\t\t${3}\\n\\\n\t} catch(${1:Exception} ${2:e}) {\\n\\\n\t}\\n\\\nsnippet tryf\\n\\\n\ttry {\\n\\\n\t\t${3}\\n\\\n\t} catch(${1:Exception} ${2:e}) {\\n\\\n\t} finally {\\n\\\n\t}\\n\\\n##\\n\\\n## Find Methods\\n\\\nsnippet findall\\n\\\n\tList<${1:listName}> ${2:items} = ${1}.findAll();${3}\\n\\\nsnippet findbyid\\n\\\n\t${1:var} ${2:item} = ${1}.findById(${3});${4}\\n\\\n##\\n\\\n## Javadocs\\n\\\nsnippet /**\\n\\\n\t/**\\n\\\n\t * ${1}\\n\\\n\t */\\n\\\nsnippet @au\\n\\\n\t@author `system(\\\"grep \\\\`id -un\\\\` /etc/passwd | cut -d \\\\\\\":\\\\\\\" -f5 | cut -d \\\\\\\",\\\\\\\" -f1\\\")`\\n\\\nsnippet @br\\n\\\n\t@brief ${1:Description}\\n\\\nsnippet @fi\\n\\\n\t@file ${1:`Filename()`}.java\\n\\\nsnippet @pa\\n\\\n\t@param ${1:param}\\n\\\nsnippet @re\\n\\\n\t@return ${1:param}\\n\\\n##\\n\\\n## Logger Methods\\n\\\nsnippet debug\\n\\\n\tLogger.debug(${1:param});${2}\\n\\\nsnippet error\\n\\\n\tLogger.error(${1:param});${2}\\n\\\nsnippet info\\n\\\n\tLogger.info(${1:param});${2}\\n\\\nsnippet warn\\n\\\n\tLogger.warn(${1:param});${2}\\n\\\n##\\n\\\n## Loops\\n\\\nsnippet enfor\\n\\\n\tfor (${1} : ${2}) ${3}\\n\\\nsnippet for\\n\\\n\tfor (${1}; ${2}; ${3}) ${4}\\n\\\nsnippet wh\\n\\\n\twhile (${1}) ${2}\\n\\\n##\\n\\\n## Main method\\n\\\nsnippet main\\n\\\n\tpublic static void main (String[] args) {\\n\\\n\t\t${1:/* code */}\\n\\\n\t}\\n\\\n##\\n\\\n## Print Methods\\n\\\nsnippet print\\n\\\n\tSystem.out.print(\\\"${1:Message}\\\");\\n\\\nsnippet printf\\n\\\n\tSystem.out.printf(\\\"${1:Message}\\\", ${2:args});\\n\\\nsnippet println\\n\\\n\tSystem.out.println(${1});\\n\\\n##\\n\\\n## Render Methods\\n\\\nsnippet ren\\n\\\n\trender(${1:param});${2}\\n\\\nsnippet rena\\n\\\n\trenderArgs.put(\\\"${1}\\\", ${2});${3}\\n\\\nsnippet renb\\n\\\n\trenderBinary(${1:param});${2}\\n\\\nsnippet renj\\n\\\n\trenderJSON(${1:param});${2}\\n\\\nsnippet renx\\n\\\n\trenderXml(${1:param});${2}\\n\\\n##\\n\\\n## Setter and Getter Methods\\n\\\nsnippet set\\n\\\n\t${1:public} void set${3:}(${2:String} ${4:}){\\n\\\n\t\tthis.$4 = $4;\\n\\\n\t}\\n\\\nsnippet get\\n\\\n\t${1:public} ${2:String} get${3:}(){\\n\\\n\t\treturn this.${4:};\\n\\\n\t}\\n\\\n##\\n\\\n## Terminate Methods or Loops\\n\\\nsnippet re\\n\\\n\treturn\\n\\\nsnippet br\\n\\\n\tbreak;\\n\\\n##\\n\\\n## Test Methods\\n\\\nsnippet t\\n\\\n\tpublic void test${1:Name}() throws Exception {\\n\\\n\t\t${2}\\n\\\n\t}\\n\\\nsnippet test\\n\\\n\t@Test\\n\\\n\tpublic void test${1:Name}() throws Exception {\\n\\\n\t\t${2}\\n\\\n\t}\\n\\\n##\\n\\\n## Utils\\n\\\nsnippet Sc\\n\\\n\tScanner\\n\\\n##\\n\\\n## Miscellaneous\\n\\\nsnippet action\\n\\\n\tpublic static void ${1:index}(${2:args}) { ${3} }\\n\\\nsnippet rnf\\n\\\n\tnotFound(${1:param});${2}\\n\\\nsnippet rnfin\\n\\\n\tnotFoundIfNull(${1:param});${2}\\n\\\nsnippet rr\\n\\\n\tredirect(${1:param});${2}\\n\\\nsnippet ru\\n\\\n\tunauthorized(${1:param});${2}\\n\\\nsnippet unless\\n\\\n\t(unless=${1:param});${2}\\n\\\n\";\n exports.scope = \"edifact\";\n \n}); (function() {\n ace.require([\"ace/snippets/edifact\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file22 := &embedded.EmbeddedFile{ Filename: "297986c2038c6d4f56f094a9bf8f2ed2.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/ext/menu_tools/overlay_page\",[\"require\",\"exports\",\"module\",\"ace/lib/dom\"], function(require, exports, module) {\n'use strict';\nvar dom = require(\"../../lib/dom\");\nvar cssText = \"#ace_settingsmenu, #kbshortcutmenu {\\\nbackground-color: #F7F7F7;\\\ncolor: black;\\\nbox-shadow: -5px 4px 5px rgba(126, 126, 126, 0.55);\\\npadding: 1em 0.5em 2em 1em;\\\noverflow: auto;\\\nposition: absolute;\\\nmargin: 0;\\\nbottom: 0;\\\nright: 0;\\\ntop: 0;\\\nz-index: 9991;\\\ncursor: default;\\\n}\\\n.ace_dark #ace_settingsmenu, .ace_dark #kbshortcutmenu {\\\nbox-shadow: -20px 10px 25px rgba(126, 126, 126, 0.25);\\\nbackground-color: rgba(255, 255, 255, 0.6);\\\ncolor: black;\\\n}\\\n.ace_optionsMenuEntry:hover {\\\nbackground-color: rgba(100, 100, 100, 0.1);\\\ntransition: all 0.3s\\\n}\\\n.ace_closeButton {\\\nbackground: rgba(245, 146, 146, 0.5);\\\nborder: 1px solid #F48A8A;\\\nborder-radius: 50%;\\\npadding: 7px;\\\nposition: absolute;\\\nright: -8px;\\\ntop: -8px;\\\nz-index: 100000;\\\n}\\\n.ace_closeButton{\\\nbackground: rgba(245, 146, 146, 0.9);\\\n}\\\n.ace_optionsMenuKey {\\\ncolor: darkslateblue;\\\nfont-weight: bold;\\\n}\\\n.ace_optionsMenuCommand {\\\ncolor: darkcyan;\\\nfont-weight: normal;\\\n}\\\n.ace_optionsMenuEntry input, .ace_optionsMenuEntry button {\\\nvertical-align: middle;\\\n}\\\n.ace_optionsMenuEntry button[ace_selected_button=true] {\\\nbackground: #e7e7e7;\\\nbox-shadow: 1px 0px 2px 0px #adadad inset;\\\nborder-color: #adadad;\\\n}\\\n.ace_optionsMenuEntry button {\\\nbackground: white;\\\nborder: 1px solid lightgray;\\\nmargin: 0px;\\\n}\\\n.ace_optionsMenuEntry button:hover{\\\nbackground: #f0f0f0;\\\n}\";\ndom.importCssString(cssText);\nmodule.exports.overlayPage = function overlayPage(editor, contentElement, top, right, bottom, left) {\n top = top ? 'top: ' + top + ';' : '';\n bottom = bottom ? 'bottom: ' + bottom + ';' : '';\n right = right ? 'right: ' + right + ';' : '';\n left = left ? 'left: ' + left + ';' : '';\n\n var closer = document.createElement('div');\n var contentContainer = document.createElement('div');\n\n function documentEscListener(e) {\n if (e.keyCode === 27) {\n closer.click();\n }\n }\n\n closer.style.cssText = 'margin: 0; padding: 0; ' +\n 'position: fixed; top:0; bottom:0; left:0; right:0;' +\n 'z-index: 9990; ' +\n 'background-color: rgba(0, 0, 0, 0.3);';\n closer.addEventListener('click', function() {\n document.removeEventListener('keydown', documentEscListener);\n closer.parentNode.removeChild(closer);\n editor.focus();\n closer = null;\n });\n document.addEventListener('keydown', documentEscListener);\n\n contentContainer.style.cssText = top + right + bottom + left;\n contentContainer.addEventListener('click', function(e) {\n e.stopPropagation();\n });\n\n var wrapper = dom.createElement(\"div\");\n wrapper.style.position = \"relative\";\n \n var closeButton = dom.createElement(\"div\");\n closeButton.className = \"ace_closeButton\";\n closeButton.addEventListener('click', function() {\n closer.click();\n });\n \n wrapper.appendChild(closeButton);\n contentContainer.appendChild(wrapper);\n \n contentContainer.appendChild(contentElement);\n closer.appendChild(contentContainer);\n document.body.appendChild(closer);\n editor.blur();\n};\n\n});\n\nace.define(\"ace/ext/menu_tools/get_editor_keyboard_shortcuts\",[\"require\",\"exports\",\"module\",\"ace/lib/keys\"], function(require, exports, module) {\n\"use strict\";\nvar keys = require(\"../../lib/keys\");\nmodule.exports.getEditorKeybordShortcuts = function(editor) {\n var KEY_MODS = keys.KEY_MODS;\n var keybindings = [];\n var commandMap = {};\n editor.keyBinding.$handlers.forEach(function(handler) {\n var ckb = handler.commandKeyBinding;\n for (var i in ckb) {\n var key = i.replace(/(^|-)\\w/g, function(x) { return x.toUpperCase(); });\n var commands = ckb[i];\n if (!Array.isArray(commands))\n commands = [commands];\n commands.forEach(function(command) {\n if (typeof command != \"string\")\n command = command.name;\n if (commandMap[command]) {\n commandMap[command].key += \"|\" + key;\n } else {\n commandMap[command] = {key: key, command: command};\n keybindings.push(commandMap[command]);\n } \n });\n }\n });\n return keybindings;\n};\n\n});\n\nace.define(\"ace/ext/keybinding_menu\",[\"require\",\"exports\",\"module\",\"ace/editor\",\"ace/ext/menu_tools/overlay_page\",\"ace/ext/menu_tools/get_editor_keyboard_shortcuts\"], function(require, exports, module) {\n \"use strict\";\n var Editor = require(\"ace/editor\").Editor;\n function showKeyboardShortcuts (editor) {\n if(!document.getElementById('kbshortcutmenu')) {\n var overlayPage = require('./menu_tools/overlay_page').overlayPage;\n var getEditorKeybordShortcuts = require('./menu_tools/get_editor_keyboard_shortcuts').getEditorKeybordShortcuts;\n var kb = getEditorKeybordShortcuts(editor);\n var el = document.createElement('div');\n var commands = kb.reduce(function(previous, current) {\n return previous + '
' \n + current.command + ' : '\n + '' + current.key + '
';\n }, '');\n\n el.id = 'kbshortcutmenu';\n el.innerHTML = '

Keyboard Shortcuts

' + commands + '';\n overlayPage(editor, el, '0', '0', '0', null);\n }\n }\n module.exports.init = function(editor) {\n Editor.prototype.showKeyboardShortcuts = function() {\n showKeyboardShortcuts(this);\n };\n editor.commands.addCommands([{\n name: \"showKeyboardShortcuts\",\n bindKey: {win: \"Ctrl-Alt-h\", mac: \"Command-Alt-h\"},\n exec: function(editor, line) {\n editor.showKeyboardShortcuts();\n }\n }]);\n };\n\n}); (function() {\n ace.require([\"ace/ext/keybinding_menu\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file23 := &embedded.EmbeddedFile{ Filename: "29a6c0d9c964e02cab82d9b68890324e.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/elm\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText =undefined;\nexports.scope = \"elm\";\n\n}); (function() {\n ace.require([\"ace/snippets/elm\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file24 := &embedded.EmbeddedFile{ Filename: "2af30a763bb650347df49c35832b56d6.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/ruby_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar constantOtherSymbol = exports.constantOtherSymbol = {\n token : \"constant.other.symbol.ruby\", // symbol\n regex : \"[:](?:[A-Za-z_]|[@$](?=[a-zA-Z0-9_]))[a-zA-Z0-9_]*[!=?]?\"\n};\n\nvar qString = exports.qString = {\n token : \"string\", // single line\n regex : \"['](?:(?:\\\\\\\\.)|(?:[^'\\\\\\\\]))*?[']\"\n};\n\nvar qqString = exports.qqString = {\n token : \"string\", // single line\n regex : '[\"](?:(?:\\\\\\\\.)|(?:[^\"\\\\\\\\]))*?[\"]'\n};\n\nvar tString = exports.tString = {\n token : \"string\", // backtick string\n regex : \"[`](?:(?:\\\\\\\\.)|(?:[^'\\\\\\\\]))*?[`]\"\n};\n\nvar constantNumericHex = exports.constantNumericHex = {\n token : \"constant.numeric\", // hex\n regex : \"0[xX][0-9a-fA-F](?:[0-9a-fA-F]|_(?=[0-9a-fA-F]))*\\\\b\"\n};\n\nvar constantNumericFloat = exports.constantNumericFloat = {\n token : \"constant.numeric\", // float\n regex : \"[+-]?\\\\d(?:\\\\d|_(?=\\\\d))*(?:(?:\\\\.\\\\d(?:\\\\d|_(?=\\\\d))*)?(?:[eE][+-]?\\\\d+)?)?\\\\b\"\n};\n\nvar instanceVariable = exports.instanceVariable = {\n token : \"variable.instance\", // instance variable\n regex : \"@{1,2}[a-zA-Z_\\\\d]+\"\n};\n\nvar RubyHighlightRules = function() {\n\n var builtinFunctions = (\n \"abort|Array|assert|assert_equal|assert_not_equal|assert_same|assert_not_same|\" +\n \"assert_nil|assert_not_nil|assert_match|assert_no_match|assert_in_delta|assert_throws|\" +\n \"assert_raise|assert_nothing_raised|assert_instance_of|assert_kind_of|assert_respond_to|\" +\n \"assert_operator|assert_send|assert_difference|assert_no_difference|assert_recognizes|\" +\n \"assert_generates|assert_response|assert_redirected_to|assert_template|assert_select|\" +\n \"assert_select_email|assert_select_rjs|assert_select_encoded|css_select|at_exit|\" +\n \"attr|attr_writer|attr_reader|attr_accessor|attr_accessible|autoload|binding|block_given?|callcc|\" +\n \"caller|catch|chomp|chomp!|chop|chop!|defined?|delete_via_redirect|eval|exec|exit|\" +\n \"exit!|fail|Float|flunk|follow_redirect!|fork|form_for|form_tag|format|gets|global_variables|gsub|\" +\n \"gsub!|get_via_redirect|host!|https?|https!|include|Integer|lambda|link_to|\" +\n \"link_to_unless_current|link_to_function|link_to_remote|load|local_variables|loop|open|open_session|\" +\n \"p|print|printf|proc|putc|puts|post_via_redirect|put_via_redirect|raise|rand|\" +\n \"raw|readline|readlines|redirect?|request_via_redirect|require|scan|select|\" +\n \"set_trace_func|sleep|split|sprintf|srand|String|stylesheet_link_tag|syscall|system|sub|sub!|test|\" +\n \"throw|trace_var|trap|untrace_var|atan2|cos|exp|frexp|ldexp|log|log10|sin|sqrt|tan|\" +\n \"render|javascript_include_tag|csrf_meta_tag|label_tag|text_field_tag|submit_tag|check_box_tag|\" +\n \"content_tag|radio_button_tag|text_area_tag|password_field_tag|hidden_field_tag|\" +\n \"fields_for|select_tag|options_for_select|options_from_collection_for_select|collection_select|\" +\n \"time_zone_select|select_date|select_time|select_datetime|date_select|time_select|datetime_select|\" +\n \"select_year|select_month|select_day|select_hour|select_minute|select_second|file_field_tag|\" +\n \"file_field|respond_to|skip_before_filter|around_filter|after_filter|verify|\" +\n \"protect_from_forgery|rescue_from|helper_method|redirect_to|before_filter|\" +\n \"send_data|send_file|validates_presence_of|validates_uniqueness_of|validates_length_of|\" +\n \"validates_format_of|validates_acceptance_of|validates_associated|validates_exclusion_of|\" +\n \"validates_inclusion_of|validates_numericality_of|validates_with|validates_each|\" +\n \"authenticate_or_request_with_http_basic|authenticate_or_request_with_http_digest|\" +\n \"filter_parameter_logging|match|get|post|resources|redirect|scope|assert_routing|\" +\n \"translate|localize|extract_locale_from_tld|caches_page|expire_page|caches_action|expire_action|\" +\n \"cache|expire_fragment|expire_cache_for|observe|cache_sweeper|\" +\n \"has_many|has_one|belongs_to|has_and_belongs_to_many\"\n );\n\n var keywords = (\n \"alias|and|BEGIN|begin|break|case|class|def|defined|do|else|elsif|END|end|ensure|\" +\n \"__FILE__|finally|for|gem|if|in|__LINE__|module|next|not|or|private|protected|public|\" +\n \"redo|rescue|retry|return|super|then|undef|unless|until|when|while|yield\"\n );\n\n var buildinConstants = (\n \"true|TRUE|false|FALSE|nil|NIL|ARGF|ARGV|DATA|ENV|RUBY_PLATFORM|RUBY_RELEASE_DATE|\" +\n \"RUBY_VERSION|STDERR|STDIN|STDOUT|TOPLEVEL_BINDING\"\n );\n\n var builtinVariables = (\n \"$DEBUG|$defout|$FILENAME|$LOAD_PATH|$SAFE|$stdin|$stdout|$stderr|$VERBOSE|\" +\n \"$!|root_url|flash|session|cookies|params|request|response|logger|self\"\n );\n\n var keywordMapper = this.$keywords = this.createKeywordMapper({\n \"keyword\": keywords,\n \"constant.language\": buildinConstants,\n \"variable.language\": builtinVariables,\n \"support.function\": builtinFunctions,\n \"invalid.deprecated\": \"debugger\" // TODO is this a remnant from js mode?\n }, \"identifier\");\n\n this.$rules = {\n \"start\" : [\n {\n token : \"comment\",\n regex : \"#.*$\"\n }, {\n token : \"comment\", // multi line comment\n regex : \"^=begin(?:$|\\\\s.*$)\",\n next : \"comment\"\n }, {\n token : \"string.regexp\",\n regex : \"[/](?:(?:\\\\[(?:\\\\\\\\]|[^\\\\]])+\\\\])|(?:\\\\\\\\/|[^\\\\]/]))*[/]\\\\w*\\\\s*(?=[).,;]|$)\"\n },\n\n [{\n regex: \"[{}]\", onMatch: function(val, state, stack) {\n this.next = val == \"{\" ? this.nextState : \"\";\n if (val == \"{\" && stack.length) {\n stack.unshift(\"start\", state);\n return \"paren.lparen\";\n }\n if (val == \"}\" && stack.length) {\n stack.shift();\n this.next = stack.shift();\n if (this.next.indexOf(\"string\") != -1)\n return \"paren.end\";\n }\n return val == \"{\" ? \"paren.lparen\" : \"paren.rparen\";\n },\n nextState: \"start\"\n }, {\n token : \"string.start\",\n regex : /\"/,\n push : [{\n token : \"constant.language.escape\",\n regex : /\\\\(?:[nsrtvfbae'\"\\\\]|c.|C-.|M-.(?:\\\\C-.)?|[0-7]{3}|x[\\da-fA-F]{2}|u[\\da-fA-F]{4})/\n }, {\n token : \"paren.start\",\n regex : /#{/,\n push : \"start\"\n }, {\n token : \"string.end\",\n regex : /\"/,\n next : \"pop\"\n }, {\n defaultToken: \"string\"\n }]\n }, {\n token : \"string.start\",\n regex : /`/,\n push : [{\n token : \"constant.language.escape\",\n regex : /\\\\(?:[nsrtvfbae'\"\\\\]|c.|C-.|M-.(?:\\\\C-.)?|[0-7]{3}|x[\\da-fA-F]{2}|u[\\da-fA-F]{4})/\n }, {\n token : \"paren.start\",\n regex : /#{/,\n push : \"start\"\n }, {\n token : \"string.end\",\n regex : /`/,\n next : \"pop\"\n }, {\n defaultToken: \"string\"\n }]\n }, {\n token : \"string.start\",\n regex : /'/,\n push : [{\n token : \"constant.language.escape\",\n regex : /\\\\['\\\\]/\n }, {\n token : \"string.end\",\n regex : /'/,\n next : \"pop\"\n }, {\n defaultToken: \"string\"\n }]\n }],\n\n {\n token : \"text\", // namespaces aren't symbols\n regex : \"::\"\n }, {\n token : \"variable.instance\", // instance variable\n regex : \"@{1,2}[a-zA-Z_\\\\d]+\"\n }, {\n token : \"support.class\", // class name\n regex : \"[A-Z][a-zA-Z_\\\\d]+\"\n },\n\n constantOtherSymbol,\n constantNumericHex,\n constantNumericFloat,\n\n {\n token : \"constant.language.boolean\",\n regex : \"(?:true|false)\\\\b\"\n }, {\n token : keywordMapper,\n regex : \"[a-zA-Z_$][a-zA-Z0-9_$]*\\\\b\"\n }, {\n token : \"punctuation.separator.key-value\",\n regex : \"=>\"\n }, {\n stateName: \"heredoc\",\n onMatch : function(value, currentState, stack) {\n var next = value[2] == '-' ? \"indentedHeredoc\" : \"heredoc\";\n var tokens = value.split(this.splitRegex);\n stack.push(next, tokens[3]);\n return [\n {type:\"constant\", value: tokens[1]},\n {type:\"string\", value: tokens[2]},\n {type:\"support.class\", value: tokens[3]},\n {type:\"string\", value: tokens[4]}\n ];\n },\n regex : \"(<<-?)(['\\\"`]?)([\\\\w]+)(['\\\"`]?)\",\n rules: {\n heredoc: [{\n onMatch: function(value, currentState, stack) {\n if (value === stack[1]) {\n stack.shift();\n stack.shift();\n this.next = stack[0] || \"start\";\n return \"support.class\";\n }\n this.next = \"\";\n return \"string\";\n },\n regex: \".*$\",\n next: \"start\"\n }],\n indentedHeredoc: [{\n token: \"string\",\n regex: \"^ +\"\n }, {\n onMatch: function(value, currentState, stack) {\n if (value === stack[1]) {\n stack.shift();\n stack.shift();\n this.next = stack[0] || \"start\";\n return \"support.class\";\n }\n this.next = \"\";\n return \"string\";\n },\n regex: \".*$\",\n next: \"start\"\n }]\n }\n }, {\n regex : \"$\",\n token : \"empty\",\n next : function(currentState, stack) {\n if (stack[0] === \"heredoc\" || stack[0] === \"indentedHeredoc\")\n return stack[0];\n return currentState;\n }\n }, {\n token : \"string.character\",\n regex : \"\\\\B\\\\?.\"\n }, {\n token : \"keyword.operator\",\n regex : \"!|\\\\$|%|&|\\\\*|\\\\-\\\\-|\\\\-|\\\\+\\\\+|\\\\+|~|===|==|=|!=|!==|<=|>=|<<=|>>=|>>>=|<>|<|>|!|&&|\\\\|\\\\||\\\\?\\\\:|\\\\*=|%=|\\\\+=|\\\\-=|&=|\\\\^=|\\\\b(?:in|instanceof|new|delete|typeof|void)\"\n }, {\n token : \"paren.lparen\",\n regex : \"[[({]\"\n }, {\n token : \"paren.rparen\",\n regex : \"[\\\\])}]\"\n }, {\n token : \"text\",\n regex : \"\\\\s+\"\n }\n ],\n \"comment\" : [\n {\n token : \"comment\", // closing comment\n regex : \"^=end(?:$|\\\\s.*$)\",\n next : \"start\"\n }, {\n token : \"comment\", // comment spanning whole line\n regex : \".+\"\n }\n ]\n };\n\n this.normalizeRules();\n};\n\noop.inherits(RubyHighlightRules, TextHighlightRules);\n\nexports.RubyHighlightRules = RubyHighlightRules;\n});\n\nace.define(\"ace/mode/matching_brace_outdent\",[\"require\",\"exports\",\"module\",\"ace/range\"], function(require, exports, module) {\n\"use strict\";\n\nvar Range = require(\"../range\").Range;\n\nvar MatchingBraceOutdent = function() {};\n\n(function() {\n\n this.checkOutdent = function(line, input) {\n if (! /^\\s+$/.test(line))\n return false;\n\n return /^\\s*\\}/.test(input);\n };\n\n this.autoOutdent = function(doc, row) {\n var line = doc.getLine(row);\n var match = line.match(/^(\\s*\\})/);\n\n if (!match) return 0;\n\n var column = match[1].length;\n var openBracePos = doc.findMatchingBracket({row: row, column: column});\n\n if (!openBracePos || openBracePos.row == row) return 0;\n\n var indent = this.$getIndent(doc.getLine(openBracePos.row));\n doc.replace(new Range(row, 0, row, column-1), indent);\n };\n\n this.$getIndent = function(line) {\n return line.match(/^\\s*/)[0];\n };\n\n}).call(MatchingBraceOutdent.prototype);\n\nexports.MatchingBraceOutdent = MatchingBraceOutdent;\n});\n\nace.define(\"ace/mode/folding/coffee\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/folding/fold_mode\",\"ace/range\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\nvar Range = require(\"../../range\").Range;\n\nvar FoldMode = exports.FoldMode = function() {};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n\n this.getFoldWidgetRange = function(session, foldStyle, row) {\n var range = this.indentationBlock(session, row);\n if (range)\n return range;\n\n var re = /\\S/;\n var line = session.getLine(row);\n var startLevel = line.search(re);\n if (startLevel == -1 || line[startLevel] != \"#\")\n return;\n\n var startColumn = line.length;\n var maxRow = session.getLength();\n var startRow = row;\n var endRow = row;\n\n while (++row < maxRow) {\n line = session.getLine(row);\n var level = line.search(re);\n\n if (level == -1)\n continue;\n\n if (line[level] != \"#\")\n break;\n\n endRow = row;\n }\n\n if (endRow > startRow) {\n var endColumn = session.getLine(endRow).length;\n return new Range(startRow, startColumn, endRow, endColumn);\n }\n };\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n var indent = line.search(/\\S/);\n var next = session.getLine(row + 1);\n var prev = session.getLine(row - 1);\n var prevIndent = prev.search(/\\S/);\n var nextIndent = next.search(/\\S/);\n\n if (indent == -1) {\n session.foldWidgets[row - 1] = prevIndent!= -1 && prevIndent < nextIndent ? \"start\" : \"\";\n return \"\";\n }\n if (prevIndent == -1) {\n if (indent == nextIndent && line[indent] == \"#\" && next[indent] == \"#\") {\n session.foldWidgets[row - 1] = \"\";\n session.foldWidgets[row + 1] = \"\";\n return \"start\";\n }\n } else if (prevIndent == indent && line[indent] == \"#\" && prev[indent] == \"#\") {\n if (session.getLine(row - 2).search(/\\S/) == -1) {\n session.foldWidgets[row - 1] = \"start\";\n session.foldWidgets[row + 1] = \"\";\n return \"\";\n }\n }\n\n if (prevIndent!= -1 && prevIndent < indent)\n session.foldWidgets[row - 1] = \"start\";\n else\n session.foldWidgets[row - 1] = \"\";\n\n if (indent < nextIndent)\n return \"start\";\n else\n return \"\";\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/ruby\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/ruby_highlight_rules\",\"ace/mode/matching_brace_outdent\",\"ace/range\",\"ace/mode/behaviour/cstyle\",\"ace/mode/folding/coffee\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar RubyHighlightRules = require(\"./ruby_highlight_rules\").RubyHighlightRules;\nvar MatchingBraceOutdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\nvar Range = require(\"../range\").Range;\nvar CstyleBehaviour = require(\"./behaviour/cstyle\").CstyleBehaviour;\nvar FoldMode = require(\"./folding/coffee\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = RubyHighlightRules;\n this.$outdent = new MatchingBraceOutdent();\n this.$behaviour = new CstyleBehaviour();\n this.foldingRules = new FoldMode();\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n\n this.lineCommentStart = \"#\";\n\n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n\n var tokenizedLine = this.getTokenizer().getLineTokens(line, state);\n var tokens = tokenizedLine.tokens;\n\n if (tokens.length && tokens[tokens.length-1].type == \"comment\") {\n return indent;\n }\n\n if (state == \"start\") {\n var match = line.match(/^.*[\\{\\(\\[]\\s*$/);\n var startingClassOrMethod = line.match(/^\\s*(class|def|module)\\s.*$/);\n var startingDoBlock = line.match(/.*do(\\s*|\\s+\\|.*\\|\\s*)$/);\n var startingConditional = line.match(/^\\s*(if|else|when)\\s*/);\n if (match || startingClassOrMethod || startingDoBlock || startingConditional) {\n indent += tab;\n }\n }\n\n return indent;\n };\n\n this.checkOutdent = function(state, line, input) {\n return /^\\s+(end|else)$/.test(line + input) || this.$outdent.checkOutdent(line, input);\n };\n\n this.autoOutdent = function(state, session, row) {\n var line = session.getLine(row);\n if (/}/.test(line))\n return this.$outdent.autoOutdent(session, row);\n var indent = this.$getIndent(line);\n var prevLine = session.getLine(row - 1);\n var prevIndent = this.$getIndent(prevLine);\n var tab = session.getTabString();\n if (prevIndent.length <= indent.length) {\n if (indent.slice(-tab.length) == tab)\n session.remove(new Range(row, indent.length-tab.length, row, indent.length));\n }\n };\n\n this.$id = \"ace/mode/ruby\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/ruby\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file25 := &embedded.EmbeddedFile{ Filename: "2b925862cf75380c5db0ea4e9f525eaa.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/livescript\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText =undefined;\nexports.scope = \"livescript\";\n\n}); (function() {\n ace.require([\"ace/snippets/livescript\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file26 := &embedded.EmbeddedFile{ Filename: "2f0a14537d449d02e05ac0d76249c830.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/theme/chaos\",[\"require\",\"exports\",\"module\",\"ace/lib/dom\"], function(require, exports, module) {\n\nexports.isDark = true;\nexports.cssClass = \"ace-chaos\";\nexports.cssText = \".ace-chaos .ace_gutter {\\\nbackground: #141414;\\\ncolor: #595959;\\\nborder-right: 1px solid #282828;\\\n}\\\n.ace-chaos .ace_gutter-cell.ace_warning {\\\nbackground-image: none;\\\nbackground: #FC0;\\\nborder-left: none;\\\npadding-left: 0;\\\ncolor: #000;\\\n}\\\n.ace-chaos .ace_gutter-cell.ace_error {\\\nbackground-position: -6px center;\\\nbackground-image: none;\\\nbackground: #F10;\\\nborder-left: none;\\\npadding-left: 0;\\\ncolor: #000;\\\n}\\\n.ace-chaos .ace_print-margin {\\\nborder-left: 1px solid #555;\\\nright: 0;\\\nbackground: #1D1D1D;\\\n}\\\n.ace-chaos {\\\nbackground-color: #161616;\\\ncolor: #E6E1DC;\\\n}\\\n.ace-chaos .ace_cursor {\\\nborder-left: 2px solid #FFFFFF;\\\n}\\\n.ace-chaos .ace_cursor.ace_overwrite {\\\nborder-left: 0px;\\\nborder-bottom: 1px solid #FFFFFF;\\\n}\\\n.ace-chaos .ace_marker-layer .ace_selection {\\\nbackground: #494836;\\\n}\\\n.ace-chaos .ace_marker-layer .ace_step {\\\nbackground: rgb(198, 219, 174);\\\n}\\\n.ace-chaos .ace_marker-layer .ace_bracket {\\\nmargin: -1px 0 0 -1px;\\\nborder: 1px solid #FCE94F;\\\n}\\\n.ace-chaos .ace_marker-layer .ace_active-line {\\\nbackground: #333;\\\n}\\\n.ace-chaos .ace_gutter-active-line {\\\nbackground-color: #222;\\\n}\\\n.ace-chaos .ace_invisible {\\\ncolor: #404040;\\\n}\\\n.ace-chaos .ace_keyword {\\\ncolor:#00698F;\\\n}\\\n.ace-chaos .ace_keyword.ace_operator {\\\ncolor:#FF308F;\\\n}\\\n.ace-chaos .ace_constant {\\\ncolor:#1EDAFB;\\\n}\\\n.ace-chaos .ace_constant.ace_language {\\\ncolor:#FDC251;\\\n}\\\n.ace-chaos .ace_constant.ace_library {\\\ncolor:#8DFF0A;\\\n}\\\n.ace-chaos .ace_constant.ace_numeric {\\\ncolor:#58C554;\\\n}\\\n.ace-chaos .ace_invalid {\\\ncolor:#FFFFFF;\\\nbackground-color:#990000;\\\n}\\\n.ace-chaos .ace_invalid.ace_deprecated {\\\ncolor:#FFFFFF;\\\nbackground-color:#990000;\\\n}\\\n.ace-chaos .ace_support {\\\ncolor: #999;\\\n}\\\n.ace-chaos .ace_support.ace_function {\\\ncolor:#00AEEF;\\\n}\\\n.ace-chaos .ace_function {\\\ncolor:#00AEEF;\\\n}\\\n.ace-chaos .ace_string {\\\ncolor:#58C554;\\\n}\\\n.ace-chaos .ace_comment {\\\ncolor:#555;\\\nfont-style:italic;\\\npadding-bottom: 0px;\\\n}\\\n.ace-chaos .ace_variable {\\\ncolor:#997744;\\\n}\\\n.ace-chaos .ace_meta.ace_tag {\\\ncolor:#BE53E6;\\\n}\\\n.ace-chaos .ace_entity.ace_other.ace_attribute-name {\\\ncolor:#FFFF89;\\\n}\\\n.ace-chaos .ace_markup.ace_underline {\\\ntext-decoration: underline;\\\n}\\\n.ace-chaos .ace_fold-widget {\\\ntext-align: center;\\\n}\\\n.ace-chaos .ace_fold-widget:hover {\\\ncolor: #777;\\\n}\\\n.ace-chaos .ace_fold-widget.ace_start,\\\n.ace-chaos .ace_fold-widget.ace_end,\\\n.ace-chaos .ace_fold-widget.ace_closed{\\\nbackground: none;\\\nborder: none;\\\nbox-shadow: none;\\\n}\\\n.ace-chaos .ace_fold-widget.ace_start:after {\\\ncontent: '▾'\\\n}\\\n.ace-chaos .ace_fold-widget.ace_end:after {\\\ncontent: '▴'\\\n}\\\n.ace-chaos .ace_fold-widget.ace_closed:after {\\\ncontent: '‣'\\\n}\\\n.ace-chaos .ace_indent-guide {\\\nborder-right:1px dotted #333;\\\nmargin-right:-1px;\\\n}\\\n.ace-chaos .ace_fold { \\\nbackground: #222; \\\nborder-radius: 3px; \\\ncolor: #7AF; \\\nborder: none; \\\n}\\\n.ace-chaos .ace_fold:hover {\\\nbackground: #CCC; \\\ncolor: #000;\\\n}\\\n\";\n\nvar dom = require(\"../lib/dom\");\ndom.importCssString(exports.cssText, exports.cssClass);\n\n}); (function() {\n ace.require([\"ace/theme/chaos\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file27 := &embedded.EmbeddedFile{ Filename: "2f3b06310488c10c780b7d3ddd5978d2.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/doc_comment_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar DocCommentHighlightRules = function() {\n this.$rules = {\n \"start\" : [ {\n token : \"comment.doc.tag\",\n regex : \"@[\\\\w\\\\d_]+\" // TODO: fix email addresses\n }, \n DocCommentHighlightRules.getTagRule(),\n {\n defaultToken : \"comment.doc\",\n caseInsensitive: true\n }]\n };\n};\n\noop.inherits(DocCommentHighlightRules, TextHighlightRules);\n\nDocCommentHighlightRules.getTagRule = function(start) {\n return {\n token : \"comment.doc.tag.storage.type\",\n regex : \"\\\\b(?:TODO|FIXME|XXX|HACK)\\\\b\"\n };\n};\n\nDocCommentHighlightRules.getStartRule = function(start) {\n return {\n token : \"comment.doc\", // doc comment\n regex : \"\\\\/\\\\*(?=\\\\*)\",\n next : start\n };\n};\n\nDocCommentHighlightRules.getEndRule = function (start) {\n return {\n token : \"comment.doc\", // closing comment\n regex : \"\\\\*\\\\/\",\n next : start\n };\n};\n\n\nexports.DocCommentHighlightRules = DocCommentHighlightRules;\n\n});\n\nace.define(\"ace/mode/c_cpp_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/doc_comment_highlight_rules\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar DocCommentHighlightRules = require(\"./doc_comment_highlight_rules\").DocCommentHighlightRules;\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar cFunctions = exports.cFunctions = \"\\\\b(?:hypot(?:f|l)?|s(?:scanf|ystem|nprintf|ca(?:nf|lb(?:n(?:f|l)?|ln(?:f|l)?))|i(?:n(?:h(?:f|l)?|f|l)?|gn(?:al|bit))|tr(?:s(?:tr|pn)|nc(?:py|at|mp)|c(?:spn|hr|oll|py|at|mp)|to(?:imax|d|u(?:l(?:l)?|max)|k|f|l(?:d|l)?)|error|pbrk|ftime|len|rchr|xfrm)|printf|et(?:jmp|vbuf|locale|buf)|qrt(?:f|l)?|w(?:scanf|printf)|rand)|n(?:e(?:arbyint(?:f|l)?|xt(?:toward(?:f|l)?|after(?:f|l)?))|an(?:f|l)?)|c(?:s(?:in(?:h(?:f|l)?|f|l)?|qrt(?:f|l)?)|cos(?:h(?:f)?|f|l)?|imag(?:f|l)?|t(?:ime|an(?:h(?:f|l)?|f|l)?)|o(?:s(?:h(?:f|l)?|f|l)?|nj(?:f|l)?|pysign(?:f|l)?)|p(?:ow(?:f|l)?|roj(?:f|l)?)|e(?:il(?:f|l)?|xp(?:f|l)?)|l(?:o(?:ck|g(?:f|l)?)|earerr)|a(?:sin(?:h(?:f|l)?|f|l)?|cos(?:h(?:f|l)?|f|l)?|tan(?:h(?:f|l)?|f|l)?|lloc|rg(?:f|l)?|bs(?:f|l)?)|real(?:f|l)?|brt(?:f|l)?)|t(?:ime|o(?:upper|lower)|an(?:h(?:f|l)?|f|l)?|runc(?:f|l)?|gamma(?:f|l)?|mp(?:nam|file))|i(?:s(?:space|n(?:ormal|an)|cntrl|inf|digit|u(?:nordered|pper)|p(?:unct|rint)|finite|w(?:space|c(?:ntrl|type)|digit|upper|p(?:unct|rint)|lower|al(?:num|pha)|graph|xdigit|blank)|l(?:ower|ess(?:equal|greater)?)|al(?:num|pha)|gr(?:eater(?:equal)?|aph)|xdigit|blank)|logb(?:f|l)?|max(?:div|abs))|di(?:v|fftime)|_Exit|unget(?:c|wc)|p(?:ow(?:f|l)?|ut(?:s|c(?:har)?|wc(?:har)?)|error|rintf)|e(?:rf(?:c(?:f|l)?|f|l)?|x(?:it|p(?:2(?:f|l)?|f|l|m1(?:f|l)?)?))|v(?:s(?:scanf|nprintf|canf|printf|w(?:scanf|printf))|printf|f(?:scanf|printf|w(?:scanf|printf))|w(?:scanf|printf)|a_(?:start|copy|end|arg))|qsort|f(?:s(?:canf|e(?:tpos|ek))|close|tell|open|dim(?:f|l)?|p(?:classify|ut(?:s|c|w(?:s|c))|rintf)|e(?:holdexcept|set(?:e(?:nv|xceptflag)|round)|clearexcept|testexcept|of|updateenv|r(?:aiseexcept|ror)|get(?:e(?:nv|xceptflag)|round))|flush|w(?:scanf|ide|printf|rite)|loor(?:f|l)?|abs(?:f|l)?|get(?:s|c|pos|w(?:s|c))|re(?:open|e|ad|xp(?:f|l)?)|m(?:in(?:f|l)?|od(?:f|l)?|a(?:f|l|x(?:f|l)?)?))|l(?:d(?:iv|exp(?:f|l)?)|o(?:ngjmp|cal(?:time|econv)|g(?:1(?:p(?:f|l)?|0(?:f|l)?)|2(?:f|l)?|f|l|b(?:f|l)?)?)|abs|l(?:div|abs|r(?:int(?:f|l)?|ound(?:f|l)?))|r(?:int(?:f|l)?|ound(?:f|l)?)|gamma(?:f|l)?)|w(?:scanf|c(?:s(?:s(?:tr|pn)|nc(?:py|at|mp)|c(?:spn|hr|oll|py|at|mp)|to(?:imax|d|u(?:l(?:l)?|max)|k|f|l(?:d|l)?|mbs)|pbrk|ftime|len|r(?:chr|tombs)|xfrm)|to(?:b|mb)|rtomb)|printf|mem(?:set|c(?:hr|py|mp)|move))|a(?:s(?:sert|ctime|in(?:h(?:f|l)?|f|l)?)|cos(?:h(?:f|l)?|f|l)?|t(?:o(?:i|f|l(?:l)?)|exit|an(?:h(?:f|l)?|2(?:f|l)?|f|l)?)|b(?:s|ort))|g(?:et(?:s|c(?:har)?|env|wc(?:har)?)|mtime)|r(?:int(?:f|l)?|ound(?:f|l)?|e(?:name|alloc|wind|m(?:ove|quo(?:f|l)?|ainder(?:f|l)?))|a(?:nd|ise))|b(?:search|towc)|m(?:odf(?:f|l)?|em(?:set|c(?:hr|py|mp)|move)|ktime|alloc|b(?:s(?:init|towcs|rtowcs)|towc|len|r(?:towc|len))))\\\\b\";\n\nvar c_cppHighlightRules = function() {\n\n var keywordControls = (\n \"break|case|continue|default|do|else|for|goto|if|_Pragma|\" +\n \"return|switch|while|catch|operator|try|throw|using\"\n );\n \n var storageType = (\n \"asm|__asm__|auto|bool|_Bool|char|_Complex|double|enum|float|\" +\n \"_Imaginary|int|long|short|signed|struct|typedef|union|unsigned|void|\" +\n \"class|wchar_t|template|char16_t|char32_t\"\n );\n\n var storageModifiers = (\n \"const|extern|register|restrict|static|volatile|inline|private|\" +\n \"protected|public|friend|explicit|virtual|export|mutable|typename|\" +\n \"constexpr|new|delete|alignas|alignof|decltype|noexcept|thread_local\"\n );\n\n var keywordOperators = (\n \"and|and_eq|bitand|bitor|compl|not|not_eq|or|or_eq|typeid|xor|xor_eq|\" +\n \"const_cast|dynamic_cast|reinterpret_cast|static_cast|sizeof|namespace\"\n );\n\n var builtinConstants = (\n \"NULL|true|false|TRUE|FALSE|nullptr\"\n );\n\n var keywordMapper = this.$keywords = this.createKeywordMapper({\n \"keyword.control\" : keywordControls,\n \"storage.type\" : storageType,\n \"storage.modifier\" : storageModifiers,\n \"keyword.operator\" : keywordOperators,\n \"variable.language\": \"this\",\n \"constant.language\": builtinConstants\n }, \"identifier\");\n\n var identifierRe = \"[a-zA-Z\\\\$_\\u00a1-\\uffff][a-zA-Z\\\\d\\\\$_\\u00a1-\\uffff]*\\\\b\";\n var escapeRe = /\\\\(?:['\"?\\\\abfnrtv]|[0-7]{1,3}|x[a-fA-F\\d]{2}|u[a-fA-F\\d]{4}U[a-fA-F\\d]{8}|.)/.source;\n var formatRe = \"%\"\n + /(\\d+\\$)?/.source // field (argument #)\n + /[#0\\- +']*/.source // flags\n + /[,;:_]?/.source // separator character (AltiVec)\n + /((-?\\d+)|\\*(-?\\d+\\$)?)?/.source // minimum field width\n + /(\\.((-?\\d+)|\\*(-?\\d+\\$)?)?)?/.source // precision\n + /(hh|h|ll|l|j|t|z|q|L|vh|vl|v|hv|hl)?/.source // length modifier\n + /(\\[[^\"\\]]+\\]|[diouxXDOUeEfFgGaACcSspn%])/.source; // conversion type\n\n this.$rules = { \n \"start\" : [\n {\n token : \"comment\",\n regex : \"//$\",\n next : \"start\"\n }, {\n token : \"comment\",\n regex : \"//\",\n next : \"singleLineComment\"\n },\n DocCommentHighlightRules.getStartRule(\"doc-start\"),\n {\n token : \"comment\", // multi line comment\n regex : \"\\\\/\\\\*\",\n next : \"comment\"\n }, {\n token : \"string\", // character\n regex : \"'(?:\" + escapeRe + \"|.)?'\"\n }, {\n token : \"string.start\",\n regex : '\"', \n stateName: \"qqstring\",\n next: [\n { token: \"string\", regex: /\\\\\\s*$/, next: \"qqstring\" },\n { token: \"constant.language.escape\", regex: escapeRe },\n { token: \"constant.language.escape\", regex: formatRe },\n { token: \"string.end\", regex: '\"|$', next: \"start\" },\n { defaultToken: \"string\"}\n ]\n }, {\n token : \"string.start\",\n regex : 'R\"\\\\(', \n stateName: \"rawString\",\n next: [\n { token: \"string.end\", regex: '\\\\)\"', next: \"start\" },\n { defaultToken: \"string\"}\n ]\n }, {\n token : \"constant.numeric\", // hex\n regex : \"0[xX][0-9a-fA-F]+(L|l|UL|ul|u|U|F|f|ll|LL|ull|ULL)?\\\\b\"\n }, {\n token : \"constant.numeric\", // float\n regex : \"[+-]?\\\\d+(?:(?:\\\\.\\\\d*)?(?:[eE][+-]?\\\\d+)?)?(L|l|UL|ul|u|U|F|f|ll|LL|ull|ULL)?\\\\b\"\n }, {\n token : \"keyword\", // pre-compiler directives\n regex : \"#\\\\s*(?:include|import|pragma|line|define|undef)\\\\b\",\n next : \"directive\"\n }, {\n token : \"keyword\", // special case pre-compiler directive\n regex : \"#\\\\s*(?:endif|if|ifdef|else|elif|ifndef)\\\\b\"\n }, {\n token : \"support.function.C99.c\",\n regex : cFunctions\n }, {\n token : keywordMapper,\n regex : \"[a-zA-Z_$][a-zA-Z0-9_$]*\"\n }, {\n token : \"keyword.operator\",\n regex : /--|\\+\\+|<<=|>>=|>>>=|<>|&&|\\|\\||\\?:|[*%\\/+\\-&\\^|~!<>=]=?/\n }, {\n token : \"punctuation.operator\",\n regex : \"\\\\?|\\\\:|\\\\,|\\\\;|\\\\.\"\n }, {\n token : \"paren.lparen\",\n regex : \"[[({]\"\n }, {\n token : \"paren.rparen\",\n regex : \"[\\\\])}]\"\n }, {\n token : \"text\",\n regex : \"\\\\s+\"\n }\n ],\n \"comment\" : [\n {\n token : \"comment\", // closing comment\n regex : \"\\\\*\\\\/\",\n next : \"start\"\n }, {\n defaultToken : \"comment\"\n }\n ],\n \"singleLineComment\" : [\n {\n token : \"comment\",\n regex : /\\\\$/,\n next : \"singleLineComment\"\n }, {\n token : \"comment\",\n regex : /$/,\n next : \"start\"\n }, {\n defaultToken: \"comment\"\n }\n ],\n \"directive\" : [\n {\n token : \"constant.other.multiline\",\n regex : /\\\\/\n },\n {\n token : \"constant.other.multiline\",\n regex : /.*\\\\/\n },\n {\n token : \"constant.other\",\n regex : \"\\\\s*<.+?>\",\n next : \"start\"\n },\n {\n token : \"constant.other\", // single line\n regex : '\\\\s*[\"](?:(?:\\\\\\\\.)|(?:[^\"\\\\\\\\]))*?[\"]',\n next : \"start\"\n }, \n {\n token : \"constant.other\", // single line\n regex : \"\\\\s*['](?:(?:\\\\\\\\.)|(?:[^'\\\\\\\\]))*?[']\",\n next : \"start\"\n },\n {\n token : \"constant.other\",\n regex : /[^\\\\\\/]+/,\n next : \"start\"\n }\n ]\n };\n\n this.embedRules(DocCommentHighlightRules, \"doc-\",\n [ DocCommentHighlightRules.getEndRule(\"start\") ]);\n this.normalizeRules();\n};\n\noop.inherits(c_cppHighlightRules, TextHighlightRules);\n\nexports.c_cppHighlightRules = c_cppHighlightRules;\n});\n\nace.define(\"ace/mode/matching_brace_outdent\",[\"require\",\"exports\",\"module\",\"ace/range\"], function(require, exports, module) {\n\"use strict\";\n\nvar Range = require(\"../range\").Range;\n\nvar MatchingBraceOutdent = function() {};\n\n(function() {\n\n this.checkOutdent = function(line, input) {\n if (! /^\\s+$/.test(line))\n return false;\n\n return /^\\s*\\}/.test(input);\n };\n\n this.autoOutdent = function(doc, row) {\n var line = doc.getLine(row);\n var match = line.match(/^(\\s*\\})/);\n\n if (!match) return 0;\n\n var column = match[1].length;\n var openBracePos = doc.findMatchingBracket({row: row, column: column});\n\n if (!openBracePos || openBracePos.row == row) return 0;\n\n var indent = this.$getIndent(doc.getLine(openBracePos.row));\n doc.replace(new Range(row, 0, row, column-1), indent);\n };\n\n this.$getIndent = function(line) {\n return line.match(/^\\s*/)[0];\n };\n\n}).call(MatchingBraceOutdent.prototype);\n\nexports.MatchingBraceOutdent = MatchingBraceOutdent;\n});\n\nace.define(\"ace/mode/folding/cstyle\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/range\",\"ace/mode/folding/fold_mode\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Range = require(\"../../range\").Range;\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function(commentRegex) {\n if (commentRegex) {\n this.foldingStartMarker = new RegExp(\n this.foldingStartMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.start)\n );\n this.foldingStopMarker = new RegExp(\n this.foldingStopMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.end)\n );\n }\n};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n \n this.foldingStartMarker = /([\\{\\[\\(])[^\\}\\]\\)]*$|^\\s*(\\/\\*)/;\n this.foldingStopMarker = /^[^\\[\\{\\(]*([\\}\\]\\)])|^[\\s\\*]*(\\*\\/)/;\n this.singleLineBlockCommentRe= /^\\s*(\\/\\*).*\\*\\/\\s*$/;\n this.tripleStarBlockCommentRe = /^\\s*(\\/\\*\\*\\*).*\\*\\/\\s*$/;\n this.startRegionRe = /^\\s*(\\/\\*|\\/\\/)#?region\\b/;\n this._getFoldWidgetBase = this.getFoldWidget;\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n \n if (this.singleLineBlockCommentRe.test(line)) {\n if (!this.startRegionRe.test(line) && !this.tripleStarBlockCommentRe.test(line))\n return \"\";\n }\n \n var fw = this._getFoldWidgetBase(session, foldStyle, row);\n \n if (!fw && this.startRegionRe.test(line))\n return \"start\"; // lineCommentRegionStart\n \n return fw;\n };\n\n this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {\n var line = session.getLine(row);\n \n if (this.startRegionRe.test(line))\n return this.getCommentRegionBlock(session, line, row);\n \n var match = line.match(this.foldingStartMarker);\n if (match) {\n var i = match.index;\n\n if (match[1])\n return this.openingBracketBlock(session, match[1], row, i);\n \n var range = session.getCommentFoldRange(row, i + match[0].length, 1);\n \n if (range && !range.isMultiLine()) {\n if (forceMultiline) {\n range = this.getSectionRange(session, row);\n } else if (foldStyle != \"all\")\n range = null;\n }\n \n return range;\n }\n\n if (foldStyle === \"markbegin\")\n return;\n\n var match = line.match(this.foldingStopMarker);\n if (match) {\n var i = match.index + match[0].length;\n\n if (match[1])\n return this.closingBracketBlock(session, match[1], row, i);\n\n return session.getCommentFoldRange(row, i, -1);\n }\n };\n \n this.getSectionRange = function(session, row) {\n var line = session.getLine(row);\n var startIndent = line.search(/\\S/);\n var startRow = row;\n var startColumn = line.length;\n row = row + 1;\n var endRow = row;\n var maxRow = session.getLength();\n while (++row < maxRow) {\n line = session.getLine(row);\n var indent = line.search(/\\S/);\n if (indent === -1)\n continue;\n if (startIndent > indent)\n break;\n var subRange = this.getFoldWidgetRange(session, \"all\", row);\n \n if (subRange) {\n if (subRange.start.row <= startRow) {\n break;\n } else if (subRange.isMultiLine()) {\n row = subRange.end.row;\n } else if (startIndent == indent) {\n break;\n }\n }\n endRow = row;\n }\n \n return new Range(startRow, startColumn, endRow, session.getLine(endRow).length);\n };\n this.getCommentRegionBlock = function(session, line, row) {\n var startColumn = line.search(/\\s*$/);\n var maxRow = session.getLength();\n var startRow = row;\n \n var re = /^\\s*(?:\\/\\*|\\/\\/|--)#?(end)?region\\b/;\n var depth = 1;\n while (++row < maxRow) {\n line = session.getLine(row);\n var m = re.exec(line);\n if (!m) continue;\n if (m[1]) depth--;\n else depth++;\n\n if (!depth) break;\n }\n\n var endRow = row;\n if (endRow > startRow) {\n return new Range(startRow, startColumn, endRow, line.length);\n }\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/c_cpp\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/c_cpp_highlight_rules\",\"ace/mode/matching_brace_outdent\",\"ace/range\",\"ace/mode/behaviour/cstyle\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar c_cppHighlightRules = require(\"./c_cpp_highlight_rules\").c_cppHighlightRules;\nvar MatchingBraceOutdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\nvar Range = require(\"../range\").Range;\nvar CstyleBehaviour = require(\"./behaviour/cstyle\").CstyleBehaviour;\nvar CStyleFoldMode = require(\"./folding/cstyle\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = c_cppHighlightRules;\n\n this.$outdent = new MatchingBraceOutdent();\n this.$behaviour = new CstyleBehaviour();\n\n this.foldingRules = new CStyleFoldMode();\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.lineCommentStart = \"//\";\n this.blockComment = {start: \"/*\", end: \"*/\"};\n\n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n\n var tokenizedLine = this.getTokenizer().getLineTokens(line, state);\n var tokens = tokenizedLine.tokens;\n var endState = tokenizedLine.state;\n\n if (tokens.length && tokens[tokens.length-1].type == \"comment\") {\n return indent;\n }\n\n if (state == \"start\") {\n var match = line.match(/^.*[\\{\\(\\[]\\s*$/);\n if (match) {\n indent += tab;\n }\n } else if (state == \"doc-start\") {\n if (endState == \"start\") {\n return \"\";\n }\n var match = line.match(/^\\s*(\\/?)\\*/);\n if (match) {\n if (match[1]) {\n indent += \" \";\n }\n indent += \"* \";\n }\n }\n\n return indent;\n };\n\n this.checkOutdent = function(state, line, input) {\n return this.$outdent.checkOutdent(line, input);\n };\n\n this.autoOutdent = function(state, doc, row) {\n this.$outdent.autoOutdent(doc, row);\n };\n\n this.$id = \"ace/mode/c_cpp\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n});\n\nace.define(\"ace/mode/protobuf_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n \"use strict\";\n\n var oop = require(\"../lib/oop\");\n var TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\n var ProtobufHighlightRules = function() {\n\n var builtinTypes = \"double|float|int32|int64|uint32|uint64|sint32|\" +\n \"sint64|fixed32|fixed64|sfixed32|sfixed64|bool|\" +\n \"string|bytes\";\n var keywordDeclaration = \"message|required|optional|repeated|package|\" +\n \"import|option|enum\";\n\n var keywordMapper = this.createKeywordMapper({\n \"keyword.declaration.protobuf\": keywordDeclaration,\n \"support.type\": builtinTypes\n }, \"identifier\");\n\n this.$rules = {\n \"start\": [{\n token: \"comment\",\n regex: /\\/\\/.*$/\n }, {\n token: \"comment\",\n regex: /\\/\\*/,\n next: \"comment\"\n }, {\n token: \"constant\",\n regex: \"<[^>]+>\"\n }, {\n regex: \"=\",\n token: \"keyword.operator.assignment.protobuf\"\n }, {\n token : \"string\", // single line\n regex : '[\"](?:(?:\\\\\\\\.)|(?:[^\"\\\\\\\\]))*?[\"]'\n }, {\n token : \"string\", // single line\n regex : '[\\'](?:(?:\\\\\\\\.)|(?:[^\\'\\\\\\\\]))*?[\\']'\n }, {\n token: \"constant.numeric\", // hex\n regex: \"0[xX][0-9a-fA-F]+\\\\b\"\n }, {\n token: \"constant.numeric\", // float\n regex: \"[+-]?\\\\d+(?:(?:\\\\.\\\\d*)?(?:[eE][+-]?\\\\d+)?)?\\\\b\"\n }, {\n token: keywordMapper,\n regex: \"[a-zA-Z_$][a-zA-Z0-9_$]*\\\\b\"\n }],\n \"comment\": [{\n token : \"comment\", // closing comment\n regex : \"\\\\*\\\\/\",\n next : \"start\"\n }, {\n defaultToken : \"comment\"\n }]\n };\n\n this.normalizeRules();\n };\n\n oop.inherits(ProtobufHighlightRules, TextHighlightRules);\n\n exports.ProtobufHighlightRules = ProtobufHighlightRules;\n});\n\nace.define(\"ace/mode/protobuf\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/c_cpp\",\"ace/mode/protobuf_highlight_rules\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar CMode = require(\"./c_cpp\").Mode;\nvar ProtobufHighlightRules = require(\"./protobuf_highlight_rules\").ProtobufHighlightRules;\nvar CStyleFoldMode = require(\"./folding/cstyle\").FoldMode;\n\nvar Mode = function() {\n CMode.call(this);\n this.foldingRules = new CStyleFoldMode();\n this.HighlightRules = ProtobufHighlightRules;\n};\noop.inherits(Mode, CMode);\n\n(function() {\n this.lineCommentStart = \"//\";\n this.blockComment = {start: \"/*\", end: \"*/\"};\n this.$id = \"ace/mode/protobuf\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/protobuf\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file28 := &embedded.EmbeddedFile{ Filename: "2f6f1f6753d430190cb38411a9112f08.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/theme/textmate\",[\"require\",\"exports\",\"module\",\"ace/lib/dom\"], function(require, exports, module) {\n\"use strict\";\n\nexports.isDark = false;\nexports.cssClass = \"ace-tm\";\nexports.cssText = \".ace-tm .ace_gutter {\\\nbackground: #f0f0f0;\\\ncolor: #333;\\\n}\\\n.ace-tm .ace_print-margin {\\\nwidth: 1px;\\\nbackground: #e8e8e8;\\\n}\\\n.ace-tm .ace_fold {\\\nbackground-color: #6B72E6;\\\n}\\\n.ace-tm {\\\nbackground-color: #FFFFFF;\\\ncolor: black;\\\n}\\\n.ace-tm .ace_cursor {\\\ncolor: black;\\\n}\\\n.ace-tm .ace_invisible {\\\ncolor: rgb(191, 191, 191);\\\n}\\\n.ace-tm .ace_storage,\\\n.ace-tm .ace_keyword {\\\ncolor: blue;\\\n}\\\n.ace-tm .ace_constant {\\\ncolor: rgb(197, 6, 11);\\\n}\\\n.ace-tm .ace_constant.ace_buildin {\\\ncolor: rgb(88, 72, 246);\\\n}\\\n.ace-tm .ace_constant.ace_language {\\\ncolor: rgb(88, 92, 246);\\\n}\\\n.ace-tm .ace_constant.ace_library {\\\ncolor: rgb(6, 150, 14);\\\n}\\\n.ace-tm .ace_invalid {\\\nbackground-color: rgba(255, 0, 0, 0.1);\\\ncolor: red;\\\n}\\\n.ace-tm .ace_support.ace_function {\\\ncolor: rgb(60, 76, 114);\\\n}\\\n.ace-tm .ace_support.ace_constant {\\\ncolor: rgb(6, 150, 14);\\\n}\\\n.ace-tm .ace_support.ace_type,\\\n.ace-tm .ace_support.ace_class {\\\ncolor: rgb(109, 121, 222);\\\n}\\\n.ace-tm .ace_keyword.ace_operator {\\\ncolor: rgb(104, 118, 135);\\\n}\\\n.ace-tm .ace_string {\\\ncolor: rgb(3, 106, 7);\\\n}\\\n.ace-tm .ace_comment {\\\ncolor: rgb(76, 136, 107);\\\n}\\\n.ace-tm .ace_comment.ace_doc {\\\ncolor: rgb(0, 102, 255);\\\n}\\\n.ace-tm .ace_comment.ace_doc.ace_tag {\\\ncolor: rgb(128, 159, 191);\\\n}\\\n.ace-tm .ace_constant.ace_numeric {\\\ncolor: rgb(0, 0, 205);\\\n}\\\n.ace-tm .ace_variable {\\\ncolor: rgb(49, 132, 149);\\\n}\\\n.ace-tm .ace_xml-pe {\\\ncolor: rgb(104, 104, 91);\\\n}\\\n.ace-tm .ace_entity.ace_name.ace_function {\\\ncolor: #0000A2;\\\n}\\\n.ace-tm .ace_heading {\\\ncolor: rgb(12, 7, 255);\\\n}\\\n.ace-tm .ace_list {\\\ncolor:rgb(185, 6, 144);\\\n}\\\n.ace-tm .ace_meta.ace_tag {\\\ncolor:rgb(0, 22, 142);\\\n}\\\n.ace-tm .ace_string.ace_regex {\\\ncolor: rgb(255, 0, 0)\\\n}\\\n.ace-tm .ace_marker-layer .ace_selection {\\\nbackground: rgb(181, 213, 255);\\\n}\\\n.ace-tm.ace_multiselect .ace_selection.ace_start {\\\nbox-shadow: 0 0 3px 0px white;\\\n}\\\n.ace-tm .ace_marker-layer .ace_step {\\\nbackground: rgb(252, 255, 0);\\\n}\\\n.ace-tm .ace_marker-layer .ace_stack {\\\nbackground: rgb(164, 229, 101);\\\n}\\\n.ace-tm .ace_marker-layer .ace_bracket {\\\nmargin: -1px 0 0 -1px;\\\nborder: 1px solid rgb(192, 192, 192);\\\n}\\\n.ace-tm .ace_marker-layer .ace_active-line {\\\nbackground: rgba(0, 0, 0, 0.07);\\\n}\\\n.ace-tm .ace_gutter-active-line {\\\nbackground-color : #dcdcdc;\\\n}\\\n.ace-tm .ace_marker-layer .ace_selected-word {\\\nbackground: rgb(250, 250, 255);\\\nborder: 1px solid rgb(200, 200, 250);\\\n}\\\n.ace-tm .ace_indent-guide {\\\nbackground: url(\\\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==\\\") right repeat-y;\\\n}\\\n\";\nexports.$id = \"ace/theme/textmate\";\n\nvar dom = require(\"../lib/dom\");\ndom.importCssString(exports.cssText, exports.cssClass);\n}); (function() {\n ace.require([\"ace/theme/textmate\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file29 := &embedded.EmbeddedFile{ Filename: "30314e1b4a51b1aed3766eadecde2a42.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/python\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText = \"snippet #!\\n\\\n\t#!/usr/bin/env python\\n\\\nsnippet imp\\n\\\n\timport ${1:module}\\n\\\nsnippet from\\n\\\n\tfrom ${1:package} import ${2:module}\\n\\\n# Module Docstring\\n\\\nsnippet docs\\n\\\n\t'''\\n\\\n\tFile: ${1:FILENAME:file_name}\\n\\\n\tAuthor: ${2:author}\\n\\\n\tDescription: ${3}\\n\\\n\t'''\\n\\\nsnippet wh\\n\\\n\twhile ${1:condition}:\\n\\\n\t\t${2:# TODO: write code...}\\n\\\n# dowh - does the same as do...while in other languages\\n\\\nsnippet dowh\\n\\\n\twhile True:\\n\\\n\t\t${1:# TODO: write code...}\\n\\\n\t\tif ${2:condition}:\\n\\\n\t\t\tbreak\\n\\\nsnippet with\\n\\\n\twith ${1:expr} as ${2:var}:\\n\\\n\t\t${3:# TODO: write code...}\\n\\\n# New Class\\n\\\nsnippet cl\\n\\\n\tclass ${1:ClassName}(${2:object}):\\n\\\n\t\t\\\"\\\"\\\"${3:docstring for $1}\\\"\\\"\\\"\\n\\\n\t\tdef __init__(self, ${4:arg}):\\n\\\n\t\t\t${5:super($1, self).__init__()}\\n\\\n\t\t\tself.$4 = $4\\n\\\n\t\t\t${6}\\n\\\n# New Function\\n\\\nsnippet def\\n\\\n\tdef ${1:fname}(${2:`indent('.') ? 'self' : ''`}):\\n\\\n\t\t\\\"\\\"\\\"${3:docstring for $1}\\\"\\\"\\\"\\n\\\n\t\t${4:# TODO: write code...}\\n\\\nsnippet deff\\n\\\n\tdef ${1:fname}(${2:`indent('.') ? 'self' : ''`}):\\n\\\n\t\t${3:# TODO: write code...}\\n\\\n# New Method\\n\\\nsnippet defs\\n\\\n\tdef ${1:mname}(self, ${2:arg}):\\n\\\n\t\t${3:# TODO: write code...}\\n\\\n# New Property\\n\\\nsnippet property\\n\\\n\tdef ${1:foo}():\\n\\\n\t\tdoc = \\\"${2:The $1 property.}\\\"\\n\\\n\t\tdef fget(self):\\n\\\n\t\t\t${3:return self._$1}\\n\\\n\t\tdef fset(self, value):\\n\\\n\t\t\t${4:self._$1 = value}\\n\\\n# Ifs\\n\\\nsnippet if\\n\\\n\tif ${1:condition}:\\n\\\n\t\t${2:# TODO: write code...}\\n\\\nsnippet el\\n\\\n\telse:\\n\\\n\t\t${1:# TODO: write code...}\\n\\\nsnippet ei\\n\\\n\telif ${1:condition}:\\n\\\n\t\t${2:# TODO: write code...}\\n\\\n# For\\n\\\nsnippet for\\n\\\n\tfor ${1:item} in ${2:items}:\\n\\\n\t\t${3:# TODO: write code...}\\n\\\n# Encodes\\n\\\nsnippet cutf8\\n\\\n\t# -*- coding: utf-8 -*-\\n\\\nsnippet clatin1\\n\\\n\t# -*- coding: latin-1 -*-\\n\\\nsnippet cascii\\n\\\n\t# -*- coding: ascii -*-\\n\\\n# Lambda\\n\\\nsnippet ld\\n\\\n\t${1:var} = lambda ${2:vars} : ${3:action}\\n\\\nsnippet .\\n\\\n\tself.\\n\\\nsnippet try Try/Except\\n\\\n\ttry:\\n\\\n\t\t${1:# TODO: write code...}\\n\\\n\texcept ${2:Exception}, ${3:e}:\\n\\\n\t\t${4:raise $3}\\n\\\nsnippet try Try/Except/Else\\n\\\n\ttry:\\n\\\n\t\t${1:# TODO: write code...}\\n\\\n\texcept ${2:Exception}, ${3:e}:\\n\\\n\t\t${4:raise $3}\\n\\\n\telse:\\n\\\n\t\t${5:# TODO: write code...}\\n\\\nsnippet try Try/Except/Finally\\n\\\n\ttry:\\n\\\n\t\t${1:# TODO: write code...}\\n\\\n\texcept ${2:Exception}, ${3:e}:\\n\\\n\t\t${4:raise $3}\\n\\\n\tfinally:\\n\\\n\t\t${5:# TODO: write code...}\\n\\\nsnippet try Try/Except/Else/Finally\\n\\\n\ttry:\\n\\\n\t\t${1:# TODO: write code...}\\n\\\n\texcept ${2:Exception}, ${3:e}:\\n\\\n\t\t${4:raise $3}\\n\\\n\telse:\\n\\\n\t\t${5:# TODO: write code...}\\n\\\n\tfinally:\\n\\\n\t\t${6:# TODO: write code...}\\n\\\n# if __name__ == '__main__':\\n\\\nsnippet ifmain\\n\\\n\tif __name__ == '__main__':\\n\\\n\t\t${1:main()}\\n\\\n# __magic__\\n\\\nsnippet _\\n\\\n\t__${1:init}__${2}\\n\\\n# python debugger (pdb)\\n\\\nsnippet pdb\\n\\\n\timport pdb; pdb.set_trace()\\n\\\n# ipython debugger (ipdb)\\n\\\nsnippet ipdb\\n\\\n\timport ipdb; ipdb.set_trace()\\n\\\n# ipython debugger (pdbbb)\\n\\\nsnippet pdbbb\\n\\\n\timport pdbpp; pdbpp.set_trace()\\n\\\nsnippet pprint\\n\\\n\timport pprint; pprint.pprint(${1})${2}\\n\\\nsnippet \\\"\\n\\\n\t\\\"\\\"\\\"\\n\\\n\t${1:doc}\\n\\\n\t\\\"\\\"\\\"\\n\\\n# test function/method\\n\\\nsnippet test\\n\\\n\tdef test_${1:description}(${2:self}):\\n\\\n\t\t${3:# TODO: write code...}\\n\\\n# test case\\n\\\nsnippet testcase\\n\\\n\tclass ${1:ExampleCase}(unittest.TestCase):\\n\\\n\t\t\\n\\\n\t\tdef test_${2:description}(self):\\n\\\n\t\t\t${3:# TODO: write code...}\\n\\\nsnippet fut\\n\\\n\tfrom __future__ import ${1}\\n\\\n#getopt\\n\\\nsnippet getopt\\n\\\n\ttry:\\n\\\n\t\t# Short option syntax: \\\"hv:\\\"\\n\\\n\t\t# Long option syntax: \\\"help\\\" or \\\"verbose=\\\"\\n\\\n\t\topts, args = getopt.getopt(sys.argv[1:], \\\"${1:short_options}\\\", [${2:long_options}])\\n\\\n\t\\n\\\n\texcept getopt.GetoptError, err:\\n\\\n\t\t# Print debug info\\n\\\n\t\tprint str(err)\\n\\\n\t\t${3:error_action}\\n\\\n\\n\\\n\tfor option, argument in opts:\\n\\\n\t\tif option in (\\\"-h\\\", \\\"--help\\\"):\\n\\\n\t\t\t${4}\\n\\\n\t\telif option in (\\\"-v\\\", \\\"--verbose\\\"):\\n\\\n\t\t\tverbose = argument\\n\\\n\";\nexports.scope = \"python\";\n\n}); (function() {\n ace.require([\"ace/snippets/python\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file2a := &embedded.EmbeddedFile{ Filename: "30f5b57295dfda4eafc7f8c098160582.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/theme/merbivore_soft\",[\"require\",\"exports\",\"module\",\"ace/lib/dom\"], function(require, exports, module) {\n\nexports.isDark = true;\nexports.cssClass = \"ace-merbivore-soft\";\nexports.cssText = \".ace-merbivore-soft .ace_gutter {\\\nbackground: #262424;\\\ncolor: #E6E1DC\\\n}\\\n.ace-merbivore-soft .ace_print-margin {\\\nwidth: 1px;\\\nbackground: #262424\\\n}\\\n.ace-merbivore-soft {\\\nbackground-color: #1C1C1C;\\\ncolor: #E6E1DC\\\n}\\\n.ace-merbivore-soft .ace_cursor {\\\ncolor: #FFFFFF\\\n}\\\n.ace-merbivore-soft .ace_marker-layer .ace_selection {\\\nbackground: #494949\\\n}\\\n.ace-merbivore-soft.ace_multiselect .ace_selection.ace_start {\\\nbox-shadow: 0 0 3px 0px #1C1C1C;\\\n}\\\n.ace-merbivore-soft .ace_marker-layer .ace_step {\\\nbackground: rgb(102, 82, 0)\\\n}\\\n.ace-merbivore-soft .ace_marker-layer .ace_bracket {\\\nmargin: -1px 0 0 -1px;\\\nborder: 1px solid #404040\\\n}\\\n.ace-merbivore-soft .ace_marker-layer .ace_active-line {\\\nbackground: #333435\\\n}\\\n.ace-merbivore-soft .ace_gutter-active-line {\\\nbackground-color: #333435\\\n}\\\n.ace-merbivore-soft .ace_marker-layer .ace_selected-word {\\\nborder: 1px solid #494949\\\n}\\\n.ace-merbivore-soft .ace_invisible {\\\ncolor: #404040\\\n}\\\n.ace-merbivore-soft .ace_entity.ace_name.ace_tag,\\\n.ace-merbivore-soft .ace_keyword,\\\n.ace-merbivore-soft .ace_meta,\\\n.ace-merbivore-soft .ace_meta.ace_tag,\\\n.ace-merbivore-soft .ace_storage {\\\ncolor: #FC803A\\\n}\\\n.ace-merbivore-soft .ace_constant,\\\n.ace-merbivore-soft .ace_constant.ace_character,\\\n.ace-merbivore-soft .ace_constant.ace_character.ace_escape,\\\n.ace-merbivore-soft .ace_constant.ace_other,\\\n.ace-merbivore-soft .ace_support.ace_type {\\\ncolor: #68C1D8\\\n}\\\n.ace-merbivore-soft .ace_constant.ace_character.ace_escape {\\\ncolor: #B3E5B4\\\n}\\\n.ace-merbivore-soft .ace_constant.ace_language {\\\ncolor: #E1C582\\\n}\\\n.ace-merbivore-soft .ace_constant.ace_library,\\\n.ace-merbivore-soft .ace_string,\\\n.ace-merbivore-soft .ace_support.ace_constant {\\\ncolor: #8EC65F\\\n}\\\n.ace-merbivore-soft .ace_constant.ace_numeric {\\\ncolor: #7FC578\\\n}\\\n.ace-merbivore-soft .ace_invalid,\\\n.ace-merbivore-soft .ace_invalid.ace_deprecated {\\\ncolor: #FFFFFF;\\\nbackground-color: #FE3838\\\n}\\\n.ace-merbivore-soft .ace_fold {\\\nbackground-color: #FC803A;\\\nborder-color: #E6E1DC\\\n}\\\n.ace-merbivore-soft .ace_comment,\\\n.ace-merbivore-soft .ace_meta {\\\nfont-style: italic;\\\ncolor: #AC4BB8\\\n}\\\n.ace-merbivore-soft .ace_entity.ace_other.ace_attribute-name {\\\ncolor: #EAF1A3\\\n}\\\n.ace-merbivore-soft .ace_indent-guide {\\\nbackground: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWOQkpLyZfD09PwPAAfYAnaStpHRAAAAAElFTkSuQmCC) right repeat-y\\\n}\";\n\nvar dom = require(\"../lib/dom\");\ndom.importCssString(exports.cssText, exports.cssClass);\n}); (function() {\n ace.require([\"ace/theme/merbivore_soft\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file2b := &embedded.EmbeddedFile{ Filename: "31d41d6496fa8bb51798efce8a49626d.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("\"no use strict\";\n!(function(window) {\nif (typeof window.window != \"undefined\" && window.document)\n return;\nif (window.require && window.define)\n return;\n\nif (!window.console) {\n window.console = function() {\n var msgs = Array.prototype.slice.call(arguments, 0);\n postMessage({type: \"log\", data: msgs});\n };\n window.console.error =\n window.console.warn = \n window.console.log =\n window.console.trace = window.console;\n}\nwindow.window = window;\nwindow.ace = window;\n\nwindow.onerror = function(message, file, line, col, err) {\n postMessage({type: \"error\", data: {\n message: message,\n data: err.data,\n file: file,\n line: line, \n col: col,\n stack: err.stack\n }});\n};\n\nwindow.normalizeModule = function(parentId, moduleName) {\n // normalize plugin requires\n if (moduleName.indexOf(\"!\") !== -1) {\n var chunks = moduleName.split(\"!\");\n return window.normalizeModule(parentId, chunks[0]) + \"!\" + window.normalizeModule(parentId, chunks[1]);\n }\n // normalize relative requires\n if (moduleName.charAt(0) == \".\") {\n var base = parentId.split(\"/\").slice(0, -1).join(\"/\");\n moduleName = (base ? base + \"/\" : \"\") + moduleName;\n \n while (moduleName.indexOf(\".\") !== -1 && previous != moduleName) {\n var previous = moduleName;\n moduleName = moduleName.replace(/^\\.\\//, \"\").replace(/\\/\\.\\//, \"/\").replace(/[^\\/]+\\/\\.\\.\\//, \"\");\n }\n }\n \n return moduleName;\n};\n\nwindow.require = function require(parentId, id) {\n if (!id) {\n id = parentId;\n parentId = null;\n }\n if (!id.charAt)\n throw new Error(\"worker.js require() accepts only (parentId, id) as arguments\");\n\n id = window.normalizeModule(parentId, id);\n\n var module = window.require.modules[id];\n if (module) {\n if (!module.initialized) {\n module.initialized = true;\n module.exports = module.factory().exports;\n }\n return module.exports;\n }\n \n if (!window.require.tlns)\n return console.log(\"unable to load \" + id);\n \n var path = resolveModuleId(id, window.require.tlns);\n if (path.slice(-3) != \".js\") path += \".js\";\n \n window.require.id = id;\n window.require.modules[id] = {}; // prevent infinite loop on broken modules\n importScripts(path);\n return window.require(parentId, id);\n};\nfunction resolveModuleId(id, paths) {\n var testPath = id, tail = \"\";\n while (testPath) {\n var alias = paths[testPath];\n if (typeof alias == \"string\") {\n return alias + tail;\n } else if (alias) {\n return alias.location.replace(/\\/*$/, \"/\") + (tail || alias.main || alias.name);\n } else if (alias === false) {\n return \"\";\n }\n var i = testPath.lastIndexOf(\"/\");\n if (i === -1) break;\n tail = testPath.substr(i) + tail;\n testPath = testPath.slice(0, i);\n }\n return id;\n}\nwindow.require.modules = {};\nwindow.require.tlns = {};\n\nwindow.define = function(id, deps, factory) {\n if (arguments.length == 2) {\n factory = deps;\n if (typeof id != \"string\") {\n deps = id;\n id = window.require.id;\n }\n } else if (arguments.length == 1) {\n factory = id;\n deps = [];\n id = window.require.id;\n }\n \n if (typeof factory != \"function\") {\n window.require.modules[id] = {\n exports: factory,\n initialized: true\n };\n return;\n }\n\n if (!deps.length)\n // If there is no dependencies, we inject \"require\", \"exports\" and\n // \"module\" as dependencies, to provide CommonJS compatibility.\n deps = [\"require\", \"exports\", \"module\"];\n\n var req = function(childId) {\n return window.require(id, childId);\n };\n\n window.require.modules[id] = {\n exports: {},\n factory: function() {\n var module = this;\n var returnExports = factory.apply(this, deps.slice(0, factory.length).map(function(dep) {\n switch (dep) {\n // Because \"require\", \"exports\" and \"module\" aren't actual\n // dependencies, we must handle them seperately.\n case \"require\": return req;\n case \"exports\": return module.exports;\n case \"module\": return module;\n // But for all other dependencies, we can just go ahead and\n // require them.\n default: return req(dep);\n }\n }));\n if (returnExports)\n module.exports = returnExports;\n return module;\n }\n };\n};\nwindow.define.amd = {};\nrequire.tlns = {};\nwindow.initBaseUrls = function initBaseUrls(topLevelNamespaces) {\n for (var i in topLevelNamespaces)\n require.tlns[i] = topLevelNamespaces[i];\n};\n\nwindow.initSender = function initSender() {\n\n var EventEmitter = window.require(\"ace/lib/event_emitter\").EventEmitter;\n var oop = window.require(\"ace/lib/oop\");\n \n var Sender = function() {};\n \n (function() {\n \n oop.implement(this, EventEmitter);\n \n this.callback = function(data, callbackId) {\n postMessage({\n type: \"call\",\n id: callbackId,\n data: data\n });\n };\n \n this.emit = function(name, data) {\n postMessage({\n type: \"event\",\n name: name,\n data: data\n });\n };\n \n }).call(Sender.prototype);\n \n return new Sender();\n};\n\nvar main = window.main = null;\nvar sender = window.sender = null;\n\nwindow.onmessage = function(e) {\n var msg = e.data;\n if (msg.event && sender) {\n sender._signal(msg.event, msg.data);\n }\n else if (msg.command) {\n if (main[msg.command])\n main[msg.command].apply(main, msg.args);\n else if (window[msg.command])\n window[msg.command].apply(window, msg.args);\n else\n throw new Error(\"Unknown command:\" + msg.command);\n }\n else if (msg.init) {\n window.initBaseUrls(msg.tlns);\n require(\"ace/lib/es5-shim\");\n sender = window.sender = window.initSender();\n var clazz = require(msg.module)[msg.classname];\n main = window.main = new clazz(sender);\n }\n};\n})(this);\n\nace.define(\"ace/lib/oop\",[], function(require, exports, module) {\n\"use strict\";\n\nexports.inherits = function(ctor, superCtor) {\n ctor.super_ = superCtor;\n ctor.prototype = Object.create(superCtor.prototype, {\n constructor: {\n value: ctor,\n enumerable: false,\n writable: true,\n configurable: true\n }\n });\n};\n\nexports.mixin = function(obj, mixin) {\n for (var key in mixin) {\n obj[key] = mixin[key];\n }\n return obj;\n};\n\nexports.implement = function(proto, mixin) {\n exports.mixin(proto, mixin);\n};\n\n});\n\nace.define(\"ace/lib/lang\",[], function(require, exports, module) {\n\"use strict\";\n\nexports.last = function(a) {\n return a[a.length - 1];\n};\n\nexports.stringReverse = function(string) {\n return string.split(\"\").reverse().join(\"\");\n};\n\nexports.stringRepeat = function (string, count) {\n var result = '';\n while (count > 0) {\n if (count & 1)\n result += string;\n\n if (count >>= 1)\n string += string;\n }\n return result;\n};\n\nvar trimBeginRegexp = /^\\s\\s*/;\nvar trimEndRegexp = /\\s\\s*$/;\n\nexports.stringTrimLeft = function (string) {\n return string.replace(trimBeginRegexp, '');\n};\n\nexports.stringTrimRight = function (string) {\n return string.replace(trimEndRegexp, '');\n};\n\nexports.copyObject = function(obj) {\n var copy = {};\n for (var key in obj) {\n copy[key] = obj[key];\n }\n return copy;\n};\n\nexports.copyArray = function(array){\n var copy = [];\n for (var i=0, l=array.length; i [\" + this.end.row + \"/\" + this.end.column + \"]\");\n };\n\n this.contains = function(row, column) {\n return this.compare(row, column) == 0;\n };\n this.compareRange = function(range) {\n var cmp,\n end = range.end,\n start = range.start;\n\n cmp = this.compare(end.row, end.column);\n if (cmp == 1) {\n cmp = this.compare(start.row, start.column);\n if (cmp == 1) {\n return 2;\n } else if (cmp == 0) {\n return 1;\n } else {\n return 0;\n }\n } else if (cmp == -1) {\n return -2;\n } else {\n cmp = this.compare(start.row, start.column);\n if (cmp == -1) {\n return -1;\n } else if (cmp == 1) {\n return 42;\n } else {\n return 0;\n }\n }\n };\n this.comparePoint = function(p) {\n return this.compare(p.row, p.column);\n };\n this.containsRange = function(range) {\n return this.comparePoint(range.start) == 0 && this.comparePoint(range.end) == 0;\n };\n this.intersects = function(range) {\n var cmp = this.compareRange(range);\n return (cmp == -1 || cmp == 0 || cmp == 1);\n };\n this.isEnd = function(row, column) {\n return this.end.row == row && this.end.column == column;\n };\n this.isStart = function(row, column) {\n return this.start.row == row && this.start.column == column;\n };\n this.setStart = function(row, column) {\n if (typeof row == \"object\") {\n this.start.column = row.column;\n this.start.row = row.row;\n } else {\n this.start.row = row;\n this.start.column = column;\n }\n };\n this.setEnd = function(row, column) {\n if (typeof row == \"object\") {\n this.end.column = row.column;\n this.end.row = row.row;\n } else {\n this.end.row = row;\n this.end.column = column;\n }\n };\n this.inside = function(row, column) {\n if (this.compare(row, column) == 0) {\n if (this.isEnd(row, column) || this.isStart(row, column)) {\n return false;\n } else {\n return true;\n }\n }\n return false;\n };\n this.insideStart = function(row, column) {\n if (this.compare(row, column) == 0) {\n if (this.isEnd(row, column)) {\n return false;\n } else {\n return true;\n }\n }\n return false;\n };\n this.insideEnd = function(row, column) {\n if (this.compare(row, column) == 0) {\n if (this.isStart(row, column)) {\n return false;\n } else {\n return true;\n }\n }\n return false;\n };\n this.compare = function(row, column) {\n if (!this.isMultiLine()) {\n if (row === this.start.row) {\n return column < this.start.column ? -1 : (column > this.end.column ? 1 : 0);\n }\n }\n\n if (row < this.start.row)\n return -1;\n\n if (row > this.end.row)\n return 1;\n\n if (this.start.row === row)\n return column >= this.start.column ? 0 : -1;\n\n if (this.end.row === row)\n return column <= this.end.column ? 0 : 1;\n\n return 0;\n };\n this.compareStart = function(row, column) {\n if (this.start.row == row && this.start.column == column) {\n return -1;\n } else {\n return this.compare(row, column);\n }\n };\n this.compareEnd = function(row, column) {\n if (this.end.row == row && this.end.column == column) {\n return 1;\n } else {\n return this.compare(row, column);\n }\n };\n this.compareInside = function(row, column) {\n if (this.end.row == row && this.end.column == column) {\n return 1;\n } else if (this.start.row == row && this.start.column == column) {\n return -1;\n } else {\n return this.compare(row, column);\n }\n };\n this.clipRows = function(firstRow, lastRow) {\n if (this.end.row > lastRow)\n var end = {row: lastRow + 1, column: 0};\n else if (this.end.row < firstRow)\n var end = {row: firstRow, column: 0};\n\n if (this.start.row > lastRow)\n var start = {row: lastRow + 1, column: 0};\n else if (this.start.row < firstRow)\n var start = {row: firstRow, column: 0};\n\n return Range.fromPoints(start || this.start, end || this.end);\n };\n this.extend = function(row, column) {\n var cmp = this.compare(row, column);\n\n if (cmp == 0)\n return this;\n else if (cmp == -1)\n var start = {row: row, column: column};\n else\n var end = {row: row, column: column};\n\n return Range.fromPoints(start || this.start, end || this.end);\n };\n\n this.isEmpty = function() {\n return (this.start.row === this.end.row && this.start.column === this.end.column);\n };\n this.isMultiLine = function() {\n return (this.start.row !== this.end.row);\n };\n this.clone = function() {\n return Range.fromPoints(this.start, this.end);\n };\n this.collapseRows = function() {\n if (this.end.column == 0)\n return new Range(this.start.row, 0, Math.max(this.start.row, this.end.row-1), 0);\n else\n return new Range(this.start.row, 0, this.end.row, 0);\n };\n this.toScreenRange = function(session) {\n var screenPosStart = session.documentToScreenPosition(this.start);\n var screenPosEnd = session.documentToScreenPosition(this.end);\n\n return new Range(\n screenPosStart.row, screenPosStart.column,\n screenPosEnd.row, screenPosEnd.column\n );\n };\n this.moveBy = function(row, column) {\n this.start.row += row;\n this.start.column += column;\n this.end.row += row;\n this.end.column += column;\n };\n\n}).call(Range.prototype);\nRange.fromPoints = function(start, end) {\n return new Range(start.row, start.column, end.row, end.column);\n};\nRange.comparePoints = comparePoints;\n\nRange.comparePoints = function(p1, p2) {\n return p1.row - p2.row || p1.column - p2.column;\n};\n\n\nexports.Range = Range;\n});\n\nace.define(\"ace/apply_delta\",[], function(require, exports, module) {\n\"use strict\";\n\nfunction throwDeltaError(delta, errorText){\n console.log(\"Invalid Delta:\", delta);\n throw \"Invalid Delta: \" + errorText;\n}\n\nfunction positionInDocument(docLines, position) {\n return position.row >= 0 && position.row < docLines.length &&\n position.column >= 0 && position.column <= docLines[position.row].length;\n}\n\nfunction validateDelta(docLines, delta) {\n if (delta.action != \"insert\" && delta.action != \"remove\")\n throwDeltaError(delta, \"delta.action must be 'insert' or 'remove'\");\n if (!(delta.lines instanceof Array))\n throwDeltaError(delta, \"delta.lines must be an Array\");\n if (!delta.start || !delta.end)\n throwDeltaError(delta, \"delta.start/end must be an present\");\n var start = delta.start;\n if (!positionInDocument(docLines, delta.start))\n throwDeltaError(delta, \"delta.start must be contained in document\");\n var end = delta.end;\n if (delta.action == \"remove\" && !positionInDocument(docLines, end))\n throwDeltaError(delta, \"delta.end must contained in document for 'remove' actions\");\n var numRangeRows = end.row - start.row;\n var numRangeLastLineChars = (end.column - (numRangeRows == 0 ? start.column : 0));\n if (numRangeRows != delta.lines.length - 1 || delta.lines[numRangeRows].length != numRangeLastLineChars)\n throwDeltaError(delta, \"delta.range must match delta lines\");\n}\n\nexports.applyDelta = function(docLines, delta, doNotValidate) {\n \n var row = delta.start.row;\n var startColumn = delta.start.column;\n var line = docLines[row] || \"\";\n switch (delta.action) {\n case \"insert\":\n var lines = delta.lines;\n if (lines.length === 1) {\n docLines[row] = line.substring(0, startColumn) + delta.lines[0] + line.substring(startColumn);\n } else {\n var args = [row, 1].concat(delta.lines);\n docLines.splice.apply(docLines, args);\n docLines[row] = line.substring(0, startColumn) + docLines[row];\n docLines[row + delta.lines.length - 1] += line.substring(startColumn);\n }\n break;\n case \"remove\":\n var endColumn = delta.end.column;\n var endRow = delta.end.row;\n if (row === endRow) {\n docLines[row] = line.substring(0, startColumn) + line.substring(endColumn);\n } else {\n docLines.splice(\n row, endRow - row + 1,\n line.substring(0, startColumn) + docLines[endRow].substring(endColumn)\n );\n }\n break;\n }\n};\n});\n\nace.define(\"ace/lib/event_emitter\",[], function(require, exports, module) {\n\"use strict\";\n\nvar EventEmitter = {};\nvar stopPropagation = function() { this.propagationStopped = true; };\nvar preventDefault = function() { this.defaultPrevented = true; };\n\nEventEmitter._emit =\nEventEmitter._dispatchEvent = function(eventName, e) {\n this._eventRegistry || (this._eventRegistry = {});\n this._defaultHandlers || (this._defaultHandlers = {});\n\n var listeners = this._eventRegistry[eventName] || [];\n var defaultHandler = this._defaultHandlers[eventName];\n if (!listeners.length && !defaultHandler)\n return;\n\n if (typeof e != \"object\" || !e)\n e = {};\n\n if (!e.type)\n e.type = eventName;\n if (!e.stopPropagation)\n e.stopPropagation = stopPropagation;\n if (!e.preventDefault)\n e.preventDefault = preventDefault;\n\n listeners = listeners.slice();\n for (var i=0; i this.row)\n return;\n \n var point = $getTransformedPoint(delta, {row: this.row, column: this.column}, this.$insertRight);\n this.setPosition(point.row, point.column, true);\n };\n \n function $pointsInOrder(point1, point2, equalPointsInOrder) {\n var bColIsAfter = equalPointsInOrder ? point1.column <= point2.column : point1.column < point2.column;\n return (point1.row < point2.row) || (point1.row == point2.row && bColIsAfter);\n }\n \n function $getTransformedPoint(delta, point, moveIfEqual) {\n var deltaIsInsert = delta.action == \"insert\";\n var deltaRowShift = (deltaIsInsert ? 1 : -1) * (delta.end.row - delta.start.row);\n var deltaColShift = (deltaIsInsert ? 1 : -1) * (delta.end.column - delta.start.column);\n var deltaStart = delta.start;\n var deltaEnd = deltaIsInsert ? deltaStart : delta.end; // Collapse insert range.\n if ($pointsInOrder(point, deltaStart, moveIfEqual)) {\n return {\n row: point.row,\n column: point.column\n };\n }\n if ($pointsInOrder(deltaEnd, point, !moveIfEqual)) {\n return {\n row: point.row + deltaRowShift,\n column: point.column + (point.row == deltaEnd.row ? deltaColShift : 0)\n };\n }\n \n return {\n row: deltaStart.row,\n column: deltaStart.column\n };\n }\n this.setPosition = function(row, column, noClip) {\n var pos;\n if (noClip) {\n pos = {\n row: row,\n column: column\n };\n } else {\n pos = this.$clipPositionToDocument(row, column);\n }\n\n if (this.row == pos.row && this.column == pos.column)\n return;\n\n var old = {\n row: this.row,\n column: this.column\n };\n\n this.row = pos.row;\n this.column = pos.column;\n this._signal(\"change\", {\n old: old,\n value: pos\n });\n };\n this.detach = function() {\n this.document.removeEventListener(\"change\", this.$onChange);\n };\n this.attach = function(doc) {\n this.document = doc || this.document;\n this.document.on(\"change\", this.$onChange);\n };\n this.$clipPositionToDocument = function(row, column) {\n var pos = {};\n\n if (row >= this.document.getLength()) {\n pos.row = Math.max(0, this.document.getLength() - 1);\n pos.column = this.document.getLine(pos.row).length;\n }\n else if (row < 0) {\n pos.row = 0;\n pos.column = 0;\n }\n else {\n pos.row = row;\n pos.column = Math.min(this.document.getLine(pos.row).length, Math.max(0, column));\n }\n\n if (column < 0)\n pos.column = 0;\n\n return pos;\n };\n\n}).call(Anchor.prototype);\n\n});\n\nace.define(\"ace/document\",[], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"./lib/oop\");\nvar applyDelta = require(\"./apply_delta\").applyDelta;\nvar EventEmitter = require(\"./lib/event_emitter\").EventEmitter;\nvar Range = require(\"./range\").Range;\nvar Anchor = require(\"./anchor\").Anchor;\n\nvar Document = function(textOrLines) {\n this.$lines = [\"\"];\n if (textOrLines.length === 0) {\n this.$lines = [\"\"];\n } else if (Array.isArray(textOrLines)) {\n this.insertMergedLines({row: 0, column: 0}, textOrLines);\n } else {\n this.insert({row: 0, column:0}, textOrLines);\n }\n};\n\n(function() {\n\n oop.implement(this, EventEmitter);\n this.setValue = function(text) {\n var len = this.getLength() - 1;\n this.remove(new Range(0, 0, len, this.getLine(len).length));\n this.insert({row: 0, column: 0}, text);\n };\n this.getValue = function() {\n return this.getAllLines().join(this.getNewLineCharacter());\n };\n this.createAnchor = function(row, column) {\n return new Anchor(this, row, column);\n };\n if (\"aaa\".split(/a/).length === 0) {\n this.$split = function(text) {\n return text.replace(/\\r\\n|\\r/g, \"\\n\").split(\"\\n\");\n };\n } else {\n this.$split = function(text) {\n return text.split(/\\r\\n|\\r|\\n/);\n };\n }\n\n\n this.$detectNewLine = function(text) {\n var match = text.match(/^.*?(\\r\\n|\\r|\\n)/m);\n this.$autoNewLine = match ? match[1] : \"\\n\";\n this._signal(\"changeNewLineMode\");\n };\n this.getNewLineCharacter = function() {\n switch (this.$newLineMode) {\n case \"windows\":\n return \"\\r\\n\";\n case \"unix\":\n return \"\\n\";\n default:\n return this.$autoNewLine || \"\\n\";\n }\n };\n\n this.$autoNewLine = \"\";\n this.$newLineMode = \"auto\";\n this.setNewLineMode = function(newLineMode) {\n if (this.$newLineMode === newLineMode)\n return;\n\n this.$newLineMode = newLineMode;\n this._signal(\"changeNewLineMode\");\n };\n this.getNewLineMode = function() {\n return this.$newLineMode;\n };\n this.isNewLine = function(text) {\n return (text == \"\\r\\n\" || text == \"\\r\" || text == \"\\n\");\n };\n this.getLine = function(row) {\n return this.$lines[row] || \"\";\n };\n this.getLines = function(firstRow, lastRow) {\n return this.$lines.slice(firstRow, lastRow + 1);\n };\n this.getAllLines = function() {\n return this.getLines(0, this.getLength());\n };\n this.getLength = function() {\n return this.$lines.length;\n };\n this.getTextRange = function(range) {\n return this.getLinesForRange(range).join(this.getNewLineCharacter());\n };\n this.getLinesForRange = function(range) {\n var lines;\n if (range.start.row === range.end.row) {\n lines = [this.getLine(range.start.row).substring(range.start.column, range.end.column)];\n } else {\n lines = this.getLines(range.start.row, range.end.row);\n lines[0] = (lines[0] || \"\").substring(range.start.column);\n var l = lines.length - 1;\n if (range.end.row - range.start.row == l)\n lines[l] = lines[l].substring(0, range.end.column);\n }\n return lines;\n };\n this.insertLines = function(row, lines) {\n console.warn(\"Use of document.insertLines is deprecated. Use the insertFullLines method instead.\");\n return this.insertFullLines(row, lines);\n };\n this.removeLines = function(firstRow, lastRow) {\n console.warn(\"Use of document.removeLines is deprecated. Use the removeFullLines method instead.\");\n return this.removeFullLines(firstRow, lastRow);\n };\n this.insertNewLine = function(position) {\n console.warn(\"Use of document.insertNewLine is deprecated. Use insertMergedLines(position, ['', '']) instead.\");\n return this.insertMergedLines(position, [\"\", \"\"]);\n };\n this.insert = function(position, text) {\n if (this.getLength() <= 1)\n this.$detectNewLine(text);\n \n return this.insertMergedLines(position, this.$split(text));\n };\n this.insertInLine = function(position, text) {\n var start = this.clippedPos(position.row, position.column);\n var end = this.pos(position.row, position.column + text.length);\n \n this.applyDelta({\n start: start,\n end: end,\n action: \"insert\",\n lines: [text]\n }, true);\n \n return this.clonePos(end);\n };\n \n this.clippedPos = function(row, column) {\n var length = this.getLength();\n if (row === undefined) {\n row = length;\n } else if (row < 0) {\n row = 0;\n } else if (row >= length) {\n row = length - 1;\n column = undefined;\n }\n var line = this.getLine(row);\n if (column == undefined)\n column = line.length;\n column = Math.min(Math.max(column, 0), line.length);\n return {row: row, column: column};\n };\n \n this.clonePos = function(pos) {\n return {row: pos.row, column: pos.column};\n };\n \n this.pos = function(row, column) {\n return {row: row, column: column};\n };\n \n this.$clipPosition = function(position) {\n var length = this.getLength();\n if (position.row >= length) {\n position.row = Math.max(0, length - 1);\n position.column = this.getLine(length - 1).length;\n } else {\n position.row = Math.max(0, position.row);\n position.column = Math.min(Math.max(position.column, 0), this.getLine(position.row).length);\n }\n return position;\n };\n this.insertFullLines = function(row, lines) {\n row = Math.min(Math.max(row, 0), this.getLength());\n var column = 0;\n if (row < this.getLength()) {\n lines = lines.concat([\"\"]);\n column = 0;\n } else {\n lines = [\"\"].concat(lines);\n row--;\n column = this.$lines[row].length;\n }\n this.insertMergedLines({row: row, column: column}, lines);\n }; \n this.insertMergedLines = function(position, lines) {\n var start = this.clippedPos(position.row, position.column);\n var end = {\n row: start.row + lines.length - 1,\n column: (lines.length == 1 ? start.column : 0) + lines[lines.length - 1].length\n };\n \n this.applyDelta({\n start: start,\n end: end,\n action: \"insert\",\n lines: lines\n });\n \n return this.clonePos(end);\n };\n this.remove = function(range) {\n var start = this.clippedPos(range.start.row, range.start.column);\n var end = this.clippedPos(range.end.row, range.end.column);\n this.applyDelta({\n start: start,\n end: end,\n action: \"remove\",\n lines: this.getLinesForRange({start: start, end: end})\n });\n return this.clonePos(start);\n };\n this.removeInLine = function(row, startColumn, endColumn) {\n var start = this.clippedPos(row, startColumn);\n var end = this.clippedPos(row, endColumn);\n \n this.applyDelta({\n start: start,\n end: end,\n action: \"remove\",\n lines: this.getLinesForRange({start: start, end: end})\n }, true);\n \n return this.clonePos(start);\n };\n this.removeFullLines = function(firstRow, lastRow) {\n firstRow = Math.min(Math.max(0, firstRow), this.getLength() - 1);\n lastRow = Math.min(Math.max(0, lastRow ), this.getLength() - 1);\n var deleteFirstNewLine = lastRow == this.getLength() - 1 && firstRow > 0;\n var deleteLastNewLine = lastRow < this.getLength() - 1;\n var startRow = ( deleteFirstNewLine ? firstRow - 1 : firstRow );\n var startCol = ( deleteFirstNewLine ? this.getLine(startRow).length : 0 );\n var endRow = ( deleteLastNewLine ? lastRow + 1 : lastRow );\n var endCol = ( deleteLastNewLine ? 0 : this.getLine(endRow).length ); \n var range = new Range(startRow, startCol, endRow, endCol);\n var deletedLines = this.$lines.slice(firstRow, lastRow + 1);\n \n this.applyDelta({\n start: range.start,\n end: range.end,\n action: \"remove\",\n lines: this.getLinesForRange(range)\n });\n return deletedLines;\n };\n this.removeNewLine = function(row) {\n if (row < this.getLength() - 1 && row >= 0) {\n this.applyDelta({\n start: this.pos(row, this.getLine(row).length),\n end: this.pos(row + 1, 0),\n action: \"remove\",\n lines: [\"\", \"\"]\n });\n }\n };\n this.replace = function(range, text) {\n if (!(range instanceof Range))\n range = Range.fromPoints(range.start, range.end);\n if (text.length === 0 && range.isEmpty())\n return range.start;\n if (text == this.getTextRange(range))\n return range.end;\n\n this.remove(range);\n var end;\n if (text) {\n end = this.insert(range.start, text);\n }\n else {\n end = range.start;\n }\n \n return end;\n };\n this.applyDeltas = function(deltas) {\n for (var i=0; i=0; i--) {\n this.revertDelta(deltas[i]);\n }\n };\n this.applyDelta = function(delta, doNotValidate) {\n var isInsert = delta.action == \"insert\";\n if (isInsert ? delta.lines.length <= 1 && !delta.lines[0]\n : !Range.comparePoints(delta.start, delta.end)) {\n return;\n }\n \n if (isInsert && delta.lines.length > 20000) {\n this.$splitAndapplyLargeDelta(delta, 20000);\n }\n else {\n applyDelta(this.$lines, delta, doNotValidate);\n this._signal(\"change\", delta);\n }\n };\n \n this.$splitAndapplyLargeDelta = function(delta, MAX) {\n var lines = delta.lines;\n var l = lines.length - MAX + 1;\n var row = delta.start.row; \n var column = delta.start.column;\n for (var from = 0, to = 0; from < l; from = to) {\n to += MAX - 1;\n var chunk = lines.slice(from, to);\n chunk.push(\"\");\n this.applyDelta({\n start: this.pos(row + from, column),\n end: this.pos(row + to, column = 0),\n action: delta.action,\n lines: chunk\n }, true);\n }\n delta.lines = lines.slice(from);\n delta.start.row = row + from;\n delta.start.column = column;\n this.applyDelta(delta, true);\n };\n this.revertDelta = function(delta) {\n this.applyDelta({\n start: this.clonePos(delta.start),\n end: this.clonePos(delta.end),\n action: (delta.action == \"insert\" ? \"remove\" : \"insert\"),\n lines: delta.lines.slice()\n });\n };\n this.indexToPosition = function(index, startRow) {\n var lines = this.$lines || this.getAllLines();\n var newlineLength = this.getNewLineCharacter().length;\n for (var i = startRow || 0, l = lines.length; i < l; i++) {\n index -= lines[i].length + newlineLength;\n if (index < 0)\n return {row: i, column: index + lines[i].length + newlineLength};\n }\n return {row: l-1, column: index + lines[l-1].length + newlineLength};\n };\n this.positionToIndex = function(pos, startRow) {\n var lines = this.$lines || this.getAllLines();\n var newlineLength = this.getNewLineCharacter().length;\n var index = 0;\n var row = Math.min(pos.row, lines.length);\n for (var i = startRow || 0; i < row; ++i)\n index += lines[i].length + newlineLength;\n\n return index + pos.column;\n };\n\n}).call(Document.prototype);\n\nexports.Document = Document;\n});\n\nace.define(\"ace/worker/mirror\",[], function(require, exports, module) {\n\"use strict\";\n\nvar Range = require(\"../range\").Range;\nvar Document = require(\"../document\").Document;\nvar lang = require(\"../lib/lang\");\n \nvar Mirror = exports.Mirror = function(sender) {\n this.sender = sender;\n var doc = this.doc = new Document(\"\");\n \n var deferredUpdate = this.deferredUpdate = lang.delayedCall(this.onUpdate.bind(this));\n \n var _self = this;\n sender.on(\"change\", function(e) {\n var data = e.data;\n if (data[0].start) {\n doc.applyDeltas(data);\n } else {\n for (var i = 0; i < data.length; i += 2) {\n if (Array.isArray(data[i+1])) {\n var d = {action: \"insert\", start: data[i], lines: data[i+1]};\n } else {\n var d = {action: \"remove\", start: data[i], end: data[i+1]};\n }\n doc.applyDelta(d, true);\n }\n }\n if (_self.$timeout)\n return deferredUpdate.schedule(_self.$timeout);\n _self.onUpdate();\n });\n};\n\n(function() {\n \n this.$timeout = 500;\n \n this.setTimeout = function(timeout) {\n this.$timeout = timeout;\n };\n \n this.setValue = function(value) {\n this.doc.setValue(value);\n this.deferredUpdate.schedule(this.$timeout);\n };\n \n this.getValue = function(callbackId) {\n this.sender.callback(this.doc.getValue(), callbackId);\n };\n \n this.onUpdate = function() {\n };\n \n this.isPending = function() {\n return this.deferredUpdate.isPending();\n };\n \n}).call(Mirror.prototype);\n\n});\n\nace.define(\"ace/mode/html/saxparser\",[], function(require, exports, module) {\nmodule.exports = (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require==\"function\"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error(\"Cannot find module '\"+o+\"'\")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}var i=typeof require==\"function\"&&require;for(var o=0;o= 0; i--) {\n\t\tvar node = this.elements[i];\n\t\tif (node.localName === localName)\n\t\t\treturn true;\n\t\tif (isMarker(node))\n\t\t\treturn false;\n\t}\n};\nElementStack.prototype.push = function(item) {\n\tthis.elements.push(item);\n};\nElementStack.prototype.pushHtmlElement = function(item) {\n\tthis.rootNode = item.node;\n\tthis.push(item);\n};\nElementStack.prototype.pushHeadElement = function(item) {\n\tthis.headElement = item.node;\n\tthis.push(item);\n};\nElementStack.prototype.pushBodyElement = function(item) {\n\tthis.bodyElement = item.node;\n\tthis.push(item);\n};\nElementStack.prototype.pop = function() {\n\treturn this.elements.pop();\n};\nElementStack.prototype.remove = function(item) {\n\tthis.elements.splice(this.elements.indexOf(item), 1);\n};\nElementStack.prototype.popUntilPopped = function(localName) {\n\tvar element;\n\tdo {\n\t\telement = this.pop();\n\t} while (element.localName != localName);\n};\n\nElementStack.prototype.popUntilTableScopeMarker = function() {\n\twhile (!isTableScopeMarker(this.top))\n\t\tthis.pop();\n};\n\nElementStack.prototype.popUntilTableBodyScopeMarker = function() {\n\twhile (!isTableBodyScopeMarker(this.top))\n\t\tthis.pop();\n};\n\nElementStack.prototype.popUntilTableRowScopeMarker = function() {\n\twhile (!isTableRowScopeMarker(this.top))\n\t\tthis.pop();\n};\nElementStack.prototype.item = function(index) {\n\treturn this.elements[index];\n};\nElementStack.prototype.contains = function(element) {\n\treturn this.elements.indexOf(element) !== -1;\n};\nElementStack.prototype.inScope = function(localName) {\n\treturn this._inScope(localName, isScopeMarker);\n};\nElementStack.prototype.inListItemScope = function(localName) {\n\treturn this._inScope(localName, isListItemScopeMarker);\n};\nElementStack.prototype.inTableScope = function(localName) {\n\treturn this._inScope(localName, isTableScopeMarker);\n};\nElementStack.prototype.inButtonScope = function(localName) {\n\treturn this._inScope(localName, isButtonScopeMarker);\n};\nElementStack.prototype.inSelectScope = function(localName) {\n\treturn this._inScope(localName, isSelectScopeMarker);\n};\nElementStack.prototype.hasNumberedHeaderElementInScope = function() {\n\tfor (var i = this.elements.length - 1; i >= 0; i--) {\n\t\tvar node = this.elements[i];\n\t\tif (node.isNumberedHeader())\n\t\t\treturn true;\n\t\tif (isScopeMarker(node))\n\t\t\treturn false;\n\t}\n};\nElementStack.prototype.furthestBlockForFormattingElement = function(element) {\n\tvar furthestBlock = null;\n\tfor (var i = this.elements.length - 1; i >= 0; i--) {\n\t\tvar node = this.elements[i];\n\t\tif (node.node === element)\n\t\t\tbreak;\n\t\tif (node.isSpecial())\n\t\t\tfurthestBlock = node;\n\t}\n return furthestBlock;\n};\nElementStack.prototype.findIndex = function(localName) {\n\tfor (var i = this.elements.length - 1; i >= 0; i--) {\n\t\tif (this.elements[i].localName == localName)\n\t\t\treturn i;\n\t}\n return -1;\n};\n\nElementStack.prototype.remove_openElements_until = function(callback) {\n\tvar finished = false;\n\tvar element;\n\twhile (!finished) {\n\t\telement = this.elements.pop();\n\t\tfinished = callback(element);\n\t}\n\treturn element;\n};\n\nObject.defineProperty(ElementStack.prototype, 'top', {\n\tget: function() {\n\t\treturn this.elements[this.elements.length - 1];\n\t}\n});\n\nObject.defineProperty(ElementStack.prototype, 'length', {\n\tget: function() {\n\t\treturn this.elements.length;\n\t}\n});\n\nexports.ElementStack = ElementStack;\n\n},\n{}],\n2:[function(_dereq_,module,exports){\nvar entities = _dereq_('html5-entities');\nvar InputStream = _dereq_('./InputStream').InputStream;\n\nvar namedEntityPrefixes = {};\nObject.keys(entities).forEach(function (entityKey) {\n\tfor (var i = 0; i < entityKey.length; i++) {\n\t\tnamedEntityPrefixes[entityKey.substring(0, i + 1)] = true;\n\t}\n});\n\nfunction isAlphaNumeric(c) {\n\treturn (c >= '0' && c <= '9') || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z');\n}\n\nfunction isHexDigit(c) {\n\treturn (c >= '0' && c <= '9') || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F');\n}\n\nfunction isDecimalDigit(c) {\n\treturn (c >= '0' && c <= '9');\n}\n\nvar EntityParser = {};\n\nEntityParser.consumeEntity = function(buffer, tokenizer, additionalAllowedCharacter) {\n\tvar decodedCharacter = '';\n\tvar consumedCharacters = '';\n\tvar ch = buffer.char();\n\tif (ch === InputStream.EOF)\n\t\treturn false;\n\tconsumedCharacters += ch;\n\tif (ch == '\\t' || ch == '\\n' || ch == '\\v' || ch == ' ' || ch == '<' || ch == '&') {\n\t\tbuffer.unget(consumedCharacters);\n\t\treturn false;\n\t}\n\tif (additionalAllowedCharacter === ch) {\n\t\tbuffer.unget(consumedCharacters);\n\t\treturn false;\n\t}\n\tif (ch == '#') {\n\t\tch = buffer.shift(1);\n\t\tif (ch === InputStream.EOF) {\n\t\t\ttokenizer._parseError(\"expected-numeric-entity-but-got-eof\");\n\t\t\tbuffer.unget(consumedCharacters);\n\t\t\treturn false;\n\t\t}\n\t\tconsumedCharacters += ch;\n\t\tvar radix = 10;\n\t\tvar isDigit = isDecimalDigit;\n\t\tif (ch == 'x' || ch == 'X') {\n\t\t\tradix = 16;\n\t\t\tisDigit = isHexDigit;\n\t\t\tch = buffer.shift(1);\n\t\t\tif (ch === InputStream.EOF) {\n\t\t\t\ttokenizer._parseError(\"expected-numeric-entity-but-got-eof\");\n\t\t\t\tbuffer.unget(consumedCharacters);\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tconsumedCharacters += ch;\n\t\t}\n\t\tif (isDigit(ch)) {\n\t\t\tvar code = '';\n\t\t\twhile (ch !== InputStream.EOF && isDigit(ch)) {\n\t\t\t\tcode += ch;\n\t\t\t\tch = buffer.char();\n\t\t\t}\n\t\t\tcode = parseInt(code, radix);\n\t\t\tvar replacement = this.replaceEntityNumbers(code);\n\t\t\tif (replacement) {\n\t\t\t\ttokenizer._parseError(\"invalid-numeric-entity-replaced\");\n\t\t\t\tcode = replacement;\n\t\t\t}\n\t\t\tif (code > 0xFFFF && code <= 0x10FFFF) {\n\t\t code -= 0x10000;\n\t\t var first = ((0xffc00 & code) >> 10) + 0xD800;\n\t\t var second = (0x3ff & code) + 0xDC00;\n\t\t\t\tdecodedCharacter = String.fromCharCode(first, second);\n\t\t\t} else\n\t\t\t\tdecodedCharacter = String.fromCharCode(code);\n\t\t\tif (ch !== ';') {\n\t\t\t\ttokenizer._parseError(\"numeric-entity-without-semicolon\");\n\t\t\t\tbuffer.unget(ch);\n\t\t\t}\n\t\t\treturn decodedCharacter;\n\t\t}\n\t\tbuffer.unget(consumedCharacters);\n\t\ttokenizer._parseError(\"expected-numeric-entity\");\n\t\treturn false;\n\t}\n\tif ((ch >= 'a' && ch <= 'z') || (ch >= 'A' && ch <= 'Z')) {\n\t\tvar mostRecentMatch = '';\n\t\twhile (namedEntityPrefixes[consumedCharacters]) {\n\t\t\tif (entities[consumedCharacters]) {\n\t\t\t\tmostRecentMatch = consumedCharacters;\n\t\t\t}\n\t\t\tif (ch == ';')\n\t\t\t\tbreak;\n\t\t\tch = buffer.char();\n\t\t\tif (ch === InputStream.EOF)\n\t\t\t\tbreak;\n\t\t\tconsumedCharacters += ch;\n\t\t}\n\t\tif (!mostRecentMatch) {\n\t\t\ttokenizer._parseError(\"expected-named-entity\");\n\t\t\tbuffer.unget(consumedCharacters);\n\t\t\treturn false;\n\t\t}\n\t\tdecodedCharacter = entities[mostRecentMatch];\n\t\tif (ch === ';' || !additionalAllowedCharacter || !(isAlphaNumeric(ch) || ch === '=')) {\n\t\t\tif (consumedCharacters.length > mostRecentMatch.length) {\n\t\t\t\tbuffer.unget(consumedCharacters.substring(mostRecentMatch.length));\n\t\t\t}\n\t\t\tif (ch !== ';') {\n\t\t\t\ttokenizer._parseError(\"named-entity-without-semicolon\");\n\t\t\t}\n\t\t\treturn decodedCharacter;\n\t\t}\n\t\tbuffer.unget(consumedCharacters);\n\t\treturn false;\n\t}\n};\n\nEntityParser.replaceEntityNumbers = function(c) {\n\tswitch(c) {\n\t\tcase 0x00: return 0xFFFD; // REPLACEMENT CHARACTER\n\t\tcase 0x13: return 0x0010; // Carriage return\n\t\tcase 0x80: return 0x20AC; // EURO SIGN\n\t\tcase 0x81: return 0x0081; // \n\t\tcase 0x82: return 0x201A; // SINGLE LOW-9 QUOTATION MARK\n\t\tcase 0x83: return 0x0192; // LATIN SMALL LETTER F WITH HOOK\n\t\tcase 0x84: return 0x201E; // DOUBLE LOW-9 QUOTATION MARK\n\t\tcase 0x85: return 0x2026; // HORIZONTAL ELLIPSIS\n\t\tcase 0x86: return 0x2020; // DAGGER\n\t\tcase 0x87: return 0x2021; // DOUBLE DAGGER\n\t\tcase 0x88: return 0x02C6; // MODIFIER LETTER CIRCUMFLEX ACCENT\n\t\tcase 0x89: return 0x2030; // PER MILLE SIGN\n\t\tcase 0x8A: return 0x0160; // LATIN CAPITAL LETTER S WITH CARON\n\t\tcase 0x8B: return 0x2039; // SINGLE LEFT-POINTING ANGLE QUOTATION MARK\n\t\tcase 0x8C: return 0x0152; // LATIN CAPITAL LIGATURE OE\n\t\tcase 0x8D: return 0x008D; // \n\t\tcase 0x8E: return 0x017D; // LATIN CAPITAL LETTER Z WITH CARON\n\t\tcase 0x8F: return 0x008F; // \n\t\tcase 0x90: return 0x0090; // \n\t\tcase 0x91: return 0x2018; // LEFT SINGLE QUOTATION MARK\n\t\tcase 0x92: return 0x2019; // RIGHT SINGLE QUOTATION MARK\n\t\tcase 0x93: return 0x201C; // LEFT DOUBLE QUOTATION MARK\n\t\tcase 0x94: return 0x201D; // RIGHT DOUBLE QUOTATION MARK\n\t\tcase 0x95: return 0x2022; // BULLET\n\t\tcase 0x96: return 0x2013; // EN DASH\n\t\tcase 0x97: return 0x2014; // EM DASH\n\t\tcase 0x98: return 0x02DC; // SMALL TILDE\n\t\tcase 0x99: return 0x2122; // TRADE MARK SIGN\n\t\tcase 0x9A: return 0x0161; // LATIN SMALL LETTER S WITH CARON\n\t\tcase 0x9B: return 0x203A; // SINGLE RIGHT-POINTING ANGLE QUOTATION MARK\n\t\tcase 0x9C: return 0x0153; // LATIN SMALL LIGATURE OE\n\t\tcase 0x9D: return 0x009D; // \n\t\tcase 0x9E: return 0x017E; // LATIN SMALL LETTER Z WITH CARON\n\t\tcase 0x9F: return 0x0178; // LATIN CAPITAL LETTER Y WITH DIAERESIS\n\t\tdefault:\n\t\t\tif ((c >= 0xD800 && c <= 0xDFFF) || c > 0x10FFFF) {\n\t\t\t\treturn 0xFFFD;\n\t\t\t} else if ((c >= 0x0001 && c <= 0x0008) || (c >= 0x000E && c <= 0x001F) ||\n\t\t\t\t(c >= 0x007F && c <= 0x009F) || (c >= 0xFDD0 && c <= 0xFDEF) ||\n\t\t\t\tc == 0x000B || c == 0xFFFE || c == 0x1FFFE || c == 0x2FFFFE ||\n\t\t\t\tc == 0x2FFFF || c == 0x3FFFE || c == 0x3FFFF || c == 0x4FFFE ||\n\t\t\t\tc == 0x4FFFF || c == 0x5FFFE || c == 0x5FFFF || c == 0x6FFFE ||\n\t\t\t\tc == 0x6FFFF || c == 0x7FFFE || c == 0x7FFFF || c == 0x8FFFE ||\n\t\t\t\tc == 0x8FFFF || c == 0x9FFFE || c == 0x9FFFF || c == 0xAFFFE ||\n\t\t\t\tc == 0xAFFFF || c == 0xBFFFE || c == 0xBFFFF || c == 0xCFFFE ||\n\t\t\t\tc == 0xCFFFF || c == 0xDFFFE || c == 0xDFFFF || c == 0xEFFFE ||\n\t\t\t\tc == 0xEFFFF || c == 0xFFFFE || c == 0xFFFFF || c == 0x10FFFE ||\n\t\t\t\tc == 0x10FFFF) {\n\t\t\t\treturn c;\n\t\t\t}\n\t}\n};\n\nexports.EntityParser = EntityParser;\n\n},\n{\"./InputStream\":3,\"html5-entities\":12}],\n3:[function(_dereq_,module,exports){\nfunction InputStream() {\n\tthis.data = '';\n\tthis.start = 0;\n\tthis.committed = 0;\n\tthis.eof = false;\n\tthis.lastLocation = {line: 0, column: 0};\n}\n\nInputStream.EOF = -1;\n\nInputStream.DRAIN = -2;\n\nInputStream.prototype = {\n\tslice: function() {\n\t\tif(this.start >= this.data.length) {\n\t\t\tif(!this.eof) throw InputStream.DRAIN;\n\t\t\treturn InputStream.EOF;\n\t\t}\n\t\treturn this.data.slice(this.start, this.data.length);\n\t},\n\tchar: function() {\n\t\tif(!this.eof && this.start >= this.data.length - 1) throw InputStream.DRAIN;\n\t\tif(this.start >= this.data.length) {\n\t\t\treturn InputStream.EOF;\n\t\t}\n\t\tvar ch = this.data[this.start++];\n\t\tif (ch === '\\r')\n\t\t\tch = '\\n';\n\t\treturn ch;\n\t},\n\tadvance: function(amount) {\n\t\tthis.start += amount;\n\t\tif(this.start >= this.data.length) {\n\t\t\tif(!this.eof) throw InputStream.DRAIN;\n\t\t\treturn InputStream.EOF;\n\t\t} else {\n\t\t\tif(this.committed > this.data.length / 2) {\n\t\t\t\tthis.lastLocation = this.location();\n\t\t\t\tthis.data = this.data.slice(this.committed);\n\t\t\t\tthis.start = this.start - this.committed;\n\t\t\t\tthis.committed = 0;\n\t\t\t}\n\t\t}\n\t},\n\tmatchWhile: function(re) {\n\t\tif(this.eof && this.start >= this.data.length ) return '';\n\t\tvar r = new RegExp(\"^\"+re+\"+\");\n\t\tvar m = r.exec(this.slice());\n\t\tif(m) {\n\t\t\tif(!this.eof && m[0].length == this.data.length - this.start) throw InputStream.DRAIN;\n\t\t\tthis.advance(m[0].length);\n\t\t\treturn m[0];\n\t\t} else {\n\t\t\treturn '';\n\t\t}\n\t},\n\tmatchUntil: function(re) {\n\t\tvar m, s;\n\t\ts = this.slice();\n\t\tif(s === InputStream.EOF) {\n\t\t\treturn '';\n\t\t} else if(m = new RegExp(re + (this.eof ? \"|$\" : \"\")).exec(s)) {\n\t\t\tvar t = this.data.slice(this.start, this.start + m.index);\n\t\t\tthis.advance(m.index);\n\t\t\treturn t.replace(/\\r/g, '\\n').replace(/\\n{2,}/g, '\\n');\n\t\t} else {\n\t\t\tthrow InputStream.DRAIN;\n\t\t}\n\t},\n\tappend: function(data) {\n\t\tthis.data += data;\n\t},\n\tshift: function(n) {\n\t\tif(!this.eof && this.start + n >= this.data.length) throw InputStream.DRAIN;\n\t\tif(this.eof && this.start >= this.data.length) return InputStream.EOF;\n\t\tvar d = this.data.slice(this.start, this.start + n).toString();\n\t\tthis.advance(Math.min(n, this.data.length - this.start));\n\t\treturn d;\n\t},\n\tpeek: function(n) {\n\t\tif(!this.eof && this.start + n >= this.data.length) throw InputStream.DRAIN;\n\t\tif(this.eof && this.start >= this.data.length) return InputStream.EOF;\n\t\treturn this.data.slice(this.start, Math.min(this.start + n, this.data.length)).toString();\n\t},\n\tlength: function() {\n\t\treturn this.data.length - this.start - 1;\n\t},\n\tunget: function(d) {\n\t\tif(d === InputStream.EOF) return;\n\t\tthis.start -= (d.length);\n\t},\n\tundo: function() {\n\t\tthis.start = this.committed;\n\t},\n\tcommit: function() {\n\t\tthis.committed = this.start;\n\t},\n\tlocation: function() {\n\t\tvar lastLine = this.lastLocation.line;\n\t\tvar lastColumn = this.lastLocation.column;\n\t\tvar read = this.data.slice(0, this.committed);\n\t\tvar newlines = read.match(/\\n/g);\n\t\tvar line = newlines ? lastLine + newlines.length : lastLine;\n\t\tvar column = newlines ? read.length - read.lastIndexOf('\\n') - 1 : lastColumn + read.length;\n\t\treturn {line: line, column: column};\n\t}\n};\n\nexports.InputStream = InputStream;\n\n},\n{}],\n4:[function(_dereq_,module,exports){\nvar SpecialElements = {\n\t\"http://www.w3.org/1999/xhtml\": [\n\t\t'address',\n\t\t'applet',\n\t\t'area',\n\t\t'article',\n\t\t'aside',\n\t\t'base',\n\t\t'basefont',\n\t\t'bgsound',\n\t\t'blockquote',\n\t\t'body',\n\t\t'br',\n\t\t'button',\n\t\t'caption',\n\t\t'center',\n\t\t'col',\n\t\t'colgroup',\n\t\t'dd',\n\t\t'details',\n\t\t'dir',\n\t\t'div',\n\t\t'dl',\n\t\t'dt',\n\t\t'embed',\n\t\t'fieldset',\n\t\t'figcaption',\n\t\t'figure',\n\t\t'footer',\n\t\t'form',\n\t\t'frame',\n\t\t'frameset',\n\t\t'h1',\n\t\t'h2',\n\t\t'h3',\n\t\t'h4',\n\t\t'h5',\n\t\t'h6',\n\t\t'head',\n\t\t'header',\n\t\t'hgroup',\n\t\t'hr',\n\t\t'html',\n\t\t'iframe',\n\t\t'img',\n\t\t'input',\n\t\t'isindex',\n\t\t'li',\n\t\t'link',\n\t\t'listing',\n\t\t'main',\n\t\t'marquee',\n\t\t'menu',\n\t\t'menuitem',\n\t\t'meta',\n\t\t'nav',\n\t\t'noembed',\n\t\t'noframes',\n\t\t'noscript',\n\t\t'object',\n\t\t'ol',\n\t\t'p',\n\t\t'param',\n\t\t'plaintext',\n\t\t'pre',\n\t\t'script',\n\t\t'section',\n\t\t'select',\n\t\t'source',\n\t\t'style',\n\t\t'summary',\n\t\t'table',\n\t\t'tbody',\n\t\t'td',\n\t\t'textarea',\n\t\t'tfoot',\n\t\t'th',\n\t\t'thead',\n\t\t'title',\n\t\t'tr',\n\t\t'track',\n\t\t'ul',\n\t\t'wbr',\n\t\t'xmp'\n\t],\n\t\"http://www.w3.org/1998/Math/MathML\": [\n\t\t'mi',\n\t\t'mo',\n\t\t'mn',\n\t\t'ms',\n\t\t'mtext',\n\t\t'annotation-xml'\n\t],\n\t\"http://www.w3.org/2000/svg\": [\n\t\t'foreignObject',\n\t\t'desc',\n\t\t'title'\n\t]\n};\n\n\nfunction StackItem(namespaceURI, localName, attributes, node) {\n\tthis.localName = localName;\n\tthis.namespaceURI = namespaceURI;\n\tthis.attributes = attributes;\n\tthis.node = node;\n}\nStackItem.prototype.isSpecial = function() {\n\treturn this.namespaceURI in SpecialElements &&\n\t\tSpecialElements[this.namespaceURI].indexOf(this.localName) > -1;\n};\n\nStackItem.prototype.isFosterParenting = function() {\n\tif (this.namespaceURI === \"http://www.w3.org/1999/xhtml\") {\n\t\treturn this.localName === 'table' ||\n\t\t\tthis.localName === 'tbody' ||\n\t\t\tthis.localName === 'tfoot' ||\n\t\t\tthis.localName === 'thead' ||\n\t\t\tthis.localName === 'tr';\n\t}\n\treturn false;\n};\n\nStackItem.prototype.isNumberedHeader = function() {\n\tif (this.namespaceURI === \"http://www.w3.org/1999/xhtml\") {\n\t\treturn this.localName === 'h1' ||\n\t\t\tthis.localName === 'h2' ||\n\t\t\tthis.localName === 'h3' ||\n\t\t\tthis.localName === 'h4' ||\n\t\t\tthis.localName === 'h5' ||\n\t\t\tthis.localName === 'h6';\n\t}\n\treturn false;\n};\n\nStackItem.prototype.isForeign = function() {\n\treturn this.namespaceURI != \"http://www.w3.org/1999/xhtml\";\n};\n\nfunction getAttribute(item, name) {\n\tfor (var i = 0; i < item.attributes.length; i++) {\n\t\tif (item.attributes[i].nodeName == name)\n\t\t\treturn item.attributes[i].nodeValue;\n\t}\n\treturn null;\n}\n\nStackItem.prototype.isHtmlIntegrationPoint = function() {\n\tif (this.namespaceURI === \"http://www.w3.org/1998/Math/MathML\") {\n\t\tif (this.localName !== \"annotation-xml\")\n\t\t\treturn false;\n\t\tvar encoding = getAttribute(this, 'encoding');\n\t\tif (!encoding)\n\t\t\treturn false;\n\t\tencoding = encoding.toLowerCase();\n\t\treturn encoding === \"text/html\" || encoding === \"application/xhtml+xml\";\n\t}\n\tif (this.namespaceURI === \"http://www.w3.org/2000/svg\") {\n\t\treturn this.localName === \"foreignObject\"\n\t\t\t|| this.localName === \"desc\"\n\t\t\t|| this.localName === \"title\";\n\t}\n\treturn false;\n};\n\nStackItem.prototype.isMathMLTextIntegrationPoint = function() {\n\tif (this.namespaceURI === \"http://www.w3.org/1998/Math/MathML\") {\n\t\treturn this.localName === \"mi\"\n\t\t\t|| this.localName === \"mo\"\n\t\t\t|| this.localName === \"mn\"\n\t\t\t|| this.localName === \"ms\"\n\t\t\t|| this.localName === \"mtext\";\n\t}\n\treturn false;\n};\n\nexports.StackItem = StackItem;\n\n},\n{}],\n5:[function(_dereq_,module,exports){\nvar InputStream = _dereq_('./InputStream').InputStream;\nvar EntityParser = _dereq_('./EntityParser').EntityParser;\n\nfunction isWhitespace(c){\n\treturn c === \" \" || c === \"\\n\" || c === \"\\t\" || c === \"\\r\" || c === \"\\f\";\n}\n\nfunction isAlpha(c) {\n\treturn (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z');\n}\nfunction Tokenizer(tokenHandler) {\n\tthis._tokenHandler = tokenHandler;\n\tthis._state = Tokenizer.DATA;\n\tthis._inputStream = new InputStream();\n\tthis._currentToken = null;\n\tthis._temporaryBuffer = '';\n\tthis._additionalAllowedCharacter = '';\n}\n\nTokenizer.prototype._parseError = function(code, args) {\n\tthis._tokenHandler.parseError(code, args);\n};\n\nTokenizer.prototype._emitToken = function(token) {\n\tif (token.type === 'StartTag') {\n\t\tfor (var i = 1; i < token.data.length; i++) {\n\t\t\tif (!token.data[i].nodeName)\n\t\t\t\ttoken.data.splice(i--, 1);\n\t\t}\n\t} else if (token.type === 'EndTag') {\n\t\tif (token.selfClosing) {\n\t\t\tthis._parseError('self-closing-flag-on-end-tag');\n\t\t}\n\t\tif (token.data.length !== 0) {\n\t\t\tthis._parseError('attributes-in-end-tag');\n\t\t}\n\t}\n\tthis._tokenHandler.processToken(token);\n\tif (token.type === 'StartTag' && token.selfClosing && !this._tokenHandler.isSelfClosingFlagAcknowledged()) {\n\t\tthis._parseError('non-void-element-with-trailing-solidus', {name: token.name});\n\t}\n};\n\nTokenizer.prototype._emitCurrentToken = function() {\n\tthis._state = Tokenizer.DATA;\n\tthis._emitToken(this._currentToken);\n};\n\nTokenizer.prototype._currentAttribute = function() {\n\treturn this._currentToken.data[this._currentToken.data.length - 1];\n};\n\nTokenizer.prototype.setState = function(state) {\n\tthis._state = state;\n};\n\nTokenizer.prototype.tokenize = function(source) {\n\tTokenizer.DATA = data_state;\n\tTokenizer.RCDATA = rcdata_state;\n\tTokenizer.RAWTEXT = rawtext_state;\n\tTokenizer.SCRIPT_DATA = script_data_state;\n\tTokenizer.PLAINTEXT = plaintext_state;\n\n\n\tthis._state = Tokenizer.DATA;\n\n\tthis._inputStream.append(source);\n\n\tthis._tokenHandler.startTokenization(this);\n\n\tthis._inputStream.eof = true;\n\n\tvar tokenizer = this;\n\n\twhile (this._state.call(this, this._inputStream));\n\n\n\tfunction data_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._emitToken({type: 'EOF', data: null});\n\t\t\treturn false;\n\t\t} else if (data === '&') {\n\t\t\ttokenizer.setState(character_reference_in_data_state);\n\t\t} else if (data === '<') {\n\t\t\ttokenizer.setState(tag_open_state);\n\t\t} else if (data === '\\u0000') {\n\t\t\ttokenizer._emitToken({type: 'Characters', data: data});\n\t\t\tbuffer.commit();\n\t\t} else {\n\t\t\tvar chars = buffer.matchUntil(\"&|<|\\u0000\");\n\t\t\ttokenizer._emitToken({type: 'Characters', data: data + chars});\n\t\t\tbuffer.commit();\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction character_reference_in_data_state(buffer) {\n\t\tvar character = EntityParser.consumeEntity(buffer, tokenizer);\n\t\ttokenizer.setState(data_state);\n\t\ttokenizer._emitToken({type: 'Characters', data: character || '&'});\n\t\treturn true;\n\t}\n\n\tfunction rcdata_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._emitToken({type: 'EOF', data: null});\n\t\t\treturn false;\n\t\t} else if (data === '&') {\n\t\t\ttokenizer.setState(character_reference_in_rcdata_state);\n\t\t} else if (data === '<') {\n\t\t\ttokenizer.setState(rcdata_less_than_sign_state);\n\t\t} else if (data === \"\\u0000\") {\n\t\t\ttokenizer._parseError(\"invalid-codepoint\");\n\t\t\ttokenizer._emitToken({type: 'Characters', data: '\\uFFFD'});\n\t\t\tbuffer.commit();\n\t\t} else {\n\t\t\tvar chars = buffer.matchUntil(\"&|<|\\u0000\");\n\t\t\ttokenizer._emitToken({type: 'Characters', data: data + chars});\n\t\t\tbuffer.commit();\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction character_reference_in_rcdata_state(buffer) {\n\t\tvar character = EntityParser.consumeEntity(buffer, tokenizer);\n\t\ttokenizer.setState(rcdata_state);\n\t\ttokenizer._emitToken({type: 'Characters', data: character || '&'});\n\t\treturn true;\n\t}\n\n\tfunction rawtext_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._emitToken({type: 'EOF', data: null});\n\t\t\treturn false;\n\t\t} else if (data === '<') {\n\t\t\ttokenizer.setState(rawtext_less_than_sign_state);\n\t\t} else if (data === \"\\u0000\") {\n\t\t\ttokenizer._parseError(\"invalid-codepoint\");\n\t\t\ttokenizer._emitToken({type: 'Characters', data: '\\uFFFD'});\n\t\t\tbuffer.commit();\n\t\t} else {\n\t\t\tvar chars = buffer.matchUntil(\"<|\\u0000\");\n\t\t\ttokenizer._emitToken({type: 'Characters', data: data + chars});\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction plaintext_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._emitToken({type: 'EOF', data: null});\n\t\t\treturn false;\n\t\t} else if (data === \"\\u0000\") {\n\t\t\ttokenizer._parseError(\"invalid-codepoint\");\n\t\t\ttokenizer._emitToken({type: 'Characters', data: '\\uFFFD'});\n\t\t\tbuffer.commit();\n\t\t} else {\n\t\t\tvar chars = buffer.matchUntil(\"\\u0000\");\n\t\t\ttokenizer._emitToken({type: 'Characters', data: data + chars});\n\t\t}\n\t\treturn true;\n\t}\n\n\n\tfunction script_data_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._emitToken({type: 'EOF', data: null});\n\t\t\treturn false;\n\t\t} else if (data === '<') {\n\t\t\ttokenizer.setState(script_data_less_than_sign_state);\n\t\t} else if (data === '\\u0000') {\n\t\t\ttokenizer._parseError(\"invalid-codepoint\");\n\t\t\ttokenizer._emitToken({type: 'Characters', data: '\\uFFFD'});\n\t\t\tbuffer.commit();\n\t\t} else {\n\t\t\tvar chars = buffer.matchUntil(\"<|\\u0000\");\n\t\t\ttokenizer._emitToken({type: 'Characters', data: data + chars});\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction rcdata_less_than_sign_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === \"/\") {\n\t\t\tthis._temporaryBuffer = '';\n\t\t\ttokenizer.setState(rcdata_end_tag_open_state);\n\t\t} else {\n\t\t\ttokenizer._emitToken({type: 'Characters', data: '<'});\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(rcdata_state);\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction rcdata_end_tag_open_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (isAlpha(data)) {\n\t\t\tthis._temporaryBuffer += data;\n\t\t\ttokenizer.setState(rcdata_end_tag_name_state);\n\t\t} else {\n\t\t\ttokenizer._emitToken({type: 'Characters', data: '' && appropriate) {\n\t\t\ttokenizer._currentToken = {type: 'EndTag', name: this._temporaryBuffer, data: [], selfClosing: false};\n\t\t\ttokenizer._emitCurrentToken();\n\t\t\ttokenizer.setState(data_state);\n\t\t} else if (isAlpha(data)) {\n\t\t\tthis._temporaryBuffer += data;\n\t\t\tbuffer.commit();\n\t\t} else {\n\t\t\ttokenizer._emitToken({type: 'Characters', data: '' && appropriate) {\n\t\t\ttokenizer._currentToken = {type: 'EndTag', name: this._temporaryBuffer, data: [], selfClosing: false};\n\t\t\ttokenizer._emitCurrentToken();\n\t\t\ttokenizer.setState(data_state);\n\t\t} else if (isAlpha(data)) {\n\t\t\tthis._temporaryBuffer += data;\n\t\t\tbuffer.commit();\n\t\t} else {\n\t\t\ttokenizer._emitToken({type: 'Characters', data: '' && appropriate) {\n\t\t\ttokenizer._currentToken = {type: 'EndTag', name: 'script', data: [], selfClosing: false};\n\t\t\ttokenizer._emitCurrentToken();\n\t\t} else if (isAlpha(data)) {\n\t\t\tthis._temporaryBuffer += data;\n\t\t\tbuffer.commit();\n\t\t} else {\n\t\t\ttokenizer._emitToken({type: 'Characters', data: '') {\n\t\t\ttokenizer._emitToken({type: 'Characters', data: '>'});\n\t\t\ttokenizer.setState(script_data_state);\n\t\t} else if (data === '\\u0000') {\n\t\t\ttokenizer._parseError(\"invalid-codepoint\");\n\t\t\ttokenizer._emitToken({type: 'Characters', data: '\\uFFFD'});\n\t\t\ttokenizer.setState(script_data_escaped_state);\n\t\t} else {\n\t\t\ttokenizer._emitToken({type: 'Characters', data: data});\n\t\t\ttokenizer.setState(script_data_escaped_state);\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction script_data_escaped_less_then_sign_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === '/') {\n\t\t\tthis._temporaryBuffer = '';\n\t\t\ttokenizer.setState(script_data_escaped_end_tag_open_state);\n\t\t} else if (isAlpha(data)) {\n\t\t\ttokenizer._emitToken({type: 'Characters', data: '<' + data});\n\t\t\tthis._temporaryBuffer = data;\n\t\t\ttokenizer.setState(script_data_double_escape_start_state);\n\t\t} else {\n\t\t\ttokenizer._emitToken({type: 'Characters', data: '<'});\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(script_data_escaped_state);\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction script_data_escaped_end_tag_open_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (isAlpha(data)) {\n\t\t\tthis._temporaryBuffer = data;\n\t\t\ttokenizer.setState(script_data_escaped_end_tag_name_state);\n\t\t} else {\n\t\t\ttokenizer._emitToken({type: 'Characters', data: '' && appropriate) {\n\t\t\ttokenizer._currentToken = {type: 'EndTag', name: 'script', data: [], selfClosing: false};\n\t\t\ttokenizer.setState(data_state);\n\t\t\ttokenizer._emitCurrentToken();\n\t\t} else if (isAlpha(data)) {\n\t\t\tthis._temporaryBuffer += data;\n\t\t\tbuffer.commit();\n\t\t} else {\n\t\t\ttokenizer._emitToken({type: 'Characters', data: '') {\n\t\t\ttokenizer._emitToken({type: 'Characters', data: data});\n\t\t\tif (this._temporaryBuffer.toLowerCase() === 'script')\n\t\t\t\ttokenizer.setState(script_data_double_escaped_state);\n\t\t\telse\n\t\t\t\ttokenizer.setState(script_data_escaped_state);\n\t\t} else if (isAlpha(data)) {\n\t\t\ttokenizer._emitToken({type: 'Characters', data: data});\n\t\t\tthis._temporaryBuffer += data;\n\t\t\tbuffer.commit();\n\t\t} else {\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(script_data_escaped_state);\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction script_data_double_escaped_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._parseError('eof-in-script');\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(data_state);\n\t\t} else if (data === '-') {\n\t\t\ttokenizer._emitToken({type: 'Characters', data: '-'});\n\t\t\ttokenizer.setState(script_data_double_escaped_dash_state);\n\t\t} else if (data === '<') {\n\t\t\ttokenizer._emitToken({type: 'Characters', data: '<'});\n\t\t\ttokenizer.setState(script_data_double_escaped_less_than_sign_state);\n\t\t} else if (data === '\\u0000') {\n\t\t\ttokenizer._parseError('invalid-codepoint');\n\t\t\ttokenizer._emitToken({type: 'Characters', data: '\\uFFFD'});\n\t\t\tbuffer.commit();\n\t\t} else {\n\t\t\ttokenizer._emitToken({type: 'Characters', data: data});\n\t\t\tbuffer.commit();\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction script_data_double_escaped_dash_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._parseError('eof-in-script');\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(data_state);\n\t\t} else if (data === '-') {\n\t\t\ttokenizer._emitToken({type: 'Characters', data: '-'});\n\t\t\ttokenizer.setState(script_data_double_escaped_dash_dash_state);\n\t\t} else if (data === '<') {\n\t\t\ttokenizer._emitToken({type: 'Characters', data: '<'});\n\t\t\ttokenizer.setState(script_data_double_escaped_less_than_sign_state);\n\t\t} else if (data === '\\u0000') {\n\t\t\ttokenizer._parseError('invalid-codepoint');\n\t\t\ttokenizer._emitToken({type: 'Characters', data: '\\uFFFD'});\n\t\t\ttokenizer.setState(script_data_double_escaped_state);\n\t\t} else {\n\t\t\ttokenizer._emitToken({type: 'Characters', data: data});\n\t\t\ttokenizer.setState(script_data_double_escaped_state);\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction script_data_double_escaped_dash_dash_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._parseError('eof-in-script');\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(data_state);\n\t\t} else if (data === '-') {\n\t\t\ttokenizer._emitToken({type: 'Characters', data: '-'});\n\t\t\tbuffer.commit();\n\t\t} else if (data === '<') {\n\t\t\ttokenizer._emitToken({type: 'Characters', data: '<'});\n\t\t\ttokenizer.setState(script_data_double_escaped_less_than_sign_state);\n\t\t} else if (data === '>') {\n\t\t\ttokenizer._emitToken({type: 'Characters', data: '>'});\n\t\t\ttokenizer.setState(script_data_state);\n\t\t} else if (data === '\\u0000') {\n\t\t\ttokenizer._parseError('invalid-codepoint');\n\t\t\ttokenizer._emitToken({type: 'Characters', data: '\\uFFFD'});\n\t\t\ttokenizer.setState(script_data_double_escaped_state);\n\t\t} else {\n\t\t\ttokenizer._emitToken({type: 'Characters', data: data});\n\t\t\ttokenizer.setState(script_data_double_escaped_state);\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction script_data_double_escaped_less_than_sign_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === '/') {\n\t\t\ttokenizer._emitToken({type: 'Characters', data: '/'});\n\t\t\tthis._temporaryBuffer = '';\n\t\t\ttokenizer.setState(script_data_double_escape_end_state);\n\t\t} else {\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(script_data_double_escaped_state);\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction script_data_double_escape_end_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (isWhitespace(data) || data === '/' || data === '>') {\n\t\t\ttokenizer._emitToken({type: 'Characters', data: data});\n\t\t\tif (this._temporaryBuffer.toLowerCase() === 'script')\n\t\t\t\ttokenizer.setState(script_data_escaped_state);\n\t\t\telse\n\t\t\t\ttokenizer.setState(script_data_double_escaped_state);\n\t\t} else if (isAlpha(data)) {\n\t\t\ttokenizer._emitToken({type: 'Characters', data: data});\n\t\t\tthis._temporaryBuffer += data;\n\t\t\tbuffer.commit();\n\t\t} else {\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(script_data_double_escaped_state);\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction tag_open_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._parseError(\"bare-less-than-sign-at-eof\");\n\t\t\ttokenizer._emitToken({type: 'Characters', data: '<'});\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(data_state);\n\t\t} else if (isAlpha(data)) {\n\t\t\ttokenizer._currentToken = {type: 'StartTag', name: data.toLowerCase(), data: []};\n\t\t\ttokenizer.setState(tag_name_state);\n\t\t} else if (data === '!') {\n\t\t\ttokenizer.setState(markup_declaration_open_state);\n\t\t} else if (data === '/') {\n\t\t\ttokenizer.setState(close_tag_open_state);\n\t\t} else if (data === '>') {\n\t\t\ttokenizer._parseError(\"expected-tag-name-but-got-right-bracket\");\n\t\t\ttokenizer._emitToken({type: 'Characters', data: \"<>\"});\n\t\t\ttokenizer.setState(data_state);\n\t\t} else if (data === '?') {\n\t\t\ttokenizer._parseError(\"expected-tag-name-but-got-question-mark\");\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(bogus_comment_state);\n\t\t} else {\n\t\t\ttokenizer._parseError(\"expected-tag-name\");\n\t\t\ttokenizer._emitToken({type: 'Characters', data: \"<\"});\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(data_state);\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction close_tag_open_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._parseError(\"expected-closing-tag-but-got-eof\");\n\t\t\ttokenizer._emitToken({type: 'Characters', data: '') {\n\t\t\ttokenizer._parseError(\"expected-closing-tag-but-got-right-bracket\");\n\t\t\ttokenizer.setState(data_state);\n\t\t} else {\n\t\t\ttokenizer._parseError(\"expected-closing-tag-but-got-char\", {data: data}); // param 1 is datavars:\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(bogus_comment_state);\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction tag_name_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._parseError('eof-in-tag-name');\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(data_state);\n\t\t} else if (isWhitespace(data)) {\n\t\t\ttokenizer.setState(before_attribute_name_state);\n\t\t} else if (isAlpha(data)) {\n\t\t\ttokenizer._currentToken.name += data.toLowerCase();\n\t\t} else if (data === '>') {\n\t\t\ttokenizer._emitCurrentToken();\n\t\t} else if (data === '/') {\n\t\t\ttokenizer.setState(self_closing_tag_state);\n\t\t} else if (data === '\\u0000') {\n\t\t\ttokenizer._parseError(\"invalid-codepoint\");\n\t\t\ttokenizer._currentToken.name += \"\\uFFFD\";\n\t\t} else {\n\t\t\ttokenizer._currentToken.name += data;\n\t\t}\n\t\tbuffer.commit();\n\n\t\treturn true;\n\t}\n\n\tfunction before_attribute_name_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._parseError(\"expected-attribute-name-but-got-eof\");\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(data_state);\n\t\t} else if (isWhitespace(data)) {\n\t\t\treturn true;\n\t\t} else if (isAlpha(data)) {\n\t\t\ttokenizer._currentToken.data.push({nodeName: data.toLowerCase(), nodeValue: \"\"});\n\t\t\ttokenizer.setState(attribute_name_state);\n\t\t} else if (data === '>') {\n\t\t\ttokenizer._emitCurrentToken();\n\t\t} else if (data === '/') {\n\t\t\ttokenizer.setState(self_closing_tag_state);\n\t\t} else if (data === \"'\" || data === '\"' || data === '=' || data === '<') {\n\t\t\ttokenizer._parseError(\"invalid-character-in-attribute-name\");\n\t\t\ttokenizer._currentToken.data.push({nodeName: data, nodeValue: \"\"});\n\t\t\ttokenizer.setState(attribute_name_state);\n\t\t} else if (data === '\\u0000') {\n\t\t\ttokenizer._parseError(\"invalid-codepoint\");\n\t\t\ttokenizer._currentToken.data.push({nodeName: \"\\uFFFD\", nodeValue: \"\"});\n\t\t} else {\n\t\t\ttokenizer._currentToken.data.push({nodeName: data, nodeValue: \"\"});\n\t\t\ttokenizer.setState(attribute_name_state);\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction attribute_name_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tvar leavingThisState = true;\n\t\tvar shouldEmit = false;\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._parseError(\"eof-in-attribute-name\");\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(data_state);\n\t\t\tshouldEmit = true;\n\t\t} else if (data === '=') {\n\t\t\ttokenizer.setState(before_attribute_value_state);\n\t\t} else if (isAlpha(data)) {\n\t\t\ttokenizer._currentAttribute().nodeName += data.toLowerCase();\n\t\t\tleavingThisState = false;\n\t\t} else if (data === '>') {\n\t\t\tshouldEmit = true;\n\t\t} else if (isWhitespace(data)) {\n\t\t\ttokenizer.setState(after_attribute_name_state);\n\t\t} else if (data === '/') {\n\t\t\ttokenizer.setState(self_closing_tag_state);\n\t\t} else if (data === \"'\" || data === '\"') {\n\t\t\ttokenizer._parseError(\"invalid-character-in-attribute-name\");\n\t\t\ttokenizer._currentAttribute().nodeName += data;\n\t\t\tleavingThisState = false;\n\t\t} else if (data === '\\u0000') {\n\t\t\ttokenizer._parseError(\"invalid-codepoint\");\n\t\t\ttokenizer._currentAttribute().nodeName += \"\\uFFFD\";\n\t\t} else {\n\t\t\ttokenizer._currentAttribute().nodeName += data;\n\t\t\tleavingThisState = false;\n\t\t}\n\n\t\tif (leavingThisState) {\n\t\t\tvar attributes = tokenizer._currentToken.data;\n\t\t\tvar currentAttribute = attributes[attributes.length - 1];\n\t\t\tfor (var i = attributes.length - 2; i >= 0; i--) {\n\t\t\t\tif (currentAttribute.nodeName === attributes[i].nodeName) {\n\t\t\t\t\ttokenizer._parseError(\"duplicate-attribute\", {name: currentAttribute.nodeName});\n\t\t\t\t\tcurrentAttribute.nodeName = null;\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (shouldEmit)\n\t\t\t\ttokenizer._emitCurrentToken();\n\t\t} else {\n\t\t\tbuffer.commit();\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction after_attribute_name_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._parseError(\"expected-end-of-tag-but-got-eof\");\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(data_state);\n\t\t} else if (isWhitespace(data)) {\n\t\t\treturn true;\n\t\t} else if (data === '=') {\n\t\t\ttokenizer.setState(before_attribute_value_state);\n\t\t} else if (data === '>') {\n\t\t\ttokenizer._emitCurrentToken();\n\t\t} else if (isAlpha(data)) {\n\t\t\ttokenizer._currentToken.data.push({nodeName: data, nodeValue: \"\"});\n\t\t\ttokenizer.setState(attribute_name_state);\n\t\t} else if (data === '/') {\n\t\t\ttokenizer.setState(self_closing_tag_state);\n\t\t} else if (data === \"'\" || data === '\"' || data === '<') {\n\t\t\ttokenizer._parseError(\"invalid-character-after-attribute-name\");\n\t\t\ttokenizer._currentToken.data.push({nodeName: data, nodeValue: \"\"});\n\t\t\ttokenizer.setState(attribute_name_state);\n\t\t} else if (data === '\\u0000') {\n\t\t\ttokenizer._parseError(\"invalid-codepoint\");\n\t\t\ttokenizer._currentToken.data.push({nodeName: \"\\uFFFD\", nodeValue: \"\"});\n\t\t} else {\n\t\t\ttokenizer._currentToken.data.push({nodeName: data, nodeValue: \"\"});\n\t\t\ttokenizer.setState(attribute_name_state);\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction before_attribute_value_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._parseError(\"expected-attribute-value-but-got-eof\");\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(data_state);\n\t\t} else if (isWhitespace(data)) {\n\t\t\treturn true;\n\t\t} else if (data === '\"') {\n\t\t\ttokenizer.setState(attribute_value_double_quoted_state);\n\t\t} else if (data === '&') {\n\t\t\ttokenizer.setState(attribute_value_unquoted_state);\n\t\t\tbuffer.unget(data);\n\t\t} else if (data === \"'\") {\n\t\t\ttokenizer.setState(attribute_value_single_quoted_state);\n\t\t} else if (data === '>') {\n\t\t\ttokenizer._parseError(\"expected-attribute-value-but-got-right-bracket\");\n\t\t\ttokenizer._emitCurrentToken();\n\t\t} else if (data === '=' || data === '<' || data === '`') {\n\t\t\ttokenizer._parseError(\"unexpected-character-in-unquoted-attribute-value\");\n\t\t\ttokenizer._currentAttribute().nodeValue += data;\n\t\t\ttokenizer.setState(attribute_value_unquoted_state);\n\t\t} else if (data === '\\u0000') {\n\t\t\ttokenizer._parseError(\"invalid-codepoint\");\n\t\t\ttokenizer._currentAttribute().nodeValue += \"\\uFFFD\";\n\t\t} else {\n\t\t\ttokenizer._currentAttribute().nodeValue += data;\n\t\t\ttokenizer.setState(attribute_value_unquoted_state);\n\t\t}\n\n\t\treturn true;\n\t}\n\n\tfunction attribute_value_double_quoted_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._parseError(\"eof-in-attribute-value-double-quote\");\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(data_state);\n\t\t} else if (data === '\"') {\n\t\t\ttokenizer.setState(after_attribute_value_state);\n\t\t} else if (data === '&') {\n\t\t\tthis._additionalAllowedCharacter = '\"';\n\t\t\ttokenizer.setState(character_reference_in_attribute_value_state);\n\t\t} else if (data === '\\u0000') {\n\t\t\ttokenizer._parseError(\"invalid-codepoint\");\n\t\t\ttokenizer._currentAttribute().nodeValue += \"\\uFFFD\";\n\t\t} else {\n\t\t\tvar s = buffer.matchUntil('[\\0\"&]');\n\t\t\tdata = data + s;\n\t\t\ttokenizer._currentAttribute().nodeValue += data;\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction attribute_value_single_quoted_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._parseError(\"eof-in-attribute-value-single-quote\");\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(data_state);\n\t\t} else if (data === \"'\") {\n\t\t\ttokenizer.setState(after_attribute_value_state);\n\t\t} else if (data === '&') {\n\t\t\tthis._additionalAllowedCharacter = \"'\";\n\t\t\ttokenizer.setState(character_reference_in_attribute_value_state);\n\t\t} else if (data === '\\u0000') {\n\t\t\ttokenizer._parseError(\"invalid-codepoint\");\n\t\t\ttokenizer._currentAttribute().nodeValue += \"\\uFFFD\";\n\t\t} else {\n\t\t\ttokenizer._currentAttribute().nodeValue += data + buffer.matchUntil(\"\\u0000|['&]\");\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction attribute_value_unquoted_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._parseError(\"eof-after-attribute-value\");\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(data_state);\n\t\t} else if (isWhitespace(data)) {\n\t\t\ttokenizer.setState(before_attribute_name_state);\n\t\t} else if (data === '&') {\n\t\t\tthis._additionalAllowedCharacter = \">\";\n\t\t\ttokenizer.setState(character_reference_in_attribute_value_state);\n\t\t} else if (data === '>') {\n\t\t\ttokenizer._emitCurrentToken();\n\t\t} else if (data === '\"' || data === \"'\" || data === '=' || data === '`' || data === '<') {\n\t\t\ttokenizer._parseError(\"unexpected-character-in-unquoted-attribute-value\");\n\t\t\ttokenizer._currentAttribute().nodeValue += data;\n\t\t\tbuffer.commit();\n\t\t} else if (data === '\\u0000') {\n\t\t\ttokenizer._parseError(\"invalid-codepoint\");\n\t\t\ttokenizer._currentAttribute().nodeValue += \"\\uFFFD\";\n\t\t} else {\n\t\t\tvar o = buffer.matchUntil(\"\\u0000|[\"+ \"\\t\\n\\v\\f\\x20\\r\" + \"&<>\\\"'=`\" +\"]\");\n\t\t\tif (o === InputStream.EOF) {\n\t\t\t\ttokenizer._parseError(\"eof-in-attribute-value-no-quotes\");\n\t\t\t\ttokenizer._emitCurrentToken();\n\t\t\t}\n\t\t\tbuffer.commit();\n\t\t\ttokenizer._currentAttribute().nodeValue += data + o;\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction character_reference_in_attribute_value_state(buffer) {\n\t\tvar character = EntityParser.consumeEntity(buffer, tokenizer, this._additionalAllowedCharacter);\n\t\tthis._currentAttribute().nodeValue += character || '&';\n\t\tif (this._additionalAllowedCharacter === '\"')\n\t\t\ttokenizer.setState(attribute_value_double_quoted_state);\n\t\telse if (this._additionalAllowedCharacter === '\\'')\n\t\t\ttokenizer.setState(attribute_value_single_quoted_state);\n\t\telse if (this._additionalAllowedCharacter === '>')\n\t\t\ttokenizer.setState(attribute_value_unquoted_state);\n\t\treturn true;\n\t}\n\n\tfunction after_attribute_value_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._parseError(\"eof-after-attribute-value\");\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(data_state);\n\t\t} else if (isWhitespace(data)) {\n\t\t\ttokenizer.setState(before_attribute_name_state);\n\t\t} else if (data === '>') {\n\t\t\ttokenizer.setState(data_state);\n\t\t\ttokenizer._emitCurrentToken();\n\t\t} else if (data === '/') {\n\t\t\ttokenizer.setState(self_closing_tag_state);\n\t\t} else {\n\t\t\ttokenizer._parseError(\"unexpected-character-after-attribute-value\");\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(before_attribute_name_state);\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction self_closing_tag_state(buffer) {\n\t\tvar c = buffer.char();\n\t\tif (c === InputStream.EOF) {\n\t\t\ttokenizer._parseError(\"unexpected-eof-after-solidus-in-tag\");\n\t\t\tbuffer.unget(c);\n\t\t\ttokenizer.setState(data_state);\n\t\t} else if (c === '>') {\n\t\t\ttokenizer._currentToken.selfClosing = true;\n\t\t\ttokenizer.setState(data_state);\n\t\t\ttokenizer._emitCurrentToken();\n\t\t} else {\n\t\t\ttokenizer._parseError(\"unexpected-character-after-solidus-in-tag\");\n\t\t\tbuffer.unget(c);\n\t\t\ttokenizer.setState(before_attribute_name_state);\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction bogus_comment_state(buffer) {\n\t\tvar data = buffer.matchUntil('>');\n\t\tdata = data.replace(/\\u0000/g, \"\\uFFFD\");\n\t\tbuffer.char();\n\t\ttokenizer._emitToken({type: 'Comment', data: data});\n\t\ttokenizer.setState(data_state);\n\t\treturn true;\n\t}\n\n\tfunction markup_declaration_open_state(buffer) {\n\t\tvar chars = buffer.shift(2);\n\t\tif (chars === '--') {\n\t\t\ttokenizer._currentToken = {type: 'Comment', data: ''};\n\t\t\ttokenizer.setState(comment_start_state);\n\t\t} else {\n\t\t\tvar newchars = buffer.shift(5);\n\t\t\tif (newchars === InputStream.EOF || chars === InputStream.EOF) {\n\t\t\t\ttokenizer._parseError(\"expected-dashes-or-doctype\");\n\t\t\t\ttokenizer.setState(bogus_comment_state);\n\t\t\t\tbuffer.unget(chars);\n\t\t\t\treturn true;\n\t\t\t}\n\n\t\t\tchars += newchars;\n\t\t\tif (chars.toUpperCase() === 'DOCTYPE') {\n\t\t\t\ttokenizer._currentToken = {type: 'Doctype', name: '', publicId: null, systemId: null, forceQuirks: false};\n\t\t\t\ttokenizer.setState(doctype_state);\n\t\t\t} else if (tokenizer._tokenHandler.isCdataSectionAllowed() && chars === '[CDATA[') {\n\t\t\t\ttokenizer.setState(cdata_section_state);\n\t\t\t} else {\n\t\t\t\ttokenizer._parseError(\"expected-dashes-or-doctype\");\n\t\t\t\tbuffer.unget(chars);\n\t\t\t\ttokenizer.setState(bogus_comment_state);\n\t\t\t}\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction cdata_section_state(buffer) {\n\t\tvar data = buffer.matchUntil(']]>');\n\t\tbuffer.shift(3);\n\t\tif (data) {\n\t\t\ttokenizer._emitToken({type: 'Characters', data: data});\n\t\t}\n\t\ttokenizer.setState(data_state);\n\t\treturn true;\n\t}\n\n\tfunction comment_start_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._parseError(\"eof-in-comment\");\n\t\t\ttokenizer._emitToken(tokenizer._currentToken);\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(data_state);\n\t\t} else if (data === '-') {\n\t\t\ttokenizer.setState(comment_start_dash_state);\n\t\t} else if (data === '>') {\n\t\t\ttokenizer._parseError(\"incorrect-comment\");\n\t\t\ttokenizer._emitToken(tokenizer._currentToken);\n\t\t\ttokenizer.setState(data_state);\n\t\t} else if (data === '\\u0000') {\n\t\t\ttokenizer._parseError(\"invalid-codepoint\");\n\t\t\ttokenizer._currentToken.data += \"\\uFFFD\";\n\t\t} else {\n\t\t\ttokenizer._currentToken.data += data;\n\t\t\ttokenizer.setState(comment_state);\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction comment_start_dash_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._parseError(\"eof-in-comment\");\n\t\t\ttokenizer._emitToken(tokenizer._currentToken);\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(data_state);\n\t\t} else if (data === '-') {\n\t\t\ttokenizer.setState(comment_end_state);\n\t\t} else if (data === '>') {\n\t\t\ttokenizer._parseError(\"incorrect-comment\");\n\t\t\ttokenizer._emitToken(tokenizer._currentToken);\n\t\t\ttokenizer.setState(data_state);\n\t\t} else if (data === '\\u0000') {\n\t\t\ttokenizer._parseError(\"invalid-codepoint\");\n\t\t\ttokenizer._currentToken.data += \"\\uFFFD\";\n\t\t} else {\n\t\t\ttokenizer._currentToken.data += '-' + data;\n\t\t\ttokenizer.setState(comment_state);\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction comment_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._parseError(\"eof-in-comment\");\n\t\t\ttokenizer._emitToken(tokenizer._currentToken);\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(data_state);\n\t\t} else if (data === '-') {\n\t\t\ttokenizer.setState(comment_end_dash_state);\n\t\t} else if (data === '\\u0000') {\n\t\t\ttokenizer._parseError(\"invalid-codepoint\");\n\t\t\ttokenizer._currentToken.data += \"\\uFFFD\";\n\t\t} else {\n\t\t\ttokenizer._currentToken.data += data;\n\t\t\tbuffer.commit();\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction comment_end_dash_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._parseError(\"eof-in-comment-end-dash\");\n\t\t\ttokenizer._emitToken(tokenizer._currentToken);\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(data_state);\n\t\t} else if (data === '-') {\n\t\t\ttokenizer.setState(comment_end_state);\n\t\t} else if (data === '\\u0000') {\n\t\t\ttokenizer._parseError(\"invalid-codepoint\");\n\t\t\ttokenizer._currentToken.data += \"-\\uFFFD\";\n\t\t\ttokenizer.setState(comment_state);\n\t\t} else {\n\t\t\ttokenizer._currentToken.data += '-' + data + buffer.matchUntil('\\u0000|-');\n\t\t\tbuffer.char();\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction comment_end_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._parseError(\"eof-in-comment-double-dash\");\n\t\t\ttokenizer._emitToken(tokenizer._currentToken);\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(data_state);\n\t\t} else if (data === '>') {\n\t\t\ttokenizer._emitToken(tokenizer._currentToken);\n\t\t\ttokenizer.setState(data_state);\n\t\t} else if (data === '!') {\n\t\t\ttokenizer._parseError(\"unexpected-bang-after-double-dash-in-comment\");\n\t\t\ttokenizer.setState(comment_end_bang_state);\n\t\t} else if (data === '-') {\n\t\t\ttokenizer._parseError(\"unexpected-dash-after-double-dash-in-comment\");\n\t\t\ttokenizer._currentToken.data += data;\n\t\t} else if (data === '\\u0000') {\n\t\t\ttokenizer._parseError(\"invalid-codepoint\");\n\t\t\ttokenizer._currentToken.data += \"--\\uFFFD\";\n\t\t\ttokenizer.setState(comment_state);\n\t\t} else {\n\t\t\ttokenizer._parseError(\"unexpected-char-in-comment\");\n\t\t\ttokenizer._currentToken.data += '--' + data;\n\t\t\ttokenizer.setState(comment_state);\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction comment_end_bang_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._parseError(\"eof-in-comment-end-bang-state\");\n\t\t\ttokenizer._emitToken(tokenizer._currentToken);\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(data_state);\n\t\t} else if (data === '>') {\n\t\t\ttokenizer._emitToken(tokenizer._currentToken);\n\t\t\ttokenizer.setState(data_state);\n\t\t} else if (data === '-') {\n\t\t\ttokenizer._currentToken.data += '--!';\n\t\t\ttokenizer.setState(comment_end_dash_state);\n\t\t} else {\n\t\t\ttokenizer._currentToken.data += '--!' + data;\n\t\t\ttokenizer.setState(comment_state);\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction doctype_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._parseError(\"expected-doctype-name-but-got-eof\");\n\t\t\ttokenizer._currentToken.forceQuirks = true;\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(data_state);\n\t\t\ttokenizer._emitCurrentToken();\n\t\t} else if (isWhitespace(data)) {\n\t\t\ttokenizer.setState(before_doctype_name_state);\n\t\t} else {\n\t\t\ttokenizer._parseError(\"need-space-after-doctype\");\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(before_doctype_name_state);\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction before_doctype_name_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._parseError(\"expected-doctype-name-but-got-eof\");\n\t\t\ttokenizer._currentToken.forceQuirks = true;\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(data_state);\n\t\t\ttokenizer._emitCurrentToken();\n\t\t} else if (isWhitespace(data)) {\n\t\t} else if (data === '>') {\n\t\t\ttokenizer._parseError(\"expected-doctype-name-but-got-right-bracket\");\n\t\t\ttokenizer._currentToken.forceQuirks = true;\n\t\t\ttokenizer.setState(data_state);\n\t\t\ttokenizer._emitCurrentToken();\n\t\t} else {\n\t\t\tif (isAlpha(data))\n\t\t\t\tdata = data.toLowerCase();\n\t\t\ttokenizer._currentToken.name = data;\n\t\t\ttokenizer.setState(doctype_name_state);\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction doctype_name_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._currentToken.forceQuirks = true;\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer._parseError(\"eof-in-doctype-name\");\n\t\t\ttokenizer.setState(data_state);\n\t\t\ttokenizer._emitCurrentToken();\n\t\t} else if (isWhitespace(data)) {\n\t\t\ttokenizer.setState(after_doctype_name_state);\n\t\t} else if (data === '>') {\n\t\t\ttokenizer.setState(data_state);\n\t\t\ttokenizer._emitCurrentToken();\n\t\t} else {\n\t\t\tif (isAlpha(data))\n\t\t\t\tdata = data.toLowerCase();\n\t\t\ttokenizer._currentToken.name += data;\n\t\t\tbuffer.commit();\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction after_doctype_name_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._currentToken.forceQuirks = true;\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer._parseError(\"eof-in-doctype\");\n\t\t\ttokenizer.setState(data_state);\n\t\t\ttokenizer._emitCurrentToken();\n\t\t} else if (isWhitespace(data)) {\n\t\t} else if (data === '>') {\n\t\t\ttokenizer.setState(data_state);\n\t\t\ttokenizer._emitCurrentToken();\n\t\t} else {\n\t\t\tif (['p', 'P'].indexOf(data) > -1) {\n\t\t\t\tvar expected = [['u', 'U'], ['b', 'B'], ['l', 'L'], ['i', 'I'], ['c', 'C']];\n\t\t\t\tvar matched = expected.every(function(expected){\n\t\t\t\t\tdata = buffer.char();\n\t\t\t\t\treturn expected.indexOf(data) > -1;\n\t\t\t\t});\n\t\t\t\tif (matched) {\n\t\t\t\t\ttokenizer.setState(after_doctype_public_keyword_state);\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t} else if (['s', 'S'].indexOf(data) > -1) {\n\t\t\t\tvar expected = [['y', 'Y'], ['s', 'S'], ['t', 'T'], ['e', 'E'], ['m', 'M']];\n\t\t\t\tvar matched = expected.every(function(expected){\n\t\t\t\t\tdata = buffer.char();\n\t\t\t\t\treturn expected.indexOf(data) > -1;\n\t\t\t\t});\n\t\t\t\tif (matched) {\n\t\t\t\t\ttokenizer.setState(after_doctype_system_keyword_state);\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer._currentToken.forceQuirks = true;\n\n\t\t\tif (data === InputStream.EOF) {\n\t\t\t\ttokenizer._parseError(\"eof-in-doctype\");\n\t\t\t\tbuffer.unget(data);\n\t\t\t\ttokenizer.setState(data_state);\n\t\t\t\ttokenizer._emitCurrentToken();\n\t\t\t} else {\n\t\t\t\ttokenizer._parseError(\"expected-space-or-right-bracket-in-doctype\", {data: data});\n\t\t\t\ttokenizer.setState(bogus_doctype_state);\n\t\t\t}\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction after_doctype_public_keyword_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._parseError(\"eof-in-doctype\");\n\t\t\ttokenizer._currentToken.forceQuirks = true;\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(data_state);\n\t\t\ttokenizer._emitCurrentToken();\n\t\t} else if (isWhitespace(data)) {\n\t\t\ttokenizer.setState(before_doctype_public_identifier_state);\n\t\t} else if (data === \"'\" || data === '\"') {\n\t\t\ttokenizer._parseError(\"unexpected-char-in-doctype\");\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(before_doctype_public_identifier_state);\n\t\t} else {\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(before_doctype_public_identifier_state);\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction before_doctype_public_identifier_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._parseError(\"eof-in-doctype\");\n\t\t\ttokenizer._currentToken.forceQuirks = true;\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(data_state);\n\t\t\ttokenizer._emitCurrentToken();\n\t\t} else if (isWhitespace(data)) {\n\t\t} else if (data === '\"') {\n\t\t\ttokenizer._currentToken.publicId = '';\n\t\t\ttokenizer.setState(doctype_public_identifier_double_quoted_state);\n\t\t} else if (data === \"'\") {\n\t\t\ttokenizer._currentToken.publicId = '';\n\t\t\ttokenizer.setState(doctype_public_identifier_single_quoted_state);\n\t\t} else if (data === '>') {\n\t\t\ttokenizer._parseError(\"unexpected-end-of-doctype\");\n\t\t\ttokenizer._currentToken.forceQuirks = true;\n\t\t\ttokenizer.setState(data_state);\n\t\t\ttokenizer._emitCurrentToken();\n\t\t} else {\n\t\t\ttokenizer._parseError(\"unexpected-char-in-doctype\");\n\t\t\ttokenizer._currentToken.forceQuirks = true;\n\t\t\ttokenizer.setState(bogus_doctype_state);\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction doctype_public_identifier_double_quoted_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._parseError(\"eof-in-doctype\");\n\t\t\ttokenizer._currentToken.forceQuirks = true;\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(data_state);\n\t\t\ttokenizer._emitCurrentToken();\n\t\t} else if (data === '\"') {\n\t\t\ttokenizer.setState(after_doctype_public_identifier_state);\n\t\t} else if (data === '>') {\n\t\t\ttokenizer._parseError(\"unexpected-end-of-doctype\");\n\t\t\ttokenizer._currentToken.forceQuirks = true;\n\t\t\ttokenizer.setState(data_state);\n\t\t\ttokenizer._emitCurrentToken();\n\t\t} else {\n\t\t\ttokenizer._currentToken.publicId += data;\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction doctype_public_identifier_single_quoted_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._parseError(\"eof-in-doctype\");\n\t\t\ttokenizer._currentToken.forceQuirks = true;\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(data_state);\n\t\t\ttokenizer._emitCurrentToken();\n\t\t} else if (data === \"'\") {\n\t\t\ttokenizer.setState(after_doctype_public_identifier_state);\n\t\t} else if (data === '>') {\n\t\t\ttokenizer._parseError(\"unexpected-end-of-doctype\");\n\t\t\ttokenizer._currentToken.forceQuirks = true;\n\t\t\ttokenizer.setState(data_state);\n\t\t\ttokenizer._emitCurrentToken();\n\t\t} else {\n\t\t\ttokenizer._currentToken.publicId += data;\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction after_doctype_public_identifier_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._parseError(\"eof-in-doctype\");\n\t\t\ttokenizer._currentToken.forceQuirks = true;\n\t\t\ttokenizer._emitCurrentToken();\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(data_state);\n\t\t} else if (isWhitespace(data)) {\n\t\t\ttokenizer.setState(between_doctype_public_and_system_identifiers_state);\n\t\t} else if (data === '>') {\n\t\t\ttokenizer.setState(data_state);\n\t\t\ttokenizer._emitCurrentToken();\n\t\t} else if (data === '\"') {\n\t\t\ttokenizer._parseError(\"unexpected-char-in-doctype\");\n\t\t\ttokenizer._currentToken.systemId = '';\n\t\t\ttokenizer.setState(doctype_system_identifier_double_quoted_state);\n\t\t} else if (data === \"'\") {\n\t\t\ttokenizer._parseError(\"unexpected-char-in-doctype\");\n\t\t\ttokenizer._currentToken.systemId = '';\n\t\t\ttokenizer.setState(doctype_system_identifier_single_quoted_state);\n\t\t} else {\n\t\t\ttokenizer._parseError(\"unexpected-char-in-doctype\");\n\t\t\ttokenizer._currentToken.forceQuirks = true;\n\t\t\ttokenizer.setState(bogus_doctype_state);\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction between_doctype_public_and_system_identifiers_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._parseError(\"eof-in-doctype\");\n\t\t\ttokenizer._currentToken.forceQuirks = true;\n\t\t\ttokenizer._emitCurrentToken();\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(data_state);\n\t\t} else if (isWhitespace(data)) {\n\t\t} else if (data === '>') {\n\t\t\ttokenizer._emitCurrentToken();\n\t\t\ttokenizer.setState(data_state);\n\t\t} else if (data === '\"') {\n\t\t\ttokenizer._currentToken.systemId = '';\n\t\t\ttokenizer.setState(doctype_system_identifier_double_quoted_state);\n\t\t} else if (data === \"'\") {\n\t\t\ttokenizer._currentToken.systemId = '';\n\t\t\ttokenizer.setState(doctype_system_identifier_single_quoted_state);\n\t\t} else {\n\t\t\ttokenizer._parseError(\"unexpected-char-in-doctype\");\n\t\t\ttokenizer._currentToken.forceQuirks = true;\n\t\t\ttokenizer.setState(bogus_doctype_state);\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction after_doctype_system_keyword_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._parseError(\"eof-in-doctype\");\n\t\t\ttokenizer._currentToken.forceQuirks = true;\n\t\t\ttokenizer._emitCurrentToken();\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(data_state);\n\t\t} else if (isWhitespace(data)) {\n\t\t\ttokenizer.setState(before_doctype_system_identifier_state);\n\t\t} else if (data === \"'\" || data === '\"') {\n\t\t\ttokenizer._parseError(\"unexpected-char-in-doctype\");\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(before_doctype_system_identifier_state);\n\t\t} else {\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(before_doctype_system_identifier_state);\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction before_doctype_system_identifier_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._parseError(\"eof-in-doctype\");\n\t\t\ttokenizer._currentToken.forceQuirks = true;\n\t\t\ttokenizer._emitCurrentToken();\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(data_state);\n\t\t} else if (isWhitespace(data)) {\n\t\t} else if (data === '\"') {\n\t\t\ttokenizer._currentToken.systemId = '';\n\t\t\ttokenizer.setState(doctype_system_identifier_double_quoted_state);\n\t\t} else if (data === \"'\") {\n\t\t\ttokenizer._currentToken.systemId = '';\n\t\t\ttokenizer.setState(doctype_system_identifier_single_quoted_state);\n\t\t} else if (data === '>') {\n\t\t\ttokenizer._parseError(\"unexpected-end-of-doctype\");\n\t\t\ttokenizer._currentToken.forceQuirks = true;\n\t\t\ttokenizer._emitCurrentToken();\n\t\t\ttokenizer.setState(data_state);\n\t\t} else {\n\t\t\ttokenizer._parseError(\"unexpected-char-in-doctype\");\n\t\t\ttokenizer._currentToken.forceQuirks = true;\n\t\t\ttokenizer.setState(bogus_doctype_state);\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction doctype_system_identifier_double_quoted_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._parseError(\"eof-in-doctype\");\n\t\t\ttokenizer._currentToken.forceQuirks = true;\n\t\t\ttokenizer._emitCurrentToken();\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(data_state);\n\t\t} else if (data === '\"') {\n\t\t\ttokenizer.setState(after_doctype_system_identifier_state);\n\t\t} else if (data === '>') {\n\t\t\ttokenizer._parseError(\"unexpected-end-of-doctype\");\n\t\t\ttokenizer._currentToken.forceQuirks = true;\n\t\t\ttokenizer._emitCurrentToken();\n\t\t\ttokenizer.setState(data_state);\n\t\t} else {\n\t\t\ttokenizer._currentToken.systemId += data;\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction doctype_system_identifier_single_quoted_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._parseError(\"eof-in-doctype\");\n\t\t\ttokenizer._currentToken.forceQuirks = true;\n\t\t\ttokenizer._emitCurrentToken();\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(data_state);\n\t\t} else if (data === \"'\") {\n\t\t\ttokenizer.setState(after_doctype_system_identifier_state);\n\t\t} else if (data === '>') {\n\t\t\ttokenizer._parseError(\"unexpected-end-of-doctype\");\n\t\t\ttokenizer._currentToken.forceQuirks = true;\n\t\t\ttokenizer._emitCurrentToken();\n\t\t\ttokenizer.setState(data_state);\n\t\t} else {\n\t\t\ttokenizer._currentToken.systemId += data;\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction after_doctype_system_identifier_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\ttokenizer._parseError(\"eof-in-doctype\");\n\t\t\ttokenizer._currentToken.forceQuirks = true;\n\t\t\ttokenizer._emitCurrentToken();\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer.setState(data_state);\n\t\t} else if (isWhitespace(data)) {\n\t\t} else if (data === '>') {\n\t\t\ttokenizer._emitCurrentToken();\n\t\t\ttokenizer.setState(data_state);\n\t\t} else {\n\t\t\ttokenizer._parseError(\"unexpected-char-in-doctype\");\n\t\t\ttokenizer.setState(bogus_doctype_state);\n\t\t}\n\t\treturn true;\n\t}\n\n\tfunction bogus_doctype_state(buffer) {\n\t\tvar data = buffer.char();\n\t\tif (data === InputStream.EOF) {\n\t\t\tbuffer.unget(data);\n\t\t\ttokenizer._emitCurrentToken();\n\t\t\ttokenizer.setState(data_state);\n\t\t} else if (data === '>') {\n\t\t\ttokenizer._emitCurrentToken();\n\t\t\ttokenizer.setState(data_state);\n\t\t}\n\t\treturn true;\n\t}\n};\n\nObject.defineProperty(Tokenizer.prototype, 'lineNumber', {\n\tget: function() {\n\t\treturn this._inputStream.location().line;\n\t}\n});\n\nObject.defineProperty(Tokenizer.prototype, 'columnNumber', {\n\tget: function() {\n\t\treturn this._inputStream.location().column;\n\t}\n});\n\nexports.Tokenizer = Tokenizer;\n\n},\n{\"./EntityParser\":2,\"./InputStream\":3}],\n6:[function(_dereq_,module,exports){\nvar assert = _dereq_('assert');\n\nvar messages = _dereq_('./messages.json');\nvar constants = _dereq_('./constants');\n\nvar EventEmitter = _dereq_('events').EventEmitter;\n\nvar Tokenizer = _dereq_('./Tokenizer').Tokenizer;\nvar ElementStack = _dereq_('./ElementStack').ElementStack;\nvar StackItem = _dereq_('./StackItem').StackItem;\n\nvar Marker = {};\n\nfunction isWhitespace(ch) {\n\treturn ch === \" \" || ch === \"\\n\" || ch === \"\\t\" || ch === \"\\r\" || ch === \"\\f\";\n}\n\nfunction isWhitespaceOrReplacementCharacter(ch) {\n\treturn isWhitespace(ch) || ch === '\\uFFFD';\n}\n\nfunction isAllWhitespace(characters) {\n\tfor (var i = 0; i < characters.length; i++) {\n\t\tvar ch = characters[i];\n\t\tif (!isWhitespace(ch))\n\t\t\treturn false;\n\t}\n\treturn true;\n}\n\nfunction isAllWhitespaceOrReplacementCharacters(characters) {\n\tfor (var i = 0; i < characters.length; i++) {\n\t\tvar ch = characters[i];\n\t\tif (!isWhitespaceOrReplacementCharacter(ch))\n\t\t\treturn false;\n\t}\n\treturn true;\n}\n\nfunction getAttribute(node, name) {\n\tfor (var i = 0; i < node.attributes.length; i++) {\n\t\tvar attribute = node.attributes[i];\n\t\tif (attribute.nodeName === name) {\n\t\t\treturn attribute;\n\t\t}\n\t}\n\treturn null;\n}\n\nfunction CharacterBuffer(characters) {\n\tthis.characters = characters;\n\tthis.current = 0;\n\tthis.end = this.characters.length;\n}\n\nCharacterBuffer.prototype.skipAtMostOneLeadingNewline = function() {\n\tif (this.characters[this.current] === '\\n')\n\t\tthis.current++;\n};\n\nCharacterBuffer.prototype.skipLeadingWhitespace = function() {\n\twhile (isWhitespace(this.characters[this.current])) {\n\t\tif (++this.current == this.end)\n\t\t\treturn;\n\t}\n};\n\nCharacterBuffer.prototype.skipLeadingNonWhitespace = function() {\n\twhile (!isWhitespace(this.characters[this.current])) {\n\t\tif (++this.current == this.end)\n\t\t\treturn;\n\t}\n};\n\nCharacterBuffer.prototype.takeRemaining = function() {\n\treturn this.characters.substring(this.current);\n};\n\nCharacterBuffer.prototype.takeLeadingWhitespace = function() {\n\tvar start = this.current;\n\tthis.skipLeadingWhitespace();\n\tif (start === this.current)\n\t\treturn \"\";\n\treturn this.characters.substring(start, this.current - start);\n};\n\nObject.defineProperty(CharacterBuffer.prototype, 'length', {\n\tget: function(){\n\t\treturn this.end - this.current;\n\t}\n});\nfunction TreeBuilder() {\n\tthis.tokenizer = null;\n\tthis.errorHandler = null;\n\tthis.scriptingEnabled = false;\n\tthis.document = null;\n\tthis.head = null;\n\tthis.form = null;\n\tthis.openElements = new ElementStack();\n\tthis.activeFormattingElements = [];\n\tthis.insertionMode = null;\n\tthis.insertionModeName = \"\";\n\tthis.originalInsertionMode = \"\";\n\tthis.inQuirksMode = false; // TODO quirks mode\n\tthis.compatMode = \"no quirks\";\n\tthis.framesetOk = true;\n\tthis.redirectAttachToFosterParent = false;\n\tthis.selfClosingFlagAcknowledged = false;\n\tthis.context = \"\";\n\tthis.pendingTableCharacters = [];\n\tthis.shouldSkipLeadingNewline = false;\n\n\tvar tree = this;\n\tvar modes = this.insertionModes = {};\n\tmodes.base = {\n\t\tend_tag_handlers: {\"-default\": 'endTagOther'},\n\t\tstart_tag_handlers: {\"-default\": 'startTagOther'},\n\t\tprocessEOF: function() {\n\t\t\ttree.generateImpliedEndTags();\n\t\t\tif (tree.openElements.length > 2) {\n\t\t\t\ttree.parseError('expected-closing-tag-but-got-eof');\n\t\t\t} else if (tree.openElements.length == 2 &&\n\t\t\t\ttree.openElements.item(1).localName != 'body') {\n\t\t\t\ttree.parseError('expected-closing-tag-but-got-eof');\n\t\t\t} else if (tree.context && tree.openElements.length > 1) {\n\t\t\t}\n\t\t},\n\t\tprocessComment: function(data) {\n\t\t\ttree.insertComment(data, tree.currentStackItem().node);\n\t\t},\n\t\tprocessDoctype: function(name, publicId, systemId, forceQuirks) {\n\t\t\ttree.parseError('unexpected-doctype');\n\t\t},\n\t\tprocessStartTag: function(name, attributes, selfClosing) {\n\t\t\tif (this[this.start_tag_handlers[name]]) {\n\t\t\t\tthis[this.start_tag_handlers[name]](name, attributes, selfClosing);\n\t\t\t} else if (this[this.start_tag_handlers[\"-default\"]]) {\n\t\t\t\tthis[this.start_tag_handlers[\"-default\"]](name, attributes, selfClosing);\n\t\t\t} else {\n\t\t\t\tthrow(new Error(\"No handler found for \"+name));\n\t\t\t}\n\t\t},\n\t\tprocessEndTag: function(name) {\n\t\t\tif (this[this.end_tag_handlers[name]]) {\n\t\t\t\tthis[this.end_tag_handlers[name]](name);\n\t\t\t} else if (this[this.end_tag_handlers[\"-default\"]]) {\n\t\t\t\tthis[this.end_tag_handlers[\"-default\"]](name);\n\t\t\t} else {\n\t\t\t\tthrow(new Error(\"No handler found for \"+name));\n\t\t\t}\n\t\t},\n\t\tstartTagHtml: function(name, attributes) {\n\t\t\tmodes.inBody.startTagHtml(name, attributes);\n\t\t}\n\t};\n\n\tmodes.initial = Object.create(modes.base);\n\n\tmodes.initial.processEOF = function() {\n\t\ttree.parseError(\"expected-doctype-but-got-eof\");\n\t\tthis.anythingElse();\n\t\ttree.insertionMode.processEOF();\n\t};\n\n\tmodes.initial.processComment = function(data) {\n\t\ttree.insertComment(data, tree.document);\n\t};\n\n\tmodes.initial.processDoctype = function(name, publicId, systemId, forceQuirks) {\n\t\ttree.insertDoctype(name || '', publicId || '', systemId || '');\n\n\t\tif (forceQuirks || name != 'html' || (publicId != null && ([\n\t\t\t\t\t\"+//silmaril//dtd html pro v0r11 19970101//\",\n\t\t\t\t\t\"-//advasoft ltd//dtd html 3.0 aswedit + extensions//\",\n\t\t\t\t\t\"-//as//dtd html 3.0 aswedit + extensions//\",\n\t\t\t\t\t\"-//ietf//dtd html 2.0 level 1//\",\n\t\t\t\t\t\"-//ietf//dtd html 2.0 level 2//\",\n\t\t\t\t\t\"-//ietf//dtd html 2.0 strict level 1//\",\n\t\t\t\t\t\"-//ietf//dtd html 2.0 strict level 2//\",\n\t\t\t\t\t\"-//ietf//dtd html 2.0 strict//\",\n\t\t\t\t\t\"-//ietf//dtd html 2.0//\",\n\t\t\t\t\t\"-//ietf//dtd html 2.1e//\",\n\t\t\t\t\t\"-//ietf//dtd html 3.0//\",\n\t\t\t\t\t\"-//ietf//dtd html 3.0//\",\n\t\t\t\t\t\"-//ietf//dtd html 3.2 final//\",\n\t\t\t\t\t\"-//ietf//dtd html 3.2//\",\n\t\t\t\t\t\"-//ietf//dtd html 3//\",\n\t\t\t\t\t\"-//ietf//dtd html level 0//\",\n\t\t\t\t\t\"-//ietf//dtd html level 0//\",\n\t\t\t\t\t\"-//ietf//dtd html level 1//\",\n\t\t\t\t\t\"-//ietf//dtd html level 1//\",\n\t\t\t\t\t\"-//ietf//dtd html level 2//\",\n\t\t\t\t\t\"-//ietf//dtd html level 2//\",\n\t\t\t\t\t\"-//ietf//dtd html level 3//\",\n\t\t\t\t\t\"-//ietf//dtd html level 3//\",\n\t\t\t\t\t\"-//ietf//dtd html strict level 0//\",\n\t\t\t\t\t\"-//ietf//dtd html strict level 0//\",\n\t\t\t\t\t\"-//ietf//dtd html strict level 1//\",\n\t\t\t\t\t\"-//ietf//dtd html strict level 1//\",\n\t\t\t\t\t\"-//ietf//dtd html strict level 2//\",\n\t\t\t\t\t\"-//ietf//dtd html strict level 2//\",\n\t\t\t\t\t\"-//ietf//dtd html strict level 3//\",\n\t\t\t\t\t\"-//ietf//dtd html strict level 3//\",\n\t\t\t\t\t\"-//ietf//dtd html strict//\",\n\t\t\t\t\t\"-//ietf//dtd html strict//\",\n\t\t\t\t\t\"-//ietf//dtd html strict//\",\n\t\t\t\t\t\"-//ietf//dtd html//\",\n\t\t\t\t\t\"-//ietf//dtd html//\",\n\t\t\t\t\t\"-//ietf//dtd html//\",\n\t\t\t\t\t\"-//metrius//dtd metrius presentational//\",\n\t\t\t\t\t\"-//microsoft//dtd internet explorer 2.0 html strict//\",\n\t\t\t\t\t\"-//microsoft//dtd internet explorer 2.0 html//\",\n\t\t\t\t\t\"-//microsoft//dtd internet explorer 2.0 tables//\",\n\t\t\t\t\t\"-//microsoft//dtd internet explorer 3.0 html strict//\",\n\t\t\t\t\t\"-//microsoft//dtd internet explorer 3.0 html//\",\n\t\t\t\t\t\"-//microsoft//dtd internet explorer 3.0 tables//\",\n\t\t\t\t\t\"-//netscape comm. corp.//dtd html//\",\n\t\t\t\t\t\"-//netscape comm. corp.//dtd strict html//\",\n\t\t\t\t\t\"-//o'reilly and associates//dtd html 2.0//\",\n\t\t\t\t\t\"-//o'reilly and associates//dtd html extended 1.0//\",\n\t\t\t\t\t\"-//spyglass//dtd html 2.0 extended//\",\n\t\t\t\t\t\"-//sq//dtd html 2.0 hotmetal + extensions//\",\n\t\t\t\t\t\"-//sun microsystems corp.//dtd hotjava html//\",\n\t\t\t\t\t\"-//sun microsystems corp.//dtd hotjava strict html//\",\n\t\t\t\t\t\"-//w3c//dtd html 3 1995-03-24//\",\n\t\t\t\t\t\"-//w3c//dtd html 3.2 draft//\",\n\t\t\t\t\t\"-//w3c//dtd html 3.2 final//\",\n\t\t\t\t\t\"-//w3c//dtd html 3.2//\",\n\t\t\t\t\t\"-//w3c//dtd html 3.2s draft//\",\n\t\t\t\t\t\"-//w3c//dtd html 4.0 frameset//\",\n\t\t\t\t\t\"-//w3c//dtd html 4.0 transitional//\",\n\t\t\t\t\t\"-//w3c//dtd html experimental 19960712//\",\n\t\t\t\t\t\"-//w3c//dtd html experimental 970421//\",\n\t\t\t\t\t\"-//w3c//dtd w3 html//\",\n\t\t\t\t\t\"-//w3o//dtd w3 html 3.0//\",\n\t\t\t\t\t\"-//webtechs//dtd mozilla html 2.0//\",\n\t\t\t\t\t\"-//webtechs//dtd mozilla html//\",\n\t\t\t\t\t\"html\"\n\t\t\t\t].some(publicIdStartsWith)\n\t\t\t\t|| [\n\t\t\t\t\t\"-//w3o//dtd w3 html strict 3.0//en//\",\n\t\t\t\t\t\"-/w3c/dtd html 4.0 transitional/en\",\n\t\t\t\t\t\"html\"\n\t\t\t\t].indexOf(publicId.toLowerCase()) > -1\n\t\t\t\t|| (systemId == null && [\n\t\t\t\t\t\"-//w3c//dtd html 4.01 transitional//\",\n\t\t\t\t\t\"-//w3c//dtd html 4.01 frameset//\"\n\t\t\t\t].some(publicIdStartsWith)))\n\t\t\t)\n\t\t\t|| (systemId != null && (systemId.toLowerCase() == \"http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd\"))\n\t\t) {\n\t\t\ttree.compatMode = \"quirks\";\n\t\t\ttree.parseError(\"quirky-doctype\");\n\t\t} else if (publicId != null && ([\n\t\t\t\t\"-//w3c//dtd xhtml 1.0 transitional//\",\n\t\t\t\t\"-//w3c//dtd xhtml 1.0 frameset//\"\n\t\t\t].some(publicIdStartsWith)\n\t\t\t|| (systemId != null && [\n\t\t\t\t\"-//w3c//dtd html 4.01 transitional//\",\n\t\t\t\t\"-//w3c//dtd html 4.01 frameset//\"\n\t\t\t].indexOf(publicId.toLowerCase()) > -1))\n\t\t) {\n\t\t\ttree.compatMode = \"limited quirks\";\n\t\t\ttree.parseError(\"almost-standards-doctype\");\n\t\t} else {\n\t\t\tif ((publicId == \"-//W3C//DTD HTML 4.0//EN\" && (systemId == null || systemId == \"http://www.w3.org/TR/REC-html40/strict.dtd\"))\n\t\t\t\t|| (publicId == \"-//W3C//DTD HTML 4.01//EN\" && (systemId == null || systemId == \"http://www.w3.org/TR/html4/strict.dtd\"))\n\t\t\t\t|| (publicId == \"-//W3C//DTD XHTML 1.0 Strict//EN\" && (systemId == \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\"))\n\t\t\t\t|| (publicId == \"-//W3C//DTD XHTML 1.1//EN\" && (systemId == \"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd\"))\n\t\t\t) {\n\t\t\t} else if (!((systemId == null || systemId == \"about:legacy-compat\") && publicId == null)) {\n\t\t\t\ttree.parseError(\"unknown-doctype\");\n\t\t\t}\n\t\t}\n\t\ttree.setInsertionMode('beforeHTML');\n\t\tfunction publicIdStartsWith(string) {\n\t\t\treturn publicId.toLowerCase().indexOf(string) === 0;\n\t\t}\n\t};\n\n\tmodes.initial.processCharacters = function(buffer) {\n\t\tbuffer.skipLeadingWhitespace();\n\t\tif (!buffer.length)\n\t\t\treturn;\n\t\ttree.parseError('expected-doctype-but-got-chars');\n\t\tthis.anythingElse();\n\t\ttree.insertionMode.processCharacters(buffer);\n\t};\n\n\tmodes.initial.processStartTag = function(name, attributes, selfClosing) {\n\t\ttree.parseError('expected-doctype-but-got-start-tag', {name: name});\n\t\tthis.anythingElse();\n\t\ttree.insertionMode.processStartTag(name, attributes, selfClosing);\n\t};\n\n\tmodes.initial.processEndTag = function(name) {\n\t\ttree.parseError('expected-doctype-but-got-end-tag', {name: name});\n\t\tthis.anythingElse();\n\t\ttree.insertionMode.processEndTag(name);\n\t};\n\n\tmodes.initial.anythingElse = function() {\n\t\ttree.compatMode = 'quirks';\n\t\ttree.setInsertionMode('beforeHTML');\n\t};\n\n\tmodes.beforeHTML = Object.create(modes.base);\n\n\tmodes.beforeHTML.start_tag_handlers = {\n\t\thtml: 'startTagHtml',\n\t\t'-default': 'startTagOther'\n\t};\n\n\tmodes.beforeHTML.processEOF = function() {\n\t\tthis.anythingElse();\n\t\ttree.insertionMode.processEOF();\n\t};\n\n\tmodes.beforeHTML.processComment = function(data) {\n\t\ttree.insertComment(data, tree.document);\n\t};\n\n\tmodes.beforeHTML.processCharacters = function(buffer) {\n\t\tbuffer.skipLeadingWhitespace();\n\t\tif (!buffer.length)\n\t\t\treturn;\n\t\tthis.anythingElse();\n\t\ttree.insertionMode.processCharacters(buffer);\n\t};\n\n\tmodes.beforeHTML.startTagHtml = function(name, attributes, selfClosing) {\n\t\ttree.insertHtmlElement(attributes);\n\t\ttree.setInsertionMode('beforeHead');\n\t};\n\n\tmodes.beforeHTML.startTagOther = function(name, attributes, selfClosing) {\n\t\tthis.anythingElse();\n\t\ttree.insertionMode.processStartTag(name, attributes, selfClosing);\n\t};\n\n\tmodes.beforeHTML.processEndTag = function(name) {\n\t\tthis.anythingElse();\n\t\ttree.insertionMode.processEndTag(name);\n\t};\n\n\tmodes.beforeHTML.anythingElse = function() {\n\t\ttree.insertHtmlElement();\n\t\ttree.setInsertionMode('beforeHead');\n\t};\n\n\tmodes.afterAfterBody = Object.create(modes.base);\n\n\tmodes.afterAfterBody.start_tag_handlers = {\n\t\thtml: 'startTagHtml',\n\t\t'-default': 'startTagOther'\n\t};\n\n\tmodes.afterAfterBody.processComment = function(data) {\n\t\ttree.insertComment(data, tree.document);\n\t};\n\n\tmodes.afterAfterBody.processDoctype = function(data) {\n\t\tmodes.inBody.processDoctype(data);\n\t};\n\n\tmodes.afterAfterBody.startTagHtml = function(data, attributes) {\n\t\tmodes.inBody.startTagHtml(data, attributes);\n\t};\n\n\tmodes.afterAfterBody.startTagOther = function(name, attributes, selfClosing) {\n\t\ttree.parseError('unexpected-start-tag', {name: name});\n\t\ttree.setInsertionMode('inBody');\n\t\ttree.insertionMode.processStartTag(name, attributes, selfClosing);\n\t};\n\n\tmodes.afterAfterBody.endTagOther = function(name) {\n\t\ttree.parseError('unexpected-end-tag', {name: name});\n\t\ttree.setInsertionMode('inBody');\n\t\ttree.insertionMode.processEndTag(name);\n\t};\n\n\tmodes.afterAfterBody.processCharacters = function(data) {\n\t\tif (!isAllWhitespace(data.characters)) {\n\t\t\ttree.parseError('unexpected-char-after-body');\n\t\t\ttree.setInsertionMode('inBody');\n\t\t\treturn tree.insertionMode.processCharacters(data);\n\t\t}\n\t\tmodes.inBody.processCharacters(data);\n\t};\n\n\tmodes.afterBody = Object.create(modes.base);\n\n\tmodes.afterBody.end_tag_handlers = {\n\t\thtml: 'endTagHtml',\n\t\t'-default': 'endTagOther'\n\t};\n\n\tmodes.afterBody.processComment = function(data) {\n\t\ttree.insertComment(data, tree.openElements.rootNode);\n\t};\n\n\tmodes.afterBody.processCharacters = function(data) {\n\t\tif (!isAllWhitespace(data.characters)) {\n\t\t\ttree.parseError('unexpected-char-after-body');\n\t\t\ttree.setInsertionMode('inBody');\n\t\t\treturn tree.insertionMode.processCharacters(data);\n\t\t}\n\t\tmodes.inBody.processCharacters(data);\n\t};\n\n\tmodes.afterBody.processStartTag = function(name, attributes, selfClosing) {\n\t\ttree.parseError('unexpected-start-tag-after-body', {name: name});\n\t\ttree.setInsertionMode('inBody');\n\t\ttree.insertionMode.processStartTag(name, attributes, selfClosing);\n\t};\n\n\tmodes.afterBody.endTagHtml = function(name) {\n\t\tif (tree.context) {\n\t\t\ttree.parseError('end-html-in-innerhtml');\n\t\t} else {\n\t\t\ttree.setInsertionMode('afterAfterBody');\n\t\t}\n\t};\n\n\tmodes.afterBody.endTagOther = function(name) {\n\t\ttree.parseError('unexpected-end-tag-after-body', {name: name});\n\t\ttree.setInsertionMode('inBody');\n\t\ttree.insertionMode.processEndTag(name);\n\t};\n\n\tmodes.afterFrameset = Object.create(modes.base);\n\n\tmodes.afterFrameset.start_tag_handlers = {\n\t\thtml: 'startTagHtml',\n\t\tnoframes: 'startTagNoframes',\n\t\t'-default': 'startTagOther'\n\t};\n\n\tmodes.afterFrameset.end_tag_handlers = {\n\t\thtml: 'endTagHtml',\n\t\t'-default': 'endTagOther'\n\t};\n\n\tmodes.afterFrameset.processCharacters = function(buffer) {\n\t\tvar characters = buffer.takeRemaining();\n\t\tvar whitespace = \"\";\n\t\tfor (var i = 0; i < characters.length; i++) {\n\t\t\tvar ch = characters[i];\n\t\t\tif (isWhitespace(ch))\n\t\t\t\twhitespace += ch;\n\t\t}\n\t\tif (whitespace) {\n\t\t\ttree.insertText(whitespace);\n\t\t}\n\t\tif (whitespace.length < characters.length)\n\t\t\ttree.parseError('expected-eof-but-got-char');\n\t};\n\n\tmodes.afterFrameset.startTagNoframes = function(name, attributes) {\n\t\tmodes.inHead.processStartTag(name, attributes);\n\t};\n\n\tmodes.afterFrameset.startTagOther = function(name, attributes) {\n\t\ttree.parseError(\"unexpected-start-tag-after-frameset\", {name: name});\n\t};\n\n\tmodes.afterFrameset.endTagHtml = function(name) {\n\t\ttree.setInsertionMode('afterAfterFrameset');\n\t};\n\n\tmodes.afterFrameset.endTagOther = function(name) {\n\t\ttree.parseError(\"unexpected-end-tag-after-frameset\", {name: name});\n\t};\n\n\tmodes.beforeHead = Object.create(modes.base);\n\n\tmodes.beforeHead.start_tag_handlers = {\n\t\thtml: 'startTagHtml',\n\t\thead: 'startTagHead',\n\t\t'-default': 'startTagOther'\n\t};\n\n\tmodes.beforeHead.end_tag_handlers = {\n\t\thtml: 'endTagImplyHead',\n\t\thead: 'endTagImplyHead',\n\t\tbody: 'endTagImplyHead',\n\t\tbr: 'endTagImplyHead',\n\t\t'-default': 'endTagOther'\n\t};\n\n\tmodes.beforeHead.processEOF = function() {\n\t\tthis.startTagHead('head', []);\n\t\ttree.insertionMode.processEOF();\n\t};\n\n\tmodes.beforeHead.processCharacters = function(buffer) {\n\t\tbuffer.skipLeadingWhitespace();\n\t\tif (!buffer.length)\n\t\t\treturn;\n\t\tthis.startTagHead('head', []);\n\t\ttree.insertionMode.processCharacters(buffer);\n\t};\n\n\tmodes.beforeHead.startTagHead = function(name, attributes) {\n\t\ttree.insertHeadElement(attributes);\n\t\ttree.setInsertionMode('inHead');\n\t};\n\n\tmodes.beforeHead.startTagOther = function(name, attributes, selfClosing) {\n\t\tthis.startTagHead('head', []);\n\t\ttree.insertionMode.processStartTag(name, attributes, selfClosing);\n\t};\n\n\tmodes.beforeHead.endTagImplyHead = function(name) {\n\t\tthis.startTagHead('head', []);\n\t\ttree.insertionMode.processEndTag(name);\n\t};\n\n\tmodes.beforeHead.endTagOther = function(name) {\n\t\ttree.parseError('end-tag-after-implied-root', {name: name});\n\t};\n\n\tmodes.inHead = Object.create(modes.base);\n\n\tmodes.inHead.start_tag_handlers = {\n\t\thtml: 'startTagHtml',\n\t\thead: 'startTagHead',\n\t\ttitle: 'startTagTitle',\n\t\tscript: 'startTagScript',\n\t\tstyle: 'startTagNoFramesStyle',\n\t\tnoscript: 'startTagNoScript',\n\t\tnoframes: 'startTagNoFramesStyle',\n\t\tbase: 'startTagBaseBasefontBgsoundLink',\n\t\tbasefont: 'startTagBaseBasefontBgsoundLink',\n\t\tbgsound: 'startTagBaseBasefontBgsoundLink',\n\t\tlink: 'startTagBaseBasefontBgsoundLink',\n\t\tmeta: 'startTagMeta',\n\t\t\"-default\": 'startTagOther'\n\t};\n\n\tmodes.inHead.end_tag_handlers = {\n\t\thead: 'endTagHead',\n\t\thtml: 'endTagHtmlBodyBr',\n\t\tbody: 'endTagHtmlBodyBr',\n\t\tbr: 'endTagHtmlBodyBr',\n\t\t\"-default\": 'endTagOther'\n\t};\n\n\tmodes.inHead.processEOF = function() {\n\t\tvar name = tree.currentStackItem().localName;\n\t\tif (['title', 'style', 'script'].indexOf(name) != -1) {\n\t\t\ttree.parseError(\"expected-named-closing-tag-but-got-eof\", {name: name});\n\t\t\ttree.popElement();\n\t\t}\n\n\t\tthis.anythingElse();\n\n\t\ttree.insertionMode.processEOF();\n\t};\n\n\tmodes.inHead.processCharacters = function(buffer) {\n\t\tvar leadingWhitespace = buffer.takeLeadingWhitespace();\n\t\tif (leadingWhitespace)\n\t\t\ttree.insertText(leadingWhitespace);\n\t\tif (!buffer.length)\n\t\t\treturn;\n\t\tthis.anythingElse();\n\t\ttree.insertionMode.processCharacters(buffer);\n\t};\n\n\tmodes.inHead.startTagHtml = function(name, attributes) {\n\t\tmodes.inBody.processStartTag(name, attributes);\n\t};\n\n\tmodes.inHead.startTagHead = function(name, attributes) {\n\t\ttree.parseError('two-heads-are-not-better-than-one');\n\t};\n\n\tmodes.inHead.startTagTitle = function(name, attributes) {\n\t\ttree.processGenericRCDATAStartTag(name, attributes);\n\t};\n\n\tmodes.inHead.startTagNoScript = function(name, attributes) {\n\t\tif (tree.scriptingEnabled)\n\t\t\treturn tree.processGenericRawTextStartTag(name, attributes);\n\t\ttree.insertElement(name, attributes);\n\t\ttree.setInsertionMode('inHeadNoscript');\n\t};\n\n\tmodes.inHead.startTagNoFramesStyle = function(name, attributes) {\n\t\ttree.processGenericRawTextStartTag(name, attributes);\n\t};\n\n\tmodes.inHead.startTagScript = function(name, attributes) {\n\t\ttree.insertElement(name, attributes);\n\t\ttree.tokenizer.setState(Tokenizer.SCRIPT_DATA);\n\t\ttree.originalInsertionMode = tree.insertionModeName;\n\t\ttree.setInsertionMode('text');\n\t};\n\n\tmodes.inHead.startTagBaseBasefontBgsoundLink = function(name, attributes) {\n\t\ttree.insertSelfClosingElement(name, attributes);\n\t};\n\n\tmodes.inHead.startTagMeta = function(name, attributes) {\n\t\ttree.insertSelfClosingElement(name, attributes);\n\t};\n\n\tmodes.inHead.startTagOther = function(name, attributes, selfClosing) {\n\t\tthis.anythingElse();\n\t\ttree.insertionMode.processStartTag(name, attributes, selfClosing);\n\t};\n\n\tmodes.inHead.endTagHead = function(name) {\n\t\tif (tree.openElements.item(tree.openElements.length - 1).localName == 'head') {\n\t\t\ttree.openElements.pop();\n\t\t} else {\n\t\t\ttree.parseError('unexpected-end-tag', {name: 'head'});\n\t\t}\n\t\ttree.setInsertionMode('afterHead');\n\t};\n\n\tmodes.inHead.endTagHtmlBodyBr = function(name) {\n\t\tthis.anythingElse();\n\t\ttree.insertionMode.processEndTag(name);\n\t};\n\n\tmodes.inHead.endTagOther = function(name) {\n\t\ttree.parseError('unexpected-end-tag', {name: name});\n\t};\n\n\tmodes.inHead.anythingElse = function() {\n\t\tthis.endTagHead('head');\n\t};\n\n\tmodes.afterHead = Object.create(modes.base);\n\n\tmodes.afterHead.start_tag_handlers = {\n\t\thtml: 'startTagHtml',\n\t\thead: 'startTagHead',\n\t\tbody: 'startTagBody',\n\t\tframeset: 'startTagFrameset',\n\t\tbase: 'startTagFromHead',\n\t\tlink: 'startTagFromHead',\n\t\tmeta: 'startTagFromHead',\n\t\tscript: 'startTagFromHead',\n\t\tstyle: 'startTagFromHead',\n\t\ttitle: 'startTagFromHead',\n\t\t\"-default\": 'startTagOther'\n\t};\n\n\tmodes.afterHead.end_tag_handlers = {\n\t\tbody: 'endTagBodyHtmlBr',\n\t\thtml: 'endTagBodyHtmlBr',\n\t\tbr: 'endTagBodyHtmlBr',\n\t\t\"-default\": 'endTagOther'\n\t};\n\n\tmodes.afterHead.processEOF = function() {\n\t\tthis.anythingElse();\n\t\ttree.insertionMode.processEOF();\n\t};\n\n\tmodes.afterHead.processCharacters = function(buffer) {\n\t\tvar leadingWhitespace = buffer.takeLeadingWhitespace();\n\t\tif (leadingWhitespace)\n\t\t\ttree.insertText(leadingWhitespace);\n\t\tif (!buffer.length)\n\t\t\treturn;\n\t\tthis.anythingElse();\n\t\ttree.insertionMode.processCharacters(buffer);\n\t};\n\n\tmodes.afterHead.startTagHtml = function(name, attributes) {\n\t\tmodes.inBody.processStartTag(name, attributes);\n\t};\n\n\tmodes.afterHead.startTagBody = function(name, attributes) {\n\t\ttree.framesetOk = false;\n\t\ttree.insertBodyElement(attributes);\n\t\ttree.setInsertionMode('inBody');\n\t};\n\n\tmodes.afterHead.startTagFrameset = function(name, attributes) {\n\t\ttree.insertElement(name, attributes);\n\t\ttree.setInsertionMode('inFrameset');\n\t};\n\n\tmodes.afterHead.startTagFromHead = function(name, attributes, selfClosing) {\n\t\ttree.parseError(\"unexpected-start-tag-out-of-my-head\", {name: name});\n\t\ttree.openElements.push(tree.head);\n\t\tmodes.inHead.processStartTag(name, attributes, selfClosing);\n\t\ttree.openElements.remove(tree.head);\n\t};\n\n\tmodes.afterHead.startTagHead = function(name, attributes, selfClosing) {\n\t\ttree.parseError('unexpected-start-tag', {name: name});\n\t};\n\n\tmodes.afterHead.startTagOther = function(name, attributes, selfClosing) {\n\t\tthis.anythingElse();\n\t\ttree.insertionMode.processStartTag(name, attributes, selfClosing);\n\t};\n\n\tmodes.afterHead.endTagBodyHtmlBr = function(name) {\n\t\tthis.anythingElse();\n\t\ttree.insertionMode.processEndTag(name);\n\t};\n\n\tmodes.afterHead.endTagOther = function(name) {\n\t\ttree.parseError('unexpected-end-tag', {name: name});\n\t};\n\n\tmodes.afterHead.anythingElse = function() {\n\t\ttree.insertBodyElement([]);\n\t\ttree.setInsertionMode('inBody');\n\t\ttree.framesetOk = true;\n\t}\n\n\tmodes.inBody = Object.create(modes.base);\n\n\tmodes.inBody.start_tag_handlers = {\n\t\thtml: 'startTagHtml',\n\t\thead: 'startTagMisplaced',\n\t\tbase: 'startTagProcessInHead',\n\t\tbasefont: 'startTagProcessInHead',\n\t\tbgsound: 'startTagProcessInHead',\n\t\tlink: 'startTagProcessInHead',\n\t\tmeta: 'startTagProcessInHead',\n\t\tnoframes: 'startTagProcessInHead',\n\t\tscript: 'startTagProcessInHead',\n\t\tstyle: 'startTagProcessInHead',\n\t\ttitle: 'startTagProcessInHead',\n\t\tbody: 'startTagBody',\n\t\tform: 'startTagForm',\n\t\tplaintext: 'startTagPlaintext',\n\t\ta: 'startTagA',\n\t\tbutton: 'startTagButton',\n\t\txmp: 'startTagXmp',\n\t\ttable: 'startTagTable',\n\t\thr: 'startTagHr',\n\t\timage: 'startTagImage',\n\t\tinput: 'startTagInput',\n\t\ttextarea: 'startTagTextarea',\n\t\tselect: 'startTagSelect',\n\t\tisindex: 'startTagIsindex',\n\t\tapplet:\t'startTagAppletMarqueeObject',\n\t\tmarquee:\t'startTagAppletMarqueeObject',\n\t\tobject:\t'startTagAppletMarqueeObject',\n\t\tli: 'startTagListItem',\n\t\tdd: 'startTagListItem',\n\t\tdt: 'startTagListItem',\n\t\taddress: 'startTagCloseP',\n\t\tarticle: 'startTagCloseP',\n\t\taside: 'startTagCloseP',\n\t\tblockquote: 'startTagCloseP',\n\t\tcenter: 'startTagCloseP',\n\t\tdetails: 'startTagCloseP',\n\t\tdir: 'startTagCloseP',\n\t\tdiv: 'startTagCloseP',\n\t\tdl: 'startTagCloseP',\n\t\tfieldset: 'startTagCloseP',\n\t\tfigcaption: 'startTagCloseP',\n\t\tfigure: 'startTagCloseP',\n\t\tfooter: 'startTagCloseP',\n\t\theader: 'startTagCloseP',\n\t\thgroup: 'startTagCloseP',\n\t\tmain: 'startTagCloseP',\n\t\tmenu: 'startTagCloseP',\n\t\tnav: 'startTagCloseP',\n\t\tol: 'startTagCloseP',\n\t\tp: 'startTagCloseP',\n\t\tsection: 'startTagCloseP',\n\t\tsummary: 'startTagCloseP',\n\t\tul: 'startTagCloseP',\n\t\tlisting: 'startTagPreListing',\n\t\tpre: 'startTagPreListing',\n\t\tb: 'startTagFormatting',\n\t\tbig: 'startTagFormatting',\n\t\tcode: 'startTagFormatting',\n\t\tem: 'startTagFormatting',\n\t\tfont: 'startTagFormatting',\n\t\ti: 'startTagFormatting',\n\t\ts: 'startTagFormatting',\n\t\tsmall: 'startTagFormatting',\n\t\tstrike: 'startTagFormatting',\n\t\tstrong: 'startTagFormatting',\n\t\ttt: 'startTagFormatting',\n\t\tu: 'startTagFormatting',\n\t\tnobr: 'startTagNobr',\n\t\tarea: 'startTagVoidFormatting',\n\t\tbr: 'startTagVoidFormatting',\n\t\tembed: 'startTagVoidFormatting',\n\t\timg: 'startTagVoidFormatting',\n\t\tkeygen: 'startTagVoidFormatting',\n\t\twbr: 'startTagVoidFormatting',\n\t\tparam: 'startTagParamSourceTrack',\n\t\tsource: 'startTagParamSourceTrack',\n\t\ttrack: 'startTagParamSourceTrack',\n\t\tiframe: 'startTagIFrame',\n\t\tnoembed: 'startTagRawText',\n\t\tnoscript: 'startTagRawText',\n\t\th1: 'startTagHeading',\n\t\th2: 'startTagHeading',\n\t\th3: 'startTagHeading',\n\t\th4: 'startTagHeading',\n\t\th5: 'startTagHeading',\n\t\th6: 'startTagHeading',\n\t\tcaption: 'startTagMisplaced',\n\t\tcol: 'startTagMisplaced',\n\t\tcolgroup: 'startTagMisplaced',\n\t\tframe: 'startTagMisplaced',\n\t\tframeset: 'startTagFrameset',\n\t\ttbody: 'startTagMisplaced',\n\t\ttd: 'startTagMisplaced',\n\t\ttfoot: 'startTagMisplaced',\n\t\tth: 'startTagMisplaced',\n\t\tthead: 'startTagMisplaced',\n\t\ttr: 'startTagMisplaced',\n\t\toption: 'startTagOptionOptgroup',\n\t\toptgroup: 'startTagOptionOptgroup',\n\t\tmath: 'startTagMath',\n\t\tsvg: 'startTagSVG',\n\t\trt: 'startTagRpRt',\n\t\trp: 'startTagRpRt',\n\t\t\"-default\": 'startTagOther'\n\t};\n\n\tmodes.inBody.end_tag_handlers = {\n\t\tp: 'endTagP',\n\t\tbody: 'endTagBody',\n\t\thtml: 'endTagHtml',\n\t\taddress: 'endTagBlock',\n\t\tarticle: 'endTagBlock',\n\t\taside: 'endTagBlock',\n\t\tblockquote: 'endTagBlock',\n\t\tbutton: 'endTagBlock',\n\t\tcenter: 'endTagBlock',\n\t\tdetails: 'endTagBlock',\n\t\tdir: 'endTagBlock',\n\t\tdiv: 'endTagBlock',\n\t\tdl: 'endTagBlock',\n\t\tfieldset: 'endTagBlock',\n\t\tfigcaption: 'endTagBlock',\n\t\tfigure: 'endTagBlock',\n\t\tfooter: 'endTagBlock',\n\t\theader: 'endTagBlock',\n\t\thgroup: 'endTagBlock',\n\t\tlisting: 'endTagBlock',\n\t\tmain: 'endTagBlock',\n\t\tmenu: 'endTagBlock',\n\t\tnav: 'endTagBlock',\n\t\tol: 'endTagBlock',\n\t\tpre: 'endTagBlock',\n\t\tsection: 'endTagBlock',\n\t\tsummary: 'endTagBlock',\n\t\tul: 'endTagBlock',\n\t\tform: 'endTagForm',\n\t\tapplet: 'endTagAppletMarqueeObject',\n\t\tmarquee: 'endTagAppletMarqueeObject',\n\t\tobject: 'endTagAppletMarqueeObject',\n\t\tdd: 'endTagListItem',\n\t\tdt: 'endTagListItem',\n\t\tli: 'endTagListItem',\n\t\th1: 'endTagHeading',\n\t\th2: 'endTagHeading',\n\t\th3: 'endTagHeading',\n\t\th4: 'endTagHeading',\n\t\th5: 'endTagHeading',\n\t\th6: 'endTagHeading',\n\t\ta: 'endTagFormatting',\n\t\tb: 'endTagFormatting',\n\t\tbig: 'endTagFormatting',\n\t\tcode: 'endTagFormatting',\n\t\tem: 'endTagFormatting',\n\t\tfont: 'endTagFormatting',\n\t\ti: 'endTagFormatting',\n\t\tnobr: 'endTagFormatting',\n\t\ts: 'endTagFormatting',\n\t\tsmall: 'endTagFormatting',\n\t\tstrike: 'endTagFormatting',\n\t\tstrong: 'endTagFormatting',\n\t\ttt: 'endTagFormatting',\n\t\tu: 'endTagFormatting',\n\t\tbr: 'endTagBr',\n\t\t\"-default\": 'endTagOther'\n\t};\n\n\tmodes.inBody.processCharacters = function(buffer) {\n\t\tif (tree.shouldSkipLeadingNewline) {\n\t\t\ttree.shouldSkipLeadingNewline = false;\n\t\t\tbuffer.skipAtMostOneLeadingNewline();\n\t\t}\n\t\ttree.reconstructActiveFormattingElements();\n\t\tvar characters = buffer.takeRemaining();\n\t\tcharacters = characters.replace(/\\u0000/g, function(match, index){\n\t\t\ttree.parseError(\"invalid-codepoint\");\n\t\t\treturn '';\n\t\t});\n\t\tif (!characters)\n\t\t\treturn;\n\t\ttree.insertText(characters);\n\t\tif (tree.framesetOk && !isAllWhitespaceOrReplacementCharacters(characters))\n\t\t\ttree.framesetOk = false;\n\t};\n\n\tmodes.inBody.startTagHtml = function(name, attributes) {\n\t\ttree.parseError('non-html-root');\n\t\ttree.addAttributesToElement(tree.openElements.rootNode, attributes);\n\t};\n\n\tmodes.inBody.startTagProcessInHead = function(name, attributes) {\n\t\tmodes.inHead.processStartTag(name, attributes);\n\t};\n\n\tmodes.inBody.startTagBody = function(name, attributes) {\n\t\ttree.parseError('unexpected-start-tag', {name: 'body'});\n\t\tif (tree.openElements.length == 1 ||\n\t\t\ttree.openElements.item(1).localName != 'body') {\n\t\t\tassert.ok(tree.context);\n\t\t} else {\n\t\t\ttree.framesetOk = false;\n\t\t\ttree.addAttributesToElement(tree.openElements.bodyElement, attributes);\n\t\t}\n\t};\n\n\tmodes.inBody.startTagFrameset = function(name, attributes) {\n\t\ttree.parseError('unexpected-start-tag', {name: 'frameset'});\n\t\tif (tree.openElements.length == 1 ||\n\t\t\ttree.openElements.item(1).localName != 'body') {\n\t\t\tassert.ok(tree.context);\n\t\t} else if (tree.framesetOk) {\n\t\t\ttree.detachFromParent(tree.openElements.bodyElement);\n\t\t\twhile (tree.openElements.length > 1)\n\t\t\t\ttree.openElements.pop();\n\t\t\ttree.insertElement(name, attributes);\n\t\t\ttree.setInsertionMode('inFrameset');\n\t\t}\n\t};\n\n\tmodes.inBody.startTagCloseP = function(name, attributes) {\n\t\tif (tree.openElements.inButtonScope('p'))\n\t\t\tthis.endTagP('p');\n\t\ttree.insertElement(name, attributes);\n\t};\n\n\tmodes.inBody.startTagPreListing = function(name, attributes) {\n\t\tif (tree.openElements.inButtonScope('p'))\n\t\t\tthis.endTagP('p');\n\t\ttree.insertElement(name, attributes);\n\t\ttree.framesetOk = false;\n\t\ttree.shouldSkipLeadingNewline = true;\n\t};\n\n\tmodes.inBody.startTagForm = function(name, attributes) {\n\t\tif (tree.form) {\n\t\t\ttree.parseError('unexpected-start-tag', {name: name});\n\t\t} else {\n\t\t\tif (tree.openElements.inButtonScope('p'))\n\t\t\t\tthis.endTagP('p');\n\t\t\ttree.insertElement(name, attributes);\n\t\t\ttree.form = tree.currentStackItem();\n\t\t}\n\t};\n\n\tmodes.inBody.startTagRpRt = function(name, attributes) {\n\t\tif (tree.openElements.inScope('ruby')) {\n\t\t\ttree.generateImpliedEndTags();\n\t\t\tif (tree.currentStackItem().localName != 'ruby') {\n\t\t\t\ttree.parseError('unexpected-start-tag', {name: name});\n\t\t\t}\n\t\t}\n\t\ttree.insertElement(name, attributes);\n\t};\n\n\tmodes.inBody.startTagListItem = function(name, attributes) {\n\t\tvar stopNames = {li: ['li'], dd: ['dd', 'dt'], dt: ['dd', 'dt']};\n\t\tvar stopName = stopNames[name];\n\n\t\tvar els = tree.openElements;\n\t\tfor (var i = els.length - 1; i >= 0; i--) {\n\t\t\tvar node = els.item(i);\n\t\t\tif (stopName.indexOf(node.localName) != -1) {\n\t\t\t\ttree.insertionMode.processEndTag(node.localName);\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif (node.isSpecial() && node.localName !== 'p' && node.localName !== 'address' && node.localName !== 'div')\n\t\t\t\tbreak;\n\t\t}\n\t\tif (tree.openElements.inButtonScope('p'))\n\t\t\tthis.endTagP('p');\n\t\ttree.insertElement(name, attributes);\n\t\ttree.framesetOk = false;\n\t};\n\n\tmodes.inBody.startTagPlaintext = function(name, attributes) {\n\t\tif (tree.openElements.inButtonScope('p'))\n\t\t\tthis.endTagP('p');\n\t\ttree.insertElement(name, attributes);\n\t\ttree.tokenizer.setState(Tokenizer.PLAINTEXT);\n\t};\n\n\tmodes.inBody.startTagHeading = function(name, attributes) {\n\t\tif (tree.openElements.inButtonScope('p'))\n\t\t\tthis.endTagP('p');\n\t\tif (tree.currentStackItem().isNumberedHeader()) {\n\t\t\ttree.parseError('unexpected-start-tag', {name: name});\n\t\t\ttree.popElement();\n\t\t}\n\t\ttree.insertElement(name, attributes);\n\t};\n\n\tmodes.inBody.startTagA = function(name, attributes) {\n\t\tvar activeA = tree.elementInActiveFormattingElements('a');\n\t\tif (activeA) {\n\t\t\ttree.parseError(\"unexpected-start-tag-implies-end-tag\", {startName: \"a\", endName: \"a\"});\n\t\t\ttree.adoptionAgencyEndTag('a');\n\t\t\tif (tree.openElements.contains(activeA))\n\t\t\t\ttree.openElements.remove(activeA);\n\t\t\ttree.removeElementFromActiveFormattingElements(activeA);\n\t\t}\n\t\ttree.reconstructActiveFormattingElements();\n\t\ttree.insertFormattingElement(name, attributes);\n\t};\n\n\tmodes.inBody.startTagFormatting = function(name, attributes) {\n\t\ttree.reconstructActiveFormattingElements();\n\t\ttree.insertFormattingElement(name, attributes);\n\t};\n\n\tmodes.inBody.startTagNobr = function(name, attributes) {\n\t\ttree.reconstructActiveFormattingElements();\n\t\tif (tree.openElements.inScope('nobr')) {\n\t\t\ttree.parseError(\"unexpected-start-tag-implies-end-tag\", {startName: 'nobr', endName: 'nobr'});\n\t\t\tthis.processEndTag('nobr');\n\t\t\t\ttree.reconstructActiveFormattingElements();\n\t\t}\n\t\ttree.insertFormattingElement(name, attributes);\n\t};\n\n\tmodes.inBody.startTagButton = function(name, attributes) {\n\t\tif (tree.openElements.inScope('button')) {\n\t\t\ttree.parseError('unexpected-start-tag-implies-end-tag', {startName: 'button', endName: 'button'});\n\t\t\tthis.processEndTag('button');\n\t\t\ttree.insertionMode.processStartTag(name, attributes);\n\t\t} else {\n\t\t\ttree.framesetOk = false;\n\t\t\ttree.reconstructActiveFormattingElements();\n\t\t\ttree.insertElement(name, attributes);\n\t\t}\n\t};\n\n\tmodes.inBody.startTagAppletMarqueeObject = function(name, attributes) {\n\t\ttree.reconstructActiveFormattingElements();\n\t\ttree.insertElement(name, attributes);\n\t\ttree.activeFormattingElements.push(Marker);\n\t\ttree.framesetOk = false;\n\t};\n\n\tmodes.inBody.endTagAppletMarqueeObject = function(name) {\n\t\tif (!tree.openElements.inScope(name)) {\n\t\t\ttree.parseError(\"unexpected-end-tag\", {name: name});\n\t\t} else {\n\t\t\ttree.generateImpliedEndTags();\n\t\t\tif (tree.currentStackItem().localName != name) {\n\t\t\t\ttree.parseError('end-tag-too-early', {name: name});\n\t\t\t}\n\t\t\ttree.openElements.popUntilPopped(name);\n\t\t\ttree.clearActiveFormattingElements();\n\t\t}\n\t};\n\n\tmodes.inBody.startTagXmp = function(name, attributes) {\n\t\tif (tree.openElements.inButtonScope('p'))\n\t\t\tthis.processEndTag('p');\n\t\ttree.reconstructActiveFormattingElements();\n\t\ttree.processGenericRawTextStartTag(name, attributes);\n\t\ttree.framesetOk = false;\n\t};\n\n\tmodes.inBody.startTagTable = function(name, attributes) {\n\t\tif (tree.compatMode !== \"quirks\")\n\t\t\tif (tree.openElements.inButtonScope('p'))\n\t\t\t\tthis.processEndTag('p');\n\t\ttree.insertElement(name, attributes);\n\t\ttree.setInsertionMode('inTable');\n\t\ttree.framesetOk = false;\n\t};\n\n\tmodes.inBody.startTagVoidFormatting = function(name, attributes) {\n\t\ttree.reconstructActiveFormattingElements();\n\t\ttree.insertSelfClosingElement(name, attributes);\n\t\ttree.framesetOk = false;\n\t};\n\n\tmodes.inBody.startTagParamSourceTrack = function(name, attributes) {\n\t\ttree.insertSelfClosingElement(name, attributes);\n\t};\n\n\tmodes.inBody.startTagHr = function(name, attributes) {\n\t\tif (tree.openElements.inButtonScope('p'))\n\t\t\tthis.endTagP('p');\n\t\ttree.insertSelfClosingElement(name, attributes);\n\t\ttree.framesetOk = false;\n\t};\n\n\tmodes.inBody.startTagImage = function(name, attributes) {\n\t\ttree.parseError('unexpected-start-tag-treated-as', {originalName: 'image', newName: 'img'});\n\t\tthis.processStartTag('img', attributes);\n\t};\n\n\tmodes.inBody.startTagInput = function(name, attributes) {\n\t\tvar currentFramesetOk = tree.framesetOk;\n\t\tthis.startTagVoidFormatting(name, attributes);\n\t\tfor (var key in attributes) {\n\t\t\tif (attributes[key].nodeName == 'type') {\n\t\t\t\tif (attributes[key].nodeValue.toLowerCase() == 'hidden')\n\t\t\t\t\ttree.framesetOk = currentFramesetOk;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t};\n\n\tmodes.inBody.startTagIsindex = function(name, attributes) {\n\t\ttree.parseError('deprecated-tag', {name: 'isindex'});\n\t\ttree.selfClosingFlagAcknowledged = true;\n\t\tif (tree.form)\n\t\t\treturn;\n\t\tvar formAttributes = [];\n\t\tvar inputAttributes = [];\n\t\tvar prompt = \"This is a searchable index. Enter search keywords: \";\n\t\tfor (var key in attributes) {\n\t\t\tswitch (attributes[key].nodeName) {\n\t\t\t\tcase 'action':\n\t\t\t\t\tformAttributes.push({nodeName: 'action',\n\t\t\t\t\t\tnodeValue: attributes[key].nodeValue});\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'prompt':\n\t\t\t\t\tprompt = attributes[key].nodeValue;\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'name':\n\t\t\t\t\tbreak;\n\t\t\t\tdefault:\n\t\t\t\t\tinputAttributes.push({nodeName: attributes[key].nodeName,\n\t\t\t\t\t\tnodeValue: attributes[key].nodeValue});\n\t\t\t}\n\t\t}\n\t\tinputAttributes.push({nodeName: 'name', nodeValue: 'isindex'});\n\t\tthis.processStartTag('form', formAttributes);\n\t\tthis.processStartTag('hr');\n\t\tthis.processStartTag('label');\n\t\tthis.processCharacters(new CharacterBuffer(prompt));\n\t\tthis.processStartTag('input', inputAttributes);\n\t\tthis.processEndTag('label');\n\t\tthis.processStartTag('hr');\n\t\tthis.processEndTag('form');\n\t};\n\n\tmodes.inBody.startTagTextarea = function(name, attributes) {\n\t\ttree.insertElement(name, attributes);\n\t\ttree.tokenizer.setState(Tokenizer.RCDATA);\n\t\ttree.originalInsertionMode = tree.insertionModeName;\n\t\ttree.shouldSkipLeadingNewline = true;\n\t\ttree.framesetOk = false;\n\t\ttree.setInsertionMode('text');\n\t};\n\n\tmodes.inBody.startTagIFrame = function(name, attributes) {\n\t\ttree.framesetOk = false;\n\t\tthis.startTagRawText(name, attributes);\n\t};\n\n\tmodes.inBody.startTagRawText = function(name, attributes) {\n\t\ttree.processGenericRawTextStartTag(name, attributes);\n\t};\n\n\tmodes.inBody.startTagSelect = function(name, attributes) {\n\t\ttree.reconstructActiveFormattingElements();\n\t\ttree.insertElement(name, attributes);\n\t\ttree.framesetOk = false;\n\t\tvar insertionModeName = tree.insertionModeName;\n\t\tif (insertionModeName == 'inTable' ||\n\t\t\tinsertionModeName == 'inCaption' ||\n\t\t\tinsertionModeName == 'inColumnGroup' ||\n\t\t\tinsertionModeName == 'inTableBody' ||\n\t\t\tinsertionModeName == 'inRow' ||\n\t\t\tinsertionModeName == 'inCell') {\n\t\t\ttree.setInsertionMode('inSelectInTable');\n\t\t} else {\n\t\t\ttree.setInsertionMode('inSelect');\n\t\t}\n\t};\n\n\tmodes.inBody.startTagMisplaced = function(name, attributes) {\n\t\ttree.parseError('unexpected-start-tag-ignored', {name: name});\n\t};\n\n\tmodes.inBody.endTagMisplaced = function(name) {\n\t\ttree.parseError(\"unexpected-end-tag\", {name: name});\n\t};\n\n\tmodes.inBody.endTagBr = function(name) {\n\t\ttree.parseError(\"unexpected-end-tag-treated-as\", {originalName: \"br\", newName: \"br element\"});\n\t\ttree.reconstructActiveFormattingElements();\n\t\ttree.insertElement(name, []);\n\t\ttree.popElement();\n\t};\n\n\tmodes.inBody.startTagOptionOptgroup = function(name, attributes) {\n\t\tif (tree.currentStackItem().localName == 'option')\n\t\t\ttree.popElement();\n\t\ttree.reconstructActiveFormattingElements();\n\t\ttree.insertElement(name, attributes);\n\t};\n\n\tmodes.inBody.startTagOther = function(name, attributes) {\n\t\ttree.reconstructActiveFormattingElements();\n\t\ttree.insertElement(name, attributes);\n\t};\n\n\tmodes.inBody.endTagOther = function(name) {\n\t\tvar node;\n\t\tfor (var i = tree.openElements.length - 1; i > 0; i--) {\n\t\t\tnode = tree.openElements.item(i);\n\t\t\tif (node.localName == name) {\n\t\t\t\ttree.generateImpliedEndTags(name);\n\t\t\t\tif (tree.currentStackItem().localName != name)\n\t\t\t\t\ttree.parseError('unexpected-end-tag', {name: name});\n\t\t\t\ttree.openElements.remove_openElements_until(function(x) {return x === node;});\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif (node.isSpecial()) {\n\t\t\t\ttree.parseError('unexpected-end-tag', {name: name});\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t};\n\n\tmodes.inBody.startTagMath = function(name, attributes, selfClosing) {\n\t\ttree.reconstructActiveFormattingElements();\n\t\tattributes = tree.adjustMathMLAttributes(attributes);\n\t\tattributes = tree.adjustForeignAttributes(attributes);\n\t\ttree.insertForeignElement(name, attributes, \"http://www.w3.org/1998/Math/MathML\", selfClosing);\n\t};\n\n\tmodes.inBody.startTagSVG = function(name, attributes, selfClosing) {\n\t\ttree.reconstructActiveFormattingElements();\n\t\tattributes = tree.adjustSVGAttributes(attributes);\n\t\tattributes = tree.adjustForeignAttributes(attributes);\n\t\ttree.insertForeignElement(name, attributes, \"http://www.w3.org/2000/svg\", selfClosing);\n\t};\n\n\tmodes.inBody.endTagP = function(name) {\n\t\tif (!tree.openElements.inButtonScope('p')) {\n\t\t\ttree.parseError('unexpected-end-tag', {name: 'p'});\n\t\t\tthis.startTagCloseP('p', []);\n\t\t\tthis.endTagP('p');\n\t\t} else {\n\t\t\ttree.generateImpliedEndTags('p');\n\t\t\tif (tree.currentStackItem().localName != 'p')\n\t\t\t\ttree.parseError('unexpected-implied-end-tag', {name: 'p'});\n\t\t\ttree.openElements.popUntilPopped(name);\n\t\t}\n\t};\n\n\tmodes.inBody.endTagBody = function(name) {\n\t\tif (!tree.openElements.inScope('body')) {\n\t\t\ttree.parseError('unexpected-end-tag', {name: name});\n\t\t\treturn;\n\t\t}\n\t\tif (tree.currentStackItem().localName != 'body') {\n\t\t\ttree.parseError('expected-one-end-tag-but-got-another', {\n\t\t\t\texpectedName: tree.currentStackItem().localName,\n\t\t\t\tgotName: name\n\t\t\t});\n\t\t}\n\t\ttree.setInsertionMode('afterBody');\n\t};\n\n\tmodes.inBody.endTagHtml = function(name) {\n\t\tif (!tree.openElements.inScope('body')) {\n\t\t\ttree.parseError('unexpected-end-tag', {name: name});\n\t\t\treturn;\n\t\t}\n\t\tif (tree.currentStackItem().localName != 'body') {\n\t\t\ttree.parseError('expected-one-end-tag-but-got-another', {\n\t\t\t\texpectedName: tree.currentStackItem().localName,\n\t\t\t\tgotName: name\n\t\t\t});\n\t\t}\n\t\ttree.setInsertionMode('afterBody');\n\t\ttree.insertionMode.processEndTag(name);\n\t};\n\n\tmodes.inBody.endTagBlock = function(name) {\n\t\tif (!tree.openElements.inScope(name)) {\n\t\t\ttree.parseError('unexpected-end-tag', {name: name});\n\t\t} else {\n\t\t\ttree.generateImpliedEndTags();\n\t\t\tif (tree.currentStackItem().localName != name) {\n\t\t\t\ttree.parseError('end-tag-too-early', {name: name});\n\t\t\t}\n\t\t\ttree.openElements.popUntilPopped(name);\n\t\t}\n\t};\n\n\tmodes.inBody.endTagForm = function(name) {\n\t\tvar node = tree.form;\n\t\ttree.form = null;\n\t\tif (!node || !tree.openElements.inScope(name)) {\n\t\t\ttree.parseError('unexpected-end-tag', {name: name});\n\t\t} else {\n\t\t\ttree.generateImpliedEndTags();\n\t\t\tif (tree.currentStackItem() != node) {\n\t\t\t\ttree.parseError('end-tag-too-early-ignored', {name: 'form'});\n\t\t\t}\n\t\t\ttree.openElements.remove(node);\n\t\t}\n\t};\n\n\tmodes.inBody.endTagListItem = function(name) {\n\t\tif (!tree.openElements.inListItemScope(name)) {\n\t\t\ttree.parseError('unexpected-end-tag', {name: name});\n\t\t} else {\n\t\t\ttree.generateImpliedEndTags(name);\n\t\t\tif (tree.currentStackItem().localName != name)\n\t\t\t\ttree.parseError('end-tag-too-early', {name: name});\n\t\t\ttree.openElements.popUntilPopped(name);\n\t\t}\n\t};\n\n\tmodes.inBody.endTagHeading = function(name) {\n\t\tif (!tree.openElements.hasNumberedHeaderElementInScope()) {\n\t\t\ttree.parseError('unexpected-end-tag', {name: name});\n\t\t\treturn;\n\t\t}\n\t\ttree.generateImpliedEndTags();\n\t\tif (tree.currentStackItem().localName != name)\n\t\t\ttree.parseError('end-tag-too-early', {name: name});\n\n\t\ttree.openElements.remove_openElements_until(function(e) {\n\t\t\treturn e.isNumberedHeader();\n\t\t});\n\t};\n\n\tmodes.inBody.endTagFormatting = function(name, attributes) {\n\t\tif (!tree.adoptionAgencyEndTag(name))\n\t\t\tthis.endTagOther(name, attributes);\n\t};\n\n\tmodes.inCaption = Object.create(modes.base);\n\n\tmodes.inCaption.start_tag_handlers = {\n\t\thtml: 'startTagHtml',\n\t\tcaption: 'startTagTableElement',\n\t\tcol: 'startTagTableElement',\n\t\tcolgroup: 'startTagTableElement',\n\t\ttbody: 'startTagTableElement',\n\t\ttd: 'startTagTableElement',\n\t\ttfoot: 'startTagTableElement',\n\t\tthead: 'startTagTableElement',\n\t\ttr: 'startTagTableElement',\n\t\t'-default': 'startTagOther'\n\t};\n\n\tmodes.inCaption.end_tag_handlers = {\n\t\tcaption: 'endTagCaption',\n\t\ttable: 'endTagTable',\n\t\tbody: 'endTagIgnore',\n\t\tcol: 'endTagIgnore',\n\t\tcolgroup: 'endTagIgnore',\n\t\thtml: 'endTagIgnore',\n\t\ttbody: 'endTagIgnore',\n\t\ttd: 'endTagIgnore',\n\t\ttfood: 'endTagIgnore',\n\t\tthead: 'endTagIgnore',\n\t\ttr: 'endTagIgnore',\n\t\t'-default': 'endTagOther'\n\t};\n\n\tmodes.inCaption.processCharacters = function(data) {\n\t\tmodes.inBody.processCharacters(data);\n\t};\n\n\tmodes.inCaption.startTagTableElement = function(name, attributes) {\n\t\ttree.parseError('unexpected-end-tag', {name: name});\n\t\tvar ignoreEndTag = !tree.openElements.inTableScope('caption');\n\t\ttree.insertionMode.processEndTag('caption');\n\t\tif (!ignoreEndTag) tree.insertionMode.processStartTag(name, attributes);\n\t};\n\n\tmodes.inCaption.startTagOther = function(name, attributes, selfClosing) {\n\t\tmodes.inBody.processStartTag(name, attributes, selfClosing);\n\t};\n\n\tmodes.inCaption.endTagCaption = function(name) {\n\t\tif (!tree.openElements.inTableScope('caption')) {\n\t\t\tassert.ok(tree.context);\n\t\t\ttree.parseError('unexpected-end-tag', {name: name});\n\t\t} else {\n\t\t\ttree.generateImpliedEndTags();\n\t\t\tif (tree.currentStackItem().localName != 'caption') {\n\t\t\t\ttree.parseError('expected-one-end-tag-but-got-another', {\n\t\t\t\t\tgotName: \"caption\",\n\t\t\t\t\texpectedName: tree.currentStackItem().localName\n\t\t\t\t});\n\t\t\t}\n\t\t\ttree.openElements.popUntilPopped('caption');\n\t\t\ttree.clearActiveFormattingElements();\n\t\t\ttree.setInsertionMode('inTable');\n\t\t}\n\t};\n\n\tmodes.inCaption.endTagTable = function(name) {\n\t\ttree.parseError(\"unexpected-end-table-in-caption\");\n\t\tvar ignoreEndTag = !tree.openElements.inTableScope('caption');\n\t\ttree.insertionMode.processEndTag('caption');\n\t\tif (!ignoreEndTag) tree.insertionMode.processEndTag(name);\n\t};\n\n\tmodes.inCaption.endTagIgnore = function(name) {\n\t\ttree.parseError('unexpected-end-tag', {name: name});\n\t};\n\n\tmodes.inCaption.endTagOther = function(name) {\n\t\tmodes.inBody.processEndTag(name);\n\t};\n\n\tmodes.inCell = Object.create(modes.base);\n\n\tmodes.inCell.start_tag_handlers = {\n\t\thtml: 'startTagHtml',\n\t\tcaption: 'startTagTableOther',\n\t\tcol: 'startTagTableOther',\n\t\tcolgroup: 'startTagTableOther',\n\t\ttbody: 'startTagTableOther',\n\t\ttd: 'startTagTableOther',\n\t\ttfoot: 'startTagTableOther',\n\t\tth: 'startTagTableOther',\n\t\tthead: 'startTagTableOther',\n\t\ttr: 'startTagTableOther',\n\t\t'-default': 'startTagOther'\n\t};\n\n\tmodes.inCell.end_tag_handlers = {\n\t\ttd: 'endTagTableCell',\n\t\tth: 'endTagTableCell',\n\t\tbody: 'endTagIgnore',\n\t\tcaption: 'endTagIgnore',\n\t\tcol: 'endTagIgnore',\n\t\tcolgroup: 'endTagIgnore',\n\t\thtml: 'endTagIgnore',\n\t\ttable: 'endTagImply',\n\t\ttbody: 'endTagImply',\n\t\ttfoot: 'endTagImply',\n\t\tthead: 'endTagImply',\n\t\ttr: 'endTagImply',\n\t\t'-default': 'endTagOther'\n\t};\n\n\tmodes.inCell.processCharacters = function(data) {\n\t\tmodes.inBody.processCharacters(data);\n\t};\n\n\tmodes.inCell.startTagTableOther = function(name, attributes, selfClosing) {\n\t\tif (tree.openElements.inTableScope('td') || tree.openElements.inTableScope('th')) {\n\t\t\tthis.closeCell();\n\t\t\ttree.insertionMode.processStartTag(name, attributes, selfClosing);\n\t\t} else {\n\t\t\ttree.parseError('unexpected-start-tag', {name: name});\n\t\t}\n\t};\n\n\tmodes.inCell.startTagOther = function(name, attributes, selfClosing) {\n\t\tmodes.inBody.processStartTag(name, attributes, selfClosing);\n\t};\n\n\tmodes.inCell.endTagTableCell = function(name) {\n\t\tif (tree.openElements.inTableScope(name)) {\n\t\t\ttree.generateImpliedEndTags(name);\n\t\t\tif (tree.currentStackItem().localName != name.toLowerCase()) {\n\t\t\t\ttree.parseError('unexpected-cell-end-tag', {name: name});\n\t\t\t\ttree.openElements.popUntilPopped(name);\n\t\t\t} else {\n\t\t\t\ttree.popElement();\n\t\t\t}\n\t\t\ttree.clearActiveFormattingElements();\n\t\t\ttree.setInsertionMode('inRow');\n\t\t} else {\n\t\t\ttree.parseError('unexpected-end-tag', {name: name});\n\t\t}\n\t};\n\n\tmodes.inCell.endTagIgnore = function(name) {\n\t\ttree.parseError('unexpected-end-tag', {name: name});\n\t};\n\n\tmodes.inCell.endTagImply = function(name) {\n\t\tif (tree.openElements.inTableScope(name)) {\n\t\t\tthis.closeCell();\n\t\t\ttree.insertionMode.processEndTag(name);\n\t\t} else {\n\t\t\ttree.parseError('unexpected-end-tag', {name: name});\n\t\t}\n\t};\n\n\tmodes.inCell.endTagOther = function(name) {\n\t\tmodes.inBody.processEndTag(name);\n\t};\n\n\tmodes.inCell.closeCell = function() {\n\t\tif (tree.openElements.inTableScope('td')) {\n\t\t\tthis.endTagTableCell('td');\n\t\t} else if (tree.openElements.inTableScope('th')) {\n\t\t\tthis.endTagTableCell('th');\n\t\t}\n\t};\n\n\n\tmodes.inColumnGroup = Object.create(modes.base);\n\n\tmodes.inColumnGroup.start_tag_handlers = {\n\t\thtml: 'startTagHtml',\n\t\tcol: 'startTagCol',\n\t\t'-default': 'startTagOther'\n\t};\n\n\tmodes.inColumnGroup.end_tag_handlers = {\n\t\tcolgroup: 'endTagColgroup',\n\t\tcol: 'endTagCol',\n\t\t'-default': 'endTagOther'\n\t};\n\n\tmodes.inColumnGroup.ignoreEndTagColgroup = function() {\n\t\treturn tree.currentStackItem().localName == 'html';\n\t};\n\n\tmodes.inColumnGroup.processCharacters = function(buffer) {\n\t\tvar leadingWhitespace = buffer.takeLeadingWhitespace();\n\t\tif (leadingWhitespace)\n\t\t\ttree.insertText(leadingWhitespace);\n\t\tif (!buffer.length)\n\t\t\treturn;\n\t\tvar ignoreEndTag = this.ignoreEndTagColgroup();\n\t\tthis.endTagColgroup('colgroup');\n\t\tif (!ignoreEndTag) tree.insertionMode.processCharacters(buffer);\n\t};\n\n\tmodes.inColumnGroup.startTagCol = function(name, attributes) {\n\t\ttree.insertSelfClosingElement(name, attributes);\n\t};\n\n\tmodes.inColumnGroup.startTagOther = function(name, attributes, selfClosing) {\n\t\tvar ignoreEndTag = this.ignoreEndTagColgroup();\n\t\tthis.endTagColgroup('colgroup');\n\t\tif (!ignoreEndTag) tree.insertionMode.processStartTag(name, attributes, selfClosing);\n\t};\n\n\tmodes.inColumnGroup.endTagColgroup = function(name) {\n\t\tif (this.ignoreEndTagColgroup()) {\n\t\t\tassert.ok(tree.context);\n\t\t\ttree.parseError('unexpected-end-tag', {name: name});\n\t\t} else {\n\t\t\ttree.popElement();\n\t\t\ttree.setInsertionMode('inTable');\n\t\t}\n\t};\n\n\tmodes.inColumnGroup.endTagCol = function(name) {\n\t\ttree.parseError(\"no-end-tag\", {name: 'col'});\n\t};\n\n\tmodes.inColumnGroup.endTagOther = function(name) {\n\t\tvar ignoreEndTag = this.ignoreEndTagColgroup();\n\t\tthis.endTagColgroup('colgroup');\n\t\tif (!ignoreEndTag) tree.insertionMode.processEndTag(name) ;\n\t};\n\n\tmodes.inForeignContent = Object.create(modes.base);\n\n\tmodes.inForeignContent.processStartTag = function(name, attributes, selfClosing) {\n\t\tif (['b', 'big', 'blockquote', 'body', 'br', 'center', 'code', 'dd', 'div', 'dl', 'dt', 'em', 'embed', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'head', 'hr', 'i', 'img', 'li', 'listing', 'menu', 'meta', 'nobr', 'ol', 'p', 'pre', 'ruby', 's', 'small', 'span', 'strong', 'strike', 'sub', 'sup', 'table', 'tt', 'u', 'ul', 'var'].indexOf(name) != -1\n\t\t\t\t|| (name == 'font' && attributes.some(function(attr){ return ['color', 'face', 'size'].indexOf(attr.nodeName) >= 0 }))) {\n\t\t\ttree.parseError('unexpected-html-element-in-foreign-content', {name: name});\n\t\t\twhile (tree.currentStackItem().isForeign()\n\t\t\t\t&& !tree.currentStackItem().isHtmlIntegrationPoint()\n\t\t\t\t&& !tree.currentStackItem().isMathMLTextIntegrationPoint()) {\n\t\t\t\ttree.openElements.pop();\n\t\t\t}\n\t\t\ttree.insertionMode.processStartTag(name, attributes, selfClosing);\n\t\t\treturn;\n\t\t}\n\t\tif (tree.currentStackItem().namespaceURI == \"http://www.w3.org/1998/Math/MathML\") {\n\t\t\tattributes = tree.adjustMathMLAttributes(attributes);\n\t\t}\n\t\tif (tree.currentStackItem().namespaceURI == \"http://www.w3.org/2000/svg\") {\n\t\t\tname = tree.adjustSVGTagNameCase(name);\n\t\t\tattributes = tree.adjustSVGAttributes(attributes);\n\t\t}\n\t\tattributes = tree.adjustForeignAttributes(attributes);\n\t\ttree.insertForeignElement(name, attributes, tree.currentStackItem().namespaceURI, selfClosing);\n\t};\n\n\tmodes.inForeignContent.processEndTag = function(name) {\n\t\tvar node = tree.currentStackItem();\n\t\tvar index = tree.openElements.length - 1;\n\t\tif (node.localName.toLowerCase() != name)\n\t\t\ttree.parseError(\"unexpected-end-tag\", {name: name});\n\n\t\twhile (true) {\n\t\t\tif (index === 0)\n\t\t\t\tbreak;\n\t\t\tif (node.localName.toLowerCase() == name) {\n\t\t\t\twhile (tree.openElements.pop() != node);\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tindex -= 1;\n\t\t\tnode = tree.openElements.item(index);\n\t\t\tif (node.isForeign()) {\n\t\t\t\tcontinue;\n\t\t\t} else {\n\t\t\t\ttree.insertionMode.processEndTag(name);\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t};\n\n\tmodes.inForeignContent.processCharacters = function(buffer) {\n\t\tvar characters = buffer.takeRemaining();\n\t\tcharacters = characters.replace(/\\u0000/g, function(match, index){\n\t\t\ttree.parseError('invalid-codepoint');\n\t\t\treturn '\\uFFFD';\n\t\t});\n\t\tif (tree.framesetOk && !isAllWhitespaceOrReplacementCharacters(characters))\n\t\t\ttree.framesetOk = false;\n\t\ttree.insertText(characters);\n\t};\n\n\tmodes.inHeadNoscript = Object.create(modes.base);\n\n\tmodes.inHeadNoscript.start_tag_handlers = {\n\t\thtml: 'startTagHtml',\n\t\tbasefont: 'startTagBasefontBgsoundLinkMetaNoframesStyle',\n\t\tbgsound: 'startTagBasefontBgsoundLinkMetaNoframesStyle',\n\t\tlink: 'startTagBasefontBgsoundLinkMetaNoframesStyle',\n\t\tmeta: 'startTagBasefontBgsoundLinkMetaNoframesStyle',\n\t\tnoframes: 'startTagBasefontBgsoundLinkMetaNoframesStyle',\n\t\tstyle: 'startTagBasefontBgsoundLinkMetaNoframesStyle',\n\t\thead: 'startTagHeadNoscript',\n\t\tnoscript: 'startTagHeadNoscript',\n\t\t\"-default\": 'startTagOther'\n\t};\n\n\tmodes.inHeadNoscript.end_tag_handlers = {\n\t\tnoscript: 'endTagNoscript',\n\t\tbr: 'endTagBr',\n\t\t'-default': 'endTagOther'\n\t};\n\n\tmodes.inHeadNoscript.processCharacters = function(buffer) {\n\t\tvar leadingWhitespace = buffer.takeLeadingWhitespace();\n\t\tif (leadingWhitespace)\n\t\t\ttree.insertText(leadingWhitespace);\n\t\tif (!buffer.length)\n\t\t\treturn;\n\t\ttree.parseError(\"unexpected-char-in-frameset\");\n\t\tthis.anythingElse();\n\t\ttree.insertionMode.processCharacters(buffer);\n\t};\n\n\tmodes.inHeadNoscript.processComment = function(data) {\n\t\tmodes.inHead.processComment(data);\n\t};\n\n\tmodes.inHeadNoscript.startTagBasefontBgsoundLinkMetaNoframesStyle = function(name, attributes) {\n\t\tmodes.inHead.processStartTag(name, attributes);\n\t};\n\n\tmodes.inHeadNoscript.startTagHeadNoscript = function(name, attributes) {\n\t\ttree.parseError(\"unexpected-start-tag-in-frameset\", {name: name});\n\t};\n\n\tmodes.inHeadNoscript.startTagOther = function(name, attributes) {\n\t\ttree.parseError(\"unexpected-start-tag-in-frameset\", {name: name});\n\t\tthis.anythingElse();\n\t\ttree.insertionMode.processStartTag(name, attributes);\n\t};\n\n\tmodes.inHeadNoscript.endTagBr = function(name, attributes) {\n\t\ttree.parseError(\"unexpected-end-tag-in-frameset\", {name: name});\n\t\tthis.anythingElse();\n\t\ttree.insertionMode.processEndTag(name, attributes);\n\t};\n\n\tmodes.inHeadNoscript.endTagNoscript = function(name, attributes) {\n\t\ttree.popElement();\n\t\ttree.setInsertionMode('inHead');\n\t};\n\n\tmodes.inHeadNoscript.endTagOther = function(name, attributes) {\n\t\ttree.parseError(\"unexpected-end-tag-in-frameset\", {name: name});\n\t};\n\n\tmodes.inHeadNoscript.anythingElse = function() {\n\t\ttree.popElement();\n\t\ttree.setInsertionMode('inHead');\n\t};\n\n\n\tmodes.inFrameset = Object.create(modes.base);\n\n\tmodes.inFrameset.start_tag_handlers = {\n\t\thtml: 'startTagHtml',\n\t\tframeset: 'startTagFrameset',\n\t\tframe: 'startTagFrame',\n\t\tnoframes: 'startTagNoframes',\n\t\t\"-default\": 'startTagOther'\n\t};\n\n\tmodes.inFrameset.end_tag_handlers = {\n\t\tframeset: 'endTagFrameset',\n\t\tnoframes: 'endTagNoframes',\n\t\t'-default': 'endTagOther'\n\t};\n\n\tmodes.inFrameset.processCharacters = function(data) {\n\t\ttree.parseError(\"unexpected-char-in-frameset\");\n\t};\n\n\tmodes.inFrameset.startTagFrameset = function(name, attributes) {\n\t\ttree.insertElement(name, attributes);\n\t};\n\n\tmodes.inFrameset.startTagFrame = function(name, attributes) {\n\t\ttree.insertSelfClosingElement(name, attributes);\n\t};\n\n\tmodes.inFrameset.startTagNoframes = function(name, attributes) {\n\t\tmodes.inBody.processStartTag(name, attributes);\n\t};\n\n\tmodes.inFrameset.startTagOther = function(name, attributes) {\n\t\ttree.parseError(\"unexpected-start-tag-in-frameset\", {name: name});\n\t};\n\n\tmodes.inFrameset.endTagFrameset = function(name, attributes) {\n\t\tif (tree.currentStackItem().localName == 'html') {\n\t\t\ttree.parseError(\"unexpected-frameset-in-frameset-innerhtml\");\n\t\t} else {\n\t\t\ttree.popElement();\n\t\t}\n\n\t\tif (!tree.context && tree.currentStackItem().localName != 'frameset') {\n\t\t\ttree.setInsertionMode('afterFrameset');\n\t\t}\n\t};\n\n\tmodes.inFrameset.endTagNoframes = function(name) {\n\t\tmodes.inBody.processEndTag(name);\n\t};\n\n\tmodes.inFrameset.endTagOther = function(name) {\n\t\ttree.parseError(\"unexpected-end-tag-in-frameset\", {name: name});\n\t};\n\n\tmodes.inTable = Object.create(modes.base);\n\n\tmodes.inTable.start_tag_handlers = {\n\t\thtml: 'startTagHtml',\n\t\tcaption: 'startTagCaption',\n\t\tcolgroup: 'startTagColgroup',\n\t\tcol: 'startTagCol',\n\t\ttable: 'startTagTable',\n\t\ttbody: 'startTagRowGroup',\n\t\ttfoot: 'startTagRowGroup',\n\t\tthead: 'startTagRowGroup',\n\t\ttd: 'startTagImplyTbody',\n\t\tth: 'startTagImplyTbody',\n\t\ttr: 'startTagImplyTbody',\n\t\tstyle: 'startTagStyleScript',\n\t\tscript: 'startTagStyleScript',\n\t\tinput: 'startTagInput',\n\t\tform: 'startTagForm',\n\t\t'-default': 'startTagOther'\n\t};\n\n\tmodes.inTable.end_tag_handlers = {\n\t\ttable: 'endTagTable',\n\t\tbody: 'endTagIgnore',\n\t\tcaption: 'endTagIgnore',\n\t\tcol: 'endTagIgnore',\n\t\tcolgroup: 'endTagIgnore',\n\t\thtml: 'endTagIgnore',\n\t\ttbody: 'endTagIgnore',\n\t\ttd: 'endTagIgnore',\n\t\ttfoot: 'endTagIgnore',\n\t\tth: 'endTagIgnore',\n\t\tthead: 'endTagIgnore',\n\t\ttr: 'endTagIgnore',\n\t\t'-default': 'endTagOther'\n\t};\n\n\tmodes.inTable.processCharacters = function(data) {\n\t\tif (tree.currentStackItem().isFosterParenting()) {\n\t\t\tvar originalInsertionMode = tree.insertionModeName;\n\t\t\ttree.setInsertionMode('inTableText');\n\t\t\ttree.originalInsertionMode = originalInsertionMode;\n\t\t\ttree.insertionMode.processCharacters(data);\n\t\t} else {\n\t\t\ttree.redirectAttachToFosterParent = true;\n\t\t\tmodes.inBody.processCharacters(data);\n\t\t\ttree.redirectAttachToFosterParent = false;\n\t\t}\n\t};\n\n\tmodes.inTable.startTagCaption = function(name, attributes) {\n\t\ttree.openElements.popUntilTableScopeMarker();\n\t\ttree.activeFormattingElements.push(Marker);\n\t\ttree.insertElement(name, attributes);\n\t\ttree.setInsertionMode('inCaption');\n\t};\n\n\tmodes.inTable.startTagColgroup = function(name, attributes) {\n\t\ttree.openElements.popUntilTableScopeMarker();\n\t\ttree.insertElement(name, attributes);\n\t\ttree.setInsertionMode('inColumnGroup');\n\t};\n\n\tmodes.inTable.startTagCol = function(name, attributes) {\n\t\tthis.startTagColgroup('colgroup', []);\n\t\ttree.insertionMode.processStartTag(name, attributes);\n\t};\n\n\tmodes.inTable.startTagRowGroup = function(name, attributes) {\n\t\ttree.openElements.popUntilTableScopeMarker();\n\t\ttree.insertElement(name, attributes);\n\t\ttree.setInsertionMode('inTableBody');\n\t};\n\n\tmodes.inTable.startTagImplyTbody = function(name, attributes) {\n\t\tthis.startTagRowGroup('tbody', []);\n\t\ttree.insertionMode.processStartTag(name, attributes);\n\t};\n\n\tmodes.inTable.startTagTable = function(name, attributes) {\n\t\ttree.parseError(\"unexpected-start-tag-implies-end-tag\",\n\t\t\t\t{startName: \"table\", endName: \"table\"});\n\t\ttree.insertionMode.processEndTag('table');\n\t\tif (!tree.context) tree.insertionMode.processStartTag(name, attributes);\n\t};\n\n\tmodes.inTable.startTagStyleScript = function(name, attributes) {\n\t\tmodes.inHead.processStartTag(name, attributes);\n\t};\n\n\tmodes.inTable.startTagInput = function(name, attributes) {\n\t\tfor (var key in attributes) {\n\t\t\tif (attributes[key].nodeName.toLowerCase() == 'type') {\n\t\t\t\tif (attributes[key].nodeValue.toLowerCase() == 'hidden') {\n\t\t\t\t\ttree.parseError(\"unexpected-hidden-input-in-table\");\n\t\t\t\t\ttree.insertElement(name, attributes);\n\t\t\t\t\ttree.openElements.pop();\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t\tthis.startTagOther(name, attributes);\n\t};\n\n\tmodes.inTable.startTagForm = function(name, attributes) {\n\t\ttree.parseError(\"unexpected-form-in-table\");\n\t\tif (!tree.form) {\n\t\t\ttree.insertElement(name, attributes);\n\t\t\ttree.form = tree.currentStackItem();\n\t\t\ttree.openElements.pop();\n\t\t}\n\t};\n\n\tmodes.inTable.startTagOther = function(name, attributes, selfClosing) {\n\t\ttree.parseError(\"unexpected-start-tag-implies-table-voodoo\", {name: name});\n\t\ttree.redirectAttachToFosterParent = true;\n\t\tmodes.inBody.processStartTag(name, attributes, selfClosing);\n\t\ttree.redirectAttachToFosterParent = false;\n\t};\n\n\tmodes.inTable.endTagTable = function(name) {\n\t\tif (tree.openElements.inTableScope(name)) {\n\t\t\ttree.generateImpliedEndTags();\n\t\t\tif (tree.currentStackItem().localName != name) {\n\t\t\t\ttree.parseError(\"end-tag-too-early-named\", {gotName: 'table', expectedName: tree.currentStackItem().localName});\n\t\t\t}\n\n\t\t\ttree.openElements.popUntilPopped('table');\n\t\t\ttree.resetInsertionMode();\n\t\t} else {\n\t\t\tassert.ok(tree.context);\n\t\t\ttree.parseError('unexpected-end-tag', {name: name});\n\t\t}\n\t};\n\n\tmodes.inTable.endTagIgnore = function(name) {\n\t\ttree.parseError(\"unexpected-end-tag\", {name: name});\n\t};\n\n\tmodes.inTable.endTagOther = function(name) {\n\t\ttree.parseError(\"unexpected-end-tag-implies-table-voodoo\", {name: name});\n\t\ttree.redirectAttachToFosterParent = true;\n\t\tmodes.inBody.processEndTag(name);\n\t\ttree.redirectAttachToFosterParent = false;\n\t};\n\n\tmodes.inTableText = Object.create(modes.base);\n\n\tmodes.inTableText.flushCharacters = function() {\n\t\tvar characters = tree.pendingTableCharacters.join('');\n\t\tif (!isAllWhitespace(characters)) {\n\t\t\ttree.redirectAttachToFosterParent = true;\n\t\t\ttree.reconstructActiveFormattingElements();\n\t\t\ttree.insertText(characters);\n\t\t\ttree.framesetOk = false;\n\t\t\ttree.redirectAttachToFosterParent = false;\n\t\t} else {\n\t\t\ttree.insertText(characters);\n\t\t}\n\t\ttree.pendingTableCharacters = [];\n\t};\n\n\tmodes.inTableText.processComment = function(data) {\n\t\tthis.flushCharacters();\n\t\ttree.setInsertionMode(tree.originalInsertionMode);\n\t\ttree.insertionMode.processComment(data);\n\t};\n\n\tmodes.inTableText.processEOF = function(data) {\n\t\tthis.flushCharacters();\n\t\ttree.setInsertionMode(tree.originalInsertionMode);\n\t\ttree.insertionMode.processEOF();\n\t};\n\n\tmodes.inTableText.processCharacters = function(buffer) {\n\t\tvar characters = buffer.takeRemaining();\n\t\tcharacters = characters.replace(/\\u0000/g, function(match, index){\n\t\t\ttree.parseError(\"invalid-codepoint\");\n\t\t\treturn '';\n\t\t});\n\t\tif (!characters)\n\t\t\treturn;\n\t\ttree.pendingTableCharacters.push(characters);\n\t};\n\n\tmodes.inTableText.processStartTag = function(name, attributes, selfClosing) {\n\t\tthis.flushCharacters();\n\t\ttree.setInsertionMode(tree.originalInsertionMode);\n\t\ttree.insertionMode.processStartTag(name, attributes, selfClosing);\n\t};\n\n\tmodes.inTableText.processEndTag = function(name, attributes) {\n\t\tthis.flushCharacters();\n\t\ttree.setInsertionMode(tree.originalInsertionMode);\n\t\ttree.insertionMode.processEndTag(name, attributes);\n\t};\n\n\tmodes.inTableBody = Object.create(modes.base);\n\n\tmodes.inTableBody.start_tag_handlers = {\n\t\thtml: 'startTagHtml',\n\t\ttr: 'startTagTr',\n\t\ttd: 'startTagTableCell',\n\t\tth: 'startTagTableCell',\n\t\tcaption: 'startTagTableOther',\n\t\tcol: 'startTagTableOther',\n\t\tcolgroup: 'startTagTableOther',\n\t\ttbody: 'startTagTableOther',\n\t\ttfoot: 'startTagTableOther',\n\t\tthead: 'startTagTableOther',\n\t\t'-default': 'startTagOther'\n\t};\n\n\tmodes.inTableBody.end_tag_handlers = {\n\t\ttable: 'endTagTable',\n\t\ttbody: 'endTagTableRowGroup',\n\t\ttfoot: 'endTagTableRowGroup',\n\t\tthead: 'endTagTableRowGroup',\n\t\tbody: 'endTagIgnore',\n\t\tcaption: 'endTagIgnore',\n\t\tcol: 'endTagIgnore',\n\t\tcolgroup: 'endTagIgnore',\n\t\thtml: 'endTagIgnore',\n\t\ttd: 'endTagIgnore',\n\t\tth: 'endTagIgnore',\n\t\ttr: 'endTagIgnore',\n\t\t'-default': 'endTagOther'\n\t};\n\n\tmodes.inTableBody.processCharacters = function(data) {\n\t\tmodes.inTable.processCharacters(data);\n\t};\n\n\tmodes.inTableBody.startTagTr = function(name, attributes) {\n\t\ttree.openElements.popUntilTableBodyScopeMarker();\n\t\ttree.insertElement(name, attributes);\n\t\ttree.setInsertionMode('inRow');\n\t};\n\n\tmodes.inTableBody.startTagTableCell = function(name, attributes) {\n\t\ttree.parseError(\"unexpected-cell-in-table-body\", {name: name});\n\t\tthis.startTagTr('tr', []);\n\t\ttree.insertionMode.processStartTag(name, attributes);\n\t};\n\n\tmodes.inTableBody.startTagTableOther = function(name, attributes) {\n\t\tif (tree.openElements.inTableScope('tbody') || tree.openElements.inTableScope('thead') || tree.openElements.inTableScope('tfoot')) {\n\t\t\ttree.openElements.popUntilTableBodyScopeMarker();\n\t\t\tthis.endTagTableRowGroup(tree.currentStackItem().localName);\n\t\t\ttree.insertionMode.processStartTag(name, attributes);\n\t\t} else {\n\t\t\ttree.parseError('unexpected-start-tag', {name: name});\n\t\t}\n\t};\n\n\tmodes.inTableBody.startTagOther = function(name, attributes) {\n\t\tmodes.inTable.processStartTag(name, attributes);\n\t};\n\n\tmodes.inTableBody.endTagTableRowGroup = function(name) {\n\t\tif (tree.openElements.inTableScope(name)) {\n\t\t\ttree.openElements.popUntilTableBodyScopeMarker();\n\t\t\ttree.popElement();\n\t\t\ttree.setInsertionMode('inTable');\n\t\t} else {\n\t\t\ttree.parseError('unexpected-end-tag-in-table-body', {name: name});\n\t\t}\n\t};\n\n\tmodes.inTableBody.endTagTable = function(name) {\n\t\tif (tree.openElements.inTableScope('tbody') || tree.openElements.inTableScope('thead') || tree.openElements.inTableScope('tfoot')) {\n\t\t\ttree.openElements.popUntilTableBodyScopeMarker();\n\t\t\tthis.endTagTableRowGroup(tree.currentStackItem().localName);\n\t\t\ttree.insertionMode.processEndTag(name);\n\t\t} else {\n\t\t\ttree.parseError('unexpected-end-tag', {name: name});\n\t\t}\n\t};\n\n\tmodes.inTableBody.endTagIgnore = function(name) {\n\t\ttree.parseError(\"unexpected-end-tag-in-table-body\", {name: name});\n\t};\n\n\tmodes.inTableBody.endTagOther = function(name) {\n\t\tmodes.inTable.processEndTag(name);\n\t};\n\n\tmodes.inSelect = Object.create(modes.base);\n\n\tmodes.inSelect.start_tag_handlers = {\n\t\thtml: 'startTagHtml',\n\t\toption: 'startTagOption',\n\t\toptgroup: 'startTagOptgroup',\n\t\tselect: 'startTagSelect',\n\t\tinput: 'startTagInput',\n\t\tkeygen: 'startTagInput',\n\t\ttextarea: 'startTagInput',\n\t\tscript: 'startTagScript',\n\t\t'-default': 'startTagOther'\n\t};\n\n\tmodes.inSelect.end_tag_handlers = {\n\t\toption: 'endTagOption',\n\t\toptgroup: 'endTagOptgroup',\n\t\tselect: 'endTagSelect',\n\t\tcaption: 'endTagTableElements',\n\t\ttable: 'endTagTableElements',\n\t\ttbody: 'endTagTableElements',\n\t\ttfoot: 'endTagTableElements',\n\t\tthead: 'endTagTableElements',\n\t\ttr: 'endTagTableElements',\n\t\ttd: 'endTagTableElements',\n\t\tth: 'endTagTableElements',\n\t\t'-default': 'endTagOther'\n\t};\n\n\tmodes.inSelect.processCharacters = function(buffer) {\n\t\tvar data = buffer.takeRemaining();\n\t\tdata = data.replace(/\\u0000/g, function(match, index){\n\t\t\ttree.parseError(\"invalid-codepoint\");\n\t\t\treturn '';\n\t\t});\n\t\tif (!data)\n\t\t\treturn;\n\t\ttree.insertText(data);\n\t};\n\n\tmodes.inSelect.startTagOption = function(name, attributes) {\n\t\tif (tree.currentStackItem().localName == 'option')\n\t\t\ttree.popElement();\n\t\ttree.insertElement(name, attributes);\n\t};\n\n\tmodes.inSelect.startTagOptgroup = function(name, attributes) {\n\t\tif (tree.currentStackItem().localName == 'option')\n\t\t\ttree.popElement();\n\t\tif (tree.currentStackItem().localName == 'optgroup')\n\t\t\ttree.popElement();\n\t\ttree.insertElement(name, attributes);\n\t};\n\n\tmodes.inSelect.endTagOption = function(name) {\n\t\tif (tree.currentStackItem().localName !== 'option') {\n\t\t\ttree.parseError('unexpected-end-tag-in-select', {name: name});\n\t\t\treturn;\n\t\t}\n\t\ttree.popElement();\n\t};\n\n\tmodes.inSelect.endTagOptgroup = function(name) {\n\t\tif (tree.currentStackItem().localName == 'option' && tree.openElements.item(tree.openElements.length - 2).localName == 'optgroup') {\n\t\t\ttree.popElement();\n\t\t}\n\t\tif (tree.currentStackItem().localName == 'optgroup') {\n\t\t\ttree.popElement();\n\t\t} else {\n\t\t\ttree.parseError('unexpected-end-tag-in-select', {name: 'optgroup'});\n\t\t}\n\t};\n\n\tmodes.inSelect.startTagSelect = function(name) {\n\t\ttree.parseError(\"unexpected-select-in-select\");\n\t\tthis.endTagSelect('select');\n\t};\n\n\tmodes.inSelect.endTagSelect = function(name) {\n\t\tif (tree.openElements.inTableScope('select')) {\n\t\t\ttree.openElements.popUntilPopped('select');\n\t\t\ttree.resetInsertionMode();\n\t\t} else {\n\t\t\ttree.parseError('unexpected-end-tag', {name: name});\n\t\t}\n\t};\n\n\tmodes.inSelect.startTagInput = function(name, attributes) {\n\t\ttree.parseError(\"unexpected-input-in-select\");\n\t\tif (tree.openElements.inSelectScope('select')) {\n\t\t\tthis.endTagSelect('select');\n\t\t\ttree.insertionMode.processStartTag(name, attributes);\n\t\t}\n\t};\n\n\tmodes.inSelect.startTagScript = function(name, attributes) {\n\t\tmodes.inHead.processStartTag(name, attributes);\n\t};\n\n\tmodes.inSelect.endTagTableElements = function(name) {\n\t\ttree.parseError('unexpected-end-tag-in-select', {name: name});\n\t\tif (tree.openElements.inTableScope(name)) {\n\t\t\tthis.endTagSelect('select');\n\t\t\ttree.insertionMode.processEndTag(name);\n\t\t}\n\t};\n\n\tmodes.inSelect.startTagOther = function(name, attributes) {\n\t\ttree.parseError(\"unexpected-start-tag-in-select\", {name: name});\n\t};\n\n\tmodes.inSelect.endTagOther = function(name) {\n\t\ttree.parseError('unexpected-end-tag-in-select', {name: name});\n\t};\n\n\tmodes.inSelectInTable = Object.create(modes.base);\n\n\tmodes.inSelectInTable.start_tag_handlers = {\n\t\tcaption: 'startTagTable',\n\t\ttable: 'startTagTable',\n\t\ttbody: 'startTagTable',\n\t\ttfoot: 'startTagTable',\n\t\tthead: 'startTagTable',\n\t\ttr: 'startTagTable',\n\t\ttd: 'startTagTable',\n\t\tth: 'startTagTable',\n\t\t'-default': 'startTagOther'\n\t};\n\n\tmodes.inSelectInTable.end_tag_handlers = {\n\t\tcaption: 'endTagTable',\n\t\ttable: 'endTagTable',\n\t\ttbody: 'endTagTable',\n\t\ttfoot: 'endTagTable',\n\t\tthead: 'endTagTable',\n\t\ttr: 'endTagTable',\n\t\ttd: 'endTagTable',\n\t\tth: 'endTagTable',\n\t\t'-default': 'endTagOther'\n\t};\n\n\tmodes.inSelectInTable.processCharacters = function(data) {\n\t\tmodes.inSelect.processCharacters(data);\n\t};\n\n\tmodes.inSelectInTable.startTagTable = function(name, attributes) {\n\t\ttree.parseError(\"unexpected-table-element-start-tag-in-select-in-table\", {name: name});\n\t\tthis.endTagOther(\"select\");\n\t\ttree.insertionMode.processStartTag(name, attributes);\n\t};\n\n\tmodes.inSelectInTable.startTagOther = function(name, attributes, selfClosing) {\n\t\tmodes.inSelect.processStartTag(name, attributes, selfClosing);\n\t};\n\n\tmodes.inSelectInTable.endTagTable = function(name) {\n\t\ttree.parseError(\"unexpected-table-element-end-tag-in-select-in-table\", {name: name});\n\t\tif (tree.openElements.inTableScope(name)) {\n\t\t\tthis.endTagOther(\"select\");\n\t\t\ttree.insertionMode.processEndTag(name);\n\t\t}\n\t};\n\n\tmodes.inSelectInTable.endTagOther = function(name) {\n\t\tmodes.inSelect.processEndTag(name);\n\t};\n\n\tmodes.inRow = Object.create(modes.base);\n\n\tmodes.inRow.start_tag_handlers = {\n\t\thtml: 'startTagHtml',\n\t\ttd: 'startTagTableCell',\n\t\tth: 'startTagTableCell',\n\t\tcaption: 'startTagTableOther',\n\t\tcol: 'startTagTableOther',\n\t\tcolgroup: 'startTagTableOther',\n\t\ttbody: 'startTagTableOther',\n\t\ttfoot: 'startTagTableOther',\n\t\tthead: 'startTagTableOther',\n\t\ttr: 'startTagTableOther',\n\t\t'-default': 'startTagOther'\n\t};\n\n\tmodes.inRow.end_tag_handlers = {\n\t\ttr: 'endTagTr',\n\t\ttable: 'endTagTable',\n\t\ttbody: 'endTagTableRowGroup',\n\t\ttfoot: 'endTagTableRowGroup',\n\t\tthead: 'endTagTableRowGroup',\n\t\tbody: 'endTagIgnore',\n\t\tcaption: 'endTagIgnore',\n\t\tcol: 'endTagIgnore',\n\t\tcolgroup: 'endTagIgnore',\n\t\thtml: 'endTagIgnore',\n\t\ttd: 'endTagIgnore',\n\t\tth: 'endTagIgnore',\n\t\t'-default': 'endTagOther'\n\t};\n\n\tmodes.inRow.processCharacters = function(data) {\n\t\tmodes.inTable.processCharacters(data);\n\t};\n\n\tmodes.inRow.startTagTableCell = function(name, attributes) {\n\t\ttree.openElements.popUntilTableRowScopeMarker();\n\t\ttree.insertElement(name, attributes);\n\t\ttree.setInsertionMode('inCell');\n\t\ttree.activeFormattingElements.push(Marker);\n\t};\n\n\tmodes.inRow.startTagTableOther = function(name, attributes) {\n\t\tvar ignoreEndTag = this.ignoreEndTagTr();\n\t\tthis.endTagTr('tr');\n\t\tif (!ignoreEndTag) tree.insertionMode.processStartTag(name, attributes);\n\t};\n\n\tmodes.inRow.startTagOther = function(name, attributes, selfClosing) {\n\t\tmodes.inTable.processStartTag(name, attributes, selfClosing);\n\t};\n\n\tmodes.inRow.endTagTr = function(name) {\n\t\tif (this.ignoreEndTagTr()) {\n\t\t\tassert.ok(tree.context);\n\t\t\ttree.parseError('unexpected-end-tag', {name: name});\n\t\t} else {\n\t\t\ttree.openElements.popUntilTableRowScopeMarker();\n\t\t\ttree.popElement();\n\t\t\ttree.setInsertionMode('inTableBody');\n\t\t}\n\t};\n\n\tmodes.inRow.endTagTable = function(name) {\n\t\tvar ignoreEndTag = this.ignoreEndTagTr();\n\t\tthis.endTagTr('tr');\n\t\tif (!ignoreEndTag) tree.insertionMode.processEndTag(name);\n\t};\n\n\tmodes.inRow.endTagTableRowGroup = function(name) {\n\t\tif (tree.openElements.inTableScope(name)) {\n\t\t\tthis.endTagTr('tr');\n\t\t\ttree.insertionMode.processEndTag(name);\n\t\t} else {\n\t\t\ttree.parseError('unexpected-end-tag', {name: name});\n\t\t}\n\t};\n\n\tmodes.inRow.endTagIgnore = function(name) {\n\t\ttree.parseError(\"unexpected-end-tag-in-table-row\", {name: name});\n\t};\n\n\tmodes.inRow.endTagOther = function(name) {\n\t\tmodes.inTable.processEndTag(name);\n\t};\n\n\tmodes.inRow.ignoreEndTagTr = function() {\n\t\treturn !tree.openElements.inTableScope('tr');\n\t};\n\n\tmodes.afterAfterFrameset = Object.create(modes.base);\n\n\tmodes.afterAfterFrameset.start_tag_handlers = {\n\t\thtml: 'startTagHtml',\n\t\tnoframes: 'startTagNoFrames',\n\t\t'-default': 'startTagOther'\n\t};\n\n\tmodes.afterAfterFrameset.processEOF = function() {};\n\n\tmodes.afterAfterFrameset.processComment = function(data) {\n\t\ttree.insertComment(data, tree.document);\n\t};\n\n\tmodes.afterAfterFrameset.processCharacters = function(buffer) {\n\t\tvar characters = buffer.takeRemaining();\n\t\tvar whitespace = \"\";\n\t\tfor (var i = 0; i < characters.length; i++) {\n\t\t\tvar ch = characters[i];\n\t\t\tif (isWhitespace(ch))\n\t\t\t\twhitespace += ch;\n\t\t}\n\t\tif (whitespace) {\n\t\t\ttree.reconstructActiveFormattingElements();\n\t\t\ttree.insertText(whitespace);\n\t\t}\n\t\tif (whitespace.length < characters.length)\n\t\t\ttree.parseError('expected-eof-but-got-char');\n\t};\n\n\tmodes.afterAfterFrameset.startTagNoFrames = function(name, attributes) {\n\t\tmodes.inHead.processStartTag(name, attributes);\n\t};\n\n\tmodes.afterAfterFrameset.startTagOther = function(name, attributes, selfClosing) {\n\t\ttree.parseError('expected-eof-but-got-start-tag', {name: name});\n\t};\n\n\tmodes.afterAfterFrameset.processEndTag = function(name, attributes) {\n\t\ttree.parseError('expected-eof-but-got-end-tag', {name: name});\n\t};\n\n\tmodes.text = Object.create(modes.base);\n\n\tmodes.text.start_tag_handlers = {\n\t\t'-default': 'startTagOther'\n\t};\n\n\tmodes.text.end_tag_handlers = {\n\t\tscript: 'endTagScript',\n\t\t'-default': 'endTagOther'\n\t};\n\n\tmodes.text.processCharacters = function(buffer) {\n\t\tif (tree.shouldSkipLeadingNewline) {\n\t\t\ttree.shouldSkipLeadingNewline = false;\n\t\t\tbuffer.skipAtMostOneLeadingNewline();\n\t\t}\n\t\tvar data = buffer.takeRemaining();\n\t\tif (!data)\n\t\t\treturn;\n\t\ttree.insertText(data);\n\t};\n\n\tmodes.text.processEOF = function() {\n\t\ttree.parseError(\"expected-named-closing-tag-but-got-eof\",\n\t\t\t{name: tree.currentStackItem().localName});\n\t\ttree.openElements.pop();\n\t\ttree.setInsertionMode(tree.originalInsertionMode);\n\t\ttree.insertionMode.processEOF();\n\t};\n\n\tmodes.text.startTagOther = function(name) {\n\t\tthrow \"Tried to process start tag \" + name + \" in RCDATA/RAWTEXT mode\";\n\t};\n\n\tmodes.text.endTagScript = function(name) {\n\t\tvar node = tree.openElements.pop();\n\t\tassert.ok(node.localName == 'script');\n\t\ttree.setInsertionMode(tree.originalInsertionMode);\n\t};\n\n\tmodes.text.endTagOther = function(name) {\n\t\ttree.openElements.pop();\n\t\ttree.setInsertionMode(tree.originalInsertionMode);\n\t};\n}\n\nTreeBuilder.prototype.setInsertionMode = function(name) {\n\tthis.insertionMode = this.insertionModes[name];\n\tthis.insertionModeName = name;\n};\nTreeBuilder.prototype.adoptionAgencyEndTag = function(name) {\n\tvar outerIterationLimit = 8;\n\tvar innerIterationLimit = 3;\n\tvar formattingElement;\n\n\tfunction isActiveFormattingElement(el) {\n\t\treturn el === formattingElement;\n\t}\n\n\tvar outerLoopCounter = 0;\n\n\twhile (outerLoopCounter++ < outerIterationLimit) {\n\t\tformattingElement = this.elementInActiveFormattingElements(name);\n\n\t\tif (!formattingElement || (this.openElements.contains(formattingElement) && !this.openElements.inScope(formattingElement.localName))) {\n\t\t\tthis.parseError('adoption-agency-1.1', {name: name});\n\t\t\treturn false;\n\t\t}\n\t\tif (!this.openElements.contains(formattingElement)) {\n\t\t\tthis.parseError('adoption-agency-1.2', {name: name});\n\t\t\tthis.removeElementFromActiveFormattingElements(formattingElement);\n\t\t\treturn true;\n\t\t}\n\t\tif (!this.openElements.inScope(formattingElement.localName)) {\n\t\t\tthis.parseError('adoption-agency-4.4', {name: name});\n\t\t}\n\n\t\tif (formattingElement != this.currentStackItem()) {\n\t\t\tthis.parseError('adoption-agency-1.3', {name: name});\n\t\t}\n\t\tvar furthestBlock = this.openElements.furthestBlockForFormattingElement(formattingElement.node);\n\n\t\tif (!furthestBlock) {\n\t\t\tthis.openElements.remove_openElements_until(isActiveFormattingElement);\n\t\t\tthis.removeElementFromActiveFormattingElements(formattingElement);\n\t\t\treturn true;\n\t\t}\n\n\t\tvar afeIndex = this.openElements.elements.indexOf(formattingElement);\n\t\tvar commonAncestor = this.openElements.item(afeIndex - 1);\n\n\t\tvar bookmark = this.activeFormattingElements.indexOf(formattingElement);\n\n\t\tvar node = furthestBlock;\n\t\tvar lastNode = furthestBlock;\n\t\tvar index = this.openElements.elements.indexOf(node);\n\n\t\tvar innerLoopCounter = 0;\n\t\twhile (innerLoopCounter++ < innerIterationLimit) {\n\t\t\tindex -= 1;\n\t\t\tnode = this.openElements.item(index);\n\t\t\tif (this.activeFormattingElements.indexOf(node) < 0) {\n\t\t\t\tthis.openElements.elements.splice(index, 1);\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\tif (node == formattingElement)\n\t\t\t\tbreak;\n\n\t\t\tif (lastNode == furthestBlock)\n\t\t\t\tbookmark = this.activeFormattingElements.indexOf(node) + 1;\n\n\t\t\tvar clone = this.createElement(node.namespaceURI, node.localName, node.attributes);\n\t\t\tvar newNode = new StackItem(node.namespaceURI, node.localName, node.attributes, clone);\n\n\t\t\tthis.activeFormattingElements[this.activeFormattingElements.indexOf(node)] = newNode;\n\t\t\tthis.openElements.elements[this.openElements.elements.indexOf(node)] = newNode;\n\n\t\t\tnode = newNode;\n\t\t\tthis.detachFromParent(lastNode.node);\n\t\t\tthis.attachNode(lastNode.node, node.node);\n\t\t\tlastNode = node;\n\t\t}\n\n\t\tthis.detachFromParent(lastNode.node);\n\t\tif (commonAncestor.isFosterParenting()) {\n\t\t\tthis.insertIntoFosterParent(lastNode.node);\n\t\t} else {\n\t\t\tthis.attachNode(lastNode.node, commonAncestor.node);\n\t\t}\n\n\t\tvar clone = this.createElement(\"http://www.w3.org/1999/xhtml\", formattingElement.localName, formattingElement.attributes);\n\t\tvar formattingClone = new StackItem(formattingElement.namespaceURI, formattingElement.localName, formattingElement.attributes, clone);\n\n\t\tthis.reparentChildren(furthestBlock.node, clone);\n\t\tthis.attachNode(clone, furthestBlock.node);\n\n\t\tthis.removeElementFromActiveFormattingElements(formattingElement);\n\t\tthis.activeFormattingElements.splice(Math.min(bookmark, this.activeFormattingElements.length), 0, formattingClone);\n\n\t\tthis.openElements.remove(formattingElement);\n\t\tthis.openElements.elements.splice(this.openElements.elements.indexOf(furthestBlock) + 1, 0, formattingClone);\n\t}\n\n\treturn true;\n};\n\nTreeBuilder.prototype.start = function() {\n\tthrow \"Not mplemented\";\n};\n\nTreeBuilder.prototype.startTokenization = function(tokenizer) {\n\tthis.tokenizer = tokenizer;\n\tthis.compatMode = \"no quirks\";\n\tthis.originalInsertionMode = \"initial\";\n\tthis.framesetOk = true;\n\tthis.openElements = new ElementStack();\n\tthis.activeFormattingElements = [];\n\tthis.start();\n\tif (this.context) {\n\t\tswitch(this.context) {\n\t\tcase 'title':\n\t\tcase 'textarea':\n\t\t\tthis.tokenizer.setState(Tokenizer.RCDATA);\n\t\t\tbreak;\n\t\tcase 'style':\n\t\tcase 'xmp':\n\t\tcase 'iframe':\n\t\tcase 'noembed':\n\t\tcase 'noframes':\n\t\t\tthis.tokenizer.setState(Tokenizer.RAWTEXT);\n\t\t\tbreak;\n\t\tcase 'script':\n\t\t\tthis.tokenizer.setState(Tokenizer.SCRIPT_DATA);\n\t\t\tbreak;\n\t\tcase 'noscript':\n\t\t\tif (this.scriptingEnabled)\n\t\t\t\tthis.tokenizer.setState(Tokenizer.RAWTEXT);\n\t\t\tbreak;\n\t\tcase 'plaintext':\n\t\t\tthis.tokenizer.setState(Tokenizer.PLAINTEXT);\n\t\t\tbreak;\n\t\t}\n\t\tthis.insertHtmlElement();\n\t\tthis.resetInsertionMode();\n\t} else {\n\t\tthis.setInsertionMode('initial');\n\t}\n};\n\nTreeBuilder.prototype.processToken = function(token) {\n\tthis.selfClosingFlagAcknowledged = false;\n\n\tvar currentNode = this.openElements.top || null;\n\tvar insertionMode;\n\tif (!currentNode || !currentNode.isForeign() ||\n\t\t(currentNode.isMathMLTextIntegrationPoint() &&\n\t\t\t((token.type == 'StartTag' &&\n\t\t\t\t\t!(token.name in {mglyph:0, malignmark:0})) ||\n\t\t\t\t(token.type === 'Characters'))\n\t\t) ||\n\t\t(currentNode.namespaceURI == \"http://www.w3.org/1998/Math/MathML\" &&\n\t\t\tcurrentNode.localName == 'annotation-xml' &&\n\t\t\ttoken.type == 'StartTag' && token.name == 'svg'\n\t\t) ||\n\t\t(currentNode.isHtmlIntegrationPoint() &&\n\t\t\ttoken.type in {StartTag:0, Characters:0}\n\t\t) ||\n\t\ttoken.type == 'EOF'\n\t) {\n\t\tinsertionMode = this.insertionMode;\n\t} else {\n\t\tinsertionMode = this.insertionModes.inForeignContent;\n\t}\n\tswitch(token.type) {\n\tcase 'Characters':\n\t\tvar buffer = new CharacterBuffer(token.data);\n\t\tinsertionMode.processCharacters(buffer);\n\t\tbreak;\n\tcase 'Comment':\n\t\tinsertionMode.processComment(token.data);\n\t\tbreak;\n\tcase 'StartTag':\n\t\tinsertionMode.processStartTag(token.name, token.data, token.selfClosing);\n\t\tbreak;\n\tcase 'EndTag':\n\t\tinsertionMode.processEndTag(token.name);\n\t\tbreak;\n\tcase 'Doctype':\n\t\tinsertionMode.processDoctype(token.name, token.publicId, token.systemId, token.forceQuirks);\n\t\tbreak;\n\tcase 'EOF':\n\t\tinsertionMode.processEOF();\n\t\tbreak;\n\t}\n};\nTreeBuilder.prototype.isCdataSectionAllowed = function() {\n\treturn this.openElements.length > 0 && this.currentStackItem().isForeign();\n};\nTreeBuilder.prototype.isSelfClosingFlagAcknowledged = function() {\n\treturn this.selfClosingFlagAcknowledged;\n};\n\nTreeBuilder.prototype.createElement = function(namespaceURI, localName, attributes) {\n\tthrow new Error(\"Not implemented\");\n};\n\nTreeBuilder.prototype.attachNode = function(child, parent) {\n\tthrow new Error(\"Not implemented\");\n};\n\nTreeBuilder.prototype.attachNodeToFosterParent = function(child, table, stackParent) {\n\tthrow new Error(\"Not implemented\");\n};\n\nTreeBuilder.prototype.detachFromParent = function(node) {\n\tthrow new Error(\"Not implemented\");\n};\n\nTreeBuilder.prototype.addAttributesToElement = function(element, attributes) {\n\tthrow new Error(\"Not implemented\");\n};\n\nTreeBuilder.prototype.insertHtmlElement = function(attributes) {\n\tvar root = this.createElement(\"http://www.w3.org/1999/xhtml\", 'html', attributes);\n\tthis.attachNode(root, this.document);\n\tthis.openElements.pushHtmlElement(new StackItem(\"http://www.w3.org/1999/xhtml\", 'html', attributes, root));\n\treturn root;\n};\n\nTreeBuilder.prototype.insertHeadElement = function(attributes) {\n\tvar element = this.createElement(\"http://www.w3.org/1999/xhtml\", \"head\", attributes);\n\tthis.head = new StackItem(\"http://www.w3.org/1999/xhtml\", \"head\", attributes, element);\n\tthis.attachNode(element, this.openElements.top.node);\n\tthis.openElements.pushHeadElement(this.head);\n\treturn element;\n};\n\nTreeBuilder.prototype.insertBodyElement = function(attributes) {\n\tvar element = this.createElement(\"http://www.w3.org/1999/xhtml\", \"body\", attributes);\n\tthis.attachNode(element, this.openElements.top.node);\n\tthis.openElements.pushBodyElement(new StackItem(\"http://www.w3.org/1999/xhtml\", \"body\", attributes, element));\n\treturn element;\n};\n\nTreeBuilder.prototype.insertIntoFosterParent = function(node) {\n\tvar tableIndex = this.openElements.findIndex('table');\n\tvar tableElement = this.openElements.item(tableIndex).node;\n\tif (tableIndex === 0)\n\t\treturn this.attachNode(node, tableElement);\n\tthis.attachNodeToFosterParent(node, tableElement, this.openElements.item(tableIndex - 1).node);\n};\n\nTreeBuilder.prototype.insertElement = function(name, attributes, namespaceURI, selfClosing) {\n\tif (!namespaceURI)\n\t\tnamespaceURI = \"http://www.w3.org/1999/xhtml\";\n\tvar element = this.createElement(namespaceURI, name, attributes);\n\tif (this.shouldFosterParent())\n\t\tthis.insertIntoFosterParent(element);\n\telse\n\t\tthis.attachNode(element, this.openElements.top.node);\n\tif (!selfClosing)\n\t\tthis.openElements.push(new StackItem(namespaceURI, name, attributes, element));\n};\n\nTreeBuilder.prototype.insertFormattingElement = function(name, attributes) {\n\tthis.insertElement(name, attributes, \"http://www.w3.org/1999/xhtml\");\n\tthis.appendElementToActiveFormattingElements(this.currentStackItem());\n};\n\nTreeBuilder.prototype.insertSelfClosingElement = function(name, attributes) {\n\tthis.selfClosingFlagAcknowledged = true;\n\tthis.insertElement(name, attributes, \"http://www.w3.org/1999/xhtml\", true);\n};\n\nTreeBuilder.prototype.insertForeignElement = function(name, attributes, namespaceURI, selfClosing) {\n\tif (selfClosing)\n\t\tthis.selfClosingFlagAcknowledged = true;\n\tthis.insertElement(name, attributes, namespaceURI, selfClosing);\n};\n\nTreeBuilder.prototype.insertComment = function(data, parent) {\n\tthrow new Error(\"Not implemented\");\n};\n\nTreeBuilder.prototype.insertDoctype = function(name, publicId, systemId) {\n\tthrow new Error(\"Not implemented\");\n};\n\nTreeBuilder.prototype.insertText = function(data) {\n\tthrow new Error(\"Not implemented\");\n};\nTreeBuilder.prototype.currentStackItem = function() {\n\treturn this.openElements.top;\n};\nTreeBuilder.prototype.popElement = function() {\n\treturn this.openElements.pop();\n};\nTreeBuilder.prototype.shouldFosterParent = function() {\n\treturn this.redirectAttachToFosterParent && this.currentStackItem().isFosterParenting();\n};\nTreeBuilder.prototype.generateImpliedEndTags = function(exclude) {\n\tvar name = this.openElements.top.localName;\n\tif (['dd', 'dt', 'li', 'option', 'optgroup', 'p', 'rp', 'rt'].indexOf(name) != -1 && name != exclude) {\n\t\tthis.popElement();\n\t\tthis.generateImpliedEndTags(exclude);\n\t}\n};\nTreeBuilder.prototype.reconstructActiveFormattingElements = function() {\n\tif (this.activeFormattingElements.length === 0)\n\t\treturn;\n\tvar i = this.activeFormattingElements.length - 1;\n\tvar entry = this.activeFormattingElements[i];\n\tif (entry == Marker || this.openElements.contains(entry))\n\t\treturn;\n\n\twhile (entry != Marker && !this.openElements.contains(entry)) {\n\t\ti -= 1;\n\t\tentry = this.activeFormattingElements[i];\n\t\tif (!entry)\n\t\t\tbreak;\n\t}\n\n\twhile (true) {\n\t\ti += 1;\n\t\tentry = this.activeFormattingElements[i];\n\t\tthis.insertElement(entry.localName, entry.attributes);\n\t\tvar element = this.currentStackItem();\n\t\tthis.activeFormattingElements[i] = element;\n\t\tif (element == this.activeFormattingElements[this.activeFormattingElements.length -1])\n\t\t\tbreak;\n\t}\n\n};\nTreeBuilder.prototype.ensureNoahsArkCondition = function(item) {\n\tvar kNoahsArkCapacity = 3;\n\tif (this.activeFormattingElements.length < kNoahsArkCapacity)\n\t\treturn;\n\tvar candidates = [];\n\tvar newItemAttributeCount = item.attributes.length;\n\tfor (var i = this.activeFormattingElements.length - 1; i >= 0; i--) {\n\t\tvar candidate = this.activeFormattingElements[i];\n\t\tif (candidate === Marker)\n\t\t\tbreak;\n\t\tif (item.localName !== candidate.localName || item.namespaceURI !== candidate.namespaceURI)\n\t\t\tcontinue;\n\t\tif (candidate.attributes.length != newItemAttributeCount)\n\t\t\tcontinue;\n\t\tcandidates.push(candidate);\n\t}\n\tif (candidates.length < kNoahsArkCapacity)\n\t\treturn;\n\n\tvar remainingCandidates = [];\n\tvar attributes = item.attributes;\n\tfor (var i = 0; i < attributes.length; i++) {\n\t\tvar attribute = attributes[i];\n\n\t\tfor (var j = 0; j < candidates.length; j++) {\n\t\t\tvar candidate = candidates[j];\n\t\t\tvar candidateAttribute = getAttribute(candidate, attribute.nodeName);\n\t\t\tif (candidateAttribute && candidateAttribute.nodeValue === attribute.nodeValue)\n\t\t\t\tremainingCandidates.push(candidate);\n\t\t}\n\t\tif (remainingCandidates.length < kNoahsArkCapacity)\n\t\t\treturn;\n\t\tcandidates = remainingCandidates;\n\t\tremainingCandidates = [];\n\t}\n\tfor (var i = kNoahsArkCapacity - 1; i < candidates.length; i++)\n\t\tthis.removeElementFromActiveFormattingElements(candidates[i]);\n};\nTreeBuilder.prototype.appendElementToActiveFormattingElements = function(item) {\n\tthis.ensureNoahsArkCondition(item);\n\tthis.activeFormattingElements.push(item);\n};\nTreeBuilder.prototype.removeElementFromActiveFormattingElements = function(item) {\n\tvar index = this.activeFormattingElements.indexOf(item);\n\tif (index >= 0)\n\t\tthis.activeFormattingElements.splice(index, 1);\n};\n\nTreeBuilder.prototype.elementInActiveFormattingElements = function(name) {\n\tvar els = this.activeFormattingElements;\n\tfor (var i = els.length - 1; i >= 0; i--) {\n\t\tif (els[i] == Marker) break;\n\t\tif (els[i].localName == name) return els[i];\n\t}\n\treturn false;\n};\n\nTreeBuilder.prototype.clearActiveFormattingElements = function() {\n while (!(this.activeFormattingElements.length === 0 || this.activeFormattingElements.pop() == Marker));\n};\n\nTreeBuilder.prototype.reparentChildren = function(oldParent, newParent) {\n\tthrow new Error(\"Not implemented\");\n};\nTreeBuilder.prototype.setFragmentContext = function(context) {\n\tthis.context = context;\n};\nTreeBuilder.prototype.parseError = function(code, args) {\n\tif (!this.errorHandler)\n\t\treturn;\n\tvar message = formatMessage(messages[code], args);\n\tthis.errorHandler.error(message, this.tokenizer._inputStream.location(), code);\n};\nTreeBuilder.prototype.resetInsertionMode = function() {\n\tvar last = false;\n\tvar node = null;\n\tfor (var i = this.openElements.length - 1; i >= 0; i--) {\n\t\tnode = this.openElements.item(i);\n\t\tif (i === 0) {\n\t\t\tassert.ok(this.context);\n\t\t\tlast = true;\n\t\t\tnode = new StackItem(\"http://www.w3.org/1999/xhtml\", this.context, [], null);\n\t\t}\n\n\t\tif (node.namespaceURI === \"http://www.w3.org/1999/xhtml\") {\n\t\t\tif (node.localName === 'select')\n\t\t\t\treturn this.setInsertionMode('inSelect');\n\t\t\tif (node.localName === 'td' || node.localName === 'th')\n\t\t\t\treturn this.setInsertionMode('inCell');\n\t\t\tif (node.localName === 'tr')\n\t\t\t\treturn this.setInsertionMode('inRow');\n\t\t\tif (node.localName === 'tbody' || node.localName === 'thead' || node.localName === 'tfoot')\n\t\t\t\treturn this.setInsertionMode('inTableBody');\n\t\t\tif (node.localName === 'caption')\n\t\t\t\treturn this.setInsertionMode('inCaption');\n\t\t\tif (node.localName === 'colgroup')\n\t\t\t\treturn this.setInsertionMode('inColumnGroup');\n\t\t\tif (node.localName === 'table')\n\t\t\t\treturn this.setInsertionMode('inTable');\n\t\t\tif (node.localName === 'head' && !last)\n\t\t\t\treturn this.setInsertionMode('inHead');\n\t\t\tif (node.localName === 'body')\n\t\t\t\treturn this.setInsertionMode('inBody');\n\t\t\tif (node.localName === 'frameset')\n\t\t\t\treturn this.setInsertionMode('inFrameset');\n\t\t\tif (node.localName === 'html')\n\t\t\t\tif (!this.openElements.headElement)\n\t\t\t\t\treturn this.setInsertionMode('beforeHead');\n\t\t\t\telse\n\t\t\t\t\treturn this.setInsertionMode('afterHead');\n\t\t}\n\n\t\tif (last)\n\t\t\treturn this.setInsertionMode('inBody');\n\t}\n};\n\nTreeBuilder.prototype.processGenericRCDATAStartTag = function(name, attributes) {\n\tthis.insertElement(name, attributes);\n\tthis.tokenizer.setState(Tokenizer.RCDATA);\n\tthis.originalInsertionMode = this.insertionModeName;\n\tthis.setInsertionMode('text');\n};\n\nTreeBuilder.prototype.processGenericRawTextStartTag = function(name, attributes) {\n\tthis.insertElement(name, attributes);\n\tthis.tokenizer.setState(Tokenizer.RAWTEXT);\n\tthis.originalInsertionMode = this.insertionModeName;\n\tthis.setInsertionMode('text');\n};\n\nTreeBuilder.prototype.adjustMathMLAttributes = function(attributes) {\n\tattributes.forEach(function(a) {\n\t\ta.namespaceURI = \"http://www.w3.org/1998/Math/MathML\";\n\t\tif (constants.MATHMLAttributeMap[a.nodeName])\n\t\t\ta.nodeName = constants.MATHMLAttributeMap[a.nodeName];\n\t});\n\treturn attributes;\n};\n\nTreeBuilder.prototype.adjustSVGTagNameCase = function(name) {\n\treturn constants.SVGTagMap[name] || name;\n};\n\nTreeBuilder.prototype.adjustSVGAttributes = function(attributes) {\n\tattributes.forEach(function(a) {\n\t\ta.namespaceURI = \"http://www.w3.org/2000/svg\";\n\t\tif (constants.SVGAttributeMap[a.nodeName])\n\t\t\ta.nodeName = constants.SVGAttributeMap[a.nodeName];\n\t});\n\treturn attributes;\n};\n\nTreeBuilder.prototype.adjustForeignAttributes = function(attributes) {\n\tfor (var i = 0; i < attributes.length; i++) {\n\t\tvar attribute = attributes[i];\n\t\tvar adjusted = constants.ForeignAttributeMap[attribute.nodeName];\n\t\tif (adjusted) {\n\t\t\tattribute.nodeName = adjusted.localName;\n\t\t\tattribute.prefix = adjusted.prefix;\n\t\t\tattribute.namespaceURI = adjusted.namespaceURI;\n\t\t}\n\t}\n\treturn attributes;\n};\n\nfunction formatMessage(format, args) {\n\treturn format.replace(new RegExp('{[0-9a-z-]+}', 'gi'), function(match) {\n\t\treturn args[match.slice(1, -1)] || match;\n\t});\n}\n\nexports.TreeBuilder = TreeBuilder;\n\n},\n{\"./ElementStack\":1,\"./StackItem\":4,\"./Tokenizer\":5,\"./constants\":7,\"./messages.json\":8,\"assert\":13,\"events\":16}],\n7:[function(_dereq_,module,exports){\nexports.SVGTagMap = {\n\t\"altglyph\": \"altGlyph\",\n\t\"altglyphdef\": \"altGlyphDef\",\n\t\"altglyphitem\": \"altGlyphItem\",\n\t\"animatecolor\": \"animateColor\",\n\t\"animatemotion\": \"animateMotion\",\n\t\"animatetransform\": \"animateTransform\",\n\t\"clippath\": \"clipPath\",\n\t\"feblend\": \"feBlend\",\n\t\"fecolormatrix\": \"feColorMatrix\",\n\t\"fecomponenttransfer\": \"feComponentTransfer\",\n\t\"fecomposite\": \"feComposite\",\n\t\"feconvolvematrix\": \"feConvolveMatrix\",\n\t\"fediffuselighting\": \"feDiffuseLighting\",\n\t\"fedisplacementmap\": \"feDisplacementMap\",\n\t\"fedistantlight\": \"feDistantLight\",\n\t\"feflood\": \"feFlood\",\n\t\"fefunca\": \"feFuncA\",\n\t\"fefuncb\": \"feFuncB\",\n\t\"fefuncg\": \"feFuncG\",\n\t\"fefuncr\": \"feFuncR\",\n\t\"fegaussianblur\": \"feGaussianBlur\",\n\t\"feimage\": \"feImage\",\n\t\"femerge\": \"feMerge\",\n\t\"femergenode\": \"feMergeNode\",\n\t\"femorphology\": \"feMorphology\",\n\t\"feoffset\": \"feOffset\",\n\t\"fepointlight\": \"fePointLight\",\n\t\"fespecularlighting\": \"feSpecularLighting\",\n\t\"fespotlight\": \"feSpotLight\",\n\t\"fetile\": \"feTile\",\n\t\"feturbulence\": \"feTurbulence\",\n\t\"foreignobject\": \"foreignObject\",\n\t\"glyphref\": \"glyphRef\",\n\t\"lineargradient\": \"linearGradient\",\n\t\"radialgradient\": \"radialGradient\",\n\t\"textpath\": \"textPath\"\n};\n\nexports.MATHMLAttributeMap = {\n\tdefinitionurl: 'definitionURL'\n};\n\nexports.SVGAttributeMap = {\n\tattributename:\t'attributeName',\n\tattributetype:\t'attributeType',\n\tbasefrequency:\t'baseFrequency',\n\tbaseprofile:\t'baseProfile',\n\tcalcmode:\t'calcMode',\n\tclippathunits:\t'clipPathUnits',\n\tcontentscripttype:\t'contentScriptType',\n\tcontentstyletype:\t'contentStyleType',\n\tdiffuseconstant:\t'diffuseConstant',\n\tedgemode:\t'edgeMode',\n\texternalresourcesrequired:\t'externalResourcesRequired',\n\tfilterres:\t'filterRes',\n\tfilterunits:\t'filterUnits',\n\tglyphref:\t'glyphRef',\n\tgradienttransform:\t'gradientTransform',\n\tgradientunits:\t'gradientUnits',\n\tkernelmatrix:\t'kernelMatrix',\n\tkernelunitlength:\t'kernelUnitLength',\n\tkeypoints:\t'keyPoints',\n\tkeysplines:\t'keySplines',\n\tkeytimes:\t'keyTimes',\n\tlengthadjust:\t'lengthAdjust',\n\tlimitingconeangle:\t'limitingConeAngle',\n\tmarkerheight:\t'markerHeight',\n\tmarkerunits:\t'markerUnits',\n\tmarkerwidth:\t'markerWidth',\n\tmaskcontentunits:\t'maskContentUnits',\n\tmaskunits:\t'maskUnits',\n\tnumoctaves:\t'numOctaves',\n\tpathlength:\t'pathLength',\n\tpatterncontentunits:\t'patternContentUnits',\n\tpatterntransform:\t'patternTransform',\n\tpatternunits:\t'patternUnits',\n\tpointsatx:\t'pointsAtX',\n\tpointsaty:\t'pointsAtY',\n\tpointsatz:\t'pointsAtZ',\n\tpreservealpha:\t'preserveAlpha',\n\tpreserveaspectratio:\t'preserveAspectRatio',\n\tprimitiveunits:\t'primitiveUnits',\n\trefx:\t'refX',\n\trefy:\t'refY',\n\trepeatcount:\t'repeatCount',\n\trepeatdur:\t'repeatDur',\n\trequiredextensions:\t'requiredExtensions',\n\trequiredfeatures:\t'requiredFeatures',\n\tspecularconstant:\t'specularConstant',\n\tspecularexponent:\t'specularExponent',\n\tspreadmethod:\t'spreadMethod',\n\tstartoffset:\t'startOffset',\n\tstddeviation:\t'stdDeviation',\n\tstitchtiles:\t'stitchTiles',\n\tsurfacescale:\t'surfaceScale',\n\tsystemlanguage:\t'systemLanguage',\n\ttablevalues:\t'tableValues',\n\ttargetx:\t'targetX',\n\ttargety:\t'targetY',\n\ttextlength:\t'textLength',\n\tviewbox:\t'viewBox',\n\tviewtarget:\t'viewTarget',\n\txchannelselector:\t'xChannelSelector',\n\tychannelselector:\t'yChannelSelector',\n\tzoomandpan:\t'zoomAndPan'\n};\n\nexports.ForeignAttributeMap = {\n\t\"xlink:actuate\": {prefix: \"xlink\", localName: \"actuate\", namespaceURI: \"http://www.w3.org/1999/xlink\"},\n\t\"xlink:arcrole\": {prefix: \"xlink\", localName: \"arcrole\", namespaceURI: \"http://www.w3.org/1999/xlink\"},\n\t\"xlink:href\": {prefix: \"xlink\", localName: \"href\", namespaceURI: \"http://www.w3.org/1999/xlink\"},\n\t\"xlink:role\": {prefix: \"xlink\", localName: \"role\", namespaceURI: \"http://www.w3.org/1999/xlink\"},\n\t\"xlink:show\": {prefix: \"xlink\", localName: \"show\", namespaceURI: \"http://www.w3.org/1999/xlink\"},\n\t\"xlink:title\": {prefix: \"xlink\", localName: \"title\", namespaceURI: \"http://www.w3.org/1999/xlink\"},\n\t\"xlink:type\": {prefix: \"xlink\", localName: \"title\", namespaceURI: \"http://www.w3.org/1999/xlink\"},\n\t\"xml:base\": {prefix: \"xml\", localName: \"base\", namespaceURI: \"http://www.w3.org/XML/1998/namespace\"},\n\t\"xml:lang\": {prefix: \"xml\", localName: \"lang\", namespaceURI: \"http://www.w3.org/XML/1998/namespace\"},\n\t\"xml:space\": {prefix: \"xml\", localName: \"space\", namespaceURI: \"http://www.w3.org/XML/1998/namespace\"},\n\t\"xmlns\": {prefix: null, localName: \"xmlns\", namespaceURI: \"http://www.w3.org/2000/xmlns/\"},\n\t\"xmlns:xlink\": {prefix: \"xmlns\", localName: \"xlink\", namespaceURI: \"http://www.w3.org/2000/xmlns/\"},\n};\n},\n{}],\n8:[function(_dereq_,module,exports){\nmodule.exports={\n\t\"null-character\":\n\t\t\"Null character in input stream, replaced with U+FFFD.\",\n\t\"invalid-codepoint\":\n\t\t\"Invalid codepoint in stream\",\n\t\"incorrectly-placed-solidus\":\n\t\t\"Solidus (/) incorrectly placed in tag.\",\n\t\"incorrect-cr-newline-entity\":\n\t\t\"Incorrect CR newline entity, replaced with LF.\",\n\t\"illegal-windows-1252-entity\":\n\t\t\"Entity used with illegal number (windows-1252 reference).\",\n\t\"cant-convert-numeric-entity\":\n\t\t\"Numeric entity couldn't be converted to character (codepoint U+{charAsInt}).\",\n\t\"invalid-numeric-entity-replaced\":\n\t\t\"Numeric entity represents an illegal codepoint. Expanded to the C1 controls range.\",\n\t\"numeric-entity-without-semicolon\":\n\t\t\"Numeric entity didn't end with ';'.\",\n\t\"expected-numeric-entity-but-got-eof\":\n\t\t\"Numeric entity expected. Got end of file instead.\",\n\t\"expected-numeric-entity\":\n\t\t\"Numeric entity expected but none found.\",\n\t\"named-entity-without-semicolon\":\n\t\t\"Named entity didn't end with ';'.\",\n\t\"expected-named-entity\":\n\t\t\"Named entity expected. Got none.\",\n\t\"attributes-in-end-tag\":\n\t\t\"End tag contains unexpected attributes.\",\n\t\"self-closing-flag-on-end-tag\":\n\t\t\"End tag contains unexpected self-closing flag.\",\n\t\"bare-less-than-sign-at-eof\":\n\t\t\"End of file after <.\",\n\t\"expected-tag-name-but-got-right-bracket\":\n\t\t\"Expected tag name. Got '>' instead.\",\n\t\"expected-tag-name-but-got-question-mark\":\n\t\t\"Expected tag name. Got '?' instead. (HTML doesn't support processing instructions.)\",\n\t\"expected-tag-name\":\n\t\t\"Expected tag name. Got something else instead.\",\n\t\"expected-closing-tag-but-got-right-bracket\":\n\t\t\"Expected closing tag. Got '>' instead. Ignoring ''.\",\n\t\"expected-closing-tag-but-got-eof\":\n\t\t\"Expected closing tag. Unexpected end of file.\",\n\t\"expected-closing-tag-but-got-char\":\n\t\t\"Expected closing tag. Unexpected character '{data}' found.\",\n\t\"eof-in-tag-name\":\n\t\t\"Unexpected end of file in the tag name.\",\n\t\"expected-attribute-name-but-got-eof\":\n\t\t\"Unexpected end of file. Expected attribute name instead.\",\n\t\"eof-in-attribute-name\":\n\t\t\"Unexpected end of file in attribute name.\",\n\t\"invalid-character-in-attribute-name\":\n\t\t\"Invalid character in attribute name.\",\n\t\"duplicate-attribute\":\n\t\t\"Dropped duplicate attribute '{name}' on tag.\",\n\t\"expected-end-of-tag-but-got-eof\":\n\t\t\"Unexpected end of file. Expected = or end of tag.\",\n\t\"expected-attribute-value-but-got-eof\":\n\t\t\"Unexpected end of file. Expected attribute value.\",\n\t\"expected-attribute-value-but-got-right-bracket\":\n\t\t\"Expected attribute value. Got '>' instead.\",\n\t\"unexpected-character-in-unquoted-attribute-value\":\n\t\t\"Unexpected character in unquoted attribute\",\n\t\"invalid-character-after-attribute-name\":\n\t\t\"Unexpected character after attribute name.\",\n\t\"unexpected-character-after-attribute-value\":\n\t\t\"Unexpected character after attribute value.\",\n\t\"eof-in-attribute-value-double-quote\":\n\t\t\"Unexpected end of file in attribute value (\\\").\",\n\t\"eof-in-attribute-value-single-quote\":\n\t\t\"Unexpected end of file in attribute value (').\",\n\t\"eof-in-attribute-value-no-quotes\":\n\t\t\"Unexpected end of file in attribute value.\",\n\t\"eof-after-attribute-value\":\n\t\t\"Unexpected end of file after attribute value.\",\n\t\"unexpected-eof-after-solidus-in-tag\":\n\t\t\"Unexpected end of file in tag. Expected >.\",\n\t\"unexpected-character-after-solidus-in-tag\":\n\t\t\"Unexpected character after / in tag. Expected >.\",\n\t\"expected-dashes-or-doctype\":\n\t\t\"Expected '--' or 'DOCTYPE'. Not found.\",\n\t\"unexpected-bang-after-double-dash-in-comment\":\n\t\t\"Unexpected ! after -- in comment.\",\n\t\"incorrect-comment\":\n\t\t\"Incorrect comment.\",\n\t\"eof-in-comment\":\n\t\t\"Unexpected end of file in comment.\",\n\t\"eof-in-comment-end-dash\":\n\t\t\"Unexpected end of file in comment (-).\",\n\t\"unexpected-dash-after-double-dash-in-comment\":\n\t\t\"Unexpected '-' after '--' found in comment.\",\n\t\"eof-in-comment-double-dash\":\n\t\t\"Unexpected end of file in comment (--).\",\n\t\"eof-in-comment-end-bang-state\":\n\t\t\"Unexpected end of file in comment.\",\n\t\"unexpected-char-in-comment\":\n\t\t\"Unexpected character in comment found.\",\n\t\"need-space-after-doctype\":\n\t\t\"No space after literal string 'DOCTYPE'.\",\n\t\"expected-doctype-name-but-got-right-bracket\":\n\t\t\"Unexpected > character. Expected DOCTYPE name.\",\n\t\"expected-doctype-name-but-got-eof\":\n\t\t\"Unexpected end of file. Expected DOCTYPE name.\",\n\t\"eof-in-doctype-name\":\n\t\t\"Unexpected end of file in DOCTYPE name.\",\n\t\"eof-in-doctype\":\n\t\t\"Unexpected end of file in DOCTYPE.\",\n\t\"expected-space-or-right-bracket-in-doctype\":\n\t\t\"Expected space or '>'. Got '{data}'.\",\n\t\"unexpected-end-of-doctype\":\n\t\t\"Unexpected end of DOCTYPE.\",\n\t\"unexpected-char-in-doctype\":\n\t\t\"Unexpected character in DOCTYPE.\",\n\t\"eof-in-bogus-doctype\":\n\t\t\"Unexpected end of file in bogus doctype.\",\n\t\"eof-in-innerhtml\":\n\t\t\"Unexpected EOF in inner html mode.\",\n\t\"unexpected-doctype\":\n\t\t\"Unexpected DOCTYPE. Ignored.\",\n\t\"non-html-root\":\n\t\t\"html needs to be the first start tag.\",\n\t\"expected-doctype-but-got-eof\":\n\t\t\"Unexpected End of file. Expected DOCTYPE.\",\n\t\"unknown-doctype\":\n\t\t\"Erroneous DOCTYPE. Expected .\",\n\t\"quirky-doctype\":\n\t\t\"Quirky doctype. Expected .\",\n\t\"almost-standards-doctype\":\n\t\t\"Almost standards mode doctype. Expected .\",\n\t\"obsolete-doctype\":\n\t\t\"Obsolete doctype. Expected .\",\n\t\"expected-doctype-but-got-chars\":\n\t\t\"Non-space characters found without seeing a doctype first. Expected e.g. .\",\n\t\"expected-doctype-but-got-start-tag\":\n\t\t\"Start tag seen without seeing a doctype first. Expected e.g. .\",\n\t\"expected-doctype-but-got-end-tag\":\n\t\t\"End tag seen without seeing a doctype first. Expected e.g. .\",\n\t\"end-tag-after-implied-root\":\n\t\t\"Unexpected end tag ({name}) after the (implied) root element.\",\n\t\"expected-named-closing-tag-but-got-eof\":\n\t\t\"Unexpected end of file. Expected end tag ({name}).\",\n\t\"two-heads-are-not-better-than-one\":\n\t\t\"Unexpected start tag head in existing head. Ignored.\",\n\t\"unexpected-end-tag\":\n\t\t\"Unexpected end tag ({name}). Ignored.\",\n\t\"unexpected-implied-end-tag\":\n\t\t\"End tag {name} implied, but there were open elements.\",\n\t\"unexpected-start-tag-out-of-my-head\":\n\t\t\"Unexpected start tag ({name}) that can be in head. Moved.\",\n\t\"unexpected-start-tag\":\n\t\t\"Unexpected start tag ({name}).\",\n\t\"missing-end-tag\":\n\t\t\"Missing end tag ({name}).\",\n\t\"missing-end-tags\":\n\t\t\"Missing end tags ({name}).\",\n\t\"unexpected-start-tag-implies-end-tag\":\n\t\t\"Unexpected start tag ({startName}) implies end tag ({endName}).\",\n\t\"unexpected-start-tag-treated-as\":\n\t\t\"Unexpected start tag ({originalName}). Treated as {newName}.\",\n\t\"deprecated-tag\":\n\t\t\"Unexpected start tag {name}. Don't use it!\",\n\t\"unexpected-start-tag-ignored\":\n\t\t\"Unexpected start tag {name}. Ignored.\",\n\t\"expected-one-end-tag-but-got-another\":\n\t\t\"Unexpected end tag ({gotName}). Missing end tag ({expectedName}).\",\n\t\"end-tag-too-early\":\n\t\t\"End tag ({name}) seen too early. Expected other end tag.\",\n\t\"end-tag-too-early-named\":\n\t\t\"Unexpected end tag ({gotName}). Expected end tag ({expectedName}.\",\n\t\"end-tag-too-early-ignored\":\n\t\t\"End tag ({name}) seen too early. Ignored.\",\n\t\"adoption-agency-1.1\":\n\t\t\"End tag ({name}) violates step 1, paragraph 1 of the adoption agency algorithm.\",\n\t\"adoption-agency-1.2\":\n\t\t\"End tag ({name}) violates step 1, paragraph 2 of the adoption agency algorithm.\",\n\t\"adoption-agency-1.3\":\n\t\t\"End tag ({name}) violates step 1, paragraph 3 of the adoption agency algorithm.\",\n\t\"adoption-agency-4.4\":\n\t\t\"End tag ({name}) violates step 4, paragraph 4 of the adoption agency algorithm.\",\n\t\"unexpected-end-tag-treated-as\":\n\t\t\"Unexpected end tag ({originalName}). Treated as {newName}.\",\n\t\"no-end-tag\":\n\t\t\"This element ({name}) has no end tag.\",\n\t\"unexpected-implied-end-tag-in-table\":\n\t\t\"Unexpected implied end tag ({name}) in the table phase.\",\n\t\"unexpected-implied-end-tag-in-table-body\":\n\t\t\"Unexpected implied end tag ({name}) in the table body phase.\",\n\t\"unexpected-char-implies-table-voodoo\":\n\t\t\"Unexpected non-space characters in table context caused voodoo mode.\",\n\t\"unexpected-hidden-input-in-table\":\n\t\t\"Unexpected input with type hidden in table context.\",\n\t\"unexpected-form-in-table\":\n\t\t\"Unexpected form in table context.\",\n\t\"unexpected-start-tag-implies-table-voodoo\":\n\t\t\"Unexpected start tag ({name}) in table context caused voodoo mode.\",\n\t\"unexpected-end-tag-implies-table-voodoo\":\n\t\t\"Unexpected end tag ({name}) in table context caused voodoo mode.\",\n\t\"unexpected-cell-in-table-body\":\n\t\t\"Unexpected table cell start tag ({name}) in the table body phase.\",\n\t\"unexpected-cell-end-tag\":\n\t\t\"Got table cell end tag ({name}) while required end tags are missing.\",\n\t\"unexpected-end-tag-in-table-body\":\n\t\t\"Unexpected end tag ({name}) in the table body phase. Ignored.\",\n\t\"unexpected-implied-end-tag-in-table-row\":\n\t\t\"Unexpected implied end tag ({name}) in the table row phase.\",\n\t\"unexpected-end-tag-in-table-row\":\n\t\t\"Unexpected end tag ({name}) in the table row phase. Ignored.\",\n\t\"unexpected-select-in-select\":\n\t\t\"Unexpected select start tag in the select phase treated as select end tag.\",\n\t\"unexpected-input-in-select\":\n\t\t\"Unexpected input start tag in the select phase.\",\n\t\"unexpected-start-tag-in-select\":\n\t\t\"Unexpected start tag token ({name}) in the select phase. Ignored.\",\n\t\"unexpected-end-tag-in-select\":\n\t\t\"Unexpected end tag ({name}) in the select phase. Ignored.\",\n\t\"unexpected-table-element-start-tag-in-select-in-table\":\n\t\t\"Unexpected table element start tag ({name}) in the select in table phase.\",\n\t\"unexpected-table-element-end-tag-in-select-in-table\":\n\t\t\"Unexpected table element end tag ({name}) in the select in table phase.\",\n\t\"unexpected-char-after-body\":\n\t\t\"Unexpected non-space characters in the after body phase.\",\n\t\"unexpected-start-tag-after-body\":\n\t\t\"Unexpected start tag token ({name}) in the after body phase.\",\n\t\"unexpected-end-tag-after-body\":\n\t\t\"Unexpected end tag token ({name}) in the after body phase.\",\n\t\"unexpected-char-in-frameset\":\n\t\t\"Unepxected characters in the frameset phase. Characters ignored.\",\n\t\"unexpected-start-tag-in-frameset\":\n\t\t\"Unexpected start tag token ({name}) in the frameset phase. Ignored.\",\n\t\"unexpected-frameset-in-frameset-innerhtml\":\n\t\t\"Unexpected end tag token (frameset in the frameset phase (innerHTML).\",\n\t\"unexpected-end-tag-in-frameset\":\n\t\t\"Unexpected end tag token ({name}) in the frameset phase. Ignored.\",\n\t\"unexpected-char-after-frameset\":\n\t\t\"Unexpected non-space characters in the after frameset phase. Ignored.\",\n\t\"unexpected-start-tag-after-frameset\":\n\t\t\"Unexpected start tag ({name}) in the after frameset phase. Ignored.\",\n\t\"unexpected-end-tag-after-frameset\":\n\t\t\"Unexpected end tag ({name}) in the after frameset phase. Ignored.\",\n\t\"expected-eof-but-got-char\":\n\t\t\"Unexpected non-space characters. Expected end of file.\",\n\t\"expected-eof-but-got-start-tag\":\n\t\t\"Unexpected start tag ({name}). Expected end of file.\",\n\t\"expected-eof-but-got-end-tag\":\n\t\t\"Unexpected end tag ({name}). Expected end of file.\",\n\t\"unexpected-end-table-in-caption\":\n\t\t\"Unexpected end table tag in caption. Generates implied end caption.\",\n\t\"end-html-in-innerhtml\": \n\t\t\"Unexpected html end tag in inner html mode.\",\n\t\"eof-in-table\":\n\t\t\"Unexpected end of file. Expected table content.\",\n\t\"eof-in-script\":\n\t\t\"Unexpected end of file. Expected script content.\",\n\t\"non-void-element-with-trailing-solidus\":\n\t\t\"Trailing solidus not allowed on element {name}.\",\n\t\"unexpected-html-element-in-foreign-content\":\n\t\t\"HTML start tag \\\"{name}\\\" in a foreign namespace context.\",\n\t\"unexpected-start-tag-in-table\":\n\t\t\"Unexpected {name}. Expected table content.\"\n}\n},\n{}],\n9:[function(_dereq_,module,exports){\nvar SAXTreeBuilder = _dereq_('./SAXTreeBuilder').SAXTreeBuilder;\nvar Tokenizer = _dereq_('../Tokenizer').Tokenizer;\nvar TreeParser = _dereq_('./TreeParser').TreeParser;\n\nfunction SAXParser() {\n\tthis.contentHandler = null;\n\tthis._errorHandler = null;\n\tthis._treeBuilder = new SAXTreeBuilder();\n\tthis._tokenizer = new Tokenizer(this._treeBuilder);\n\tthis._scriptingEnabled = false;\n}\n\nSAXParser.prototype.parse = function(source) {\n\tthis._tokenizer.tokenize(source);\n\tvar document = this._treeBuilder.document;\n\tif (document) {\n\t\tnew TreeParser(this.contentHandler).parse(document);\n\t}\n};\n\nSAXParser.prototype.parseFragment = function(source, context) {\n\tthis._treeBuilder.setFragmentContext(context);\n\tthis._tokenizer.tokenize(source);\n\tvar fragment = this._treeBuilder.getFragment();\n\tif (fragment) {\n\t\tnew TreeParser(this.contentHandler).parse(fragment);\n\t}\n};\n\nObject.defineProperty(SAXParser.prototype, 'scriptingEnabled', {\n\tget: function() {\n\t\treturn this._scriptingEnabled;\n\t},\n\tset: function(value) {\n\t\tthis._scriptingEnabled = value;\n\t\tthis._treeBuilder.scriptingEnabled = value;\n\t}\n});\n\nObject.defineProperty(SAXParser.prototype, 'errorHandler', {\n\tget: function() {\n\t\treturn this._errorHandler;\n\t},\n\tset: function(value) {\n\t\tthis._errorHandler = value;\n\t\tthis._treeBuilder.errorHandler = value;\n\t}\n});\n\nexports.SAXParser = SAXParser;\n\n},\n{\"../Tokenizer\":5,\"./SAXTreeBuilder\":10,\"./TreeParser\":11}],\n10:[function(_dereq_,module,exports){\nvar util = _dereq_('util');\nvar TreeBuilder = _dereq_('../TreeBuilder').TreeBuilder;\n\nfunction SAXTreeBuilder() {\n\tTreeBuilder.call(this);\n}\n\nutil.inherits(SAXTreeBuilder, TreeBuilder);\n\nSAXTreeBuilder.prototype.start = function(tokenizer) {\n\tthis.document = new Document(this.tokenizer);\n};\n\nSAXTreeBuilder.prototype.end = function() {\n\tthis.document.endLocator = this.tokenizer;\n};\n\nSAXTreeBuilder.prototype.insertDoctype = function(name, publicId, systemId) {\n\tvar doctype = new DTD(this.tokenizer, name, publicId, systemId);\n\tdoctype.endLocator = this.tokenizer;\n\tthis.document.appendChild(doctype);\n};\n\nSAXTreeBuilder.prototype.createElement = function(namespaceURI, localName, attributes) {\n\tvar element = new Element(this.tokenizer, namespaceURI, localName, localName, attributes || []);\n\treturn element;\n};\n\nSAXTreeBuilder.prototype.insertComment = function(data, parent) {\n\tif (!parent)\n\t\tparent = this.currentStackItem();\n\tvar comment = new Comment(this.tokenizer, data);\n\tparent.appendChild(comment);\n};\n\nSAXTreeBuilder.prototype.appendCharacters = function(parent, data) {\n\tvar text = new Characters(this.tokenizer, data);\n\tparent.appendChild(text);\n};\n\nSAXTreeBuilder.prototype.insertText = function(data) {\n\tif (this.redirectAttachToFosterParent && this.openElements.top.isFosterParenting()) {\n\t\tvar tableIndex = this.openElements.findIndex('table');\n\t\tvar tableItem = this.openElements.item(tableIndex);\n\t\tvar table = tableItem.node;\n\t\tif (tableIndex === 0) {\n\t\t\treturn this.appendCharacters(table, data);\n\t\t}\n\t\tvar text = new Characters(this.tokenizer, data);\n\t\tvar parent = table.parentNode;\n\t\tif (parent) {\n\t\t\tparent.insertBetween(text, table.previousSibling, table);\n\t\t\treturn;\n\t\t}\n\t\tvar stackParent = this.openElements.item(tableIndex - 1).node;\n\t\tstackParent.appendChild(text);\n\t\treturn;\n\t}\n\tthis.appendCharacters(this.currentStackItem().node, data);\n};\n\nSAXTreeBuilder.prototype.attachNode = function(node, parent) {\n\tparent.appendChild(node);\n};\n\nSAXTreeBuilder.prototype.attachNodeToFosterParent = function(child, table, stackParent) {\n\tvar parent = table.parentNode;\n\tif (parent)\n\t\tparent.insertBetween(child, table.previousSibling, table);\n\telse\n\t\tstackParent.appendChild(child);\n};\n\nSAXTreeBuilder.prototype.detachFromParent = function(element) {\n\telement.detach();\n};\n\nSAXTreeBuilder.prototype.reparentChildren = function(oldParent, newParent) {\n\tnewParent.appendChildren(oldParent.firstChild);\n};\n\nSAXTreeBuilder.prototype.getFragment = function() {\n\tvar fragment = new DocumentFragment();\n\tthis.reparentChildren(this.openElements.rootNode, fragment);\n\treturn fragment;\n};\n\nfunction getAttribute(node, name) {\n\tfor (var i = 0; i < node.attributes.length; i++) {\n\t\tvar attribute = node.attributes[i];\n\t\tif (attribute.nodeName === name)\n\t\t\treturn attribute.nodeValue;\n\t}\n}\n\nSAXTreeBuilder.prototype.addAttributesToElement = function(element, attributes) {\n\tfor (var i = 0; i < attributes.length; i++) {\n\t\tvar attribute = attributes[i];\n\t\tif (!getAttribute(element, attribute.nodeName))\n\t\t\telement.attributes.push(attribute);\n\t}\n};\n\nvar NodeType = {\n\tCDATA: 1,\n\tCHARACTERS: 2,\n\tCOMMENT: 3,\n\tDOCUMENT: 4,\n\tDOCUMENT_FRAGMENT: 5,\n\tDTD: 6,\n\tELEMENT: 7,\n\tENTITY: 8,\n\tIGNORABLE_WHITESPACE: 9,\n\tPROCESSING_INSTRUCTION: 10,\n\tSKIPPED_ENTITY: 11\n};\nfunction Node(locator) {\n\tif (!locator) {\n\t\tthis.columnNumber = -1;\n\t\tthis.lineNumber = -1;\n\t} else {\n\t\tthis.columnNumber = locator.columnNumber;\n\t\tthis.lineNumber = locator.lineNumber;\n\t}\n\tthis.parentNode = null;\n\tthis.nextSibling = null;\n\tthis.firstChild = null;\n}\nNode.prototype.visit = function(treeParser) {\n\tthrow new Error(\"Not Implemented\");\n};\nNode.prototype.revisit = function(treeParser) {\n\treturn;\n};\nNode.prototype.detach = function() {\n\tif (this.parentNode !== null) {\n\t\tthis.parentNode.removeChild(this);\n\t\tthis.parentNode = null;\n\t}\n};\n\nObject.defineProperty(Node.prototype, 'previousSibling', {\n\tget: function() {\n\t\tvar prev = null;\n\t\tvar next = this.parentNode.firstChild;\n\t\tfor(;;) {\n\t\t\tif (this == next) {\n\t\t\t\treturn prev;\n\t\t\t}\n\t\t\tprev = next;\n\t\t\tnext = next.nextSibling;\n\t\t}\n\t}\n});\n\n\nfunction ParentNode(locator) {\n\tNode.call(this, locator);\n\tthis.lastChild = null;\n\tthis._endLocator = null;\n}\n\nParentNode.prototype = Object.create(Node.prototype);\nParentNode.prototype.insertBefore = function(child, sibling) {\n\tif (!sibling) {\n\t\treturn this.appendChild(child);\n\t}\n\tchild.detach();\n\tchild.parentNode = this;\n\tif (this.firstChild == sibling) {\n\t\tchild.nextSibling = sibling;\n\t\tthis.firstChild = child;\n\t} else {\n\t\tvar prev = this.firstChild;\n\t\tvar next = this.firstChild.nextSibling;\n\t\twhile (next != sibling) {\n\t\t\tprev = next;\n\t\t\tnext = next.nextSibling;\n\t\t}\n\t\tprev.nextSibling = child;\n\t\tchild.nextSibling = next;\n\t}\n\treturn child;\n};\n\nParentNode.prototype.insertBetween = function(child, prev, next) {\n\tif (!next) {\n\t\treturn this.appendChild(child);\n\t}\n\tchild.detach();\n\tchild.parentNode = this;\n\tchild.nextSibling = next;\n\tif (!prev) {\n\t\tfirstChild = child;\n\t} else {\n\t\tprev.nextSibling = child;\n\t}\n\treturn child;\n};\nParentNode.prototype.appendChild = function(child) {\n\tchild.detach();\n\tchild.parentNode = this;\n\tif (!this.firstChild) {\n\t\tthis.firstChild = child;\n\t} else {\n\t\tthis.lastChild.nextSibling = child;\n\t}\n\tthis.lastChild = child;\n\treturn child;\n};\nParentNode.prototype.appendChildren = function(parent) {\n\tvar child = parent.firstChild;\n\tif (!child) {\n\t\treturn;\n\t}\n\tvar another = parent;\n\tif (!this.firstChild) {\n\t\tthis.firstChild = child;\n\t} else {\n\t\tthis.lastChild.nextSibling = child;\n\t}\n\tthis.lastChild = another.lastChild;\n\tdo {\n\t\tchild.parentNode = this;\n\t} while ((child = child.nextSibling));\n\tanother.firstChild = null;\n\tanother.lastChild = null;\n};\nParentNode.prototype.removeChild = function(node) {\n\tif (this.firstChild == node) {\n\t\tthis.firstChild = node.nextSibling;\n\t\tif (this.lastChild == node) {\n\t\t\tthis.lastChild = null;\n\t\t}\n\t} else {\n\t\tvar prev = this.firstChild;\n\t\tvar next = this.firstChild.nextSibling;\n\t\twhile (next != node) {\n\t\t\tprev = next;\n\t\t\tnext = next.nextSibling;\n\t\t}\n\t\tprev.nextSibling = node.nextSibling;\n\t\tif (this.lastChild == node) {\n\t\t\tthis.lastChild = prev;\n\t\t}\n\t}\n\tnode.parentNode = null;\n\treturn node;\n};\n\nObject.defineProperty(ParentNode.prototype, 'endLocator', {\n\tget: function() {\n\t\treturn this._endLocator;\n\t},\n\tset: function(endLocator) {\n\t\tthis._endLocator = {\n\t\t\tlineNumber: endLocator.lineNumber,\n\t\t\tcolumnNumber: endLocator.columnNumber\n\t\t};\n\t}\n});\nfunction Document (locator) {\n\tParentNode.call(this, locator);\n\tthis.nodeType = NodeType.DOCUMENT;\n}\n\nDocument.prototype = Object.create(ParentNode.prototype);\nDocument.prototype.visit = function(treeParser) {\n\ttreeParser.startDocument(this);\n};\nDocument.prototype.revisit = function(treeParser) {\n\ttreeParser.endDocument(this.endLocator);\n};\nfunction DocumentFragment() {\n\tParentNode.call(this, new Locator());\n\tthis.nodeType = NodeType.DOCUMENT_FRAGMENT;\n}\n\nDocumentFragment.prototype = Object.create(ParentNode.prototype);\nDocumentFragment.prototype.visit = function(treeParser) {\n};\nfunction Element(locator, uri, localName, qName, atts, prefixMappings) {\n\tParentNode.call(this, locator);\n\tthis.uri = uri;\n\tthis.localName = localName;\n\tthis.qName = qName;\n\tthis.attributes = atts;\n\tthis.prefixMappings = prefixMappings;\n\tthis.nodeType = NodeType.ELEMENT;\n}\n\nElement.prototype = Object.create(ParentNode.prototype);\nElement.prototype.visit = function(treeParser) {\n\tif (this.prefixMappings) {\n\t\tfor (var key in prefixMappings) {\n\t\t\tvar mapping = prefixMappings[key];\n\t\t\ttreeParser.startPrefixMapping(mapping.getPrefix(),\n\t\t\t\t\tmapping.getUri(), this);\n\t\t}\n\t}\n\ttreeParser.startElement(this.uri, this.localName, this.qName, this.attributes, this);\n};\nElement.prototype.revisit = function(treeParser) {\n\ttreeParser.endElement(this.uri, this.localName, this.qName, this.endLocator);\n\tif (this.prefixMappings) {\n\t\tfor (var key in prefixMappings) {\n\t\t\tvar mapping = prefixMappings[key];\n\t\t\ttreeParser.endPrefixMapping(mapping.getPrefix(), this.endLocator);\n\t\t}\n\t}\n};\nfunction Characters(locator, data){\n\tNode.call(this, locator);\n\tthis.data = data;\n\tthis.nodeType = NodeType.CHARACTERS;\n}\n\nCharacters.prototype = Object.create(Node.prototype);\nCharacters.prototype.visit = function (treeParser) {\n\ttreeParser.characters(this.data, 0, this.data.length, this);\n};\nfunction IgnorableWhitespace(locator, data) {\n\tNode.call(this, locator);\n\tthis.data = data;\n\tthis.nodeType = NodeType.IGNORABLE_WHITESPACE;\n}\n\nIgnorableWhitespace.prototype = Object.create(Node.prototype);\nIgnorableWhitespace.prototype.visit = function(treeParser) {\n\ttreeParser.ignorableWhitespace(this.data, 0, this.data.length, this);\n};\nfunction Comment(locator, data) {\n\tNode.call(this, locator);\n\tthis.data = data;\n\tthis.nodeType = NodeType.COMMENT;\n}\n\nComment.prototype = Object.create(Node.prototype);\nComment.prototype.visit = function(treeParser) {\n\ttreeParser.comment(this.data, 0, this.data.length, this);\n};\nfunction CDATA(locator) {\n\tParentNode.call(this, locator);\n\tthis.nodeType = NodeType.CDATA;\n}\n\nCDATA.prototype = Object.create(ParentNode.prototype);\nCDATA.prototype.visit = function(treeParser) {\n\ttreeParser.startCDATA(this);\n};\nCDATA.prototype.revisit = function(treeParser) {\n\ttreeParser.endCDATA(this.endLocator);\n};\nfunction Entity(name) {\n\tParentNode.call(this);\n\tthis.name = name;\n\tthis.nodeType = NodeType.ENTITY;\n}\n\nEntity.prototype = Object.create(ParentNode.prototype);\nEntity.prototype.visit = function(treeParser) {\n\ttreeParser.startEntity(this.name, this);\n};\nEntity.prototype.revisit = function(treeParser) {\n\ttreeParser.endEntity(this.name);\n};\n\nfunction SkippedEntity(name) {\n\tNode.call(this);\n\tthis.name = name;\n\tthis.nodeType = NodeType.SKIPPED_ENTITY;\n}\n\nSkippedEntity.prototype = Object.create(Node.prototype);\nSkippedEntity.prototype.visit = function(treeParser) {\n\ttreeParser.skippedEntity(this.name, this);\n};\nfunction ProcessingInstruction(target, data) {\n\tNode.call(this);\n\tthis.target = target;\n\tthis.data = data;\n}\n\nProcessingInstruction.prototype = Object.create(Node.prototype);\nProcessingInstruction.prototype.visit = function(treeParser) {\n\ttreeParser.processingInstruction(this.target, this.data, this);\n};\nProcessingInstruction.prototype.getNodeType = function() {\n\treturn NodeType.PROCESSING_INSTRUCTION;\n};\nfunction DTD(name, publicIdentifier, systemIdentifier) {\n\tParentNode.call(this);\n\tthis.name = name;\n\tthis.publicIdentifier = publicIdentifier;\n\tthis.systemIdentifier = systemIdentifier;\n\tthis.nodeType = NodeType.DTD;\n}\n\nDTD.prototype = Object.create(ParentNode.prototype);\nDTD.prototype.visit = function(treeParser) {\n\ttreeParser.startDTD(this.name, this.publicIdentifier, this.systemIdentifier, this);\n};\nDTD.prototype.revisit = function(treeParser) {\n\ttreeParser.endDTD();\n};\n\nexports.SAXTreeBuilder = SAXTreeBuilder;\n\n},\n{\"../TreeBuilder\":6,\"util\":20}],\n11:[function(_dereq_,module,exports){\nfunction TreeParser(contentHandler, lexicalHandler){\n\tthis.contentHandler;\n\tthis.lexicalHandler;\n\tthis.locatorDelegate;\n\n\tif (!contentHandler) {\n\t\tthrow new IllegalArgumentException(\"contentHandler was null.\");\n\t}\n\tthis.contentHandler = contentHandler;\n\tif (!lexicalHandler) {\n\t\tthis.lexicalHandler = new NullLexicalHandler();\n\t} else {\n\t\tthis.lexicalHandler = lexicalHandler;\n\t}\n}\nTreeParser.prototype.parse = function(node) {\n\tthis.contentHandler.documentLocator = this;\n\tvar current = node;\n\tvar next;\n\tfor (;;) {\n\t\tcurrent.visit(this);\n\t\tif (next = current.firstChild) {\n\t\t\tcurrent = next;\n\t\t\tcontinue;\n\t\t}\n\t\tfor (;;) {\n\t\t\tcurrent.revisit(this);\n\t\t\tif (current == node) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tif (next = current.nextSibling) {\n\t\t\t\tcurrent = next;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tcurrent = current.parentNode;\n\t\t}\n\t}\n};\nTreeParser.prototype.characters = function(ch, start, length, locator) {\n\tthis.locatorDelegate = locator;\n\tthis.contentHandler.characters(ch, start, length);\n};\nTreeParser.prototype.endDocument = function(locator) {\n\tthis.locatorDelegate = locator;\n\tthis.contentHandler.endDocument();\n};\nTreeParser.prototype.endElement = function(uri, localName, qName, locator) {\n\tthis.locatorDelegate = locator;\n\tthis.contentHandler.endElement(uri, localName, qName);\n};\nTreeParser.prototype.endPrefixMapping = function(prefix, locator) {\n\tthis.locatorDelegate = locator;\n\tthis.contentHandler.endPrefixMapping(prefix);\n};\nTreeParser.prototype.ignorableWhitespace = function(ch, start, length, locator) {\n\tthis.locatorDelegate = locator;\n\tthis.contentHandler.ignorableWhitespace(ch, start, length);\n};\nTreeParser.prototype.processingInstruction = function(target, data, locator) {\n\tthis.locatorDelegate = locator;\n\tthis.contentHandler.processingInstruction(target, data);\n};\nTreeParser.prototype.skippedEntity = function(name, locator) {\n\tthis.locatorDelegate = locator;\n\tthis.contentHandler.skippedEntity(name);\n};\nTreeParser.prototype.startDocument = function(locator) {\n\tthis.locatorDelegate = locator;\n\tthis.contentHandler.startDocument();\n};\nTreeParser.prototype.startElement = function(uri, localName, qName, atts, locator) {\n\tthis.locatorDelegate = locator;\n\tthis.contentHandler.startElement(uri, localName, qName, atts);\n};\nTreeParser.prototype.startPrefixMapping = function(prefix, uri, locator) {\n\tthis.locatorDelegate = locator;\n\tthis.contentHandler.startPrefixMapping(prefix, uri);\n};\nTreeParser.prototype.comment = function(ch, start, length, locator) {\n\tthis.locatorDelegate = locator;\n\tthis.lexicalHandler.comment(ch, start, length);\n};\nTreeParser.prototype.endCDATA = function(locator) {\n\tthis.locatorDelegate = locator;\n\tthis.lexicalHandler.endCDATA();\n};\nTreeParser.prototype.endDTD = function(locator) {\n\tthis.locatorDelegate = locator;\n\tthis.lexicalHandler.endDTD();\n};\nTreeParser.prototype.endEntity = function(name, locator) {\n\tthis.locatorDelegate = locator;\n\tthis.lexicalHandler.endEntity(name);\n};\nTreeParser.prototype.startCDATA = function(locator) {\n\tthis.locatorDelegate = locator;\n\tthis.lexicalHandler.startCDATA();\n};\nTreeParser.prototype.startDTD = function(name, publicId, systemId, locator) {\n\tthis.locatorDelegate = locator;\n\tthis.lexicalHandler.startDTD(name, publicId, systemId);\n};\nTreeParser.prototype.startEntity = function(name, locator) {\n\tthis.locatorDelegate = locator;\n\tthis.lexicalHandler.startEntity(name);\n};\n\nObject.defineProperty(TreeParser.prototype, 'columnNumber', {\n\tget: function() {\n\t\tif (!this.locatorDelegate)\n\t\t\treturn -1;\n\t\telse\n\t\t\treturn this.locatorDelegate.columnNumber;\n\t}\n});\n\nObject.defineProperty(TreeParser.prototype, 'lineNumber', {\n\tget: function() {\n\t\tif (!this.locatorDelegate)\n\t\t\treturn -1;\n\t\telse\n\t\t\treturn this.locatorDelegate.lineNumber;\n\t}\n});\nfunction NullLexicalHandler() {\n\n}\n\nNullLexicalHandler.prototype.comment = function() {};\nNullLexicalHandler.prototype.endCDATA = function() {};\nNullLexicalHandler.prototype.endDTD = function() {};\nNullLexicalHandler.prototype.endEntity = function() {};\nNullLexicalHandler.prototype.startCDATA = function() {};\nNullLexicalHandler.prototype.startDTD = function() {};\nNullLexicalHandler.prototype.startEntity = function() {};\n\nexports.TreeParser = TreeParser;\n\n},\n{}],\n12:[function(_dereq_,module,exports){\nmodule.exports = {\n\t\"Aacute;\": \"\\u00C1\",\n\t\"Aacute\": \"\\u00C1\",\n\t\"aacute;\": \"\\u00E1\",\n\t\"aacute\": \"\\u00E1\",\n\t\"Abreve;\": \"\\u0102\",\n\t\"abreve;\": \"\\u0103\",\n\t\"ac;\": \"\\u223E\",\n\t\"acd;\": \"\\u223F\",\n\t\"acE;\": \"\\u223E\\u0333\",\n\t\"Acirc;\": \"\\u00C2\",\n\t\"Acirc\": \"\\u00C2\",\n\t\"acirc;\": \"\\u00E2\",\n\t\"acirc\": \"\\u00E2\",\n\t\"acute;\": \"\\u00B4\",\n\t\"acute\": \"\\u00B4\",\n\t\"Acy;\": \"\\u0410\",\n\t\"acy;\": \"\\u0430\",\n\t\"AElig;\": \"\\u00C6\",\n\t\"AElig\": \"\\u00C6\",\n\t\"aelig;\": \"\\u00E6\",\n\t\"aelig\": \"\\u00E6\",\n\t\"af;\": \"\\u2061\",\n\t\"Afr;\": \"\\uD835\\uDD04\",\n\t\"afr;\": \"\\uD835\\uDD1E\",\n\t\"Agrave;\": \"\\u00C0\",\n\t\"Agrave\": \"\\u00C0\",\n\t\"agrave;\": \"\\u00E0\",\n\t\"agrave\": \"\\u00E0\",\n\t\"alefsym;\": \"\\u2135\",\n\t\"aleph;\": \"\\u2135\",\n\t\"Alpha;\": \"\\u0391\",\n\t\"alpha;\": \"\\u03B1\",\n\t\"Amacr;\": \"\\u0100\",\n\t\"amacr;\": \"\\u0101\",\n\t\"amalg;\": \"\\u2A3F\",\n\t\"amp;\": \"\\u0026\",\n\t\"amp\": \"\\u0026\",\n\t\"AMP;\": \"\\u0026\",\n\t\"AMP\": \"\\u0026\",\n\t\"andand;\": \"\\u2A55\",\n\t\"And;\": \"\\u2A53\",\n\t\"and;\": \"\\u2227\",\n\t\"andd;\": \"\\u2A5C\",\n\t\"andslope;\": \"\\u2A58\",\n\t\"andv;\": \"\\u2A5A\",\n\t\"ang;\": \"\\u2220\",\n\t\"ange;\": \"\\u29A4\",\n\t\"angle;\": \"\\u2220\",\n\t\"angmsdaa;\": \"\\u29A8\",\n\t\"angmsdab;\": \"\\u29A9\",\n\t\"angmsdac;\": \"\\u29AA\",\n\t\"angmsdad;\": \"\\u29AB\",\n\t\"angmsdae;\": \"\\u29AC\",\n\t\"angmsdaf;\": \"\\u29AD\",\n\t\"angmsdag;\": \"\\u29AE\",\n\t\"angmsdah;\": \"\\u29AF\",\n\t\"angmsd;\": \"\\u2221\",\n\t\"angrt;\": \"\\u221F\",\n\t\"angrtvb;\": \"\\u22BE\",\n\t\"angrtvbd;\": \"\\u299D\",\n\t\"angsph;\": \"\\u2222\",\n\t\"angst;\": \"\\u00C5\",\n\t\"angzarr;\": \"\\u237C\",\n\t\"Aogon;\": \"\\u0104\",\n\t\"aogon;\": \"\\u0105\",\n\t\"Aopf;\": \"\\uD835\\uDD38\",\n\t\"aopf;\": \"\\uD835\\uDD52\",\n\t\"apacir;\": \"\\u2A6F\",\n\t\"ap;\": \"\\u2248\",\n\t\"apE;\": \"\\u2A70\",\n\t\"ape;\": \"\\u224A\",\n\t\"apid;\": \"\\u224B\",\n\t\"apos;\": \"\\u0027\",\n\t\"ApplyFunction;\": \"\\u2061\",\n\t\"approx;\": \"\\u2248\",\n\t\"approxeq;\": \"\\u224A\",\n\t\"Aring;\": \"\\u00C5\",\n\t\"Aring\": \"\\u00C5\",\n\t\"aring;\": \"\\u00E5\",\n\t\"aring\": \"\\u00E5\",\n\t\"Ascr;\": \"\\uD835\\uDC9C\",\n\t\"ascr;\": \"\\uD835\\uDCB6\",\n\t\"Assign;\": \"\\u2254\",\n\t\"ast;\": \"\\u002A\",\n\t\"asymp;\": \"\\u2248\",\n\t\"asympeq;\": \"\\u224D\",\n\t\"Atilde;\": \"\\u00C3\",\n\t\"Atilde\": \"\\u00C3\",\n\t\"atilde;\": \"\\u00E3\",\n\t\"atilde\": \"\\u00E3\",\n\t\"Auml;\": \"\\u00C4\",\n\t\"Auml\": \"\\u00C4\",\n\t\"auml;\": \"\\u00E4\",\n\t\"auml\": \"\\u00E4\",\n\t\"awconint;\": \"\\u2233\",\n\t\"awint;\": \"\\u2A11\",\n\t\"backcong;\": \"\\u224C\",\n\t\"backepsilon;\": \"\\u03F6\",\n\t\"backprime;\": \"\\u2035\",\n\t\"backsim;\": \"\\u223D\",\n\t\"backsimeq;\": \"\\u22CD\",\n\t\"Backslash;\": \"\\u2216\",\n\t\"Barv;\": \"\\u2AE7\",\n\t\"barvee;\": \"\\u22BD\",\n\t\"barwed;\": \"\\u2305\",\n\t\"Barwed;\": \"\\u2306\",\n\t\"barwedge;\": \"\\u2305\",\n\t\"bbrk;\": \"\\u23B5\",\n\t\"bbrktbrk;\": \"\\u23B6\",\n\t\"bcong;\": \"\\u224C\",\n\t\"Bcy;\": \"\\u0411\",\n\t\"bcy;\": \"\\u0431\",\n\t\"bdquo;\": \"\\u201E\",\n\t\"becaus;\": \"\\u2235\",\n\t\"because;\": \"\\u2235\",\n\t\"Because;\": \"\\u2235\",\n\t\"bemptyv;\": \"\\u29B0\",\n\t\"bepsi;\": \"\\u03F6\",\n\t\"bernou;\": \"\\u212C\",\n\t\"Bernoullis;\": \"\\u212C\",\n\t\"Beta;\": \"\\u0392\",\n\t\"beta;\": \"\\u03B2\",\n\t\"beth;\": \"\\u2136\",\n\t\"between;\": \"\\u226C\",\n\t\"Bfr;\": \"\\uD835\\uDD05\",\n\t\"bfr;\": \"\\uD835\\uDD1F\",\n\t\"bigcap;\": \"\\u22C2\",\n\t\"bigcirc;\": \"\\u25EF\",\n\t\"bigcup;\": \"\\u22C3\",\n\t\"bigodot;\": \"\\u2A00\",\n\t\"bigoplus;\": \"\\u2A01\",\n\t\"bigotimes;\": \"\\u2A02\",\n\t\"bigsqcup;\": \"\\u2A06\",\n\t\"bigstar;\": \"\\u2605\",\n\t\"bigtriangledown;\": \"\\u25BD\",\n\t\"bigtriangleup;\": \"\\u25B3\",\n\t\"biguplus;\": \"\\u2A04\",\n\t\"bigvee;\": \"\\u22C1\",\n\t\"bigwedge;\": \"\\u22C0\",\n\t\"bkarow;\": \"\\u290D\",\n\t\"blacklozenge;\": \"\\u29EB\",\n\t\"blacksquare;\": \"\\u25AA\",\n\t\"blacktriangle;\": \"\\u25B4\",\n\t\"blacktriangledown;\": \"\\u25BE\",\n\t\"blacktriangleleft;\": \"\\u25C2\",\n\t\"blacktriangleright;\": \"\\u25B8\",\n\t\"blank;\": \"\\u2423\",\n\t\"blk12;\": \"\\u2592\",\n\t\"blk14;\": \"\\u2591\",\n\t\"blk34;\": \"\\u2593\",\n\t\"block;\": \"\\u2588\",\n\t\"bne;\": \"\\u003D\\u20E5\",\n\t\"bnequiv;\": \"\\u2261\\u20E5\",\n\t\"bNot;\": \"\\u2AED\",\n\t\"bnot;\": \"\\u2310\",\n\t\"Bopf;\": \"\\uD835\\uDD39\",\n\t\"bopf;\": \"\\uD835\\uDD53\",\n\t\"bot;\": \"\\u22A5\",\n\t\"bottom;\": \"\\u22A5\",\n\t\"bowtie;\": \"\\u22C8\",\n\t\"boxbox;\": \"\\u29C9\",\n\t\"boxdl;\": \"\\u2510\",\n\t\"boxdL;\": \"\\u2555\",\n\t\"boxDl;\": \"\\u2556\",\n\t\"boxDL;\": \"\\u2557\",\n\t\"boxdr;\": \"\\u250C\",\n\t\"boxdR;\": \"\\u2552\",\n\t\"boxDr;\": \"\\u2553\",\n\t\"boxDR;\": \"\\u2554\",\n\t\"boxh;\": \"\\u2500\",\n\t\"boxH;\": \"\\u2550\",\n\t\"boxhd;\": \"\\u252C\",\n\t\"boxHd;\": \"\\u2564\",\n\t\"boxhD;\": \"\\u2565\",\n\t\"boxHD;\": \"\\u2566\",\n\t\"boxhu;\": \"\\u2534\",\n\t\"boxHu;\": \"\\u2567\",\n\t\"boxhU;\": \"\\u2568\",\n\t\"boxHU;\": \"\\u2569\",\n\t\"boxminus;\": \"\\u229F\",\n\t\"boxplus;\": \"\\u229E\",\n\t\"boxtimes;\": \"\\u22A0\",\n\t\"boxul;\": \"\\u2518\",\n\t\"boxuL;\": \"\\u255B\",\n\t\"boxUl;\": \"\\u255C\",\n\t\"boxUL;\": \"\\u255D\",\n\t\"boxur;\": \"\\u2514\",\n\t\"boxuR;\": \"\\u2558\",\n\t\"boxUr;\": \"\\u2559\",\n\t\"boxUR;\": \"\\u255A\",\n\t\"boxv;\": \"\\u2502\",\n\t\"boxV;\": \"\\u2551\",\n\t\"boxvh;\": \"\\u253C\",\n\t\"boxvH;\": \"\\u256A\",\n\t\"boxVh;\": \"\\u256B\",\n\t\"boxVH;\": \"\\u256C\",\n\t\"boxvl;\": \"\\u2524\",\n\t\"boxvL;\": \"\\u2561\",\n\t\"boxVl;\": \"\\u2562\",\n\t\"boxVL;\": \"\\u2563\",\n\t\"boxvr;\": \"\\u251C\",\n\t\"boxvR;\": \"\\u255E\",\n\t\"boxVr;\": \"\\u255F\",\n\t\"boxVR;\": \"\\u2560\",\n\t\"bprime;\": \"\\u2035\",\n\t\"breve;\": \"\\u02D8\",\n\t\"Breve;\": \"\\u02D8\",\n\t\"brvbar;\": \"\\u00A6\",\n\t\"brvbar\": \"\\u00A6\",\n\t\"bscr;\": \"\\uD835\\uDCB7\",\n\t\"Bscr;\": \"\\u212C\",\n\t\"bsemi;\": \"\\u204F\",\n\t\"bsim;\": \"\\u223D\",\n\t\"bsime;\": \"\\u22CD\",\n\t\"bsolb;\": \"\\u29C5\",\n\t\"bsol;\": \"\\u005C\",\n\t\"bsolhsub;\": \"\\u27C8\",\n\t\"bull;\": \"\\u2022\",\n\t\"bullet;\": \"\\u2022\",\n\t\"bump;\": \"\\u224E\",\n\t\"bumpE;\": \"\\u2AAE\",\n\t\"bumpe;\": \"\\u224F\",\n\t\"Bumpeq;\": \"\\u224E\",\n\t\"bumpeq;\": \"\\u224F\",\n\t\"Cacute;\": \"\\u0106\",\n\t\"cacute;\": \"\\u0107\",\n\t\"capand;\": \"\\u2A44\",\n\t\"capbrcup;\": \"\\u2A49\",\n\t\"capcap;\": \"\\u2A4B\",\n\t\"cap;\": \"\\u2229\",\n\t\"Cap;\": \"\\u22D2\",\n\t\"capcup;\": \"\\u2A47\",\n\t\"capdot;\": \"\\u2A40\",\n\t\"CapitalDifferentialD;\": \"\\u2145\",\n\t\"caps;\": \"\\u2229\\uFE00\",\n\t\"caret;\": \"\\u2041\",\n\t\"caron;\": \"\\u02C7\",\n\t\"Cayleys;\": \"\\u212D\",\n\t\"ccaps;\": \"\\u2A4D\",\n\t\"Ccaron;\": \"\\u010C\",\n\t\"ccaron;\": \"\\u010D\",\n\t\"Ccedil;\": \"\\u00C7\",\n\t\"Ccedil\": \"\\u00C7\",\n\t\"ccedil;\": \"\\u00E7\",\n\t\"ccedil\": \"\\u00E7\",\n\t\"Ccirc;\": \"\\u0108\",\n\t\"ccirc;\": \"\\u0109\",\n\t\"Cconint;\": \"\\u2230\",\n\t\"ccups;\": \"\\u2A4C\",\n\t\"ccupssm;\": \"\\u2A50\",\n\t\"Cdot;\": \"\\u010A\",\n\t\"cdot;\": \"\\u010B\",\n\t\"cedil;\": \"\\u00B8\",\n\t\"cedil\": \"\\u00B8\",\n\t\"Cedilla;\": \"\\u00B8\",\n\t\"cemptyv;\": \"\\u29B2\",\n\t\"cent;\": \"\\u00A2\",\n\t\"cent\": \"\\u00A2\",\n\t\"centerdot;\": \"\\u00B7\",\n\t\"CenterDot;\": \"\\u00B7\",\n\t\"cfr;\": \"\\uD835\\uDD20\",\n\t\"Cfr;\": \"\\u212D\",\n\t\"CHcy;\": \"\\u0427\",\n\t\"chcy;\": \"\\u0447\",\n\t\"check;\": \"\\u2713\",\n\t\"checkmark;\": \"\\u2713\",\n\t\"Chi;\": \"\\u03A7\",\n\t\"chi;\": \"\\u03C7\",\n\t\"circ;\": \"\\u02C6\",\n\t\"circeq;\": \"\\u2257\",\n\t\"circlearrowleft;\": \"\\u21BA\",\n\t\"circlearrowright;\": \"\\u21BB\",\n\t\"circledast;\": \"\\u229B\",\n\t\"circledcirc;\": \"\\u229A\",\n\t\"circleddash;\": \"\\u229D\",\n\t\"CircleDot;\": \"\\u2299\",\n\t\"circledR;\": \"\\u00AE\",\n\t\"circledS;\": \"\\u24C8\",\n\t\"CircleMinus;\": \"\\u2296\",\n\t\"CirclePlus;\": \"\\u2295\",\n\t\"CircleTimes;\": \"\\u2297\",\n\t\"cir;\": \"\\u25CB\",\n\t\"cirE;\": \"\\u29C3\",\n\t\"cire;\": \"\\u2257\",\n\t\"cirfnint;\": \"\\u2A10\",\n\t\"cirmid;\": \"\\u2AEF\",\n\t\"cirscir;\": \"\\u29C2\",\n\t\"ClockwiseContourIntegral;\": \"\\u2232\",\n\t\"CloseCurlyDoubleQuote;\": \"\\u201D\",\n\t\"CloseCurlyQuote;\": \"\\u2019\",\n\t\"clubs;\": \"\\u2663\",\n\t\"clubsuit;\": \"\\u2663\",\n\t\"colon;\": \"\\u003A\",\n\t\"Colon;\": \"\\u2237\",\n\t\"Colone;\": \"\\u2A74\",\n\t\"colone;\": \"\\u2254\",\n\t\"coloneq;\": \"\\u2254\",\n\t\"comma;\": \"\\u002C\",\n\t\"commat;\": \"\\u0040\",\n\t\"comp;\": \"\\u2201\",\n\t\"compfn;\": \"\\u2218\",\n\t\"complement;\": \"\\u2201\",\n\t\"complexes;\": \"\\u2102\",\n\t\"cong;\": \"\\u2245\",\n\t\"congdot;\": \"\\u2A6D\",\n\t\"Congruent;\": \"\\u2261\",\n\t\"conint;\": \"\\u222E\",\n\t\"Conint;\": \"\\u222F\",\n\t\"ContourIntegral;\": \"\\u222E\",\n\t\"copf;\": \"\\uD835\\uDD54\",\n\t\"Copf;\": \"\\u2102\",\n\t\"coprod;\": \"\\u2210\",\n\t\"Coproduct;\": \"\\u2210\",\n\t\"copy;\": \"\\u00A9\",\n\t\"copy\": \"\\u00A9\",\n\t\"COPY;\": \"\\u00A9\",\n\t\"COPY\": \"\\u00A9\",\n\t\"copysr;\": \"\\u2117\",\n\t\"CounterClockwiseContourIntegral;\": \"\\u2233\",\n\t\"crarr;\": \"\\u21B5\",\n\t\"cross;\": \"\\u2717\",\n\t\"Cross;\": \"\\u2A2F\",\n\t\"Cscr;\": \"\\uD835\\uDC9E\",\n\t\"cscr;\": \"\\uD835\\uDCB8\",\n\t\"csub;\": \"\\u2ACF\",\n\t\"csube;\": \"\\u2AD1\",\n\t\"csup;\": \"\\u2AD0\",\n\t\"csupe;\": \"\\u2AD2\",\n\t\"ctdot;\": \"\\u22EF\",\n\t\"cudarrl;\": \"\\u2938\",\n\t\"cudarrr;\": \"\\u2935\",\n\t\"cuepr;\": \"\\u22DE\",\n\t\"cuesc;\": \"\\u22DF\",\n\t\"cularr;\": \"\\u21B6\",\n\t\"cularrp;\": \"\\u293D\",\n\t\"cupbrcap;\": \"\\u2A48\",\n\t\"cupcap;\": \"\\u2A46\",\n\t\"CupCap;\": \"\\u224D\",\n\t\"cup;\": \"\\u222A\",\n\t\"Cup;\": \"\\u22D3\",\n\t\"cupcup;\": \"\\u2A4A\",\n\t\"cupdot;\": \"\\u228D\",\n\t\"cupor;\": \"\\u2A45\",\n\t\"cups;\": \"\\u222A\\uFE00\",\n\t\"curarr;\": \"\\u21B7\",\n\t\"curarrm;\": \"\\u293C\",\n\t\"curlyeqprec;\": \"\\u22DE\",\n\t\"curlyeqsucc;\": \"\\u22DF\",\n\t\"curlyvee;\": \"\\u22CE\",\n\t\"curlywedge;\": \"\\u22CF\",\n\t\"curren;\": \"\\u00A4\",\n\t\"curren\": \"\\u00A4\",\n\t\"curvearrowleft;\": \"\\u21B6\",\n\t\"curvearrowright;\": \"\\u21B7\",\n\t\"cuvee;\": \"\\u22CE\",\n\t\"cuwed;\": \"\\u22CF\",\n\t\"cwconint;\": \"\\u2232\",\n\t\"cwint;\": \"\\u2231\",\n\t\"cylcty;\": \"\\u232D\",\n\t\"dagger;\": \"\\u2020\",\n\t\"Dagger;\": \"\\u2021\",\n\t\"daleth;\": \"\\u2138\",\n\t\"darr;\": \"\\u2193\",\n\t\"Darr;\": \"\\u21A1\",\n\t\"dArr;\": \"\\u21D3\",\n\t\"dash;\": \"\\u2010\",\n\t\"Dashv;\": \"\\u2AE4\",\n\t\"dashv;\": \"\\u22A3\",\n\t\"dbkarow;\": \"\\u290F\",\n\t\"dblac;\": \"\\u02DD\",\n\t\"Dcaron;\": \"\\u010E\",\n\t\"dcaron;\": \"\\u010F\",\n\t\"Dcy;\": \"\\u0414\",\n\t\"dcy;\": \"\\u0434\",\n\t\"ddagger;\": \"\\u2021\",\n\t\"ddarr;\": \"\\u21CA\",\n\t\"DD;\": \"\\u2145\",\n\t\"dd;\": \"\\u2146\",\n\t\"DDotrahd;\": \"\\u2911\",\n\t\"ddotseq;\": \"\\u2A77\",\n\t\"deg;\": \"\\u00B0\",\n\t\"deg\": \"\\u00B0\",\n\t\"Del;\": \"\\u2207\",\n\t\"Delta;\": \"\\u0394\",\n\t\"delta;\": \"\\u03B4\",\n\t\"demptyv;\": \"\\u29B1\",\n\t\"dfisht;\": \"\\u297F\",\n\t\"Dfr;\": \"\\uD835\\uDD07\",\n\t\"dfr;\": \"\\uD835\\uDD21\",\n\t\"dHar;\": \"\\u2965\",\n\t\"dharl;\": \"\\u21C3\",\n\t\"dharr;\": \"\\u21C2\",\n\t\"DiacriticalAcute;\": \"\\u00B4\",\n\t\"DiacriticalDot;\": \"\\u02D9\",\n\t\"DiacriticalDoubleAcute;\": \"\\u02DD\",\n\t\"DiacriticalGrave;\": \"\\u0060\",\n\t\"DiacriticalTilde;\": \"\\u02DC\",\n\t\"diam;\": \"\\u22C4\",\n\t\"diamond;\": \"\\u22C4\",\n\t\"Diamond;\": \"\\u22C4\",\n\t\"diamondsuit;\": \"\\u2666\",\n\t\"diams;\": \"\\u2666\",\n\t\"die;\": \"\\u00A8\",\n\t\"DifferentialD;\": \"\\u2146\",\n\t\"digamma;\": \"\\u03DD\",\n\t\"disin;\": \"\\u22F2\",\n\t\"div;\": \"\\u00F7\",\n\t\"divide;\": \"\\u00F7\",\n\t\"divide\": \"\\u00F7\",\n\t\"divideontimes;\": \"\\u22C7\",\n\t\"divonx;\": \"\\u22C7\",\n\t\"DJcy;\": \"\\u0402\",\n\t\"djcy;\": \"\\u0452\",\n\t\"dlcorn;\": \"\\u231E\",\n\t\"dlcrop;\": \"\\u230D\",\n\t\"dollar;\": \"\\u0024\",\n\t\"Dopf;\": \"\\uD835\\uDD3B\",\n\t\"dopf;\": \"\\uD835\\uDD55\",\n\t\"Dot;\": \"\\u00A8\",\n\t\"dot;\": \"\\u02D9\",\n\t\"DotDot;\": \"\\u20DC\",\n\t\"doteq;\": \"\\u2250\",\n\t\"doteqdot;\": \"\\u2251\",\n\t\"DotEqual;\": \"\\u2250\",\n\t\"dotminus;\": \"\\u2238\",\n\t\"dotplus;\": \"\\u2214\",\n\t\"dotsquare;\": \"\\u22A1\",\n\t\"doublebarwedge;\": \"\\u2306\",\n\t\"DoubleContourIntegral;\": \"\\u222F\",\n\t\"DoubleDot;\": \"\\u00A8\",\n\t\"DoubleDownArrow;\": \"\\u21D3\",\n\t\"DoubleLeftArrow;\": \"\\u21D0\",\n\t\"DoubleLeftRightArrow;\": \"\\u21D4\",\n\t\"DoubleLeftTee;\": \"\\u2AE4\",\n\t\"DoubleLongLeftArrow;\": \"\\u27F8\",\n\t\"DoubleLongLeftRightArrow;\": \"\\u27FA\",\n\t\"DoubleLongRightArrow;\": \"\\u27F9\",\n\t\"DoubleRightArrow;\": \"\\u21D2\",\n\t\"DoubleRightTee;\": \"\\u22A8\",\n\t\"DoubleUpArrow;\": \"\\u21D1\",\n\t\"DoubleUpDownArrow;\": \"\\u21D5\",\n\t\"DoubleVerticalBar;\": \"\\u2225\",\n\t\"DownArrowBar;\": \"\\u2913\",\n\t\"downarrow;\": \"\\u2193\",\n\t\"DownArrow;\": \"\\u2193\",\n\t\"Downarrow;\": \"\\u21D3\",\n\t\"DownArrowUpArrow;\": \"\\u21F5\",\n\t\"DownBreve;\": \"\\u0311\",\n\t\"downdownarrows;\": \"\\u21CA\",\n\t\"downharpoonleft;\": \"\\u21C3\",\n\t\"downharpoonright;\": \"\\u21C2\",\n\t\"DownLeftRightVector;\": \"\\u2950\",\n\t\"DownLeftTeeVector;\": \"\\u295E\",\n\t\"DownLeftVectorBar;\": \"\\u2956\",\n\t\"DownLeftVector;\": \"\\u21BD\",\n\t\"DownRightTeeVector;\": \"\\u295F\",\n\t\"DownRightVectorBar;\": \"\\u2957\",\n\t\"DownRightVector;\": \"\\u21C1\",\n\t\"DownTeeArrow;\": \"\\u21A7\",\n\t\"DownTee;\": \"\\u22A4\",\n\t\"drbkarow;\": \"\\u2910\",\n\t\"drcorn;\": \"\\u231F\",\n\t\"drcrop;\": \"\\u230C\",\n\t\"Dscr;\": \"\\uD835\\uDC9F\",\n\t\"dscr;\": \"\\uD835\\uDCB9\",\n\t\"DScy;\": \"\\u0405\",\n\t\"dscy;\": \"\\u0455\",\n\t\"dsol;\": \"\\u29F6\",\n\t\"Dstrok;\": \"\\u0110\",\n\t\"dstrok;\": \"\\u0111\",\n\t\"dtdot;\": \"\\u22F1\",\n\t\"dtri;\": \"\\u25BF\",\n\t\"dtrif;\": \"\\u25BE\",\n\t\"duarr;\": \"\\u21F5\",\n\t\"duhar;\": \"\\u296F\",\n\t\"dwangle;\": \"\\u29A6\",\n\t\"DZcy;\": \"\\u040F\",\n\t\"dzcy;\": \"\\u045F\",\n\t\"dzigrarr;\": \"\\u27FF\",\n\t\"Eacute;\": \"\\u00C9\",\n\t\"Eacute\": \"\\u00C9\",\n\t\"eacute;\": \"\\u00E9\",\n\t\"eacute\": \"\\u00E9\",\n\t\"easter;\": \"\\u2A6E\",\n\t\"Ecaron;\": \"\\u011A\",\n\t\"ecaron;\": \"\\u011B\",\n\t\"Ecirc;\": \"\\u00CA\",\n\t\"Ecirc\": \"\\u00CA\",\n\t\"ecirc;\": \"\\u00EA\",\n\t\"ecirc\": \"\\u00EA\",\n\t\"ecir;\": \"\\u2256\",\n\t\"ecolon;\": \"\\u2255\",\n\t\"Ecy;\": \"\\u042D\",\n\t\"ecy;\": \"\\u044D\",\n\t\"eDDot;\": \"\\u2A77\",\n\t\"Edot;\": \"\\u0116\",\n\t\"edot;\": \"\\u0117\",\n\t\"eDot;\": \"\\u2251\",\n\t\"ee;\": \"\\u2147\",\n\t\"efDot;\": \"\\u2252\",\n\t\"Efr;\": \"\\uD835\\uDD08\",\n\t\"efr;\": \"\\uD835\\uDD22\",\n\t\"eg;\": \"\\u2A9A\",\n\t\"Egrave;\": \"\\u00C8\",\n\t\"Egrave\": \"\\u00C8\",\n\t\"egrave;\": \"\\u00E8\",\n\t\"egrave\": \"\\u00E8\",\n\t\"egs;\": \"\\u2A96\",\n\t\"egsdot;\": \"\\u2A98\",\n\t\"el;\": \"\\u2A99\",\n\t\"Element;\": \"\\u2208\",\n\t\"elinters;\": \"\\u23E7\",\n\t\"ell;\": \"\\u2113\",\n\t\"els;\": \"\\u2A95\",\n\t\"elsdot;\": \"\\u2A97\",\n\t\"Emacr;\": \"\\u0112\",\n\t\"emacr;\": \"\\u0113\",\n\t\"empty;\": \"\\u2205\",\n\t\"emptyset;\": \"\\u2205\",\n\t\"EmptySmallSquare;\": \"\\u25FB\",\n\t\"emptyv;\": \"\\u2205\",\n\t\"EmptyVerySmallSquare;\": \"\\u25AB\",\n\t\"emsp13;\": \"\\u2004\",\n\t\"emsp14;\": \"\\u2005\",\n\t\"emsp;\": \"\\u2003\",\n\t\"ENG;\": \"\\u014A\",\n\t\"eng;\": \"\\u014B\",\n\t\"ensp;\": \"\\u2002\",\n\t\"Eogon;\": \"\\u0118\",\n\t\"eogon;\": \"\\u0119\",\n\t\"Eopf;\": \"\\uD835\\uDD3C\",\n\t\"eopf;\": \"\\uD835\\uDD56\",\n\t\"epar;\": \"\\u22D5\",\n\t\"eparsl;\": \"\\u29E3\",\n\t\"eplus;\": \"\\u2A71\",\n\t\"epsi;\": \"\\u03B5\",\n\t\"Epsilon;\": \"\\u0395\",\n\t\"epsilon;\": \"\\u03B5\",\n\t\"epsiv;\": \"\\u03F5\",\n\t\"eqcirc;\": \"\\u2256\",\n\t\"eqcolon;\": \"\\u2255\",\n\t\"eqsim;\": \"\\u2242\",\n\t\"eqslantgtr;\": \"\\u2A96\",\n\t\"eqslantless;\": \"\\u2A95\",\n\t\"Equal;\": \"\\u2A75\",\n\t\"equals;\": \"\\u003D\",\n\t\"EqualTilde;\": \"\\u2242\",\n\t\"equest;\": \"\\u225F\",\n\t\"Equilibrium;\": \"\\u21CC\",\n\t\"equiv;\": \"\\u2261\",\n\t\"equivDD;\": \"\\u2A78\",\n\t\"eqvparsl;\": \"\\u29E5\",\n\t\"erarr;\": \"\\u2971\",\n\t\"erDot;\": \"\\u2253\",\n\t\"escr;\": \"\\u212F\",\n\t\"Escr;\": \"\\u2130\",\n\t\"esdot;\": \"\\u2250\",\n\t\"Esim;\": \"\\u2A73\",\n\t\"esim;\": \"\\u2242\",\n\t\"Eta;\": \"\\u0397\",\n\t\"eta;\": \"\\u03B7\",\n\t\"ETH;\": \"\\u00D0\",\n\t\"ETH\": \"\\u00D0\",\n\t\"eth;\": \"\\u00F0\",\n\t\"eth\": \"\\u00F0\",\n\t\"Euml;\": \"\\u00CB\",\n\t\"Euml\": \"\\u00CB\",\n\t\"euml;\": \"\\u00EB\",\n\t\"euml\": \"\\u00EB\",\n\t\"euro;\": \"\\u20AC\",\n\t\"excl;\": \"\\u0021\",\n\t\"exist;\": \"\\u2203\",\n\t\"Exists;\": \"\\u2203\",\n\t\"expectation;\": \"\\u2130\",\n\t\"exponentiale;\": \"\\u2147\",\n\t\"ExponentialE;\": \"\\u2147\",\n\t\"fallingdotseq;\": \"\\u2252\",\n\t\"Fcy;\": \"\\u0424\",\n\t\"fcy;\": \"\\u0444\",\n\t\"female;\": \"\\u2640\",\n\t\"ffilig;\": \"\\uFB03\",\n\t\"fflig;\": \"\\uFB00\",\n\t\"ffllig;\": \"\\uFB04\",\n\t\"Ffr;\": \"\\uD835\\uDD09\",\n\t\"ffr;\": \"\\uD835\\uDD23\",\n\t\"filig;\": \"\\uFB01\",\n\t\"FilledSmallSquare;\": \"\\u25FC\",\n\t\"FilledVerySmallSquare;\": \"\\u25AA\",\n\t\"fjlig;\": \"\\u0066\\u006A\",\n\t\"flat;\": \"\\u266D\",\n\t\"fllig;\": \"\\uFB02\",\n\t\"fltns;\": \"\\u25B1\",\n\t\"fnof;\": \"\\u0192\",\n\t\"Fopf;\": \"\\uD835\\uDD3D\",\n\t\"fopf;\": \"\\uD835\\uDD57\",\n\t\"forall;\": \"\\u2200\",\n\t\"ForAll;\": \"\\u2200\",\n\t\"fork;\": \"\\u22D4\",\n\t\"forkv;\": \"\\u2AD9\",\n\t\"Fouriertrf;\": \"\\u2131\",\n\t\"fpartint;\": \"\\u2A0D\",\n\t\"frac12;\": \"\\u00BD\",\n\t\"frac12\": \"\\u00BD\",\n\t\"frac13;\": \"\\u2153\",\n\t\"frac14;\": \"\\u00BC\",\n\t\"frac14\": \"\\u00BC\",\n\t\"frac15;\": \"\\u2155\",\n\t\"frac16;\": \"\\u2159\",\n\t\"frac18;\": \"\\u215B\",\n\t\"frac23;\": \"\\u2154\",\n\t\"frac25;\": \"\\u2156\",\n\t\"frac34;\": \"\\u00BE\",\n\t\"frac34\": \"\\u00BE\",\n\t\"frac35;\": \"\\u2157\",\n\t\"frac38;\": \"\\u215C\",\n\t\"frac45;\": \"\\u2158\",\n\t\"frac56;\": \"\\u215A\",\n\t\"frac58;\": \"\\u215D\",\n\t\"frac78;\": \"\\u215E\",\n\t\"frasl;\": \"\\u2044\",\n\t\"frown;\": \"\\u2322\",\n\t\"fscr;\": \"\\uD835\\uDCBB\",\n\t\"Fscr;\": \"\\u2131\",\n\t\"gacute;\": \"\\u01F5\",\n\t\"Gamma;\": \"\\u0393\",\n\t\"gamma;\": \"\\u03B3\",\n\t\"Gammad;\": \"\\u03DC\",\n\t\"gammad;\": \"\\u03DD\",\n\t\"gap;\": \"\\u2A86\",\n\t\"Gbreve;\": \"\\u011E\",\n\t\"gbreve;\": \"\\u011F\",\n\t\"Gcedil;\": \"\\u0122\",\n\t\"Gcirc;\": \"\\u011C\",\n\t\"gcirc;\": \"\\u011D\",\n\t\"Gcy;\": \"\\u0413\",\n\t\"gcy;\": \"\\u0433\",\n\t\"Gdot;\": \"\\u0120\",\n\t\"gdot;\": \"\\u0121\",\n\t\"ge;\": \"\\u2265\",\n\t\"gE;\": \"\\u2267\",\n\t\"gEl;\": \"\\u2A8C\",\n\t\"gel;\": \"\\u22DB\",\n\t\"geq;\": \"\\u2265\",\n\t\"geqq;\": \"\\u2267\",\n\t\"geqslant;\": \"\\u2A7E\",\n\t\"gescc;\": \"\\u2AA9\",\n\t\"ges;\": \"\\u2A7E\",\n\t\"gesdot;\": \"\\u2A80\",\n\t\"gesdoto;\": \"\\u2A82\",\n\t\"gesdotol;\": \"\\u2A84\",\n\t\"gesl;\": \"\\u22DB\\uFE00\",\n\t\"gesles;\": \"\\u2A94\",\n\t\"Gfr;\": \"\\uD835\\uDD0A\",\n\t\"gfr;\": \"\\uD835\\uDD24\",\n\t\"gg;\": \"\\u226B\",\n\t\"Gg;\": \"\\u22D9\",\n\t\"ggg;\": \"\\u22D9\",\n\t\"gimel;\": \"\\u2137\",\n\t\"GJcy;\": \"\\u0403\",\n\t\"gjcy;\": \"\\u0453\",\n\t\"gla;\": \"\\u2AA5\",\n\t\"gl;\": \"\\u2277\",\n\t\"glE;\": \"\\u2A92\",\n\t\"glj;\": \"\\u2AA4\",\n\t\"gnap;\": \"\\u2A8A\",\n\t\"gnapprox;\": \"\\u2A8A\",\n\t\"gne;\": \"\\u2A88\",\n\t\"gnE;\": \"\\u2269\",\n\t\"gneq;\": \"\\u2A88\",\n\t\"gneqq;\": \"\\u2269\",\n\t\"gnsim;\": \"\\u22E7\",\n\t\"Gopf;\": \"\\uD835\\uDD3E\",\n\t\"gopf;\": \"\\uD835\\uDD58\",\n\t\"grave;\": \"\\u0060\",\n\t\"GreaterEqual;\": \"\\u2265\",\n\t\"GreaterEqualLess;\": \"\\u22DB\",\n\t\"GreaterFullEqual;\": \"\\u2267\",\n\t\"GreaterGreater;\": \"\\u2AA2\",\n\t\"GreaterLess;\": \"\\u2277\",\n\t\"GreaterSlantEqual;\": \"\\u2A7E\",\n\t\"GreaterTilde;\": \"\\u2273\",\n\t\"Gscr;\": \"\\uD835\\uDCA2\",\n\t\"gscr;\": \"\\u210A\",\n\t\"gsim;\": \"\\u2273\",\n\t\"gsime;\": \"\\u2A8E\",\n\t\"gsiml;\": \"\\u2A90\",\n\t\"gtcc;\": \"\\u2AA7\",\n\t\"gtcir;\": \"\\u2A7A\",\n\t\"gt;\": \"\\u003E\",\n\t\"gt\": \"\\u003E\",\n\t\"GT;\": \"\\u003E\",\n\t\"GT\": \"\\u003E\",\n\t\"Gt;\": \"\\u226B\",\n\t\"gtdot;\": \"\\u22D7\",\n\t\"gtlPar;\": \"\\u2995\",\n\t\"gtquest;\": \"\\u2A7C\",\n\t\"gtrapprox;\": \"\\u2A86\",\n\t\"gtrarr;\": \"\\u2978\",\n\t\"gtrdot;\": \"\\u22D7\",\n\t\"gtreqless;\": \"\\u22DB\",\n\t\"gtreqqless;\": \"\\u2A8C\",\n\t\"gtrless;\": \"\\u2277\",\n\t\"gtrsim;\": \"\\u2273\",\n\t\"gvertneqq;\": \"\\u2269\\uFE00\",\n\t\"gvnE;\": \"\\u2269\\uFE00\",\n\t\"Hacek;\": \"\\u02C7\",\n\t\"hairsp;\": \"\\u200A\",\n\t\"half;\": \"\\u00BD\",\n\t\"hamilt;\": \"\\u210B\",\n\t\"HARDcy;\": \"\\u042A\",\n\t\"hardcy;\": \"\\u044A\",\n\t\"harrcir;\": \"\\u2948\",\n\t\"harr;\": \"\\u2194\",\n\t\"hArr;\": \"\\u21D4\",\n\t\"harrw;\": \"\\u21AD\",\n\t\"Hat;\": \"\\u005E\",\n\t\"hbar;\": \"\\u210F\",\n\t\"Hcirc;\": \"\\u0124\",\n\t\"hcirc;\": \"\\u0125\",\n\t\"hearts;\": \"\\u2665\",\n\t\"heartsuit;\": \"\\u2665\",\n\t\"hellip;\": \"\\u2026\",\n\t\"hercon;\": \"\\u22B9\",\n\t\"hfr;\": \"\\uD835\\uDD25\",\n\t\"Hfr;\": \"\\u210C\",\n\t\"HilbertSpace;\": \"\\u210B\",\n\t\"hksearow;\": \"\\u2925\",\n\t\"hkswarow;\": \"\\u2926\",\n\t\"hoarr;\": \"\\u21FF\",\n\t\"homtht;\": \"\\u223B\",\n\t\"hookleftarrow;\": \"\\u21A9\",\n\t\"hookrightarrow;\": \"\\u21AA\",\n\t\"hopf;\": \"\\uD835\\uDD59\",\n\t\"Hopf;\": \"\\u210D\",\n\t\"horbar;\": \"\\u2015\",\n\t\"HorizontalLine;\": \"\\u2500\",\n\t\"hscr;\": \"\\uD835\\uDCBD\",\n\t\"Hscr;\": \"\\u210B\",\n\t\"hslash;\": \"\\u210F\",\n\t\"Hstrok;\": \"\\u0126\",\n\t\"hstrok;\": \"\\u0127\",\n\t\"HumpDownHump;\": \"\\u224E\",\n\t\"HumpEqual;\": \"\\u224F\",\n\t\"hybull;\": \"\\u2043\",\n\t\"hyphen;\": \"\\u2010\",\n\t\"Iacute;\": \"\\u00CD\",\n\t\"Iacute\": \"\\u00CD\",\n\t\"iacute;\": \"\\u00ED\",\n\t\"iacute\": \"\\u00ED\",\n\t\"ic;\": \"\\u2063\",\n\t\"Icirc;\": \"\\u00CE\",\n\t\"Icirc\": \"\\u00CE\",\n\t\"icirc;\": \"\\u00EE\",\n\t\"icirc\": \"\\u00EE\",\n\t\"Icy;\": \"\\u0418\",\n\t\"icy;\": \"\\u0438\",\n\t\"Idot;\": \"\\u0130\",\n\t\"IEcy;\": \"\\u0415\",\n\t\"iecy;\": \"\\u0435\",\n\t\"iexcl;\": \"\\u00A1\",\n\t\"iexcl\": \"\\u00A1\",\n\t\"iff;\": \"\\u21D4\",\n\t\"ifr;\": \"\\uD835\\uDD26\",\n\t\"Ifr;\": \"\\u2111\",\n\t\"Igrave;\": \"\\u00CC\",\n\t\"Igrave\": \"\\u00CC\",\n\t\"igrave;\": \"\\u00EC\",\n\t\"igrave\": \"\\u00EC\",\n\t\"ii;\": \"\\u2148\",\n\t\"iiiint;\": \"\\u2A0C\",\n\t\"iiint;\": \"\\u222D\",\n\t\"iinfin;\": \"\\u29DC\",\n\t\"iiota;\": \"\\u2129\",\n\t\"IJlig;\": \"\\u0132\",\n\t\"ijlig;\": \"\\u0133\",\n\t\"Imacr;\": \"\\u012A\",\n\t\"imacr;\": \"\\u012B\",\n\t\"image;\": \"\\u2111\",\n\t\"ImaginaryI;\": \"\\u2148\",\n\t\"imagline;\": \"\\u2110\",\n\t\"imagpart;\": \"\\u2111\",\n\t\"imath;\": \"\\u0131\",\n\t\"Im;\": \"\\u2111\",\n\t\"imof;\": \"\\u22B7\",\n\t\"imped;\": \"\\u01B5\",\n\t\"Implies;\": \"\\u21D2\",\n\t\"incare;\": \"\\u2105\",\n\t\"in;\": \"\\u2208\",\n\t\"infin;\": \"\\u221E\",\n\t\"infintie;\": \"\\u29DD\",\n\t\"inodot;\": \"\\u0131\",\n\t\"intcal;\": \"\\u22BA\",\n\t\"int;\": \"\\u222B\",\n\t\"Int;\": \"\\u222C\",\n\t\"integers;\": \"\\u2124\",\n\t\"Integral;\": \"\\u222B\",\n\t\"intercal;\": \"\\u22BA\",\n\t\"Intersection;\": \"\\u22C2\",\n\t\"intlarhk;\": \"\\u2A17\",\n\t\"intprod;\": \"\\u2A3C\",\n\t\"InvisibleComma;\": \"\\u2063\",\n\t\"InvisibleTimes;\": \"\\u2062\",\n\t\"IOcy;\": \"\\u0401\",\n\t\"iocy;\": \"\\u0451\",\n\t\"Iogon;\": \"\\u012E\",\n\t\"iogon;\": \"\\u012F\",\n\t\"Iopf;\": \"\\uD835\\uDD40\",\n\t\"iopf;\": \"\\uD835\\uDD5A\",\n\t\"Iota;\": \"\\u0399\",\n\t\"iota;\": \"\\u03B9\",\n\t\"iprod;\": \"\\u2A3C\",\n\t\"iquest;\": \"\\u00BF\",\n\t\"iquest\": \"\\u00BF\",\n\t\"iscr;\": \"\\uD835\\uDCBE\",\n\t\"Iscr;\": \"\\u2110\",\n\t\"isin;\": \"\\u2208\",\n\t\"isindot;\": \"\\u22F5\",\n\t\"isinE;\": \"\\u22F9\",\n\t\"isins;\": \"\\u22F4\",\n\t\"isinsv;\": \"\\u22F3\",\n\t\"isinv;\": \"\\u2208\",\n\t\"it;\": \"\\u2062\",\n\t\"Itilde;\": \"\\u0128\",\n\t\"itilde;\": \"\\u0129\",\n\t\"Iukcy;\": \"\\u0406\",\n\t\"iukcy;\": \"\\u0456\",\n\t\"Iuml;\": \"\\u00CF\",\n\t\"Iuml\": \"\\u00CF\",\n\t\"iuml;\": \"\\u00EF\",\n\t\"iuml\": \"\\u00EF\",\n\t\"Jcirc;\": \"\\u0134\",\n\t\"jcirc;\": \"\\u0135\",\n\t\"Jcy;\": \"\\u0419\",\n\t\"jcy;\": \"\\u0439\",\n\t\"Jfr;\": \"\\uD835\\uDD0D\",\n\t\"jfr;\": \"\\uD835\\uDD27\",\n\t\"jmath;\": \"\\u0237\",\n\t\"Jopf;\": \"\\uD835\\uDD41\",\n\t\"jopf;\": \"\\uD835\\uDD5B\",\n\t\"Jscr;\": \"\\uD835\\uDCA5\",\n\t\"jscr;\": \"\\uD835\\uDCBF\",\n\t\"Jsercy;\": \"\\u0408\",\n\t\"jsercy;\": \"\\u0458\",\n\t\"Jukcy;\": \"\\u0404\",\n\t\"jukcy;\": \"\\u0454\",\n\t\"Kappa;\": \"\\u039A\",\n\t\"kappa;\": \"\\u03BA\",\n\t\"kappav;\": \"\\u03F0\",\n\t\"Kcedil;\": \"\\u0136\",\n\t\"kcedil;\": \"\\u0137\",\n\t\"Kcy;\": \"\\u041A\",\n\t\"kcy;\": \"\\u043A\",\n\t\"Kfr;\": \"\\uD835\\uDD0E\",\n\t\"kfr;\": \"\\uD835\\uDD28\",\n\t\"kgreen;\": \"\\u0138\",\n\t\"KHcy;\": \"\\u0425\",\n\t\"khcy;\": \"\\u0445\",\n\t\"KJcy;\": \"\\u040C\",\n\t\"kjcy;\": \"\\u045C\",\n\t\"Kopf;\": \"\\uD835\\uDD42\",\n\t\"kopf;\": \"\\uD835\\uDD5C\",\n\t\"Kscr;\": \"\\uD835\\uDCA6\",\n\t\"kscr;\": \"\\uD835\\uDCC0\",\n\t\"lAarr;\": \"\\u21DA\",\n\t\"Lacute;\": \"\\u0139\",\n\t\"lacute;\": \"\\u013A\",\n\t\"laemptyv;\": \"\\u29B4\",\n\t\"lagran;\": \"\\u2112\",\n\t\"Lambda;\": \"\\u039B\",\n\t\"lambda;\": \"\\u03BB\",\n\t\"lang;\": \"\\u27E8\",\n\t\"Lang;\": \"\\u27EA\",\n\t\"langd;\": \"\\u2991\",\n\t\"langle;\": \"\\u27E8\",\n\t\"lap;\": \"\\u2A85\",\n\t\"Laplacetrf;\": \"\\u2112\",\n\t\"laquo;\": \"\\u00AB\",\n\t\"laquo\": \"\\u00AB\",\n\t\"larrb;\": \"\\u21E4\",\n\t\"larrbfs;\": \"\\u291F\",\n\t\"larr;\": \"\\u2190\",\n\t\"Larr;\": \"\\u219E\",\n\t\"lArr;\": \"\\u21D0\",\n\t\"larrfs;\": \"\\u291D\",\n\t\"larrhk;\": \"\\u21A9\",\n\t\"larrlp;\": \"\\u21AB\",\n\t\"larrpl;\": \"\\u2939\",\n\t\"larrsim;\": \"\\u2973\",\n\t\"larrtl;\": \"\\u21A2\",\n\t\"latail;\": \"\\u2919\",\n\t\"lAtail;\": \"\\u291B\",\n\t\"lat;\": \"\\u2AAB\",\n\t\"late;\": \"\\u2AAD\",\n\t\"lates;\": \"\\u2AAD\\uFE00\",\n\t\"lbarr;\": \"\\u290C\",\n\t\"lBarr;\": \"\\u290E\",\n\t\"lbbrk;\": \"\\u2772\",\n\t\"lbrace;\": \"\\u007B\",\n\t\"lbrack;\": \"\\u005B\",\n\t\"lbrke;\": \"\\u298B\",\n\t\"lbrksld;\": \"\\u298F\",\n\t\"lbrkslu;\": \"\\u298D\",\n\t\"Lcaron;\": \"\\u013D\",\n\t\"lcaron;\": \"\\u013E\",\n\t\"Lcedil;\": \"\\u013B\",\n\t\"lcedil;\": \"\\u013C\",\n\t\"lceil;\": \"\\u2308\",\n\t\"lcub;\": \"\\u007B\",\n\t\"Lcy;\": \"\\u041B\",\n\t\"lcy;\": \"\\u043B\",\n\t\"ldca;\": \"\\u2936\",\n\t\"ldquo;\": \"\\u201C\",\n\t\"ldquor;\": \"\\u201E\",\n\t\"ldrdhar;\": \"\\u2967\",\n\t\"ldrushar;\": \"\\u294B\",\n\t\"ldsh;\": \"\\u21B2\",\n\t\"le;\": \"\\u2264\",\n\t\"lE;\": \"\\u2266\",\n\t\"LeftAngleBracket;\": \"\\u27E8\",\n\t\"LeftArrowBar;\": \"\\u21E4\",\n\t\"leftarrow;\": \"\\u2190\",\n\t\"LeftArrow;\": \"\\u2190\",\n\t\"Leftarrow;\": \"\\u21D0\",\n\t\"LeftArrowRightArrow;\": \"\\u21C6\",\n\t\"leftarrowtail;\": \"\\u21A2\",\n\t\"LeftCeiling;\": \"\\u2308\",\n\t\"LeftDoubleBracket;\": \"\\u27E6\",\n\t\"LeftDownTeeVector;\": \"\\u2961\",\n\t\"LeftDownVectorBar;\": \"\\u2959\",\n\t\"LeftDownVector;\": \"\\u21C3\",\n\t\"LeftFloor;\": \"\\u230A\",\n\t\"leftharpoondown;\": \"\\u21BD\",\n\t\"leftharpoonup;\": \"\\u21BC\",\n\t\"leftleftarrows;\": \"\\u21C7\",\n\t\"leftrightarrow;\": \"\\u2194\",\n\t\"LeftRightArrow;\": \"\\u2194\",\n\t\"Leftrightarrow;\": \"\\u21D4\",\n\t\"leftrightarrows;\": \"\\u21C6\",\n\t\"leftrightharpoons;\": \"\\u21CB\",\n\t\"leftrightsquigarrow;\": \"\\u21AD\",\n\t\"LeftRightVector;\": \"\\u294E\",\n\t\"LeftTeeArrow;\": \"\\u21A4\",\n\t\"LeftTee;\": \"\\u22A3\",\n\t\"LeftTeeVector;\": \"\\u295A\",\n\t\"leftthreetimes;\": \"\\u22CB\",\n\t\"LeftTriangleBar;\": \"\\u29CF\",\n\t\"LeftTriangle;\": \"\\u22B2\",\n\t\"LeftTriangleEqual;\": \"\\u22B4\",\n\t\"LeftUpDownVector;\": \"\\u2951\",\n\t\"LeftUpTeeVector;\": \"\\u2960\",\n\t\"LeftUpVectorBar;\": \"\\u2958\",\n\t\"LeftUpVector;\": \"\\u21BF\",\n\t\"LeftVectorBar;\": \"\\u2952\",\n\t\"LeftVector;\": \"\\u21BC\",\n\t\"lEg;\": \"\\u2A8B\",\n\t\"leg;\": \"\\u22DA\",\n\t\"leq;\": \"\\u2264\",\n\t\"leqq;\": \"\\u2266\",\n\t\"leqslant;\": \"\\u2A7D\",\n\t\"lescc;\": \"\\u2AA8\",\n\t\"les;\": \"\\u2A7D\",\n\t\"lesdot;\": \"\\u2A7F\",\n\t\"lesdoto;\": \"\\u2A81\",\n\t\"lesdotor;\": \"\\u2A83\",\n\t\"lesg;\": \"\\u22DA\\uFE00\",\n\t\"lesges;\": \"\\u2A93\",\n\t\"lessapprox;\": \"\\u2A85\",\n\t\"lessdot;\": \"\\u22D6\",\n\t\"lesseqgtr;\": \"\\u22DA\",\n\t\"lesseqqgtr;\": \"\\u2A8B\",\n\t\"LessEqualGreater;\": \"\\u22DA\",\n\t\"LessFullEqual;\": \"\\u2266\",\n\t\"LessGreater;\": \"\\u2276\",\n\t\"lessgtr;\": \"\\u2276\",\n\t\"LessLess;\": \"\\u2AA1\",\n\t\"lesssim;\": \"\\u2272\",\n\t\"LessSlantEqual;\": \"\\u2A7D\",\n\t\"LessTilde;\": \"\\u2272\",\n\t\"lfisht;\": \"\\u297C\",\n\t\"lfloor;\": \"\\u230A\",\n\t\"Lfr;\": \"\\uD835\\uDD0F\",\n\t\"lfr;\": \"\\uD835\\uDD29\",\n\t\"lg;\": \"\\u2276\",\n\t\"lgE;\": \"\\u2A91\",\n\t\"lHar;\": \"\\u2962\",\n\t\"lhard;\": \"\\u21BD\",\n\t\"lharu;\": \"\\u21BC\",\n\t\"lharul;\": \"\\u296A\",\n\t\"lhblk;\": \"\\u2584\",\n\t\"LJcy;\": \"\\u0409\",\n\t\"ljcy;\": \"\\u0459\",\n\t\"llarr;\": \"\\u21C7\",\n\t\"ll;\": \"\\u226A\",\n\t\"Ll;\": \"\\u22D8\",\n\t\"llcorner;\": \"\\u231E\",\n\t\"Lleftarrow;\": \"\\u21DA\",\n\t\"llhard;\": \"\\u296B\",\n\t\"lltri;\": \"\\u25FA\",\n\t\"Lmidot;\": \"\\u013F\",\n\t\"lmidot;\": \"\\u0140\",\n\t\"lmoustache;\": \"\\u23B0\",\n\t\"lmoust;\": \"\\u23B0\",\n\t\"lnap;\": \"\\u2A89\",\n\t\"lnapprox;\": \"\\u2A89\",\n\t\"lne;\": \"\\u2A87\",\n\t\"lnE;\": \"\\u2268\",\n\t\"lneq;\": \"\\u2A87\",\n\t\"lneqq;\": \"\\u2268\",\n\t\"lnsim;\": \"\\u22E6\",\n\t\"loang;\": \"\\u27EC\",\n\t\"loarr;\": \"\\u21FD\",\n\t\"lobrk;\": \"\\u27E6\",\n\t\"longleftarrow;\": \"\\u27F5\",\n\t\"LongLeftArrow;\": \"\\u27F5\",\n\t\"Longleftarrow;\": \"\\u27F8\",\n\t\"longleftrightarrow;\": \"\\u27F7\",\n\t\"LongLeftRightArrow;\": \"\\u27F7\",\n\t\"Longleftrightarrow;\": \"\\u27FA\",\n\t\"longmapsto;\": \"\\u27FC\",\n\t\"longrightarrow;\": \"\\u27F6\",\n\t\"LongRightArrow;\": \"\\u27F6\",\n\t\"Longrightarrow;\": \"\\u27F9\",\n\t\"looparrowleft;\": \"\\u21AB\",\n\t\"looparrowright;\": \"\\u21AC\",\n\t\"lopar;\": \"\\u2985\",\n\t\"Lopf;\": \"\\uD835\\uDD43\",\n\t\"lopf;\": \"\\uD835\\uDD5D\",\n\t\"loplus;\": \"\\u2A2D\",\n\t\"lotimes;\": \"\\u2A34\",\n\t\"lowast;\": \"\\u2217\",\n\t\"lowbar;\": \"\\u005F\",\n\t\"LowerLeftArrow;\": \"\\u2199\",\n\t\"LowerRightArrow;\": \"\\u2198\",\n\t\"loz;\": \"\\u25CA\",\n\t\"lozenge;\": \"\\u25CA\",\n\t\"lozf;\": \"\\u29EB\",\n\t\"lpar;\": \"\\u0028\",\n\t\"lparlt;\": \"\\u2993\",\n\t\"lrarr;\": \"\\u21C6\",\n\t\"lrcorner;\": \"\\u231F\",\n\t\"lrhar;\": \"\\u21CB\",\n\t\"lrhard;\": \"\\u296D\",\n\t\"lrm;\": \"\\u200E\",\n\t\"lrtri;\": \"\\u22BF\",\n\t\"lsaquo;\": \"\\u2039\",\n\t\"lscr;\": \"\\uD835\\uDCC1\",\n\t\"Lscr;\": \"\\u2112\",\n\t\"lsh;\": \"\\u21B0\",\n\t\"Lsh;\": \"\\u21B0\",\n\t\"lsim;\": \"\\u2272\",\n\t\"lsime;\": \"\\u2A8D\",\n\t\"lsimg;\": \"\\u2A8F\",\n\t\"lsqb;\": \"\\u005B\",\n\t\"lsquo;\": \"\\u2018\",\n\t\"lsquor;\": \"\\u201A\",\n\t\"Lstrok;\": \"\\u0141\",\n\t\"lstrok;\": \"\\u0142\",\n\t\"ltcc;\": \"\\u2AA6\",\n\t\"ltcir;\": \"\\u2A79\",\n\t\"lt;\": \"\\u003C\",\n\t\"lt\": \"\\u003C\",\n\t\"LT;\": \"\\u003C\",\n\t\"LT\": \"\\u003C\",\n\t\"Lt;\": \"\\u226A\",\n\t\"ltdot;\": \"\\u22D6\",\n\t\"lthree;\": \"\\u22CB\",\n\t\"ltimes;\": \"\\u22C9\",\n\t\"ltlarr;\": \"\\u2976\",\n\t\"ltquest;\": \"\\u2A7B\",\n\t\"ltri;\": \"\\u25C3\",\n\t\"ltrie;\": \"\\u22B4\",\n\t\"ltrif;\": \"\\u25C2\",\n\t\"ltrPar;\": \"\\u2996\",\n\t\"lurdshar;\": \"\\u294A\",\n\t\"luruhar;\": \"\\u2966\",\n\t\"lvertneqq;\": \"\\u2268\\uFE00\",\n\t\"lvnE;\": \"\\u2268\\uFE00\",\n\t\"macr;\": \"\\u00AF\",\n\t\"macr\": \"\\u00AF\",\n\t\"male;\": \"\\u2642\",\n\t\"malt;\": \"\\u2720\",\n\t\"maltese;\": \"\\u2720\",\n\t\"Map;\": \"\\u2905\",\n\t\"map;\": \"\\u21A6\",\n\t\"mapsto;\": \"\\u21A6\",\n\t\"mapstodown;\": \"\\u21A7\",\n\t\"mapstoleft;\": \"\\u21A4\",\n\t\"mapstoup;\": \"\\u21A5\",\n\t\"marker;\": \"\\u25AE\",\n\t\"mcomma;\": \"\\u2A29\",\n\t\"Mcy;\": \"\\u041C\",\n\t\"mcy;\": \"\\u043C\",\n\t\"mdash;\": \"\\u2014\",\n\t\"mDDot;\": \"\\u223A\",\n\t\"measuredangle;\": \"\\u2221\",\n\t\"MediumSpace;\": \"\\u205F\",\n\t\"Mellintrf;\": \"\\u2133\",\n\t\"Mfr;\": \"\\uD835\\uDD10\",\n\t\"mfr;\": \"\\uD835\\uDD2A\",\n\t\"mho;\": \"\\u2127\",\n\t\"micro;\": \"\\u00B5\",\n\t\"micro\": \"\\u00B5\",\n\t\"midast;\": \"\\u002A\",\n\t\"midcir;\": \"\\u2AF0\",\n\t\"mid;\": \"\\u2223\",\n\t\"middot;\": \"\\u00B7\",\n\t\"middot\": \"\\u00B7\",\n\t\"minusb;\": \"\\u229F\",\n\t\"minus;\": \"\\u2212\",\n\t\"minusd;\": \"\\u2238\",\n\t\"minusdu;\": \"\\u2A2A\",\n\t\"MinusPlus;\": \"\\u2213\",\n\t\"mlcp;\": \"\\u2ADB\",\n\t\"mldr;\": \"\\u2026\",\n\t\"mnplus;\": \"\\u2213\",\n\t\"models;\": \"\\u22A7\",\n\t\"Mopf;\": \"\\uD835\\uDD44\",\n\t\"mopf;\": \"\\uD835\\uDD5E\",\n\t\"mp;\": \"\\u2213\",\n\t\"mscr;\": \"\\uD835\\uDCC2\",\n\t\"Mscr;\": \"\\u2133\",\n\t\"mstpos;\": \"\\u223E\",\n\t\"Mu;\": \"\\u039C\",\n\t\"mu;\": \"\\u03BC\",\n\t\"multimap;\": \"\\u22B8\",\n\t\"mumap;\": \"\\u22B8\",\n\t\"nabla;\": \"\\u2207\",\n\t\"Nacute;\": \"\\u0143\",\n\t\"nacute;\": \"\\u0144\",\n\t\"nang;\": \"\\u2220\\u20D2\",\n\t\"nap;\": \"\\u2249\",\n\t\"napE;\": \"\\u2A70\\u0338\",\n\t\"napid;\": \"\\u224B\\u0338\",\n\t\"napos;\": \"\\u0149\",\n\t\"napprox;\": \"\\u2249\",\n\t\"natural;\": \"\\u266E\",\n\t\"naturals;\": \"\\u2115\",\n\t\"natur;\": \"\\u266E\",\n\t\"nbsp;\": \"\\u00A0\",\n\t\"nbsp\": \"\\u00A0\",\n\t\"nbump;\": \"\\u224E\\u0338\",\n\t\"nbumpe;\": \"\\u224F\\u0338\",\n\t\"ncap;\": \"\\u2A43\",\n\t\"Ncaron;\": \"\\u0147\",\n\t\"ncaron;\": \"\\u0148\",\n\t\"Ncedil;\": \"\\u0145\",\n\t\"ncedil;\": \"\\u0146\",\n\t\"ncong;\": \"\\u2247\",\n\t\"ncongdot;\": \"\\u2A6D\\u0338\",\n\t\"ncup;\": \"\\u2A42\",\n\t\"Ncy;\": \"\\u041D\",\n\t\"ncy;\": \"\\u043D\",\n\t\"ndash;\": \"\\u2013\",\n\t\"nearhk;\": \"\\u2924\",\n\t\"nearr;\": \"\\u2197\",\n\t\"neArr;\": \"\\u21D7\",\n\t\"nearrow;\": \"\\u2197\",\n\t\"ne;\": \"\\u2260\",\n\t\"nedot;\": \"\\u2250\\u0338\",\n\t\"NegativeMediumSpace;\": \"\\u200B\",\n\t\"NegativeThickSpace;\": \"\\u200B\",\n\t\"NegativeThinSpace;\": \"\\u200B\",\n\t\"NegativeVeryThinSpace;\": \"\\u200B\",\n\t\"nequiv;\": \"\\u2262\",\n\t\"nesear;\": \"\\u2928\",\n\t\"nesim;\": \"\\u2242\\u0338\",\n\t\"NestedGreaterGreater;\": \"\\u226B\",\n\t\"NestedLessLess;\": \"\\u226A\",\n\t\"NewLine;\": \"\\u000A\",\n\t\"nexist;\": \"\\u2204\",\n\t\"nexists;\": \"\\u2204\",\n\t\"Nfr;\": \"\\uD835\\uDD11\",\n\t\"nfr;\": \"\\uD835\\uDD2B\",\n\t\"ngE;\": \"\\u2267\\u0338\",\n\t\"nge;\": \"\\u2271\",\n\t\"ngeq;\": \"\\u2271\",\n\t\"ngeqq;\": \"\\u2267\\u0338\",\n\t\"ngeqslant;\": \"\\u2A7E\\u0338\",\n\t\"nges;\": \"\\u2A7E\\u0338\",\n\t\"nGg;\": \"\\u22D9\\u0338\",\n\t\"ngsim;\": \"\\u2275\",\n\t\"nGt;\": \"\\u226B\\u20D2\",\n\t\"ngt;\": \"\\u226F\",\n\t\"ngtr;\": \"\\u226F\",\n\t\"nGtv;\": \"\\u226B\\u0338\",\n\t\"nharr;\": \"\\u21AE\",\n\t\"nhArr;\": \"\\u21CE\",\n\t\"nhpar;\": \"\\u2AF2\",\n\t\"ni;\": \"\\u220B\",\n\t\"nis;\": \"\\u22FC\",\n\t\"nisd;\": \"\\u22FA\",\n\t\"niv;\": \"\\u220B\",\n\t\"NJcy;\": \"\\u040A\",\n\t\"njcy;\": \"\\u045A\",\n\t\"nlarr;\": \"\\u219A\",\n\t\"nlArr;\": \"\\u21CD\",\n\t\"nldr;\": \"\\u2025\",\n\t\"nlE;\": \"\\u2266\\u0338\",\n\t\"nle;\": \"\\u2270\",\n\t\"nleftarrow;\": \"\\u219A\",\n\t\"nLeftarrow;\": \"\\u21CD\",\n\t\"nleftrightarrow;\": \"\\u21AE\",\n\t\"nLeftrightarrow;\": \"\\u21CE\",\n\t\"nleq;\": \"\\u2270\",\n\t\"nleqq;\": \"\\u2266\\u0338\",\n\t\"nleqslant;\": \"\\u2A7D\\u0338\",\n\t\"nles;\": \"\\u2A7D\\u0338\",\n\t\"nless;\": \"\\u226E\",\n\t\"nLl;\": \"\\u22D8\\u0338\",\n\t\"nlsim;\": \"\\u2274\",\n\t\"nLt;\": \"\\u226A\\u20D2\",\n\t\"nlt;\": \"\\u226E\",\n\t\"nltri;\": \"\\u22EA\",\n\t\"nltrie;\": \"\\u22EC\",\n\t\"nLtv;\": \"\\u226A\\u0338\",\n\t\"nmid;\": \"\\u2224\",\n\t\"NoBreak;\": \"\\u2060\",\n\t\"NonBreakingSpace;\": \"\\u00A0\",\n\t\"nopf;\": \"\\uD835\\uDD5F\",\n\t\"Nopf;\": \"\\u2115\",\n\t\"Not;\": \"\\u2AEC\",\n\t\"not;\": \"\\u00AC\",\n\t\"not\": \"\\u00AC\",\n\t\"NotCongruent;\": \"\\u2262\",\n\t\"NotCupCap;\": \"\\u226D\",\n\t\"NotDoubleVerticalBar;\": \"\\u2226\",\n\t\"NotElement;\": \"\\u2209\",\n\t\"NotEqual;\": \"\\u2260\",\n\t\"NotEqualTilde;\": \"\\u2242\\u0338\",\n\t\"NotExists;\": \"\\u2204\",\n\t\"NotGreater;\": \"\\u226F\",\n\t\"NotGreaterEqual;\": \"\\u2271\",\n\t\"NotGreaterFullEqual;\": \"\\u2267\\u0338\",\n\t\"NotGreaterGreater;\": \"\\u226B\\u0338\",\n\t\"NotGreaterLess;\": \"\\u2279\",\n\t\"NotGreaterSlantEqual;\": \"\\u2A7E\\u0338\",\n\t\"NotGreaterTilde;\": \"\\u2275\",\n\t\"NotHumpDownHump;\": \"\\u224E\\u0338\",\n\t\"NotHumpEqual;\": \"\\u224F\\u0338\",\n\t\"notin;\": \"\\u2209\",\n\t\"notindot;\": \"\\u22F5\\u0338\",\n\t\"notinE;\": \"\\u22F9\\u0338\",\n\t\"notinva;\": \"\\u2209\",\n\t\"notinvb;\": \"\\u22F7\",\n\t\"notinvc;\": \"\\u22F6\",\n\t\"NotLeftTriangleBar;\": \"\\u29CF\\u0338\",\n\t\"NotLeftTriangle;\": \"\\u22EA\",\n\t\"NotLeftTriangleEqual;\": \"\\u22EC\",\n\t\"NotLess;\": \"\\u226E\",\n\t\"NotLessEqual;\": \"\\u2270\",\n\t\"NotLessGreater;\": \"\\u2278\",\n\t\"NotLessLess;\": \"\\u226A\\u0338\",\n\t\"NotLessSlantEqual;\": \"\\u2A7D\\u0338\",\n\t\"NotLessTilde;\": \"\\u2274\",\n\t\"NotNestedGreaterGreater;\": \"\\u2AA2\\u0338\",\n\t\"NotNestedLessLess;\": \"\\u2AA1\\u0338\",\n\t\"notni;\": \"\\u220C\",\n\t\"notniva;\": \"\\u220C\",\n\t\"notnivb;\": \"\\u22FE\",\n\t\"notnivc;\": \"\\u22FD\",\n\t\"NotPrecedes;\": \"\\u2280\",\n\t\"NotPrecedesEqual;\": \"\\u2AAF\\u0338\",\n\t\"NotPrecedesSlantEqual;\": \"\\u22E0\",\n\t\"NotReverseElement;\": \"\\u220C\",\n\t\"NotRightTriangleBar;\": \"\\u29D0\\u0338\",\n\t\"NotRightTriangle;\": \"\\u22EB\",\n\t\"NotRightTriangleEqual;\": \"\\u22ED\",\n\t\"NotSquareSubset;\": \"\\u228F\\u0338\",\n\t\"NotSquareSubsetEqual;\": \"\\u22E2\",\n\t\"NotSquareSuperset;\": \"\\u2290\\u0338\",\n\t\"NotSquareSupersetEqual;\": \"\\u22E3\",\n\t\"NotSubset;\": \"\\u2282\\u20D2\",\n\t\"NotSubsetEqual;\": \"\\u2288\",\n\t\"NotSucceeds;\": \"\\u2281\",\n\t\"NotSucceedsEqual;\": \"\\u2AB0\\u0338\",\n\t\"NotSucceedsSlantEqual;\": \"\\u22E1\",\n\t\"NotSucceedsTilde;\": \"\\u227F\\u0338\",\n\t\"NotSuperset;\": \"\\u2283\\u20D2\",\n\t\"NotSupersetEqual;\": \"\\u2289\",\n\t\"NotTilde;\": \"\\u2241\",\n\t\"NotTildeEqual;\": \"\\u2244\",\n\t\"NotTildeFullEqual;\": \"\\u2247\",\n\t\"NotTildeTilde;\": \"\\u2249\",\n\t\"NotVerticalBar;\": \"\\u2224\",\n\t\"nparallel;\": \"\\u2226\",\n\t\"npar;\": \"\\u2226\",\n\t\"nparsl;\": \"\\u2AFD\\u20E5\",\n\t\"npart;\": \"\\u2202\\u0338\",\n\t\"npolint;\": \"\\u2A14\",\n\t\"npr;\": \"\\u2280\",\n\t\"nprcue;\": \"\\u22E0\",\n\t\"nprec;\": \"\\u2280\",\n\t\"npreceq;\": \"\\u2AAF\\u0338\",\n\t\"npre;\": \"\\u2AAF\\u0338\",\n\t\"nrarrc;\": \"\\u2933\\u0338\",\n\t\"nrarr;\": \"\\u219B\",\n\t\"nrArr;\": \"\\u21CF\",\n\t\"nrarrw;\": \"\\u219D\\u0338\",\n\t\"nrightarrow;\": \"\\u219B\",\n\t\"nRightarrow;\": \"\\u21CF\",\n\t\"nrtri;\": \"\\u22EB\",\n\t\"nrtrie;\": \"\\u22ED\",\n\t\"nsc;\": \"\\u2281\",\n\t\"nsccue;\": \"\\u22E1\",\n\t\"nsce;\": \"\\u2AB0\\u0338\",\n\t\"Nscr;\": \"\\uD835\\uDCA9\",\n\t\"nscr;\": \"\\uD835\\uDCC3\",\n\t\"nshortmid;\": \"\\u2224\",\n\t\"nshortparallel;\": \"\\u2226\",\n\t\"nsim;\": \"\\u2241\",\n\t\"nsime;\": \"\\u2244\",\n\t\"nsimeq;\": \"\\u2244\",\n\t\"nsmid;\": \"\\u2224\",\n\t\"nspar;\": \"\\u2226\",\n\t\"nsqsube;\": \"\\u22E2\",\n\t\"nsqsupe;\": \"\\u22E3\",\n\t\"nsub;\": \"\\u2284\",\n\t\"nsubE;\": \"\\u2AC5\\u0338\",\n\t\"nsube;\": \"\\u2288\",\n\t\"nsubset;\": \"\\u2282\\u20D2\",\n\t\"nsubseteq;\": \"\\u2288\",\n\t\"nsubseteqq;\": \"\\u2AC5\\u0338\",\n\t\"nsucc;\": \"\\u2281\",\n\t\"nsucceq;\": \"\\u2AB0\\u0338\",\n\t\"nsup;\": \"\\u2285\",\n\t\"nsupE;\": \"\\u2AC6\\u0338\",\n\t\"nsupe;\": \"\\u2289\",\n\t\"nsupset;\": \"\\u2283\\u20D2\",\n\t\"nsupseteq;\": \"\\u2289\",\n\t\"nsupseteqq;\": \"\\u2AC6\\u0338\",\n\t\"ntgl;\": \"\\u2279\",\n\t\"Ntilde;\": \"\\u00D1\",\n\t\"Ntilde\": \"\\u00D1\",\n\t\"ntilde;\": \"\\u00F1\",\n\t\"ntilde\": \"\\u00F1\",\n\t\"ntlg;\": \"\\u2278\",\n\t\"ntriangleleft;\": \"\\u22EA\",\n\t\"ntrianglelefteq;\": \"\\u22EC\",\n\t\"ntriangleright;\": \"\\u22EB\",\n\t\"ntrianglerighteq;\": \"\\u22ED\",\n\t\"Nu;\": \"\\u039D\",\n\t\"nu;\": \"\\u03BD\",\n\t\"num;\": \"\\u0023\",\n\t\"numero;\": \"\\u2116\",\n\t\"numsp;\": \"\\u2007\",\n\t\"nvap;\": \"\\u224D\\u20D2\",\n\t\"nvdash;\": \"\\u22AC\",\n\t\"nvDash;\": \"\\u22AD\",\n\t\"nVdash;\": \"\\u22AE\",\n\t\"nVDash;\": \"\\u22AF\",\n\t\"nvge;\": \"\\u2265\\u20D2\",\n\t\"nvgt;\": \"\\u003E\\u20D2\",\n\t\"nvHarr;\": \"\\u2904\",\n\t\"nvinfin;\": \"\\u29DE\",\n\t\"nvlArr;\": \"\\u2902\",\n\t\"nvle;\": \"\\u2264\\u20D2\",\n\t\"nvlt;\": \"\\u003C\\u20D2\",\n\t\"nvltrie;\": \"\\u22B4\\u20D2\",\n\t\"nvrArr;\": \"\\u2903\",\n\t\"nvrtrie;\": \"\\u22B5\\u20D2\",\n\t\"nvsim;\": \"\\u223C\\u20D2\",\n\t\"nwarhk;\": \"\\u2923\",\n\t\"nwarr;\": \"\\u2196\",\n\t\"nwArr;\": \"\\u21D6\",\n\t\"nwarrow;\": \"\\u2196\",\n\t\"nwnear;\": \"\\u2927\",\n\t\"Oacute;\": \"\\u00D3\",\n\t\"Oacute\": \"\\u00D3\",\n\t\"oacute;\": \"\\u00F3\",\n\t\"oacute\": \"\\u00F3\",\n\t\"oast;\": \"\\u229B\",\n\t\"Ocirc;\": \"\\u00D4\",\n\t\"Ocirc\": \"\\u00D4\",\n\t\"ocirc;\": \"\\u00F4\",\n\t\"ocirc\": \"\\u00F4\",\n\t\"ocir;\": \"\\u229A\",\n\t\"Ocy;\": \"\\u041E\",\n\t\"ocy;\": \"\\u043E\",\n\t\"odash;\": \"\\u229D\",\n\t\"Odblac;\": \"\\u0150\",\n\t\"odblac;\": \"\\u0151\",\n\t\"odiv;\": \"\\u2A38\",\n\t\"odot;\": \"\\u2299\",\n\t\"odsold;\": \"\\u29BC\",\n\t\"OElig;\": \"\\u0152\",\n\t\"oelig;\": \"\\u0153\",\n\t\"ofcir;\": \"\\u29BF\",\n\t\"Ofr;\": \"\\uD835\\uDD12\",\n\t\"ofr;\": \"\\uD835\\uDD2C\",\n\t\"ogon;\": \"\\u02DB\",\n\t\"Ograve;\": \"\\u00D2\",\n\t\"Ograve\": \"\\u00D2\",\n\t\"ograve;\": \"\\u00F2\",\n\t\"ograve\": \"\\u00F2\",\n\t\"ogt;\": \"\\u29C1\",\n\t\"ohbar;\": \"\\u29B5\",\n\t\"ohm;\": \"\\u03A9\",\n\t\"oint;\": \"\\u222E\",\n\t\"olarr;\": \"\\u21BA\",\n\t\"olcir;\": \"\\u29BE\",\n\t\"olcross;\": \"\\u29BB\",\n\t\"oline;\": \"\\u203E\",\n\t\"olt;\": \"\\u29C0\",\n\t\"Omacr;\": \"\\u014C\",\n\t\"omacr;\": \"\\u014D\",\n\t\"Omega;\": \"\\u03A9\",\n\t\"omega;\": \"\\u03C9\",\n\t\"Omicron;\": \"\\u039F\",\n\t\"omicron;\": \"\\u03BF\",\n\t\"omid;\": \"\\u29B6\",\n\t\"ominus;\": \"\\u2296\",\n\t\"Oopf;\": \"\\uD835\\uDD46\",\n\t\"oopf;\": \"\\uD835\\uDD60\",\n\t\"opar;\": \"\\u29B7\",\n\t\"OpenCurlyDoubleQuote;\": \"\\u201C\",\n\t\"OpenCurlyQuote;\": \"\\u2018\",\n\t\"operp;\": \"\\u29B9\",\n\t\"oplus;\": \"\\u2295\",\n\t\"orarr;\": \"\\u21BB\",\n\t\"Or;\": \"\\u2A54\",\n\t\"or;\": \"\\u2228\",\n\t\"ord;\": \"\\u2A5D\",\n\t\"order;\": \"\\u2134\",\n\t\"orderof;\": \"\\u2134\",\n\t\"ordf;\": \"\\u00AA\",\n\t\"ordf\": \"\\u00AA\",\n\t\"ordm;\": \"\\u00BA\",\n\t\"ordm\": \"\\u00BA\",\n\t\"origof;\": \"\\u22B6\",\n\t\"oror;\": \"\\u2A56\",\n\t\"orslope;\": \"\\u2A57\",\n\t\"orv;\": \"\\u2A5B\",\n\t\"oS;\": \"\\u24C8\",\n\t\"Oscr;\": \"\\uD835\\uDCAA\",\n\t\"oscr;\": \"\\u2134\",\n\t\"Oslash;\": \"\\u00D8\",\n\t\"Oslash\": \"\\u00D8\",\n\t\"oslash;\": \"\\u00F8\",\n\t\"oslash\": \"\\u00F8\",\n\t\"osol;\": \"\\u2298\",\n\t\"Otilde;\": \"\\u00D5\",\n\t\"Otilde\": \"\\u00D5\",\n\t\"otilde;\": \"\\u00F5\",\n\t\"otilde\": \"\\u00F5\",\n\t\"otimesas;\": \"\\u2A36\",\n\t\"Otimes;\": \"\\u2A37\",\n\t\"otimes;\": \"\\u2297\",\n\t\"Ouml;\": \"\\u00D6\",\n\t\"Ouml\": \"\\u00D6\",\n\t\"ouml;\": \"\\u00F6\",\n\t\"ouml\": \"\\u00F6\",\n\t\"ovbar;\": \"\\u233D\",\n\t\"OverBar;\": \"\\u203E\",\n\t\"OverBrace;\": \"\\u23DE\",\n\t\"OverBracket;\": \"\\u23B4\",\n\t\"OverParenthesis;\": \"\\u23DC\",\n\t\"para;\": \"\\u00B6\",\n\t\"para\": \"\\u00B6\",\n\t\"parallel;\": \"\\u2225\",\n\t\"par;\": \"\\u2225\",\n\t\"parsim;\": \"\\u2AF3\",\n\t\"parsl;\": \"\\u2AFD\",\n\t\"part;\": \"\\u2202\",\n\t\"PartialD;\": \"\\u2202\",\n\t\"Pcy;\": \"\\u041F\",\n\t\"pcy;\": \"\\u043F\",\n\t\"percnt;\": \"\\u0025\",\n\t\"period;\": \"\\u002E\",\n\t\"permil;\": \"\\u2030\",\n\t\"perp;\": \"\\u22A5\",\n\t\"pertenk;\": \"\\u2031\",\n\t\"Pfr;\": \"\\uD835\\uDD13\",\n\t\"pfr;\": \"\\uD835\\uDD2D\",\n\t\"Phi;\": \"\\u03A6\",\n\t\"phi;\": \"\\u03C6\",\n\t\"phiv;\": \"\\u03D5\",\n\t\"phmmat;\": \"\\u2133\",\n\t\"phone;\": \"\\u260E\",\n\t\"Pi;\": \"\\u03A0\",\n\t\"pi;\": \"\\u03C0\",\n\t\"pitchfork;\": \"\\u22D4\",\n\t\"piv;\": \"\\u03D6\",\n\t\"planck;\": \"\\u210F\",\n\t\"planckh;\": \"\\u210E\",\n\t\"plankv;\": \"\\u210F\",\n\t\"plusacir;\": \"\\u2A23\",\n\t\"plusb;\": \"\\u229E\",\n\t\"pluscir;\": \"\\u2A22\",\n\t\"plus;\": \"\\u002B\",\n\t\"plusdo;\": \"\\u2214\",\n\t\"plusdu;\": \"\\u2A25\",\n\t\"pluse;\": \"\\u2A72\",\n\t\"PlusMinus;\": \"\\u00B1\",\n\t\"plusmn;\": \"\\u00B1\",\n\t\"plusmn\": \"\\u00B1\",\n\t\"plussim;\": \"\\u2A26\",\n\t\"plustwo;\": \"\\u2A27\",\n\t\"pm;\": \"\\u00B1\",\n\t\"Poincareplane;\": \"\\u210C\",\n\t\"pointint;\": \"\\u2A15\",\n\t\"popf;\": \"\\uD835\\uDD61\",\n\t\"Popf;\": \"\\u2119\",\n\t\"pound;\": \"\\u00A3\",\n\t\"pound\": \"\\u00A3\",\n\t\"prap;\": \"\\u2AB7\",\n\t\"Pr;\": \"\\u2ABB\",\n\t\"pr;\": \"\\u227A\",\n\t\"prcue;\": \"\\u227C\",\n\t\"precapprox;\": \"\\u2AB7\",\n\t\"prec;\": \"\\u227A\",\n\t\"preccurlyeq;\": \"\\u227C\",\n\t\"Precedes;\": \"\\u227A\",\n\t\"PrecedesEqual;\": \"\\u2AAF\",\n\t\"PrecedesSlantEqual;\": \"\\u227C\",\n\t\"PrecedesTilde;\": \"\\u227E\",\n\t\"preceq;\": \"\\u2AAF\",\n\t\"precnapprox;\": \"\\u2AB9\",\n\t\"precneqq;\": \"\\u2AB5\",\n\t\"precnsim;\": \"\\u22E8\",\n\t\"pre;\": \"\\u2AAF\",\n\t\"prE;\": \"\\u2AB3\",\n\t\"precsim;\": \"\\u227E\",\n\t\"prime;\": \"\\u2032\",\n\t\"Prime;\": \"\\u2033\",\n\t\"primes;\": \"\\u2119\",\n\t\"prnap;\": \"\\u2AB9\",\n\t\"prnE;\": \"\\u2AB5\",\n\t\"prnsim;\": \"\\u22E8\",\n\t\"prod;\": \"\\u220F\",\n\t\"Product;\": \"\\u220F\",\n\t\"profalar;\": \"\\u232E\",\n\t\"profline;\": \"\\u2312\",\n\t\"profsurf;\": \"\\u2313\",\n\t\"prop;\": \"\\u221D\",\n\t\"Proportional;\": \"\\u221D\",\n\t\"Proportion;\": \"\\u2237\",\n\t\"propto;\": \"\\u221D\",\n\t\"prsim;\": \"\\u227E\",\n\t\"prurel;\": \"\\u22B0\",\n\t\"Pscr;\": \"\\uD835\\uDCAB\",\n\t\"pscr;\": \"\\uD835\\uDCC5\",\n\t\"Psi;\": \"\\u03A8\",\n\t\"psi;\": \"\\u03C8\",\n\t\"puncsp;\": \"\\u2008\",\n\t\"Qfr;\": \"\\uD835\\uDD14\",\n\t\"qfr;\": \"\\uD835\\uDD2E\",\n\t\"qint;\": \"\\u2A0C\",\n\t\"qopf;\": \"\\uD835\\uDD62\",\n\t\"Qopf;\": \"\\u211A\",\n\t\"qprime;\": \"\\u2057\",\n\t\"Qscr;\": \"\\uD835\\uDCAC\",\n\t\"qscr;\": \"\\uD835\\uDCC6\",\n\t\"quaternions;\": \"\\u210D\",\n\t\"quatint;\": \"\\u2A16\",\n\t\"quest;\": \"\\u003F\",\n\t\"questeq;\": \"\\u225F\",\n\t\"quot;\": \"\\u0022\",\n\t\"quot\": \"\\u0022\",\n\t\"QUOT;\": \"\\u0022\",\n\t\"QUOT\": \"\\u0022\",\n\t\"rAarr;\": \"\\u21DB\",\n\t\"race;\": \"\\u223D\\u0331\",\n\t\"Racute;\": \"\\u0154\",\n\t\"racute;\": \"\\u0155\",\n\t\"radic;\": \"\\u221A\",\n\t\"raemptyv;\": \"\\u29B3\",\n\t\"rang;\": \"\\u27E9\",\n\t\"Rang;\": \"\\u27EB\",\n\t\"rangd;\": \"\\u2992\",\n\t\"range;\": \"\\u29A5\",\n\t\"rangle;\": \"\\u27E9\",\n\t\"raquo;\": \"\\u00BB\",\n\t\"raquo\": \"\\u00BB\",\n\t\"rarrap;\": \"\\u2975\",\n\t\"rarrb;\": \"\\u21E5\",\n\t\"rarrbfs;\": \"\\u2920\",\n\t\"rarrc;\": \"\\u2933\",\n\t\"rarr;\": \"\\u2192\",\n\t\"Rarr;\": \"\\u21A0\",\n\t\"rArr;\": \"\\u21D2\",\n\t\"rarrfs;\": \"\\u291E\",\n\t\"rarrhk;\": \"\\u21AA\",\n\t\"rarrlp;\": \"\\u21AC\",\n\t\"rarrpl;\": \"\\u2945\",\n\t\"rarrsim;\": \"\\u2974\",\n\t\"Rarrtl;\": \"\\u2916\",\n\t\"rarrtl;\": \"\\u21A3\",\n\t\"rarrw;\": \"\\u219D\",\n\t\"ratail;\": \"\\u291A\",\n\t\"rAtail;\": \"\\u291C\",\n\t\"ratio;\": \"\\u2236\",\n\t\"rationals;\": \"\\u211A\",\n\t\"rbarr;\": \"\\u290D\",\n\t\"rBarr;\": \"\\u290F\",\n\t\"RBarr;\": \"\\u2910\",\n\t\"rbbrk;\": \"\\u2773\",\n\t\"rbrace;\": \"\\u007D\",\n\t\"rbrack;\": \"\\u005D\",\n\t\"rbrke;\": \"\\u298C\",\n\t\"rbrksld;\": \"\\u298E\",\n\t\"rbrkslu;\": \"\\u2990\",\n\t\"Rcaron;\": \"\\u0158\",\n\t\"rcaron;\": \"\\u0159\",\n\t\"Rcedil;\": \"\\u0156\",\n\t\"rcedil;\": \"\\u0157\",\n\t\"rceil;\": \"\\u2309\",\n\t\"rcub;\": \"\\u007D\",\n\t\"Rcy;\": \"\\u0420\",\n\t\"rcy;\": \"\\u0440\",\n\t\"rdca;\": \"\\u2937\",\n\t\"rdldhar;\": \"\\u2969\",\n\t\"rdquo;\": \"\\u201D\",\n\t\"rdquor;\": \"\\u201D\",\n\t\"rdsh;\": \"\\u21B3\",\n\t\"real;\": \"\\u211C\",\n\t\"realine;\": \"\\u211B\",\n\t\"realpart;\": \"\\u211C\",\n\t\"reals;\": \"\\u211D\",\n\t\"Re;\": \"\\u211C\",\n\t\"rect;\": \"\\u25AD\",\n\t\"reg;\": \"\\u00AE\",\n\t\"reg\": \"\\u00AE\",\n\t\"REG;\": \"\\u00AE\",\n\t\"REG\": \"\\u00AE\",\n\t\"ReverseElement;\": \"\\u220B\",\n\t\"ReverseEquilibrium;\": \"\\u21CB\",\n\t\"ReverseUpEquilibrium;\": \"\\u296F\",\n\t\"rfisht;\": \"\\u297D\",\n\t\"rfloor;\": \"\\u230B\",\n\t\"rfr;\": \"\\uD835\\uDD2F\",\n\t\"Rfr;\": \"\\u211C\",\n\t\"rHar;\": \"\\u2964\",\n\t\"rhard;\": \"\\u21C1\",\n\t\"rharu;\": \"\\u21C0\",\n\t\"rharul;\": \"\\u296C\",\n\t\"Rho;\": \"\\u03A1\",\n\t\"rho;\": \"\\u03C1\",\n\t\"rhov;\": \"\\u03F1\",\n\t\"RightAngleBracket;\": \"\\u27E9\",\n\t\"RightArrowBar;\": \"\\u21E5\",\n\t\"rightarrow;\": \"\\u2192\",\n\t\"RightArrow;\": \"\\u2192\",\n\t\"Rightarrow;\": \"\\u21D2\",\n\t\"RightArrowLeftArrow;\": \"\\u21C4\",\n\t\"rightarrowtail;\": \"\\u21A3\",\n\t\"RightCeiling;\": \"\\u2309\",\n\t\"RightDoubleBracket;\": \"\\u27E7\",\n\t\"RightDownTeeVector;\": \"\\u295D\",\n\t\"RightDownVectorBar;\": \"\\u2955\",\n\t\"RightDownVector;\": \"\\u21C2\",\n\t\"RightFloor;\": \"\\u230B\",\n\t\"rightharpoondown;\": \"\\u21C1\",\n\t\"rightharpoonup;\": \"\\u21C0\",\n\t\"rightleftarrows;\": \"\\u21C4\",\n\t\"rightleftharpoons;\": \"\\u21CC\",\n\t\"rightrightarrows;\": \"\\u21C9\",\n\t\"rightsquigarrow;\": \"\\u219D\",\n\t\"RightTeeArrow;\": \"\\u21A6\",\n\t\"RightTee;\": \"\\u22A2\",\n\t\"RightTeeVector;\": \"\\u295B\",\n\t\"rightthreetimes;\": \"\\u22CC\",\n\t\"RightTriangleBar;\": \"\\u29D0\",\n\t\"RightTriangle;\": \"\\u22B3\",\n\t\"RightTriangleEqual;\": \"\\u22B5\",\n\t\"RightUpDownVector;\": \"\\u294F\",\n\t\"RightUpTeeVector;\": \"\\u295C\",\n\t\"RightUpVectorBar;\": \"\\u2954\",\n\t\"RightUpVector;\": \"\\u21BE\",\n\t\"RightVectorBar;\": \"\\u2953\",\n\t\"RightVector;\": \"\\u21C0\",\n\t\"ring;\": \"\\u02DA\",\n\t\"risingdotseq;\": \"\\u2253\",\n\t\"rlarr;\": \"\\u21C4\",\n\t\"rlhar;\": \"\\u21CC\",\n\t\"rlm;\": \"\\u200F\",\n\t\"rmoustache;\": \"\\u23B1\",\n\t\"rmoust;\": \"\\u23B1\",\n\t\"rnmid;\": \"\\u2AEE\",\n\t\"roang;\": \"\\u27ED\",\n\t\"roarr;\": \"\\u21FE\",\n\t\"robrk;\": \"\\u27E7\",\n\t\"ropar;\": \"\\u2986\",\n\t\"ropf;\": \"\\uD835\\uDD63\",\n\t\"Ropf;\": \"\\u211D\",\n\t\"roplus;\": \"\\u2A2E\",\n\t\"rotimes;\": \"\\u2A35\",\n\t\"RoundImplies;\": \"\\u2970\",\n\t\"rpar;\": \"\\u0029\",\n\t\"rpargt;\": \"\\u2994\",\n\t\"rppolint;\": \"\\u2A12\",\n\t\"rrarr;\": \"\\u21C9\",\n\t\"Rrightarrow;\": \"\\u21DB\",\n\t\"rsaquo;\": \"\\u203A\",\n\t\"rscr;\": \"\\uD835\\uDCC7\",\n\t\"Rscr;\": \"\\u211B\",\n\t\"rsh;\": \"\\u21B1\",\n\t\"Rsh;\": \"\\u21B1\",\n\t\"rsqb;\": \"\\u005D\",\n\t\"rsquo;\": \"\\u2019\",\n\t\"rsquor;\": \"\\u2019\",\n\t\"rthree;\": \"\\u22CC\",\n\t\"rtimes;\": \"\\u22CA\",\n\t\"rtri;\": \"\\u25B9\",\n\t\"rtrie;\": \"\\u22B5\",\n\t\"rtrif;\": \"\\u25B8\",\n\t\"rtriltri;\": \"\\u29CE\",\n\t\"RuleDelayed;\": \"\\u29F4\",\n\t\"ruluhar;\": \"\\u2968\",\n\t\"rx;\": \"\\u211E\",\n\t\"Sacute;\": \"\\u015A\",\n\t\"sacute;\": \"\\u015B\",\n\t\"sbquo;\": \"\\u201A\",\n\t\"scap;\": \"\\u2AB8\",\n\t\"Scaron;\": \"\\u0160\",\n\t\"scaron;\": \"\\u0161\",\n\t\"Sc;\": \"\\u2ABC\",\n\t\"sc;\": \"\\u227B\",\n\t\"sccue;\": \"\\u227D\",\n\t\"sce;\": \"\\u2AB0\",\n\t\"scE;\": \"\\u2AB4\",\n\t\"Scedil;\": \"\\u015E\",\n\t\"scedil;\": \"\\u015F\",\n\t\"Scirc;\": \"\\u015C\",\n\t\"scirc;\": \"\\u015D\",\n\t\"scnap;\": \"\\u2ABA\",\n\t\"scnE;\": \"\\u2AB6\",\n\t\"scnsim;\": \"\\u22E9\",\n\t\"scpolint;\": \"\\u2A13\",\n\t\"scsim;\": \"\\u227F\",\n\t\"Scy;\": \"\\u0421\",\n\t\"scy;\": \"\\u0441\",\n\t\"sdotb;\": \"\\u22A1\",\n\t\"sdot;\": \"\\u22C5\",\n\t\"sdote;\": \"\\u2A66\",\n\t\"searhk;\": \"\\u2925\",\n\t\"searr;\": \"\\u2198\",\n\t\"seArr;\": \"\\u21D8\",\n\t\"searrow;\": \"\\u2198\",\n\t\"sect;\": \"\\u00A7\",\n\t\"sect\": \"\\u00A7\",\n\t\"semi;\": \"\\u003B\",\n\t\"seswar;\": \"\\u2929\",\n\t\"setminus;\": \"\\u2216\",\n\t\"setmn;\": \"\\u2216\",\n\t\"sext;\": \"\\u2736\",\n\t\"Sfr;\": \"\\uD835\\uDD16\",\n\t\"sfr;\": \"\\uD835\\uDD30\",\n\t\"sfrown;\": \"\\u2322\",\n\t\"sharp;\": \"\\u266F\",\n\t\"SHCHcy;\": \"\\u0429\",\n\t\"shchcy;\": \"\\u0449\",\n\t\"SHcy;\": \"\\u0428\",\n\t\"shcy;\": \"\\u0448\",\n\t\"ShortDownArrow;\": \"\\u2193\",\n\t\"ShortLeftArrow;\": \"\\u2190\",\n\t\"shortmid;\": \"\\u2223\",\n\t\"shortparallel;\": \"\\u2225\",\n\t\"ShortRightArrow;\": \"\\u2192\",\n\t\"ShortUpArrow;\": \"\\u2191\",\n\t\"shy;\": \"\\u00AD\",\n\t\"shy\": \"\\u00AD\",\n\t\"Sigma;\": \"\\u03A3\",\n\t\"sigma;\": \"\\u03C3\",\n\t\"sigmaf;\": \"\\u03C2\",\n\t\"sigmav;\": \"\\u03C2\",\n\t\"sim;\": \"\\u223C\",\n\t\"simdot;\": \"\\u2A6A\",\n\t\"sime;\": \"\\u2243\",\n\t\"simeq;\": \"\\u2243\",\n\t\"simg;\": \"\\u2A9E\",\n\t\"simgE;\": \"\\u2AA0\",\n\t\"siml;\": \"\\u2A9D\",\n\t\"simlE;\": \"\\u2A9F\",\n\t\"simne;\": \"\\u2246\",\n\t\"simplus;\": \"\\u2A24\",\n\t\"simrarr;\": \"\\u2972\",\n\t\"slarr;\": \"\\u2190\",\n\t\"SmallCircle;\": \"\\u2218\",\n\t\"smallsetminus;\": \"\\u2216\",\n\t\"smashp;\": \"\\u2A33\",\n\t\"smeparsl;\": \"\\u29E4\",\n\t\"smid;\": \"\\u2223\",\n\t\"smile;\": \"\\u2323\",\n\t\"smt;\": \"\\u2AAA\",\n\t\"smte;\": \"\\u2AAC\",\n\t\"smtes;\": \"\\u2AAC\\uFE00\",\n\t\"SOFTcy;\": \"\\u042C\",\n\t\"softcy;\": \"\\u044C\",\n\t\"solbar;\": \"\\u233F\",\n\t\"solb;\": \"\\u29C4\",\n\t\"sol;\": \"\\u002F\",\n\t\"Sopf;\": \"\\uD835\\uDD4A\",\n\t\"sopf;\": \"\\uD835\\uDD64\",\n\t\"spades;\": \"\\u2660\",\n\t\"spadesuit;\": \"\\u2660\",\n\t\"spar;\": \"\\u2225\",\n\t\"sqcap;\": \"\\u2293\",\n\t\"sqcaps;\": \"\\u2293\\uFE00\",\n\t\"sqcup;\": \"\\u2294\",\n\t\"sqcups;\": \"\\u2294\\uFE00\",\n\t\"Sqrt;\": \"\\u221A\",\n\t\"sqsub;\": \"\\u228F\",\n\t\"sqsube;\": \"\\u2291\",\n\t\"sqsubset;\": \"\\u228F\",\n\t\"sqsubseteq;\": \"\\u2291\",\n\t\"sqsup;\": \"\\u2290\",\n\t\"sqsupe;\": \"\\u2292\",\n\t\"sqsupset;\": \"\\u2290\",\n\t\"sqsupseteq;\": \"\\u2292\",\n\t\"square;\": \"\\u25A1\",\n\t\"Square;\": \"\\u25A1\",\n\t\"SquareIntersection;\": \"\\u2293\",\n\t\"SquareSubset;\": \"\\u228F\",\n\t\"SquareSubsetEqual;\": \"\\u2291\",\n\t\"SquareSuperset;\": \"\\u2290\",\n\t\"SquareSupersetEqual;\": \"\\u2292\",\n\t\"SquareUnion;\": \"\\u2294\",\n\t\"squarf;\": \"\\u25AA\",\n\t\"squ;\": \"\\u25A1\",\n\t\"squf;\": \"\\u25AA\",\n\t\"srarr;\": \"\\u2192\",\n\t\"Sscr;\": \"\\uD835\\uDCAE\",\n\t\"sscr;\": \"\\uD835\\uDCC8\",\n\t\"ssetmn;\": \"\\u2216\",\n\t\"ssmile;\": \"\\u2323\",\n\t\"sstarf;\": \"\\u22C6\",\n\t\"Star;\": \"\\u22C6\",\n\t\"star;\": \"\\u2606\",\n\t\"starf;\": \"\\u2605\",\n\t\"straightepsilon;\": \"\\u03F5\",\n\t\"straightphi;\": \"\\u03D5\",\n\t\"strns;\": \"\\u00AF\",\n\t\"sub;\": \"\\u2282\",\n\t\"Sub;\": \"\\u22D0\",\n\t\"subdot;\": \"\\u2ABD\",\n\t\"subE;\": \"\\u2AC5\",\n\t\"sube;\": \"\\u2286\",\n\t\"subedot;\": \"\\u2AC3\",\n\t\"submult;\": \"\\u2AC1\",\n\t\"subnE;\": \"\\u2ACB\",\n\t\"subne;\": \"\\u228A\",\n\t\"subplus;\": \"\\u2ABF\",\n\t\"subrarr;\": \"\\u2979\",\n\t\"subset;\": \"\\u2282\",\n\t\"Subset;\": \"\\u22D0\",\n\t\"subseteq;\": \"\\u2286\",\n\t\"subseteqq;\": \"\\u2AC5\",\n\t\"SubsetEqual;\": \"\\u2286\",\n\t\"subsetneq;\": \"\\u228A\",\n\t\"subsetneqq;\": \"\\u2ACB\",\n\t\"subsim;\": \"\\u2AC7\",\n\t\"subsub;\": \"\\u2AD5\",\n\t\"subsup;\": \"\\u2AD3\",\n\t\"succapprox;\": \"\\u2AB8\",\n\t\"succ;\": \"\\u227B\",\n\t\"succcurlyeq;\": \"\\u227D\",\n\t\"Succeeds;\": \"\\u227B\",\n\t\"SucceedsEqual;\": \"\\u2AB0\",\n\t\"SucceedsSlantEqual;\": \"\\u227D\",\n\t\"SucceedsTilde;\": \"\\u227F\",\n\t\"succeq;\": \"\\u2AB0\",\n\t\"succnapprox;\": \"\\u2ABA\",\n\t\"succneqq;\": \"\\u2AB6\",\n\t\"succnsim;\": \"\\u22E9\",\n\t\"succsim;\": \"\\u227F\",\n\t\"SuchThat;\": \"\\u220B\",\n\t\"sum;\": \"\\u2211\",\n\t\"Sum;\": \"\\u2211\",\n\t\"sung;\": \"\\u266A\",\n\t\"sup1;\": \"\\u00B9\",\n\t\"sup1\": \"\\u00B9\",\n\t\"sup2;\": \"\\u00B2\",\n\t\"sup2\": \"\\u00B2\",\n\t\"sup3;\": \"\\u00B3\",\n\t\"sup3\": \"\\u00B3\",\n\t\"sup;\": \"\\u2283\",\n\t\"Sup;\": \"\\u22D1\",\n\t\"supdot;\": \"\\u2ABE\",\n\t\"supdsub;\": \"\\u2AD8\",\n\t\"supE;\": \"\\u2AC6\",\n\t\"supe;\": \"\\u2287\",\n\t\"supedot;\": \"\\u2AC4\",\n\t\"Superset;\": \"\\u2283\",\n\t\"SupersetEqual;\": \"\\u2287\",\n\t\"suphsol;\": \"\\u27C9\",\n\t\"suphsub;\": \"\\u2AD7\",\n\t\"suplarr;\": \"\\u297B\",\n\t\"supmult;\": \"\\u2AC2\",\n\t\"supnE;\": \"\\u2ACC\",\n\t\"supne;\": \"\\u228B\",\n\t\"supplus;\": \"\\u2AC0\",\n\t\"supset;\": \"\\u2283\",\n\t\"Supset;\": \"\\u22D1\",\n\t\"supseteq;\": \"\\u2287\",\n\t\"supseteqq;\": \"\\u2AC6\",\n\t\"supsetneq;\": \"\\u228B\",\n\t\"supsetneqq;\": \"\\u2ACC\",\n\t\"supsim;\": \"\\u2AC8\",\n\t\"supsub;\": \"\\u2AD4\",\n\t\"supsup;\": \"\\u2AD6\",\n\t\"swarhk;\": \"\\u2926\",\n\t\"swarr;\": \"\\u2199\",\n\t\"swArr;\": \"\\u21D9\",\n\t\"swarrow;\": \"\\u2199\",\n\t\"swnwar;\": \"\\u292A\",\n\t\"szlig;\": \"\\u00DF\",\n\t\"szlig\": \"\\u00DF\",\n\t\"Tab;\": \"\\u0009\",\n\t\"target;\": \"\\u2316\",\n\t\"Tau;\": \"\\u03A4\",\n\t\"tau;\": \"\\u03C4\",\n\t\"tbrk;\": \"\\u23B4\",\n\t\"Tcaron;\": \"\\u0164\",\n\t\"tcaron;\": \"\\u0165\",\n\t\"Tcedil;\": \"\\u0162\",\n\t\"tcedil;\": \"\\u0163\",\n\t\"Tcy;\": \"\\u0422\",\n\t\"tcy;\": \"\\u0442\",\n\t\"tdot;\": \"\\u20DB\",\n\t\"telrec;\": \"\\u2315\",\n\t\"Tfr;\": \"\\uD835\\uDD17\",\n\t\"tfr;\": \"\\uD835\\uDD31\",\n\t\"there4;\": \"\\u2234\",\n\t\"therefore;\": \"\\u2234\",\n\t\"Therefore;\": \"\\u2234\",\n\t\"Theta;\": \"\\u0398\",\n\t\"theta;\": \"\\u03B8\",\n\t\"thetasym;\": \"\\u03D1\",\n\t\"thetav;\": \"\\u03D1\",\n\t\"thickapprox;\": \"\\u2248\",\n\t\"thicksim;\": \"\\u223C\",\n\t\"ThickSpace;\": \"\\u205F\\u200A\",\n\t\"ThinSpace;\": \"\\u2009\",\n\t\"thinsp;\": \"\\u2009\",\n\t\"thkap;\": \"\\u2248\",\n\t\"thksim;\": \"\\u223C\",\n\t\"THORN;\": \"\\u00DE\",\n\t\"THORN\": \"\\u00DE\",\n\t\"thorn;\": \"\\u00FE\",\n\t\"thorn\": \"\\u00FE\",\n\t\"tilde;\": \"\\u02DC\",\n\t\"Tilde;\": \"\\u223C\",\n\t\"TildeEqual;\": \"\\u2243\",\n\t\"TildeFullEqual;\": \"\\u2245\",\n\t\"TildeTilde;\": \"\\u2248\",\n\t\"timesbar;\": \"\\u2A31\",\n\t\"timesb;\": \"\\u22A0\",\n\t\"times;\": \"\\u00D7\",\n\t\"times\": \"\\u00D7\",\n\t\"timesd;\": \"\\u2A30\",\n\t\"tint;\": \"\\u222D\",\n\t\"toea;\": \"\\u2928\",\n\t\"topbot;\": \"\\u2336\",\n\t\"topcir;\": \"\\u2AF1\",\n\t\"top;\": \"\\u22A4\",\n\t\"Topf;\": \"\\uD835\\uDD4B\",\n\t\"topf;\": \"\\uD835\\uDD65\",\n\t\"topfork;\": \"\\u2ADA\",\n\t\"tosa;\": \"\\u2929\",\n\t\"tprime;\": \"\\u2034\",\n\t\"trade;\": \"\\u2122\",\n\t\"TRADE;\": \"\\u2122\",\n\t\"triangle;\": \"\\u25B5\",\n\t\"triangledown;\": \"\\u25BF\",\n\t\"triangleleft;\": \"\\u25C3\",\n\t\"trianglelefteq;\": \"\\u22B4\",\n\t\"triangleq;\": \"\\u225C\",\n\t\"triangleright;\": \"\\u25B9\",\n\t\"trianglerighteq;\": \"\\u22B5\",\n\t\"tridot;\": \"\\u25EC\",\n\t\"trie;\": \"\\u225C\",\n\t\"triminus;\": \"\\u2A3A\",\n\t\"TripleDot;\": \"\\u20DB\",\n\t\"triplus;\": \"\\u2A39\",\n\t\"trisb;\": \"\\u29CD\",\n\t\"tritime;\": \"\\u2A3B\",\n\t\"trpezium;\": \"\\u23E2\",\n\t\"Tscr;\": \"\\uD835\\uDCAF\",\n\t\"tscr;\": \"\\uD835\\uDCC9\",\n\t\"TScy;\": \"\\u0426\",\n\t\"tscy;\": \"\\u0446\",\n\t\"TSHcy;\": \"\\u040B\",\n\t\"tshcy;\": \"\\u045B\",\n\t\"Tstrok;\": \"\\u0166\",\n\t\"tstrok;\": \"\\u0167\",\n\t\"twixt;\": \"\\u226C\",\n\t\"twoheadleftarrow;\": \"\\u219E\",\n\t\"twoheadrightarrow;\": \"\\u21A0\",\n\t\"Uacute;\": \"\\u00DA\",\n\t\"Uacute\": \"\\u00DA\",\n\t\"uacute;\": \"\\u00FA\",\n\t\"uacute\": \"\\u00FA\",\n\t\"uarr;\": \"\\u2191\",\n\t\"Uarr;\": \"\\u219F\",\n\t\"uArr;\": \"\\u21D1\",\n\t\"Uarrocir;\": \"\\u2949\",\n\t\"Ubrcy;\": \"\\u040E\",\n\t\"ubrcy;\": \"\\u045E\",\n\t\"Ubreve;\": \"\\u016C\",\n\t\"ubreve;\": \"\\u016D\",\n\t\"Ucirc;\": \"\\u00DB\",\n\t\"Ucirc\": \"\\u00DB\",\n\t\"ucirc;\": \"\\u00FB\",\n\t\"ucirc\": \"\\u00FB\",\n\t\"Ucy;\": \"\\u0423\",\n\t\"ucy;\": \"\\u0443\",\n\t\"udarr;\": \"\\u21C5\",\n\t\"Udblac;\": \"\\u0170\",\n\t\"udblac;\": \"\\u0171\",\n\t\"udhar;\": \"\\u296E\",\n\t\"ufisht;\": \"\\u297E\",\n\t\"Ufr;\": \"\\uD835\\uDD18\",\n\t\"ufr;\": \"\\uD835\\uDD32\",\n\t\"Ugrave;\": \"\\u00D9\",\n\t\"Ugrave\": \"\\u00D9\",\n\t\"ugrave;\": \"\\u00F9\",\n\t\"ugrave\": \"\\u00F9\",\n\t\"uHar;\": \"\\u2963\",\n\t\"uharl;\": \"\\u21BF\",\n\t\"uharr;\": \"\\u21BE\",\n\t\"uhblk;\": \"\\u2580\",\n\t\"ulcorn;\": \"\\u231C\",\n\t\"ulcorner;\": \"\\u231C\",\n\t\"ulcrop;\": \"\\u230F\",\n\t\"ultri;\": \"\\u25F8\",\n\t\"Umacr;\": \"\\u016A\",\n\t\"umacr;\": \"\\u016B\",\n\t\"uml;\": \"\\u00A8\",\n\t\"uml\": \"\\u00A8\",\n\t\"UnderBar;\": \"\\u005F\",\n\t\"UnderBrace;\": \"\\u23DF\",\n\t\"UnderBracket;\": \"\\u23B5\",\n\t\"UnderParenthesis;\": \"\\u23DD\",\n\t\"Union;\": \"\\u22C3\",\n\t\"UnionPlus;\": \"\\u228E\",\n\t\"Uogon;\": \"\\u0172\",\n\t\"uogon;\": \"\\u0173\",\n\t\"Uopf;\": \"\\uD835\\uDD4C\",\n\t\"uopf;\": \"\\uD835\\uDD66\",\n\t\"UpArrowBar;\": \"\\u2912\",\n\t\"uparrow;\": \"\\u2191\",\n\t\"UpArrow;\": \"\\u2191\",\n\t\"Uparrow;\": \"\\u21D1\",\n\t\"UpArrowDownArrow;\": \"\\u21C5\",\n\t\"updownarrow;\": \"\\u2195\",\n\t\"UpDownArrow;\": \"\\u2195\",\n\t\"Updownarrow;\": \"\\u21D5\",\n\t\"UpEquilibrium;\": \"\\u296E\",\n\t\"upharpoonleft;\": \"\\u21BF\",\n\t\"upharpoonright;\": \"\\u21BE\",\n\t\"uplus;\": \"\\u228E\",\n\t\"UpperLeftArrow;\": \"\\u2196\",\n\t\"UpperRightArrow;\": \"\\u2197\",\n\t\"upsi;\": \"\\u03C5\",\n\t\"Upsi;\": \"\\u03D2\",\n\t\"upsih;\": \"\\u03D2\",\n\t\"Upsilon;\": \"\\u03A5\",\n\t\"upsilon;\": \"\\u03C5\",\n\t\"UpTeeArrow;\": \"\\u21A5\",\n\t\"UpTee;\": \"\\u22A5\",\n\t\"upuparrows;\": \"\\u21C8\",\n\t\"urcorn;\": \"\\u231D\",\n\t\"urcorner;\": \"\\u231D\",\n\t\"urcrop;\": \"\\u230E\",\n\t\"Uring;\": \"\\u016E\",\n\t\"uring;\": \"\\u016F\",\n\t\"urtri;\": \"\\u25F9\",\n\t\"Uscr;\": \"\\uD835\\uDCB0\",\n\t\"uscr;\": \"\\uD835\\uDCCA\",\n\t\"utdot;\": \"\\u22F0\",\n\t\"Utilde;\": \"\\u0168\",\n\t\"utilde;\": \"\\u0169\",\n\t\"utri;\": \"\\u25B5\",\n\t\"utrif;\": \"\\u25B4\",\n\t\"uuarr;\": \"\\u21C8\",\n\t\"Uuml;\": \"\\u00DC\",\n\t\"Uuml\": \"\\u00DC\",\n\t\"uuml;\": \"\\u00FC\",\n\t\"uuml\": \"\\u00FC\",\n\t\"uwangle;\": \"\\u29A7\",\n\t\"vangrt;\": \"\\u299C\",\n\t\"varepsilon;\": \"\\u03F5\",\n\t\"varkappa;\": \"\\u03F0\",\n\t\"varnothing;\": \"\\u2205\",\n\t\"varphi;\": \"\\u03D5\",\n\t\"varpi;\": \"\\u03D6\",\n\t\"varpropto;\": \"\\u221D\",\n\t\"varr;\": \"\\u2195\",\n\t\"vArr;\": \"\\u21D5\",\n\t\"varrho;\": \"\\u03F1\",\n\t\"varsigma;\": \"\\u03C2\",\n\t\"varsubsetneq;\": \"\\u228A\\uFE00\",\n\t\"varsubsetneqq;\": \"\\u2ACB\\uFE00\",\n\t\"varsupsetneq;\": \"\\u228B\\uFE00\",\n\t\"varsupsetneqq;\": \"\\u2ACC\\uFE00\",\n\t\"vartheta;\": \"\\u03D1\",\n\t\"vartriangleleft;\": \"\\u22B2\",\n\t\"vartriangleright;\": \"\\u22B3\",\n\t\"vBar;\": \"\\u2AE8\",\n\t\"Vbar;\": \"\\u2AEB\",\n\t\"vBarv;\": \"\\u2AE9\",\n\t\"Vcy;\": \"\\u0412\",\n\t\"vcy;\": \"\\u0432\",\n\t\"vdash;\": \"\\u22A2\",\n\t\"vDash;\": \"\\u22A8\",\n\t\"Vdash;\": \"\\u22A9\",\n\t\"VDash;\": \"\\u22AB\",\n\t\"Vdashl;\": \"\\u2AE6\",\n\t\"veebar;\": \"\\u22BB\",\n\t\"vee;\": \"\\u2228\",\n\t\"Vee;\": \"\\u22C1\",\n\t\"veeeq;\": \"\\u225A\",\n\t\"vellip;\": \"\\u22EE\",\n\t\"verbar;\": \"\\u007C\",\n\t\"Verbar;\": \"\\u2016\",\n\t\"vert;\": \"\\u007C\",\n\t\"Vert;\": \"\\u2016\",\n\t\"VerticalBar;\": \"\\u2223\",\n\t\"VerticalLine;\": \"\\u007C\",\n\t\"VerticalSeparator;\": \"\\u2758\",\n\t\"VerticalTilde;\": \"\\u2240\",\n\t\"VeryThinSpace;\": \"\\u200A\",\n\t\"Vfr;\": \"\\uD835\\uDD19\",\n\t\"vfr;\": \"\\uD835\\uDD33\",\n\t\"vltri;\": \"\\u22B2\",\n\t\"vnsub;\": \"\\u2282\\u20D2\",\n\t\"vnsup;\": \"\\u2283\\u20D2\",\n\t\"Vopf;\": \"\\uD835\\uDD4D\",\n\t\"vopf;\": \"\\uD835\\uDD67\",\n\t\"vprop;\": \"\\u221D\",\n\t\"vrtri;\": \"\\u22B3\",\n\t\"Vscr;\": \"\\uD835\\uDCB1\",\n\t\"vscr;\": \"\\uD835\\uDCCB\",\n\t\"vsubnE;\": \"\\u2ACB\\uFE00\",\n\t\"vsubne;\": \"\\u228A\\uFE00\",\n\t\"vsupnE;\": \"\\u2ACC\\uFE00\",\n\t\"vsupne;\": \"\\u228B\\uFE00\",\n\t\"Vvdash;\": \"\\u22AA\",\n\t\"vzigzag;\": \"\\u299A\",\n\t\"Wcirc;\": \"\\u0174\",\n\t\"wcirc;\": \"\\u0175\",\n\t\"wedbar;\": \"\\u2A5F\",\n\t\"wedge;\": \"\\u2227\",\n\t\"Wedge;\": \"\\u22C0\",\n\t\"wedgeq;\": \"\\u2259\",\n\t\"weierp;\": \"\\u2118\",\n\t\"Wfr;\": \"\\uD835\\uDD1A\",\n\t\"wfr;\": \"\\uD835\\uDD34\",\n\t\"Wopf;\": \"\\uD835\\uDD4E\",\n\t\"wopf;\": \"\\uD835\\uDD68\",\n\t\"wp;\": \"\\u2118\",\n\t\"wr;\": \"\\u2240\",\n\t\"wreath;\": \"\\u2240\",\n\t\"Wscr;\": \"\\uD835\\uDCB2\",\n\t\"wscr;\": \"\\uD835\\uDCCC\",\n\t\"xcap;\": \"\\u22C2\",\n\t\"xcirc;\": \"\\u25EF\",\n\t\"xcup;\": \"\\u22C3\",\n\t\"xdtri;\": \"\\u25BD\",\n\t\"Xfr;\": \"\\uD835\\uDD1B\",\n\t\"xfr;\": \"\\uD835\\uDD35\",\n\t\"xharr;\": \"\\u27F7\",\n\t\"xhArr;\": \"\\u27FA\",\n\t\"Xi;\": \"\\u039E\",\n\t\"xi;\": \"\\u03BE\",\n\t\"xlarr;\": \"\\u27F5\",\n\t\"xlArr;\": \"\\u27F8\",\n\t\"xmap;\": \"\\u27FC\",\n\t\"xnis;\": \"\\u22FB\",\n\t\"xodot;\": \"\\u2A00\",\n\t\"Xopf;\": \"\\uD835\\uDD4F\",\n\t\"xopf;\": \"\\uD835\\uDD69\",\n\t\"xoplus;\": \"\\u2A01\",\n\t\"xotime;\": \"\\u2A02\",\n\t\"xrarr;\": \"\\u27F6\",\n\t\"xrArr;\": \"\\u27F9\",\n\t\"Xscr;\": \"\\uD835\\uDCB3\",\n\t\"xscr;\": \"\\uD835\\uDCCD\",\n\t\"xsqcup;\": \"\\u2A06\",\n\t\"xuplus;\": \"\\u2A04\",\n\t\"xutri;\": \"\\u25B3\",\n\t\"xvee;\": \"\\u22C1\",\n\t\"xwedge;\": \"\\u22C0\",\n\t\"Yacute;\": \"\\u00DD\",\n\t\"Yacute\": \"\\u00DD\",\n\t\"yacute;\": \"\\u00FD\",\n\t\"yacute\": \"\\u00FD\",\n\t\"YAcy;\": \"\\u042F\",\n\t\"yacy;\": \"\\u044F\",\n\t\"Ycirc;\": \"\\u0176\",\n\t\"ycirc;\": \"\\u0177\",\n\t\"Ycy;\": \"\\u042B\",\n\t\"ycy;\": \"\\u044B\",\n\t\"yen;\": \"\\u00A5\",\n\t\"yen\": \"\\u00A5\",\n\t\"Yfr;\": \"\\uD835\\uDD1C\",\n\t\"yfr;\": \"\\uD835\\uDD36\",\n\t\"YIcy;\": \"\\u0407\",\n\t\"yicy;\": \"\\u0457\",\n\t\"Yopf;\": \"\\uD835\\uDD50\",\n\t\"yopf;\": \"\\uD835\\uDD6A\",\n\t\"Yscr;\": \"\\uD835\\uDCB4\",\n\t\"yscr;\": \"\\uD835\\uDCCE\",\n\t\"YUcy;\": \"\\u042E\",\n\t\"yucy;\": \"\\u044E\",\n\t\"yuml;\": \"\\u00FF\",\n\t\"yuml\": \"\\u00FF\",\n\t\"Yuml;\": \"\\u0178\",\n\t\"Zacute;\": \"\\u0179\",\n\t\"zacute;\": \"\\u017A\",\n\t\"Zcaron;\": \"\\u017D\",\n\t\"zcaron;\": \"\\u017E\",\n\t\"Zcy;\": \"\\u0417\",\n\t\"zcy;\": \"\\u0437\",\n\t\"Zdot;\": \"\\u017B\",\n\t\"zdot;\": \"\\u017C\",\n\t\"zeetrf;\": \"\\u2128\",\n\t\"ZeroWidthSpace;\": \"\\u200B\",\n\t\"Zeta;\": \"\\u0396\",\n\t\"zeta;\": \"\\u03B6\",\n\t\"zfr;\": \"\\uD835\\uDD37\",\n\t\"Zfr;\": \"\\u2128\",\n\t\"ZHcy;\": \"\\u0416\",\n\t\"zhcy;\": \"\\u0436\",\n\t\"zigrarr;\": \"\\u21DD\",\n\t\"zopf;\": \"\\uD835\\uDD6B\",\n\t\"Zopf;\": \"\\u2124\",\n\t\"Zscr;\": \"\\uD835\\uDCB5\",\n\t\"zscr;\": \"\\uD835\\uDCCF\",\n\t\"zwj;\": \"\\u200D\",\n\t\"zwnj;\": \"\\u200C\"\n};\n\n},\n{}],\n13:[function(_dereq_,module,exports){\nvar util = _dereq_('util/');\n\nvar pSlice = Array.prototype.slice;\nvar hasOwn = Object.prototype.hasOwnProperty;\n\nvar assert = module.exports = ok;\n\nassert.AssertionError = function AssertionError(options) {\n this.name = 'AssertionError';\n this.actual = options.actual;\n this.expected = options.expected;\n this.operator = options.operator;\n if (options.message) {\n this.message = options.message;\n this.generatedMessage = false;\n } else {\n this.message = getMessage(this);\n this.generatedMessage = true;\n }\n var stackStartFunction = options.stackStartFunction || fail;\n\n if (Error.captureStackTrace) {\n Error.captureStackTrace(this, stackStartFunction);\n }\n else {\n var err = new Error();\n if (err.stack) {\n var out = err.stack;\n var fn_name = stackStartFunction.name;\n var idx = out.indexOf('\\n' + fn_name);\n if (idx >= 0) {\n var next_line = out.indexOf('\\n', idx + 1);\n out = out.substring(next_line + 1);\n }\n\n this.stack = out;\n }\n }\n};\nutil.inherits(assert.AssertionError, Error);\n\nfunction replacer(key, value) {\n if (util.isUndefined(value)) {\n return '' + value;\n }\n if (util.isNumber(value) && (isNaN(value) || !isFinite(value))) {\n return value.toString();\n }\n if (util.isFunction(value) || util.isRegExp(value)) {\n return value.toString();\n }\n return value;\n}\n\nfunction truncate(s, n) {\n if (util.isString(s)) {\n return s.length < n ? s : s.slice(0, n);\n } else {\n return s;\n }\n}\n\nfunction getMessage(self) {\n return truncate(JSON.stringify(self.actual, replacer), 128) + ' ' +\n self.operator + ' ' +\n truncate(JSON.stringify(self.expected, replacer), 128);\n}\n\nfunction fail(actual, expected, message, operator, stackStartFunction) {\n throw new assert.AssertionError({\n message: message,\n actual: actual,\n expected: expected,\n operator: operator,\n stackStartFunction: stackStartFunction\n });\n}\nassert.fail = fail;\n\nfunction ok(value, message) {\n if (!value) fail(value, true, message, '==', assert.ok);\n}\nassert.ok = ok;\n\nassert.equal = function equal(actual, expected, message) {\n if (actual != expected) fail(actual, expected, message, '==', assert.equal);\n};\n\nassert.notEqual = function notEqual(actual, expected, message) {\n if (actual == expected) {\n fail(actual, expected, message, '!=', assert.notEqual);\n }\n};\n\nassert.deepEqual = function deepEqual(actual, expected, message) {\n if (!_deepEqual(actual, expected)) {\n fail(actual, expected, message, 'deepEqual', assert.deepEqual);\n }\n};\n\nfunction _deepEqual(actual, expected) {\n if (actual === expected) {\n return true;\n\n } else if (util.isBuffer(actual) && util.isBuffer(expected)) {\n if (actual.length != expected.length) return false;\n\n for (var i = 0; i < actual.length; i++) {\n if (actual[i] !== expected[i]) return false;\n }\n\n return true;\n } else if (util.isDate(actual) && util.isDate(expected)) {\n return actual.getTime() === expected.getTime();\n } else if (util.isRegExp(actual) && util.isRegExp(expected)) {\n return actual.source === expected.source &&\n actual.global === expected.global &&\n actual.multiline === expected.multiline &&\n actual.lastIndex === expected.lastIndex &&\n actual.ignoreCase === expected.ignoreCase;\n } else if (!util.isObject(actual) && !util.isObject(expected)) {\n return actual == expected;\n } else {\n return objEquiv(actual, expected);\n }\n}\n\nfunction isArguments(object) {\n return Object.prototype.toString.call(object) == '[object Arguments]';\n}\n\nfunction objEquiv(a, b) {\n if (util.isNullOrUndefined(a) || util.isNullOrUndefined(b))\n return false;\n if (a.prototype !== b.prototype) return false;\n if (isArguments(a)) {\n if (!isArguments(b)) {\n return false;\n }\n a = pSlice.call(a);\n b = pSlice.call(b);\n return _deepEqual(a, b);\n }\n try {\n var ka = objectKeys(a),\n kb = objectKeys(b),\n key, i;\n } catch (e) {//happens when one is a string literal and the other isn't\n return false;\n }\n if (ka.length != kb.length)\n return false;\n ka.sort();\n kb.sort();\n for (i = ka.length - 1; i >= 0; i--) {\n if (ka[i] != kb[i])\n return false;\n }\n for (i = ka.length - 1; i >= 0; i--) {\n key = ka[i];\n if (!_deepEqual(a[key], b[key])) return false;\n }\n return true;\n}\n\nassert.notDeepEqual = function notDeepEqual(actual, expected, message) {\n if (_deepEqual(actual, expected)) {\n fail(actual, expected, message, 'notDeepEqual', assert.notDeepEqual);\n }\n};\n\nassert.strictEqual = function strictEqual(actual, expected, message) {\n if (actual !== expected) {\n fail(actual, expected, message, '===', assert.strictEqual);\n }\n};\n\nassert.notStrictEqual = function notStrictEqual(actual, expected, message) {\n if (actual === expected) {\n fail(actual, expected, message, '!==', assert.notStrictEqual);\n }\n};\n\nfunction expectedException(actual, expected) {\n if (!actual || !expected) {\n return false;\n }\n\n if (Object.prototype.toString.call(expected) == '[object RegExp]') {\n return expected.test(actual);\n } else if (actual instanceof expected) {\n return true;\n } else if (expected.call({}, actual) === true) {\n return true;\n }\n\n return false;\n}\n\nfunction _throws(shouldThrow, block, expected, message) {\n var actual;\n\n if (util.isString(expected)) {\n message = expected;\n expected = null;\n }\n\n try {\n block();\n } catch (e) {\n actual = e;\n }\n\n message = (expected && expected.name ? ' (' + expected.name + ').' : '.') +\n (message ? ' ' + message : '.');\n\n if (shouldThrow && !actual) {\n fail(actual, expected, 'Missing expected exception' + message);\n }\n\n if (!shouldThrow && expectedException(actual, expected)) {\n fail(actual, expected, 'Got unwanted exception' + message);\n }\n\n if ((shouldThrow && actual && expected &&\n !expectedException(actual, expected)) || (!shouldThrow && actual)) {\n throw actual;\n }\n}\n\nassert.throws = function(block, /*optional*/error, /*optional*/message) {\n _throws.apply(this, [true].concat(pSlice.call(arguments)));\n};\nassert.doesNotThrow = function(block, /*optional*/message) {\n _throws.apply(this, [false].concat(pSlice.call(arguments)));\n};\n\nassert.ifError = function(err) { if (err) {throw err;}};\n\nvar objectKeys = Object.keys || function (obj) {\n var keys = [];\n for (var key in obj) {\n if (hasOwn.call(obj, key)) keys.push(key);\n }\n return keys;\n};\n\n},\n{\"util/\":15}],\n14:[function(_dereq_,module,exports){\nmodule.exports = function isBuffer(arg) {\n return arg && typeof arg === 'object'\n && typeof arg.copy === 'function'\n && typeof arg.fill === 'function'\n && typeof arg.readUInt8 === 'function';\n}\n},\n{}],\n15:[function(_dereq_,module,exports){\n(function (process,global){\n\nvar formatRegExp = /%[sdj%]/g;\nexports.format = function(f) {\n if (!isString(f)) {\n var objects = [];\n for (var i = 0; i < arguments.length; i++) {\n objects.push(inspect(arguments[i]));\n }\n return objects.join(' ');\n }\n\n var i = 1;\n var args = arguments;\n var len = args.length;\n var str = String(f).replace(formatRegExp, function(x) {\n if (x === '%%') return '%';\n if (i >= len) return x;\n switch (x) {\n case '%s': return String(args[i++]);\n case '%d': return Number(args[i++]);\n case '%j':\n try {\n return JSON.stringify(args[i++]);\n } catch (_) {\n return '[Circular]';\n }\n default:\n return x;\n }\n });\n for (var x = args[i]; i < len; x = args[++i]) {\n if (isNull(x) || !isObject(x)) {\n str += ' ' + x;\n } else {\n str += ' ' + inspect(x);\n }\n }\n return str;\n};\nexports.deprecate = function(fn, msg) {\n if (isUndefined(global.process)) {\n return function() {\n return exports.deprecate(fn, msg).apply(this, arguments);\n };\n }\n\n if (process.noDeprecation === true) {\n return fn;\n }\n\n var warned = false;\n function deprecated() {\n if (!warned) {\n if (process.throwDeprecation) {\n throw new Error(msg);\n } else if (process.traceDeprecation) {\n console.trace(msg);\n } else {\n console.error(msg);\n }\n warned = true;\n }\n return fn.apply(this, arguments);\n }\n\n return deprecated;\n};\n\n\nvar debugs = {};\nvar debugEnviron;\nexports.debuglog = function(set) {\n if (isUndefined(debugEnviron))\n debugEnviron = process.env.NODE_DEBUG || '';\n set = set.toUpperCase();\n if (!debugs[set]) {\n if (new RegExp('\\\\b' + set + '\\\\b', 'i').test(debugEnviron)) {\n var pid = process.pid;\n debugs[set] = function() {\n var msg = exports.format.apply(exports, arguments);\n console.error('%s %d: %s', set, pid, msg);\n };\n } else {\n debugs[set] = function() {};\n }\n }\n return debugs[set];\n};\nfunction inspect(obj, opts) {\n var ctx = {\n seen: [],\n stylize: stylizeNoColor\n };\n if (arguments.length >= 3) ctx.depth = arguments[2];\n if (arguments.length >= 4) ctx.colors = arguments[3];\n if (isBoolean(opts)) {\n ctx.showHidden = opts;\n } else if (opts) {\n exports._extend(ctx, opts);\n }\n if (isUndefined(ctx.showHidden)) ctx.showHidden = false;\n if (isUndefined(ctx.depth)) ctx.depth = 2;\n if (isUndefined(ctx.colors)) ctx.colors = false;\n if (isUndefined(ctx.customInspect)) ctx.customInspect = true;\n if (ctx.colors) ctx.stylize = stylizeWithColor;\n return formatValue(ctx, obj, ctx.depth);\n}\nexports.inspect = inspect;\ninspect.colors = {\n 'bold' : [1, 22],\n 'italic' : [3, 23],\n 'underline' : [4, 24],\n 'inverse' : [7, 27],\n 'white' : [37, 39],\n 'grey' : [90, 39],\n 'black' : [30, 39],\n 'blue' : [34, 39],\n 'cyan' : [36, 39],\n 'green' : [32, 39],\n 'magenta' : [35, 39],\n 'red' : [31, 39],\n 'yellow' : [33, 39]\n};\ninspect.styles = {\n 'special': 'cyan',\n 'number': 'yellow',\n 'boolean': 'yellow',\n 'undefined': 'grey',\n 'null': 'bold',\n 'string': 'green',\n 'date': 'magenta',\n 'regexp': 'red'\n};\n\n\nfunction stylizeWithColor(str, styleType) {\n var style = inspect.styles[styleType];\n\n if (style) {\n return '\\u001b[' + inspect.colors[style][0] + 'm' + str +\n '\\u001b[' + inspect.colors[style][1] + 'm';\n } else {\n return str;\n }\n}\n\n\nfunction stylizeNoColor(str, styleType) {\n return str;\n}\n\n\nfunction arrayToHash(array) {\n var hash = {};\n\n array.forEach(function(val, idx) {\n hash[val] = true;\n });\n\n return hash;\n}\n\n\nfunction formatValue(ctx, value, recurseTimes) {\n if (ctx.customInspect &&\n value &&\n isFunction(value.inspect) &&\n value.inspect !== exports.inspect &&\n !(value.constructor && value.constructor.prototype === value)) {\n var ret = value.inspect(recurseTimes, ctx);\n if (!isString(ret)) {\n ret = formatValue(ctx, ret, recurseTimes);\n }\n return ret;\n }\n var primitive = formatPrimitive(ctx, value);\n if (primitive) {\n return primitive;\n }\n var keys = Object.keys(value);\n var visibleKeys = arrayToHash(keys);\n\n if (ctx.showHidden) {\n keys = Object.getOwnPropertyNames(value);\n }\n if (isError(value)\n && (keys.indexOf('message') >= 0 || keys.indexOf('description') >= 0)) {\n return formatError(value);\n }\n if (keys.length === 0) {\n if (isFunction(value)) {\n var name = value.name ? ': ' + value.name : '';\n return ctx.stylize('[Function' + name + ']', 'special');\n }\n if (isRegExp(value)) {\n return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');\n }\n if (isDate(value)) {\n return ctx.stylize(Date.prototype.toString.call(value), 'date');\n }\n if (isError(value)) {\n return formatError(value);\n }\n }\n\n var base = '', array = false, braces = ['{', '}'];\n if (isArray(value)) {\n array = true;\n braces = ['[', ']'];\n }\n if (isFunction(value)) {\n var n = value.name ? ': ' + value.name : '';\n base = ' [Function' + n + ']';\n }\n if (isRegExp(value)) {\n base = ' ' + RegExp.prototype.toString.call(value);\n }\n if (isDate(value)) {\n base = ' ' + Date.prototype.toUTCString.call(value);\n }\n if (isError(value)) {\n base = ' ' + formatError(value);\n }\n\n if (keys.length === 0 && (!array || value.length == 0)) {\n return braces[0] + base + braces[1];\n }\n\n if (recurseTimes < 0) {\n if (isRegExp(value)) {\n return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');\n } else {\n return ctx.stylize('[Object]', 'special');\n }\n }\n\n ctx.seen.push(value);\n\n var output;\n if (array) {\n output = formatArray(ctx, value, recurseTimes, visibleKeys, keys);\n } else {\n output = keys.map(function(key) {\n return formatProperty(ctx, value, recurseTimes, visibleKeys, key, array);\n });\n }\n\n ctx.seen.pop();\n\n return reduceToSingleString(output, base, braces);\n}\n\n\nfunction formatPrimitive(ctx, value) {\n if (isUndefined(value))\n return ctx.stylize('undefined', 'undefined');\n if (isString(value)) {\n var simple = '\\'' + JSON.stringify(value).replace(/^\"|\"$/g, '')\n .replace(/'/g, \"\\\\'\")\n .replace(/\\\\\"/g, '\"') + '\\'';\n return ctx.stylize(simple, 'string');\n }\n if (isNumber(value))\n return ctx.stylize('' + value, 'number');\n if (isBoolean(value))\n return ctx.stylize('' + value, 'boolean');\n if (isNull(value))\n return ctx.stylize('null', 'null');\n}\n\n\nfunction formatError(value) {\n return '[' + Error.prototype.toString.call(value) + ']';\n}\n\n\nfunction formatArray(ctx, value, recurseTimes, visibleKeys, keys) {\n var output = [];\n for (var i = 0, l = value.length; i < l; ++i) {\n if (hasOwnProperty(value, String(i))) {\n output.push(formatProperty(ctx, value, recurseTimes, visibleKeys,\n String(i), true));\n } else {\n output.push('');\n }\n }\n keys.forEach(function(key) {\n if (!key.match(/^\\d+$/)) {\n output.push(formatProperty(ctx, value, recurseTimes, visibleKeys,\n key, true));\n }\n });\n return output;\n}\n\n\nfunction formatProperty(ctx, value, recurseTimes, visibleKeys, key, array) {\n var name, str, desc;\n desc = Object.getOwnPropertyDescriptor(value, key) || { value: value[key] };\n if (desc.get) {\n if (desc.set) {\n str = ctx.stylize('[Getter/Setter]', 'special');\n } else {\n str = ctx.stylize('[Getter]', 'special');\n }\n } else {\n if (desc.set) {\n str = ctx.stylize('[Setter]', 'special');\n }\n }\n if (!hasOwnProperty(visibleKeys, key)) {\n name = '[' + key + ']';\n }\n if (!str) {\n if (ctx.seen.indexOf(desc.value) < 0) {\n if (isNull(recurseTimes)) {\n str = formatValue(ctx, desc.value, null);\n } else {\n str = formatValue(ctx, desc.value, recurseTimes - 1);\n }\n if (str.indexOf('\\n') > -1) {\n if (array) {\n str = str.split('\\n').map(function(line) {\n return ' ' + line;\n }).join('\\n').substr(2);\n } else {\n str = '\\n' + str.split('\\n').map(function(line) {\n return ' ' + line;\n }).join('\\n');\n }\n }\n } else {\n str = ctx.stylize('[Circular]', 'special');\n }\n }\n if (isUndefined(name)) {\n if (array && key.match(/^\\d+$/)) {\n return str;\n }\n name = JSON.stringify('' + key);\n if (name.match(/^\"([a-zA-Z_][a-zA-Z_0-9]*)\"$/)) {\n name = name.substr(1, name.length - 2);\n name = ctx.stylize(name, 'name');\n } else {\n name = name.replace(/'/g, \"\\\\'\")\n .replace(/\\\\\"/g, '\"')\n .replace(/(^\"|\"$)/g, \"'\");\n name = ctx.stylize(name, 'string');\n }\n }\n\n return name + ': ' + str;\n}\n\n\nfunction reduceToSingleString(output, base, braces) {\n var numLinesEst = 0;\n var length = output.reduce(function(prev, cur) {\n numLinesEst++;\n if (cur.indexOf('\\n') >= 0) numLinesEst++;\n return prev + cur.replace(/\\u001b\\[\\d\\d?m/g, '').length + 1;\n }, 0);\n\n if (length > 60) {\n return braces[0] +\n (base === '' ? '' : base + '\\n ') +\n ' ' +\n output.join(',\\n ') +\n ' ' +\n braces[1];\n }\n\n return braces[0] + base + ' ' + output.join(', ') + ' ' + braces[1];\n}\nfunction isArray(ar) {\n return Array.isArray(ar);\n}\nexports.isArray = isArray;\n\nfunction isBoolean(arg) {\n return typeof arg === 'boolean';\n}\nexports.isBoolean = isBoolean;\n\nfunction isNull(arg) {\n return arg === null;\n}\nexports.isNull = isNull;\n\nfunction isNullOrUndefined(arg) {\n return arg == null;\n}\nexports.isNullOrUndefined = isNullOrUndefined;\n\nfunction isNumber(arg) {\n return typeof arg === 'number';\n}\nexports.isNumber = isNumber;\n\nfunction isString(arg) {\n return typeof arg === 'string';\n}\nexports.isString = isString;\n\nfunction isSymbol(arg) {\n return typeof arg === 'symbol';\n}\nexports.isSymbol = isSymbol;\n\nfunction isUndefined(arg) {\n return arg === void 0;\n}\nexports.isUndefined = isUndefined;\n\nfunction isRegExp(re) {\n return isObject(re) && objectToString(re) === '[object RegExp]';\n}\nexports.isRegExp = isRegExp;\n\nfunction isObject(arg) {\n return typeof arg === 'object' && arg !== null;\n}\nexports.isObject = isObject;\n\nfunction isDate(d) {\n return isObject(d) && objectToString(d) === '[object Date]';\n}\nexports.isDate = isDate;\n\nfunction isError(e) {\n return isObject(e) &&\n (objectToString(e) === '[object Error]' || e instanceof Error);\n}\nexports.isError = isError;\n\nfunction isFunction(arg) {\n return typeof arg === 'function';\n}\nexports.isFunction = isFunction;\n\nfunction isPrimitive(arg) {\n return arg === null ||\n typeof arg === 'boolean' ||\n typeof arg === 'number' ||\n typeof arg === 'string' ||\n typeof arg === 'symbol' || // ES6 symbol\n typeof arg === 'undefined';\n}\nexports.isPrimitive = isPrimitive;\n\nexports.isBuffer = _dereq_('./support/isBuffer');\n\nfunction objectToString(o) {\n return Object.prototype.toString.call(o);\n}\n\n\nfunction pad(n) {\n return n < 10 ? '0' + n.toString(10) : n.toString(10);\n}\n\n\nvar months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep',\n 'Oct', 'Nov', 'Dec'];\nfunction timestamp() {\n var d = new Date();\n var time = [pad(d.getHours()),\n pad(d.getMinutes()),\n pad(d.getSeconds())].join(':');\n return [d.getDate(), months[d.getMonth()], time].join(' ');\n}\nexports.log = function() {\n console.log('%s - %s', timestamp(), exports.format.apply(exports, arguments));\n};\nexports.inherits = _dereq_('inherits');\n\nexports._extend = function(origin, add) {\n if (!add || !isObject(add)) return origin;\n\n var keys = Object.keys(add);\n var i = keys.length;\n while (i--) {\n origin[keys[i]] = add[keys[i]];\n }\n return origin;\n};\n\nfunction hasOwnProperty(obj, prop) {\n return Object.prototype.hasOwnProperty.call(obj, prop);\n}\n\n}).call(this,_dereq_(\"/usr/local/lib/node_modules/browserify/node_modules/insert-module-globals/node_modules/process/browser.js\"),typeof self !== \"undefined\" ? self : typeof window !== \"undefined\" ? window : {})\n},\n{\"./support/isBuffer\":14,\"/usr/local/lib/node_modules/browserify/node_modules/insert-module-globals/node_modules/process/browser.js\":18,\"inherits\":17}],\n16:[function(_dereq_,module,exports){\n\nfunction EventEmitter() {\n this._events = this._events || {};\n this._maxListeners = this._maxListeners || undefined;\n}\nmodule.exports = EventEmitter;\nEventEmitter.EventEmitter = EventEmitter;\n\nEventEmitter.prototype._events = undefined;\nEventEmitter.prototype._maxListeners = undefined;\nEventEmitter.defaultMaxListeners = 10;\nEventEmitter.prototype.setMaxListeners = function(n) {\n if (!isNumber(n) || n < 0 || isNaN(n))\n throw TypeError('n must be a positive number');\n this._maxListeners = n;\n return this;\n};\n\nEventEmitter.prototype.emit = function(type) {\n var er, handler, len, args, i, listeners;\n\n if (!this._events)\n this._events = {};\n if (type === 'error') {\n if (!this._events.error ||\n (isObject(this._events.error) && !this._events.error.length)) {\n er = arguments[1];\n if (er instanceof Error) {\n throw er; // Unhandled 'error' event\n } else {\n throw TypeError('Uncaught, unspecified \"error\" event.');\n }\n return false;\n }\n }\n\n handler = this._events[type];\n\n if (isUndefined(handler))\n return false;\n\n if (isFunction(handler)) {\n switch (arguments.length) {\n case 1:\n handler.call(this);\n break;\n case 2:\n handler.call(this, arguments[1]);\n break;\n case 3:\n handler.call(this, arguments[1], arguments[2]);\n break;\n default:\n len = arguments.length;\n args = new Array(len - 1);\n for (i = 1; i < len; i++)\n args[i - 1] = arguments[i];\n handler.apply(this, args);\n }\n } else if (isObject(handler)) {\n len = arguments.length;\n args = new Array(len - 1);\n for (i = 1; i < len; i++)\n args[i - 1] = arguments[i];\n\n listeners = handler.slice();\n len = listeners.length;\n for (i = 0; i < len; i++)\n listeners[i].apply(this, args);\n }\n\n return true;\n};\n\nEventEmitter.prototype.addListener = function(type, listener) {\n var m;\n\n if (!isFunction(listener))\n throw TypeError('listener must be a function');\n\n if (!this._events)\n this._events = {};\n if (this._events.newListener)\n this.emit('newListener', type,\n isFunction(listener.listener) ?\n listener.listener : listener);\n\n if (!this._events[type])\n this._events[type] = listener;\n else if (isObject(this._events[type]))\n this._events[type].push(listener);\n else\n this._events[type] = [this._events[type], listener];\n if (isObject(this._events[type]) && !this._events[type].warned) {\n var m;\n if (!isUndefined(this._maxListeners)) {\n m = this._maxListeners;\n } else {\n m = EventEmitter.defaultMaxListeners;\n }\n\n if (m && m > 0 && this._events[type].length > m) {\n this._events[type].warned = true;\n console.error('(node) warning: possible EventEmitter memory ' +\n 'leak detected. %d listeners added. ' +\n 'Use emitter.setMaxListeners() to increase limit.',\n this._events[type].length);\n console.trace();\n }\n }\n\n return this;\n};\n\nEventEmitter.prototype.on = EventEmitter.prototype.addListener;\n\nEventEmitter.prototype.once = function(type, listener) {\n if (!isFunction(listener))\n throw TypeError('listener must be a function');\n\n var fired = false;\n\n function g() {\n this.removeListener(type, g);\n\n if (!fired) {\n fired = true;\n listener.apply(this, arguments);\n }\n }\n\n g.listener = listener;\n this.on(type, g);\n\n return this;\n};\nEventEmitter.prototype.removeListener = function(type, listener) {\n var list, position, length, i;\n\n if (!isFunction(listener))\n throw TypeError('listener must be a function');\n\n if (!this._events || !this._events[type])\n return this;\n\n list = this._events[type];\n length = list.length;\n position = -1;\n\n if (list === listener ||\n (isFunction(list.listener) && list.listener === listener)) {\n delete this._events[type];\n if (this._events.removeListener)\n this.emit('removeListener', type, listener);\n\n } else if (isObject(list)) {\n for (i = length; i-- > 0;) {\n if (list[i] === listener ||\n (list[i].listener && list[i].listener === listener)) {\n position = i;\n break;\n }\n }\n\n if (position < 0)\n return this;\n\n if (list.length === 1) {\n list.length = 0;\n delete this._events[type];\n } else {\n list.splice(position, 1);\n }\n\n if (this._events.removeListener)\n this.emit('removeListener', type, listener);\n }\n\n return this;\n};\n\nEventEmitter.prototype.removeAllListeners = function(type) {\n var key, listeners;\n\n if (!this._events)\n return this;\n if (!this._events.removeListener) {\n if (arguments.length === 0)\n this._events = {};\n else if (this._events[type])\n delete this._events[type];\n return this;\n }\n if (arguments.length === 0) {\n for (key in this._events) {\n if (key === 'removeListener') continue;\n this.removeAllListeners(key);\n }\n this.removeAllListeners('removeListener');\n this._events = {};\n return this;\n }\n\n listeners = this._events[type];\n\n if (isFunction(listeners)) {\n this.removeListener(type, listeners);\n } else {\n while (listeners.length)\n this.removeListener(type, listeners[listeners.length - 1]);\n }\n delete this._events[type];\n\n return this;\n};\n\nEventEmitter.prototype.listeners = function(type) {\n var ret;\n if (!this._events || !this._events[type])\n ret = [];\n else if (isFunction(this._events[type]))\n ret = [this._events[type]];\n else\n ret = this._events[type].slice();\n return ret;\n};\n\nEventEmitter.listenerCount = function(emitter, type) {\n var ret;\n if (!emitter._events || !emitter._events[type])\n ret = 0;\n else if (isFunction(emitter._events[type]))\n ret = 1;\n else\n ret = emitter._events[type].length;\n return ret;\n};\n\nfunction isFunction(arg) {\n return typeof arg === 'function';\n}\n\nfunction isNumber(arg) {\n return typeof arg === 'number';\n}\n\nfunction isObject(arg) {\n return typeof arg === 'object' && arg !== null;\n}\n\nfunction isUndefined(arg) {\n return arg === void 0;\n}\n\n},\n{}],\n17:[function(_dereq_,module,exports){\nif (typeof Object.create === 'function') {\n module.exports = function inherits(ctor, superCtor) {\n ctor.super_ = superCtor\n ctor.prototype = Object.create(superCtor.prototype, {\n constructor: {\n value: ctor,\n enumerable: false,\n writable: true,\n configurable: true\n }\n });\n };\n} else {\n module.exports = function inherits(ctor, superCtor) {\n ctor.super_ = superCtor\n var TempCtor = function () {}\n TempCtor.prototype = superCtor.prototype\n ctor.prototype = new TempCtor()\n ctor.prototype.constructor = ctor\n }\n}\n\n},\n{}],\n18:[function(_dereq_,module,exports){\n\nvar process = module.exports = {};\n\nprocess.nextTick = (function () {\n var canSetImmediate = typeof window !== 'undefined'\n && window.setImmediate;\n var canPost = typeof window !== 'undefined'\n && window.postMessage && window.addEventListener\n ;\n\n if (canSetImmediate) {\n return function (f) { return window.setImmediate(f) };\n }\n\n if (canPost) {\n var queue = [];\n window.addEventListener('message', function (ev) {\n var source = ev.source;\n if ((source === window || source === null) && ev.data === 'process-tick') {\n ev.stopPropagation();\n if (queue.length > 0) {\n var fn = queue.shift();\n fn();\n }\n }\n }, true);\n\n return function nextTick(fn) {\n queue.push(fn);\n window.postMessage('process-tick', '*');\n };\n }\n\n return function nextTick(fn) {\n setTimeout(fn, 0);\n };\n})();\n\nprocess.title = 'browser';\nprocess.browser = true;\nprocess.env = {};\nprocess.argv = [];\n\nfunction noop() {}\n\nprocess.on = noop;\nprocess.once = noop;\nprocess.off = noop;\nprocess.emit = noop;\n\nprocess.binding = function (name) {\n throw new Error('process.binding is not supported');\n}\nprocess.cwd = function () { return '/' };\nprocess.chdir = function (dir) {\n throw new Error('process.chdir is not supported');\n};\n\n},\n{}],\n19:[function(_dereq_,module,exports){\nmodule.exports=_dereq_(14)\n},\n{}],\n20:[function(_dereq_,module,exports){\nmodule.exports=_dereq_(15)\n},\n{\"./support/isBuffer\":19,\"/usr/local/lib/node_modules/browserify/node_modules/insert-module-globals/node_modules/process/browser.js\":18,\"inherits\":17}]},{},[9])\n(9)\n\n});\n\nace.define(\"ace/mode/html_worker\",[], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar Mirror = require(\"../worker/mirror\").Mirror;\nvar SAXParser = require(\"./html/saxparser\").SAXParser;\n\nvar errorTypes = {\n \"expected-doctype-but-got-start-tag\": \"info\",\n \"expected-doctype-but-got-chars\": \"info\",\n \"non-html-root\": \"info\"\n};\n\nvar Worker = exports.Worker = function(sender) {\n Mirror.call(this, sender);\n this.setTimeout(400);\n this.context = null;\n};\n\noop.inherits(Worker, Mirror);\n\n(function() {\n\n this.setOptions = function(options) {\n this.context = options.context;\n };\n\n this.onUpdate = function() {\n var value = this.doc.getValue();\n if (!value)\n return;\n var parser = new SAXParser();\n var errors = [];\n var noop = function(){};\n parser.contentHandler = {\n startDocument: noop,\n endDocument: noop,\n startElement: noop,\n endElement: noop,\n characters: noop\n };\n parser.errorHandler = {\n error: function(message, location, code) {\n errors.push({\n row: location.line,\n column: location.column,\n text: message,\n type: errorTypes[code] || \"error\"\n });\n }\n };\n if (this.context)\n parser.parseFragment(value, this.context);\n else\n parser.parse(value);\n this.sender.emit(\"error\", errors);\n };\n\n}).call(Worker.prototype);\n\n});\n\nace.define(\"ace/lib/es5-shim\",[], function(require, exports, module) {\n\nfunction Empty() {}\n\nif (!Function.prototype.bind) {\n Function.prototype.bind = function bind(that) { // .length is 1\n var target = this;\n if (typeof target != \"function\") {\n throw new TypeError(\"Function.prototype.bind called on incompatible \" + target);\n }\n var args = slice.call(arguments, 1); // for normal call\n var bound = function () {\n\n if (this instanceof bound) {\n\n var result = target.apply(\n this,\n args.concat(slice.call(arguments))\n );\n if (Object(result) === result) {\n return result;\n }\n return this;\n\n } else {\n return target.apply(\n that,\n args.concat(slice.call(arguments))\n );\n\n }\n\n };\n if(target.prototype) {\n Empty.prototype = target.prototype;\n bound.prototype = new Empty();\n Empty.prototype = null;\n }\n return bound;\n };\n}\nvar call = Function.prototype.call;\nvar prototypeOfArray = Array.prototype;\nvar prototypeOfObject = Object.prototype;\nvar slice = prototypeOfArray.slice;\nvar _toString = call.bind(prototypeOfObject.toString);\nvar owns = call.bind(prototypeOfObject.hasOwnProperty);\nvar defineGetter;\nvar defineSetter;\nvar lookupGetter;\nvar lookupSetter;\nvar supportsAccessors;\nif ((supportsAccessors = owns(prototypeOfObject, \"__defineGetter__\"))) {\n defineGetter = call.bind(prototypeOfObject.__defineGetter__);\n defineSetter = call.bind(prototypeOfObject.__defineSetter__);\n lookupGetter = call.bind(prototypeOfObject.__lookupGetter__);\n lookupSetter = call.bind(prototypeOfObject.__lookupSetter__);\n}\nif ([1,2].splice(0).length != 2) {\n if(function() { // test IE < 9 to splice bug - see issue #138\n function makeArray(l) {\n var a = new Array(l+2);\n a[0] = a[1] = 0;\n return a;\n }\n var array = [], lengthBefore;\n \n array.splice.apply(array, makeArray(20));\n array.splice.apply(array, makeArray(26));\n\n lengthBefore = array.length; //46\n array.splice(5, 0, \"XXX\"); // add one element\n\n lengthBefore + 1 == array.length\n\n if (lengthBefore + 1 == array.length) {\n return true;// has right splice implementation without bugs\n }\n }()) {//IE 6/7\n var array_splice = Array.prototype.splice;\n Array.prototype.splice = function(start, deleteCount) {\n if (!arguments.length) {\n return [];\n } else {\n return array_splice.apply(this, [\n start === void 0 ? 0 : start,\n deleteCount === void 0 ? (this.length - start) : deleteCount\n ].concat(slice.call(arguments, 2)))\n }\n };\n } else {//IE8\n Array.prototype.splice = function(pos, removeCount){\n var length = this.length;\n if (pos > 0) {\n if (pos > length)\n pos = length;\n } else if (pos == void 0) {\n pos = 0;\n } else if (pos < 0) {\n pos = Math.max(length + pos, 0);\n }\n\n if (!(pos+removeCount < length))\n removeCount = length - pos;\n\n var removed = this.slice(pos, pos+removeCount);\n var insert = slice.call(arguments, 2);\n var add = insert.length; \n if (pos === length) {\n if (add) {\n this.push.apply(this, insert);\n }\n } else {\n var remove = Math.min(removeCount, length - pos);\n var tailOldPos = pos + remove;\n var tailNewPos = tailOldPos + add - remove;\n var tailCount = length - tailOldPos;\n var lengthAfterRemove = length - remove;\n\n if (tailNewPos < tailOldPos) { // case A\n for (var i = 0; i < tailCount; ++i) {\n this[tailNewPos+i] = this[tailOldPos+i];\n }\n } else if (tailNewPos > tailOldPos) { // case B\n for (i = tailCount; i--; ) {\n this[tailNewPos+i] = this[tailOldPos+i];\n }\n } // else, add == remove (nothing to do)\n\n if (add && pos === lengthAfterRemove) {\n this.length = lengthAfterRemove; // truncate array\n this.push.apply(this, insert);\n } else {\n this.length = lengthAfterRemove + add; // reserves space\n for (i = 0; i < add; ++i) {\n this[pos+i] = insert[i];\n }\n }\n }\n return removed;\n };\n }\n}\nif (!Array.isArray) {\n Array.isArray = function isArray(obj) {\n return _toString(obj) == \"[object Array]\";\n };\n}\nvar boxedString = Object(\"a\"),\n splitString = boxedString[0] != \"a\" || !(0 in boxedString);\n\nif (!Array.prototype.forEach) {\n Array.prototype.forEach = function forEach(fun /*, thisp*/) {\n var object = toObject(this),\n self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n object,\n thisp = arguments[1],\n i = -1,\n length = self.length >>> 0;\n if (_toString(fun) != \"[object Function]\") {\n throw new TypeError(); // TODO message\n }\n\n while (++i < length) {\n if (i in self) {\n fun.call(thisp, self[i], i, object);\n }\n }\n };\n}\nif (!Array.prototype.map) {\n Array.prototype.map = function map(fun /*, thisp*/) {\n var object = toObject(this),\n self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n object,\n length = self.length >>> 0,\n result = Array(length),\n thisp = arguments[1];\n if (_toString(fun) != \"[object Function]\") {\n throw new TypeError(fun + \" is not a function\");\n }\n\n for (var i = 0; i < length; i++) {\n if (i in self)\n result[i] = fun.call(thisp, self[i], i, object);\n }\n return result;\n };\n}\nif (!Array.prototype.filter) {\n Array.prototype.filter = function filter(fun /*, thisp */) {\n var object = toObject(this),\n self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n object,\n length = self.length >>> 0,\n result = [],\n value,\n thisp = arguments[1];\n if (_toString(fun) != \"[object Function]\") {\n throw new TypeError(fun + \" is not a function\");\n }\n\n for (var i = 0; i < length; i++) {\n if (i in self) {\n value = self[i];\n if (fun.call(thisp, value, i, object)) {\n result.push(value);\n }\n }\n }\n return result;\n };\n}\nif (!Array.prototype.every) {\n Array.prototype.every = function every(fun /*, thisp */) {\n var object = toObject(this),\n self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n object,\n length = self.length >>> 0,\n thisp = arguments[1];\n if (_toString(fun) != \"[object Function]\") {\n throw new TypeError(fun + \" is not a function\");\n }\n\n for (var i = 0; i < length; i++) {\n if (i in self && !fun.call(thisp, self[i], i, object)) {\n return false;\n }\n }\n return true;\n };\n}\nif (!Array.prototype.some) {\n Array.prototype.some = function some(fun /*, thisp */) {\n var object = toObject(this),\n self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n object,\n length = self.length >>> 0,\n thisp = arguments[1];\n if (_toString(fun) != \"[object Function]\") {\n throw new TypeError(fun + \" is not a function\");\n }\n\n for (var i = 0; i < length; i++) {\n if (i in self && fun.call(thisp, self[i], i, object)) {\n return true;\n }\n }\n return false;\n };\n}\nif (!Array.prototype.reduce) {\n Array.prototype.reduce = function reduce(fun /*, initial*/) {\n var object = toObject(this),\n self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n object,\n length = self.length >>> 0;\n if (_toString(fun) != \"[object Function]\") {\n throw new TypeError(fun + \" is not a function\");\n }\n if (!length && arguments.length == 1) {\n throw new TypeError(\"reduce of empty array with no initial value\");\n }\n\n var i = 0;\n var result;\n if (arguments.length >= 2) {\n result = arguments[1];\n } else {\n do {\n if (i in self) {\n result = self[i++];\n break;\n }\n if (++i >= length) {\n throw new TypeError(\"reduce of empty array with no initial value\");\n }\n } while (true);\n }\n\n for (; i < length; i++) {\n if (i in self) {\n result = fun.call(void 0, result, self[i], i, object);\n }\n }\n\n return result;\n };\n}\nif (!Array.prototype.reduceRight) {\n Array.prototype.reduceRight = function reduceRight(fun /*, initial*/) {\n var object = toObject(this),\n self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n object,\n length = self.length >>> 0;\n if (_toString(fun) != \"[object Function]\") {\n throw new TypeError(fun + \" is not a function\");\n }\n if (!length && arguments.length == 1) {\n throw new TypeError(\"reduceRight of empty array with no initial value\");\n }\n\n var result, i = length - 1;\n if (arguments.length >= 2) {\n result = arguments[1];\n } else {\n do {\n if (i in self) {\n result = self[i--];\n break;\n }\n if (--i < 0) {\n throw new TypeError(\"reduceRight of empty array with no initial value\");\n }\n } while (true);\n }\n\n do {\n if (i in this) {\n result = fun.call(void 0, result, self[i], i, object);\n }\n } while (i--);\n\n return result;\n };\n}\nif (!Array.prototype.indexOf || ([0, 1].indexOf(1, 2) != -1)) {\n Array.prototype.indexOf = function indexOf(sought /*, fromIndex */ ) {\n var self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n toObject(this),\n length = self.length >>> 0;\n\n if (!length) {\n return -1;\n }\n\n var i = 0;\n if (arguments.length > 1) {\n i = toInteger(arguments[1]);\n }\n i = i >= 0 ? i : Math.max(0, length + i);\n for (; i < length; i++) {\n if (i in self && self[i] === sought) {\n return i;\n }\n }\n return -1;\n };\n}\nif (!Array.prototype.lastIndexOf || ([0, 1].lastIndexOf(0, -3) != -1)) {\n Array.prototype.lastIndexOf = function lastIndexOf(sought /*, fromIndex */) {\n var self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n toObject(this),\n length = self.length >>> 0;\n\n if (!length) {\n return -1;\n }\n var i = length - 1;\n if (arguments.length > 1) {\n i = Math.min(i, toInteger(arguments[1]));\n }\n i = i >= 0 ? i : length - Math.abs(i);\n for (; i >= 0; i--) {\n if (i in self && sought === self[i]) {\n return i;\n }\n }\n return -1;\n };\n}\nif (!Object.getPrototypeOf) {\n Object.getPrototypeOf = function getPrototypeOf(object) {\n return object.__proto__ || (\n object.constructor ?\n object.constructor.prototype :\n prototypeOfObject\n );\n };\n}\nif (!Object.getOwnPropertyDescriptor) {\n var ERR_NON_OBJECT = \"Object.getOwnPropertyDescriptor called on a \" +\n \"non-object: \";\n Object.getOwnPropertyDescriptor = function getOwnPropertyDescriptor(object, property) {\n if ((typeof object != \"object\" && typeof object != \"function\") || object === null)\n throw new TypeError(ERR_NON_OBJECT + object);\n if (!owns(object, property))\n return;\n\n var descriptor, getter, setter;\n descriptor = { enumerable: true, configurable: true };\n if (supportsAccessors) {\n var prototype = object.__proto__;\n object.__proto__ = prototypeOfObject;\n\n var getter = lookupGetter(object, property);\n var setter = lookupSetter(object, property);\n object.__proto__ = prototype;\n\n if (getter || setter) {\n if (getter) descriptor.get = getter;\n if (setter) descriptor.set = setter;\n return descriptor;\n }\n }\n descriptor.value = object[property];\n return descriptor;\n };\n}\nif (!Object.getOwnPropertyNames) {\n Object.getOwnPropertyNames = function getOwnPropertyNames(object) {\n return Object.keys(object);\n };\n}\nif (!Object.create) {\n var createEmpty;\n if (Object.prototype.__proto__ === null) {\n createEmpty = function () {\n return { \"__proto__\": null };\n };\n } else {\n createEmpty = function () {\n var empty = {};\n for (var i in empty)\n empty[i] = null;\n empty.constructor =\n empty.hasOwnProperty =\n empty.propertyIsEnumerable =\n empty.isPrototypeOf =\n empty.toLocaleString =\n empty.toString =\n empty.valueOf =\n empty.__proto__ = null;\n return empty;\n }\n }\n\n Object.create = function create(prototype, properties) {\n var object;\n if (prototype === null) {\n object = createEmpty();\n } else {\n if (typeof prototype != \"object\")\n throw new TypeError(\"typeof prototype[\"+(typeof prototype)+\"] != 'object'\");\n var Type = function () {};\n Type.prototype = prototype;\n object = new Type();\n object.__proto__ = prototype;\n }\n if (properties !== void 0)\n Object.defineProperties(object, properties);\n return object;\n };\n}\n\nfunction doesDefinePropertyWork(object) {\n try {\n Object.defineProperty(object, \"sentinel\", {});\n return \"sentinel\" in object;\n } catch (exception) {\n }\n}\nif (Object.defineProperty) {\n var definePropertyWorksOnObject = doesDefinePropertyWork({});\n var definePropertyWorksOnDom = typeof document == \"undefined\" ||\n doesDefinePropertyWork(document.createElement(\"div\"));\n if (!definePropertyWorksOnObject || !definePropertyWorksOnDom) {\n var definePropertyFallback = Object.defineProperty;\n }\n}\n\nif (!Object.defineProperty || definePropertyFallback) {\n var ERR_NON_OBJECT_DESCRIPTOR = \"Property description must be an object: \";\n var ERR_NON_OBJECT_TARGET = \"Object.defineProperty called on non-object: \"\n var ERR_ACCESSORS_NOT_SUPPORTED = \"getters & setters can not be defined \" +\n \"on this javascript engine\";\n\n Object.defineProperty = function defineProperty(object, property, descriptor) {\n if ((typeof object != \"object\" && typeof object != \"function\") || object === null)\n throw new TypeError(ERR_NON_OBJECT_TARGET + object);\n if ((typeof descriptor != \"object\" && typeof descriptor != \"function\") || descriptor === null)\n throw new TypeError(ERR_NON_OBJECT_DESCRIPTOR + descriptor);\n if (definePropertyFallback) {\n try {\n return definePropertyFallback.call(Object, object, property, descriptor);\n } catch (exception) {\n }\n }\n if (owns(descriptor, \"value\")) {\n\n if (supportsAccessors && (lookupGetter(object, property) ||\n lookupSetter(object, property)))\n {\n var prototype = object.__proto__;\n object.__proto__ = prototypeOfObject;\n delete object[property];\n object[property] = descriptor.value;\n object.__proto__ = prototype;\n } else {\n object[property] = descriptor.value;\n }\n } else {\n if (!supportsAccessors)\n throw new TypeError(ERR_ACCESSORS_NOT_SUPPORTED);\n if (owns(descriptor, \"get\"))\n defineGetter(object, property, descriptor.get);\n if (owns(descriptor, \"set\"))\n defineSetter(object, property, descriptor.set);\n }\n\n return object;\n };\n}\nif (!Object.defineProperties) {\n Object.defineProperties = function defineProperties(object, properties) {\n for (var property in properties) {\n if (owns(properties, property))\n Object.defineProperty(object, property, properties[property]);\n }\n return object;\n };\n}\nif (!Object.seal) {\n Object.seal = function seal(object) {\n return object;\n };\n}\nif (!Object.freeze) {\n Object.freeze = function freeze(object) {\n return object;\n };\n}\ntry {\n Object.freeze(function () {});\n} catch (exception) {\n Object.freeze = (function freeze(freezeObject) {\n return function freeze(object) {\n if (typeof object == \"function\") {\n return object;\n } else {\n return freezeObject(object);\n }\n };\n })(Object.freeze);\n}\nif (!Object.preventExtensions) {\n Object.preventExtensions = function preventExtensions(object) {\n return object;\n };\n}\nif (!Object.isSealed) {\n Object.isSealed = function isSealed(object) {\n return false;\n };\n}\nif (!Object.isFrozen) {\n Object.isFrozen = function isFrozen(object) {\n return false;\n };\n}\nif (!Object.isExtensible) {\n Object.isExtensible = function isExtensible(object) {\n if (Object(object) === object) {\n throw new TypeError(); // TODO message\n }\n var name = '';\n while (owns(object, name)) {\n name += '?';\n }\n object[name] = true;\n var returnValue = owns(object, name);\n delete object[name];\n return returnValue;\n };\n}\nif (!Object.keys) {\n var hasDontEnumBug = true,\n dontEnums = [\n \"toString\",\n \"toLocaleString\",\n \"valueOf\",\n \"hasOwnProperty\",\n \"isPrototypeOf\",\n \"propertyIsEnumerable\",\n \"constructor\"\n ],\n dontEnumsLength = dontEnums.length;\n\n for (var key in {\"toString\": null}) {\n hasDontEnumBug = false;\n }\n\n Object.keys = function keys(object) {\n\n if (\n (typeof object != \"object\" && typeof object != \"function\") ||\n object === null\n ) {\n throw new TypeError(\"Object.keys called on a non-object\");\n }\n\n var keys = [];\n for (var name in object) {\n if (owns(object, name)) {\n keys.push(name);\n }\n }\n\n if (hasDontEnumBug) {\n for (var i = 0, ii = dontEnumsLength; i < ii; i++) {\n var dontEnum = dontEnums[i];\n if (owns(object, dontEnum)) {\n keys.push(dontEnum);\n }\n }\n }\n return keys;\n };\n\n}\nif (!Date.now) {\n Date.now = function now() {\n return new Date().getTime();\n };\n}\nvar ws = \"\\x09\\x0A\\x0B\\x0C\\x0D\\x20\\xA0\\u1680\\u180E\\u2000\\u2001\\u2002\\u2003\" +\n \"\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200A\\u202F\\u205F\\u3000\\u2028\" +\n \"\\u2029\\uFEFF\";\nif (!String.prototype.trim || ws.trim()) {\n ws = \"[\" + ws + \"]\";\n var trimBeginRegexp = new RegExp(\"^\" + ws + ws + \"*\"),\n trimEndRegexp = new RegExp(ws + ws + \"*$\");\n String.prototype.trim = function trim() {\n return String(this).replace(trimBeginRegexp, \"\").replace(trimEndRegexp, \"\");\n };\n}\n\nfunction toInteger(n) {\n n = +n;\n if (n !== n) { // isNaN\n n = 0;\n } else if (n !== 0 && n !== (1/0) && n !== -(1/0)) {\n n = (n > 0 || -1) * Math.floor(Math.abs(n));\n }\n return n;\n}\n\nfunction isPrimitive(input) {\n var type = typeof input;\n return (\n input === null ||\n type === \"undefined\" ||\n type === \"boolean\" ||\n type === \"number\" ||\n type === \"string\"\n );\n}\n\nfunction toPrimitive(input) {\n var val, valueOf, toString;\n if (isPrimitive(input)) {\n return input;\n }\n valueOf = input.valueOf;\n if (typeof valueOf === \"function\") {\n val = valueOf.call(input);\n if (isPrimitive(val)) {\n return val;\n }\n }\n toString = input.toString;\n if (typeof toString === \"function\") {\n val = toString.call(input);\n if (isPrimitive(val)) {\n return val;\n }\n }\n throw new TypeError();\n}\nvar toObject = function (o) {\n if (o == null) { // this matches both null and undefined\n throw new TypeError(\"can't convert \"+o+\" to object\");\n }\n return Object(o);\n};\n\n});\n"), } file2c := &embedded.EmbeddedFile{ Filename: "344887623007a0f27b9ba333487cd13f.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/theme/solarized_light\",[\"require\",\"exports\",\"module\",\"ace/lib/dom\"], function(require, exports, module) {\n\nexports.isDark = false;\nexports.cssClass = \"ace-solarized-light\";\nexports.cssText = \".ace-solarized-light .ace_gutter {\\\nbackground: #fbf1d3;\\\ncolor: #333\\\n}\\\n.ace-solarized-light .ace_print-margin {\\\nwidth: 1px;\\\nbackground: #e8e8e8\\\n}\\\n.ace-solarized-light {\\\nbackground-color: #FDF6E3;\\\ncolor: #586E75\\\n}\\\n.ace-solarized-light .ace_cursor {\\\ncolor: #000000\\\n}\\\n.ace-solarized-light .ace_marker-layer .ace_selection {\\\nbackground: rgba(7, 54, 67, 0.09)\\\n}\\\n.ace-solarized-light.ace_multiselect .ace_selection.ace_start {\\\nbox-shadow: 0 0 3px 0px #FDF6E3;\\\n}\\\n.ace-solarized-light .ace_marker-layer .ace_step {\\\nbackground: rgb(255, 255, 0)\\\n}\\\n.ace-solarized-light .ace_marker-layer .ace_bracket {\\\nmargin: -1px 0 0 -1px;\\\nborder: 1px solid rgba(147, 161, 161, 0.50)\\\n}\\\n.ace-solarized-light .ace_marker-layer .ace_active-line {\\\nbackground: #EEE8D5\\\n}\\\n.ace-solarized-light .ace_gutter-active-line {\\\nbackground-color : #EDE5C1\\\n}\\\n.ace-solarized-light .ace_marker-layer .ace_selected-word {\\\nborder: 1px solid #073642\\\n}\\\n.ace-solarized-light .ace_invisible {\\\ncolor: rgba(147, 161, 161, 0.50)\\\n}\\\n.ace-solarized-light .ace_keyword,\\\n.ace-solarized-light .ace_meta,\\\n.ace-solarized-light .ace_support.ace_class,\\\n.ace-solarized-light .ace_support.ace_type {\\\ncolor: #859900\\\n}\\\n.ace-solarized-light .ace_constant.ace_character,\\\n.ace-solarized-light .ace_constant.ace_other {\\\ncolor: #CB4B16\\\n}\\\n.ace-solarized-light .ace_constant.ace_language {\\\ncolor: #B58900\\\n}\\\n.ace-solarized-light .ace_constant.ace_numeric {\\\ncolor: #D33682\\\n}\\\n.ace-solarized-light .ace_fold {\\\nbackground-color: #268BD2;\\\nborder-color: #586E75\\\n}\\\n.ace-solarized-light .ace_entity.ace_name.ace_function,\\\n.ace-solarized-light .ace_entity.ace_name.ace_tag,\\\n.ace-solarized-light .ace_support.ace_function,\\\n.ace-solarized-light .ace_variable,\\\n.ace-solarized-light .ace_variable.ace_language {\\\ncolor: #268BD2\\\n}\\\n.ace-solarized-light .ace_storage {\\\ncolor: #073642\\\n}\\\n.ace-solarized-light .ace_string {\\\ncolor: #2AA198\\\n}\\\n.ace-solarized-light .ace_string.ace_regexp {\\\ncolor: #D30102\\\n}\\\n.ace-solarized-light .ace_comment,\\\n.ace-solarized-light .ace_entity.ace_other.ace_attribute-name {\\\ncolor: #93A1A1\\\n}\\\n.ace-solarized-light .ace_indent-guide {\\\nbackground: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWNgYGBgYHjy8NJ/AAjgA5fzQUmBAAAAAElFTkSuQmCC) right repeat-y\\\n}\";\n\nvar dom = require(\"../lib/dom\");\ndom.importCssString(exports.cssText, exports.cssClass);\n}); (function() {\n ace.require([\"ace/theme/solarized_light\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file2d := &embedded.EmbeddedFile{ Filename: "3497c161c30d19381330bad5ccffc91e.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/html_elixir\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText =undefined;\nexports.scope = \"html_elixir\";\n\n}); (function() {\n ace.require([\"ace/snippets/html_elixir\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file2e := &embedded.EmbeddedFile{ Filename: "34bfb804dde47824b1f3f4292afc3669.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/luapage\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText =undefined;\nexports.scope = \"luapage\";\n\n}); (function() {\n ace.require([\"ace/snippets/luapage\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file2f := &embedded.EmbeddedFile{ Filename: "35cee3c5585a2a598d7fea83ec6112f9.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/slim_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/config\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar modes = require(\"../config\").$modes;\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar SlimHighlightRules = function() {\n\n this.$rules = {\n \"start\": [\n {\n token: \"keyword\",\n regex: /^(\\s*)(\\w+):\\s*/,\n onMatch: function(value, state, stack, line) {\n var indent = /^\\s*/.exec(line)[0];\n var m = value.match(/^(\\s*)(\\w+):/);\n var language = m[2];\n if (!/^(javascript|ruby|coffee|markdown|css|scss|sass|less)$/.test(language))\n language = \"\";\n stack.unshift(\"language-embed\", [], [indent, language], state);\n return this.token;\n },\n stateName: \"language-embed\",\n next: [{\n token: \"string\",\n regex: /^(\\s*)/,\n onMatch: function(value, state, stack, line) {\n var indent = stack[2][0];\n if (indent.length >= value.length) {\n stack.splice(0, 3);\n this.next = stack.shift();\n return this.token;\n }\n this.next = \"\";\n return [{type: \"text\", value: indent}];\n },\n next: \"\"\n }, {\n token: \"string\",\n regex: /.+/,\n onMatch: function(value, state, stack, line) {\n var indent = stack[2][0];\n var language = stack[2][1];\n var embedState = stack[1];\n \n if (modes[language]) {\n var data = modes[language].getTokenizer().getLineTokens(line.slice(indent.length), embedState.slice(0));\n stack[1] = data.state;\n return data.tokens;\n }\n return this.token;\n }\n }]\n },\n {\n token: 'constant.begin.javascript.filter.slim',\n regex: '^(\\\\s*)():$'\n }, {\n token: 'constant.begin..filter.slim',\n regex: '^(\\\\s*)(ruby):$'\n }, {\n token: 'constant.begin.coffeescript.filter.slim',\n regex: '^(\\\\s*)():$'\n }, {\n token: 'constant.begin..filter.slim',\n regex: '^(\\\\s*)(markdown):$'\n }, {\n token: 'constant.begin.css.filter.slim',\n regex: '^(\\\\s*)():$'\n }, {\n token: 'constant.begin.scss.filter.slim',\n regex: '^(\\\\s*)():$'\n }, {\n token: 'constant.begin..filter.slim',\n regex: '^(\\\\s*)(sass):$'\n }, {\n token: 'constant.begin..filter.slim',\n regex: '^(\\\\s*)(less):$'\n }, {\n token: 'constant.begin..filter.slim',\n regex: '^(\\\\s*)(erb):$'\n }, {\n token: 'keyword.html.tags.slim',\n regex: '^(\\\\s*)((:?\\\\*(\\\\w)+)|doctype html|abbr|acronym|address|applet|area|article|aside|audio|base|basefont|bdo|big|blockquote|body|br|button|canvas|caption|center|cite|code|col|colgroup|command|datalist|dd|del|details|dialog|dfn|dir|div|dl|dt|embed|fieldset|figure|font|footer|form|frame|frameset|h1|h2|h3|h4|h5|h6|head|header|hgroup|hr|html|i|iframe|img|input|ins|keygen|kbd|label|legend|link|li|map|mark|menu|meta|meter|nav|noframes|noscript|object|ol|optgroup|option|output|p|param|pre|progress|q|rp|rt|ruby|samp|script|section|select|small|source|span|strike|strong|style|sub|sup|table|tbody|td|textarea|tfoot|th|thead|time|title|tr|tt|ul|var|video|xmp|b|u|s|em|a)(?:([.#](\\\\w|\\\\.)+)+\\\\s?)?\\\\b'\n\n }, {\n token: 'keyword.slim',\n regex: '^(\\\\s*)(?:([.#](\\\\w|\\\\.)+)+\\\\s?)'\n }, {\n token: \"string\",\n regex: /^(\\s*)('|\\||\\/|(\\/!))\\s*/,\n onMatch: function(val, state, stack, line) {\n var indent = /^\\s*/.exec(line)[0];\n if (stack.length < 1) {\n stack.push(this.next);\n }\n else {\n stack[0] = \"mlString\";\n }\n\n if (stack.length < 2) {\n stack.push(indent.length);\n }\n else {\n stack[1] = indent.length;\n }\n return this.token;\n },\n next: \"mlString\"\n }, {\n token: 'keyword.control.slim',\n regex: '^(\\\\s*)(\\\\-|==|=)',\n push: [{\n token: 'control.end.slim',\n regex: '$',\n next: \"pop\"\n }, {\n include: \"rubyline\"\n }, {\n include: \"misc\"\n }]\n\n }, {\n token: 'paren',\n regex: '\\\\(',\n push: [{\n token: 'paren',\n regex: '\\\\)',\n next: \"pop\"\n }, {\n include: \"misc\"\n }]\n\n }, {\n token: 'paren',\n regex: '\\\\[',\n push: [{\n token: 'paren',\n regex: '\\\\]',\n next: \"pop\"\n }, {\n include: \"misc\"\n }]\n }, {\n include: \"misc\"\n }\n ],\n \"mlString\": [{\n token: \"indent\",\n regex: /^\\s*/,\n onMatch: function(val, state, stack) {\n var curIndent = stack[1];\n\n if (curIndent >= val.length) {\n this.next = \"start\";\n stack.splice(0);\n }\n else {\n this.next = \"mlString\";\n }\n return this.token;\n },\n next: \"start\"\n }, {\n defaultToken: \"string\"\n }],\n \"rubyline\": [{\n token: \"keyword.operator.ruby.embedded.slim\",\n regex: \"(==|=)(<>|><|<'|'<|<|>)?|-\"\n }, {\n token: \"list.ruby.operators.slim\",\n regex: \"(\\\\b)(for|in|do|if|else|elsif|unless|while|yield|not|and|or)\\\\b\"\n }, {\n token: \"string\",\n regex: \"['](.)*?[']\"\n }, {\n token: \"string\",\n regex: \"[\\\"](.)*?[\\\"]\"\n }],\n \"misc\": [{\n token: 'class.variable.slim',\n regex: '\\\\@([a-zA-Z_][a-zA-Z0-9_]*)\\\\b'\n }, {\n token: \"list.meta.slim\",\n regex: \"(\\\\b)(true|false|nil)(\\\\b)\"\n }, {\n token: 'keyword.operator.equals.slim',\n regex: '='\n }, {\n token: \"string\",\n regex: \"['](.)*?[']\"\n }, {\n token: \"string\",\n regex: \"[\\\"](.)*?[\\\"]\"\n }]\n };\n this.normalizeRules();\n};\n\n\noop.inherits(SlimHighlightRules, TextHighlightRules);\n\nexports.SlimHighlightRules = SlimHighlightRules;\n});\n\nace.define(\"ace/mode/doc_comment_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar DocCommentHighlightRules = function() {\n this.$rules = {\n \"start\" : [ {\n token : \"comment.doc.tag\",\n regex : \"@[\\\\w\\\\d_]+\" // TODO: fix email addresses\n }, \n DocCommentHighlightRules.getTagRule(),\n {\n defaultToken : \"comment.doc\",\n caseInsensitive: true\n }]\n };\n};\n\noop.inherits(DocCommentHighlightRules, TextHighlightRules);\n\nDocCommentHighlightRules.getTagRule = function(start) {\n return {\n token : \"comment.doc.tag.storage.type\",\n regex : \"\\\\b(?:TODO|FIXME|XXX|HACK)\\\\b\"\n };\n};\n\nDocCommentHighlightRules.getStartRule = function(start) {\n return {\n token : \"comment.doc\", // doc comment\n regex : \"\\\\/\\\\*(?=\\\\*)\",\n next : start\n };\n};\n\nDocCommentHighlightRules.getEndRule = function (start) {\n return {\n token : \"comment.doc\", // closing comment\n regex : \"\\\\*\\\\/\",\n next : start\n };\n};\n\n\nexports.DocCommentHighlightRules = DocCommentHighlightRules;\n\n});\n\nace.define(\"ace/mode/javascript_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/doc_comment_highlight_rules\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar DocCommentHighlightRules = require(\"./doc_comment_highlight_rules\").DocCommentHighlightRules;\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar identifierRe = \"[a-zA-Z\\\\$_\\u00a1-\\uffff][a-zA-Z\\\\d\\\\$_\\u00a1-\\uffff]*\";\n\nvar JavaScriptHighlightRules = function(options) {\n var keywordMapper = this.createKeywordMapper({\n \"variable.language\":\n \"Array|Boolean|Date|Function|Iterator|Number|Object|RegExp|String|Proxy|\" + // Constructors\n \"Namespace|QName|XML|XMLList|\" + // E4X\n \"ArrayBuffer|Float32Array|Float64Array|Int16Array|Int32Array|Int8Array|\" +\n \"Uint16Array|Uint32Array|Uint8Array|Uint8ClampedArray|\" +\n \"Error|EvalError|InternalError|RangeError|ReferenceError|StopIteration|\" + // Errors\n \"SyntaxError|TypeError|URIError|\" +\n \"decodeURI|decodeURIComponent|encodeURI|encodeURIComponent|eval|isFinite|\" + // Non-constructor functions\n \"isNaN|parseFloat|parseInt|\" +\n \"JSON|Math|\" + // Other\n \"this|arguments|prototype|window|document\" , // Pseudo\n \"keyword\":\n \"const|yield|import|get|set|async|await|\" +\n \"break|case|catch|continue|default|delete|do|else|finally|for|function|\" +\n \"if|in|of|instanceof|new|return|switch|throw|try|typeof|let|var|while|with|debugger|\" +\n \"__parent__|__count__|escape|unescape|with|__proto__|\" +\n \"class|enum|extends|super|export|implements|private|public|interface|package|protected|static\",\n \"storage.type\":\n \"const|let|var|function\",\n \"constant.language\":\n \"null|Infinity|NaN|undefined\",\n \"support.function\":\n \"alert\",\n \"constant.language.boolean\": \"true|false\"\n }, \"identifier\");\n var kwBeforeRe = \"case|do|else|finally|in|instanceof|return|throw|try|typeof|yield|void\";\n\n var escapedRe = \"\\\\\\\\(?:x[0-9a-fA-F]{2}|\" + // hex\n \"u[0-9a-fA-F]{4}|\" + // unicode\n \"u{[0-9a-fA-F]{1,6}}|\" + // es6 unicode\n \"[0-2][0-7]{0,2}|\" + // oct\n \"3[0-7][0-7]?|\" + // oct\n \"[4-7][0-7]?|\" + //oct\n \".)\";\n\n this.$rules = {\n \"no_regex\" : [\n DocCommentHighlightRules.getStartRule(\"doc-start\"),\n comments(\"no_regex\"),\n {\n token : \"string\",\n regex : \"'(?=.)\",\n next : \"qstring\"\n }, {\n token : \"string\",\n regex : '\"(?=.)',\n next : \"qqstring\"\n }, {\n token : \"constant.numeric\", // hexadecimal, octal and binary\n regex : /0(?:[xX][0-9a-fA-F]+|[oO][0-7]+|[bB][01]+)\\b/\n }, {\n token : \"constant.numeric\", // decimal integers and floats\n regex : /(?:\\d\\d*(?:\\.\\d*)?|\\.\\d+)(?:[eE][+-]?\\d+\\b)?/\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"support.function\",\n \"punctuation.operator\", \"entity.name.function\", \"text\",\"keyword.operator\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(prototype)(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"entity.name.function\", \"text\", \"keyword.operator\", \"text\", \"storage.type\",\n \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\",\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s+)(\\\\w+)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(function)(\\\\s+)(\" + identifierRe + \")(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"entity.name.function\", \"text\", \"punctuation.operator\",\n \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\s*)(:)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"text\", \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(:)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : \"keyword\",\n regex : \"from(?=\\\\s*('|\\\"))\"\n }, {\n token : \"keyword\",\n regex : \"(?:\" + kwBeforeRe + \")\\\\b\",\n next : \"start\"\n }, {\n token : [\"support.constant\"],\n regex : /that\\b/\n }, {\n token : [\"storage.type\", \"punctuation.operator\", \"support.function.firebug\"],\n regex : /(console)(\\.)(warn|info|log|error|time|trace|timeEnd|assert)\\b/\n }, {\n token : keywordMapper,\n regex : identifierRe\n }, {\n token : \"punctuation.operator\",\n regex : /[.](?![.])/,\n next : \"property\"\n }, {\n token : \"storage.type\",\n regex : /=>/,\n next : \"start\"\n }, {\n token : \"keyword.operator\",\n regex : /--|\\+\\+|\\.{3}|===|==|=|!=|!==|<+=?|>+=?|!|&&|\\|\\||\\?:|[!$%&*+\\-~\\/^]=?/,\n next : \"start\"\n }, {\n token : \"punctuation.operator\",\n regex : /[?:,;.]/,\n next : \"start\"\n }, {\n token : \"paren.lparen\",\n regex : /[\\[({]/,\n next : \"start\"\n }, {\n token : \"paren.rparen\",\n regex : /[\\])}]/\n }, {\n token: \"comment\",\n regex: /^#!.*$/\n }\n ],\n property: [{\n token : \"text\",\n regex : \"\\\\s+\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\",\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(?:(\\\\s+)(\\\\w+))?(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : \"punctuation.operator\",\n regex : /[.](?![.])/\n }, {\n token : \"support.function\",\n regex : /(s(?:h(?:ift|ow(?:Mod(?:elessDialog|alDialog)|Help))|croll(?:X|By(?:Pages|Lines)?|Y|To)?|t(?:op|rike)|i(?:n|zeToContent|debar|gnText)|ort|u(?:p|b(?:str(?:ing)?)?)|pli(?:ce|t)|e(?:nd|t(?:Re(?:sizable|questHeader)|M(?:i(?:nutes|lliseconds)|onth)|Seconds|Ho(?:tKeys|urs)|Year|Cursor|Time(?:out)?|Interval|ZOptions|Date|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Date|FullYear)|FullYear|Active)|arch)|qrt|lice|avePreferences|mall)|h(?:ome|andleEvent)|navigate|c(?:har(?:CodeAt|At)|o(?:s|n(?:cat|textual|firm)|mpile)|eil|lear(?:Timeout|Interval)?|a(?:ptureEvents|ll)|reate(?:StyleSheet|Popup|EventObject))|t(?:o(?:GMTString|S(?:tring|ource)|U(?:TCString|pperCase)|Lo(?:caleString|werCase))|est|a(?:n|int(?:Enabled)?))|i(?:s(?:NaN|Finite)|ndexOf|talics)|d(?:isableExternalCapture|ump|etachEvent)|u(?:n(?:shift|taint|escape|watch)|pdateCommands)|j(?:oin|avaEnabled)|p(?:o(?:p|w)|ush|lugins.refresh|a(?:ddings|rse(?:Int|Float)?)|r(?:int|ompt|eference))|e(?:scape|nableExternalCapture|val|lementFromPoint|x(?:p|ec(?:Script|Command)?))|valueOf|UTC|queryCommand(?:State|Indeterm|Enabled|Value)|f(?:i(?:nd|le(?:ModifiedDate|Size|CreatedDate|UpdatedDate)|xed)|o(?:nt(?:size|color)|rward)|loor|romCharCode)|watch|l(?:ink|o(?:ad|g)|astIndexOf)|a(?:sin|nchor|cos|t(?:tachEvent|ob|an(?:2)?)|pply|lert|b(?:s|ort))|r(?:ou(?:nd|teEvents)|e(?:size(?:By|To)|calc|turnValue|place|verse|l(?:oad|ease(?:Capture|Events)))|andom)|g(?:o|et(?:ResponseHeader|M(?:i(?:nutes|lliseconds)|onth)|Se(?:conds|lection)|Hours|Year|Time(?:zoneOffset)?|Da(?:y|te)|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Da(?:y|te)|FullYear)|FullYear|A(?:ttention|llResponseHeaders)))|m(?:in|ove(?:B(?:y|elow)|To(?:Absolute)?|Above)|ergeAttributes|a(?:tch|rgins|x))|b(?:toa|ig|o(?:ld|rderWidths)|link|ack))\\b(?=\\()/\n }, {\n token : \"support.function.dom\",\n regex : /(s(?:ub(?:stringData|mit)|plitText|e(?:t(?:NamedItem|Attribute(?:Node)?)|lect))|has(?:ChildNodes|Feature)|namedItem|c(?:l(?:ick|o(?:se|neNode))|reate(?:C(?:omment|DATASection|aption)|T(?:Head|extNode|Foot)|DocumentFragment|ProcessingInstruction|E(?:ntityReference|lement)|Attribute))|tabIndex|i(?:nsert(?:Row|Before|Cell|Data)|tem)|open|delete(?:Row|C(?:ell|aption)|T(?:Head|Foot)|Data)|focus|write(?:ln)?|a(?:dd|ppend(?:Child|Data))|re(?:set|place(?:Child|Data)|move(?:NamedItem|Child|Attribute(?:Node)?)?)|get(?:NamedItem|Element(?:sBy(?:Name|TagName|ClassName)|ById)|Attribute(?:Node)?)|blur)\\b(?=\\()/\n }, {\n token : \"support.constant\",\n regex : /(s(?:ystemLanguage|cr(?:ipts|ollbars|een(?:X|Y|Top|Left))|t(?:yle(?:Sheets)?|atus(?:Text|bar)?)|ibling(?:Below|Above)|ource|uffixes|e(?:curity(?:Policy)?|l(?:ection|f)))|h(?:istory|ost(?:name)?|as(?:h|Focus))|y|X(?:MLDocument|SLDocument)|n(?:ext|ame(?:space(?:s|URI)|Prop))|M(?:IN_VALUE|AX_VALUE)|c(?:haracterSet|o(?:n(?:structor|trollers)|okieEnabled|lorDepth|mp(?:onents|lete))|urrent|puClass|l(?:i(?:p(?:boardData)?|entInformation)|osed|asses)|alle(?:e|r)|rypto)|t(?:o(?:olbar|p)|ext(?:Transform|Indent|Decoration|Align)|ags)|SQRT(?:1_2|2)|i(?:n(?:ner(?:Height|Width)|put)|ds|gnoreCase)|zIndex|o(?:scpu|n(?:readystatechange|Line)|uter(?:Height|Width)|p(?:sProfile|ener)|ffscreenBuffering)|NEGATIVE_INFINITY|d(?:i(?:splay|alog(?:Height|Top|Width|Left|Arguments)|rectories)|e(?:scription|fault(?:Status|Ch(?:ecked|arset)|View)))|u(?:ser(?:Profile|Language|Agent)|n(?:iqueID|defined)|pdateInterval)|_content|p(?:ixelDepth|ort|ersonalbar|kcs11|l(?:ugins|atform)|a(?:thname|dding(?:Right|Bottom|Top|Left)|rent(?:Window|Layer)?|ge(?:X(?:Offset)?|Y(?:Offset)?))|r(?:o(?:to(?:col|type)|duct(?:Sub)?|mpter)|e(?:vious|fix)))|e(?:n(?:coding|abledPlugin)|x(?:ternal|pando)|mbeds)|v(?:isibility|endor(?:Sub)?|Linkcolor)|URLUnencoded|P(?:I|OSITIVE_INFINITY)|f(?:ilename|o(?:nt(?:Size|Family|Weight)|rmName)|rame(?:s|Element)|gColor)|E|whiteSpace|l(?:i(?:stStyleType|n(?:eHeight|kColor))|o(?:ca(?:tion(?:bar)?|lName)|wsrc)|e(?:ngth|ft(?:Context)?)|a(?:st(?:M(?:odified|atch)|Index|Paren)|yer(?:s|X)|nguage))|a(?:pp(?:MinorVersion|Name|Co(?:deName|re)|Version)|vail(?:Height|Top|Width|Left)|ll|r(?:ity|guments)|Linkcolor|bove)|r(?:ight(?:Context)?|e(?:sponse(?:XML|Text)|adyState))|global|x|m(?:imeTypes|ultiline|enubar|argin(?:Right|Bottom|Top|Left))|L(?:N(?:10|2)|OG(?:10E|2E))|b(?:o(?:ttom|rder(?:Width|RightWidth|BottomWidth|Style|Color|TopWidth|LeftWidth))|ufferDepth|elow|ackground(?:Color|Image)))\\b/\n }, {\n token : \"identifier\",\n regex : identifierRe\n }, {\n regex: \"\",\n token: \"empty\",\n next: \"no_regex\"\n }\n ],\n \"start\": [\n DocCommentHighlightRules.getStartRule(\"doc-start\"),\n comments(\"start\"),\n {\n token: \"string.regexp\",\n regex: \"\\\\/\",\n next: \"regex\"\n }, {\n token : \"text\",\n regex : \"\\\\s+|^$\",\n next : \"start\"\n }, {\n token: \"empty\",\n regex: \"\",\n next: \"no_regex\"\n }\n ],\n \"regex\": [\n {\n token: \"regexp.keyword.operator\",\n regex: \"\\\\\\\\(?:u[\\\\da-fA-F]{4}|x[\\\\da-fA-F]{2}|.)\"\n }, {\n token: \"string.regexp\",\n regex: \"/[sxngimy]*\",\n next: \"no_regex\"\n }, {\n token : \"invalid\",\n regex: /\\{\\d+\\b,?\\d*\\}[+*]|[+*$^?][+*]|[$^][?]|\\?{3,}/\n }, {\n token : \"constant.language.escape\",\n regex: /\\(\\?[:=!]|\\)|\\{\\d+\\b,?\\d*\\}|[+*]\\?|[()$^+*?.]/\n }, {\n token : \"constant.language.delimiter\",\n regex: /\\|/\n }, {\n token: \"constant.language.escape\",\n regex: /\\[\\^?/,\n next: \"regex_character_class\"\n }, {\n token: \"empty\",\n regex: \"$\",\n next: \"no_regex\"\n }, {\n defaultToken: \"string.regexp\"\n }\n ],\n \"regex_character_class\": [\n {\n token: \"regexp.charclass.keyword.operator\",\n regex: \"\\\\\\\\(?:u[\\\\da-fA-F]{4}|x[\\\\da-fA-F]{2}|.)\"\n }, {\n token: \"constant.language.escape\",\n regex: \"]\",\n next: \"regex\"\n }, {\n token: \"constant.language.escape\",\n regex: \"-\"\n }, {\n token: \"empty\",\n regex: \"$\",\n next: \"no_regex\"\n }, {\n defaultToken: \"string.regexp.charachterclass\"\n }\n ],\n \"function_arguments\": [\n {\n token: \"variable.parameter\",\n regex: identifierRe\n }, {\n token: \"punctuation.operator\",\n regex: \"[, ]+\"\n }, {\n token: \"punctuation.operator\",\n regex: \"$\"\n }, {\n token: \"empty\",\n regex: \"\",\n next: \"no_regex\"\n }\n ],\n \"qqstring\" : [\n {\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"string\",\n regex : \"\\\\\\\\$\",\n consumeLineEnd : true\n }, {\n token : \"string\",\n regex : '\"|$',\n next : \"no_regex\"\n }, {\n defaultToken: \"string\"\n }\n ],\n \"qstring\" : [\n {\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"string\",\n regex : \"\\\\\\\\$\",\n consumeLineEnd : true\n }, {\n token : \"string\",\n regex : \"'|$\",\n next : \"no_regex\"\n }, {\n defaultToken: \"string\"\n }\n ]\n };\n\n\n if (!options || !options.noES6) {\n this.$rules.no_regex.unshift({\n regex: \"[{}]\", onMatch: function(val, state, stack) {\n this.next = val == \"{\" ? this.nextState : \"\";\n if (val == \"{\" && stack.length) {\n stack.unshift(\"start\", state);\n }\n else if (val == \"}\" && stack.length) {\n stack.shift();\n this.next = stack.shift();\n if (this.next.indexOf(\"string\") != -1 || this.next.indexOf(\"jsx\") != -1)\n return \"paren.quasi.end\";\n }\n return val == \"{\" ? \"paren.lparen\" : \"paren.rparen\";\n },\n nextState: \"start\"\n }, {\n token : \"string.quasi.start\",\n regex : /`/,\n push : [{\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"paren.quasi.start\",\n regex : /\\${/,\n push : \"start\"\n }, {\n token : \"string.quasi.end\",\n regex : /`/,\n next : \"pop\"\n }, {\n defaultToken: \"string.quasi\"\n }]\n });\n\n if (!options || options.jsx != false)\n JSX.call(this);\n }\n\n this.embedRules(DocCommentHighlightRules, \"doc-\",\n [ DocCommentHighlightRules.getEndRule(\"no_regex\") ]);\n\n this.normalizeRules();\n};\n\noop.inherits(JavaScriptHighlightRules, TextHighlightRules);\n\nfunction JSX() {\n var tagRegex = identifierRe.replace(\"\\\\d\", \"\\\\d\\\\-\");\n var jsxTag = {\n onMatch : function(val, state, stack) {\n var offset = val.charAt(1) == \"/\" ? 2 : 1;\n if (offset == 1) {\n if (state != this.nextState)\n stack.unshift(this.next, this.nextState, 0);\n else\n stack.unshift(this.next);\n stack[2]++;\n } else if (offset == 2) {\n if (state == this.nextState) {\n stack[1]--;\n if (!stack[1] || stack[1] < 0) {\n stack.shift();\n stack.shift();\n }\n }\n }\n return [{\n type: \"meta.tag.punctuation.\" + (offset == 1 ? \"\" : \"end-\") + \"tag-open.xml\",\n value: val.slice(0, offset)\n }, {\n type: \"meta.tag.tag-name.xml\",\n value: val.substr(offset)\n }];\n },\n regex : \"\",\n onMatch : function(value, currentState, stack) {\n if (currentState == stack[0])\n stack.shift();\n if (value.length == 2) {\n if (stack[0] == this.nextState)\n stack[1]--;\n if (!stack[1] || stack[1] < 0) {\n stack.splice(0, 2);\n }\n }\n this.next = stack[0] || \"start\";\n return [{type: this.token, value: value}];\n },\n nextState: \"jsx\"\n },\n jsxJsRule,\n comments(\"jsxAttributes\"),\n {\n token : \"entity.other.attribute-name.xml\",\n regex : tagRegex\n }, {\n token : \"keyword.operator.attribute-equals.xml\",\n regex : \"=\"\n }, {\n token : \"text.tag-whitespace.xml\",\n regex : \"\\\\s+\"\n }, {\n token : \"string.attribute-value.xml\",\n regex : \"'\",\n stateName : \"jsx_attr_q\",\n push : [\n {token : \"string.attribute-value.xml\", regex: \"'\", next: \"pop\"},\n {include : \"reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n }, {\n token : \"string.attribute-value.xml\",\n regex : '\"',\n stateName : \"jsx_attr_qq\",\n push : [\n {token : \"string.attribute-value.xml\", regex: '\"', next: \"pop\"},\n {include : \"reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n },\n jsxTag\n ];\n this.$rules.reference = [{\n token : \"constant.language.escape.reference.xml\",\n regex : \"(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\\\.-]+;)\"\n }];\n}\n\nfunction comments(next) {\n return [\n {\n token : \"comment\", // multi line comment\n regex : /\\/\\*/,\n next: [\n DocCommentHighlightRules.getTagRule(),\n {token : \"comment\", regex : \"\\\\*\\\\/\", next : next || \"pop\"},\n {defaultToken : \"comment\", caseInsensitive: true}\n ]\n }, {\n token : \"comment\",\n regex : \"\\\\/\\\\/\",\n next: [\n DocCommentHighlightRules.getTagRule(),\n {token : \"comment\", regex : \"$|^\", next : next || \"pop\"},\n {defaultToken : \"comment\", caseInsensitive: true}\n ]\n }\n ];\n}\nexports.JavaScriptHighlightRules = JavaScriptHighlightRules;\n});\n\nace.define(\"ace/mode/matching_brace_outdent\",[\"require\",\"exports\",\"module\",\"ace/range\"], function(require, exports, module) {\n\"use strict\";\n\nvar Range = require(\"../range\").Range;\n\nvar MatchingBraceOutdent = function() {};\n\n(function() {\n\n this.checkOutdent = function(line, input) {\n if (! /^\\s+$/.test(line))\n return false;\n\n return /^\\s*\\}/.test(input);\n };\n\n this.autoOutdent = function(doc, row) {\n var line = doc.getLine(row);\n var match = line.match(/^(\\s*\\})/);\n\n if (!match) return 0;\n\n var column = match[1].length;\n var openBracePos = doc.findMatchingBracket({row: row, column: column});\n\n if (!openBracePos || openBracePos.row == row) return 0;\n\n var indent = this.$getIndent(doc.getLine(openBracePos.row));\n doc.replace(new Range(row, 0, row, column-1), indent);\n };\n\n this.$getIndent = function(line) {\n return line.match(/^\\s*/)[0];\n };\n\n}).call(MatchingBraceOutdent.prototype);\n\nexports.MatchingBraceOutdent = MatchingBraceOutdent;\n});\n\nace.define(\"ace/mode/folding/cstyle\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/range\",\"ace/mode/folding/fold_mode\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Range = require(\"../../range\").Range;\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function(commentRegex) {\n if (commentRegex) {\n this.foldingStartMarker = new RegExp(\n this.foldingStartMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.start)\n );\n this.foldingStopMarker = new RegExp(\n this.foldingStopMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.end)\n );\n }\n};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n \n this.foldingStartMarker = /([\\{\\[\\(])[^\\}\\]\\)]*$|^\\s*(\\/\\*)/;\n this.foldingStopMarker = /^[^\\[\\{\\(]*([\\}\\]\\)])|^[\\s\\*]*(\\*\\/)/;\n this.singleLineBlockCommentRe= /^\\s*(\\/\\*).*\\*\\/\\s*$/;\n this.tripleStarBlockCommentRe = /^\\s*(\\/\\*\\*\\*).*\\*\\/\\s*$/;\n this.startRegionRe = /^\\s*(\\/\\*|\\/\\/)#?region\\b/;\n this._getFoldWidgetBase = this.getFoldWidget;\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n \n if (this.singleLineBlockCommentRe.test(line)) {\n if (!this.startRegionRe.test(line) && !this.tripleStarBlockCommentRe.test(line))\n return \"\";\n }\n \n var fw = this._getFoldWidgetBase(session, foldStyle, row);\n \n if (!fw && this.startRegionRe.test(line))\n return \"start\"; // lineCommentRegionStart\n \n return fw;\n };\n\n this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {\n var line = session.getLine(row);\n \n if (this.startRegionRe.test(line))\n return this.getCommentRegionBlock(session, line, row);\n \n var match = line.match(this.foldingStartMarker);\n if (match) {\n var i = match.index;\n\n if (match[1])\n return this.openingBracketBlock(session, match[1], row, i);\n \n var range = session.getCommentFoldRange(row, i + match[0].length, 1);\n \n if (range && !range.isMultiLine()) {\n if (forceMultiline) {\n range = this.getSectionRange(session, row);\n } else if (foldStyle != \"all\")\n range = null;\n }\n \n return range;\n }\n\n if (foldStyle === \"markbegin\")\n return;\n\n var match = line.match(this.foldingStopMarker);\n if (match) {\n var i = match.index + match[0].length;\n\n if (match[1])\n return this.closingBracketBlock(session, match[1], row, i);\n\n return session.getCommentFoldRange(row, i, -1);\n }\n };\n \n this.getSectionRange = function(session, row) {\n var line = session.getLine(row);\n var startIndent = line.search(/\\S/);\n var startRow = row;\n var startColumn = line.length;\n row = row + 1;\n var endRow = row;\n var maxRow = session.getLength();\n while (++row < maxRow) {\n line = session.getLine(row);\n var indent = line.search(/\\S/);\n if (indent === -1)\n continue;\n if (startIndent > indent)\n break;\n var subRange = this.getFoldWidgetRange(session, \"all\", row);\n \n if (subRange) {\n if (subRange.start.row <= startRow) {\n break;\n } else if (subRange.isMultiLine()) {\n row = subRange.end.row;\n } else if (startIndent == indent) {\n break;\n }\n }\n endRow = row;\n }\n \n return new Range(startRow, startColumn, endRow, session.getLine(endRow).length);\n };\n this.getCommentRegionBlock = function(session, line, row) {\n var startColumn = line.search(/\\s*$/);\n var maxRow = session.getLength();\n var startRow = row;\n \n var re = /^\\s*(?:\\/\\*|\\/\\/|--)#?(end)?region\\b/;\n var depth = 1;\n while (++row < maxRow) {\n line = session.getLine(row);\n var m = re.exec(line);\n if (!m) continue;\n if (m[1]) depth--;\n else depth++;\n\n if (!depth) break;\n }\n\n var endRow = row;\n if (endRow > startRow) {\n return new Range(startRow, startColumn, endRow, line.length);\n }\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/javascript\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/javascript_highlight_rules\",\"ace/mode/matching_brace_outdent\",\"ace/worker/worker_client\",\"ace/mode/behaviour/cstyle\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar JavaScriptHighlightRules = require(\"./javascript_highlight_rules\").JavaScriptHighlightRules;\nvar MatchingBraceOutdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\nvar WorkerClient = require(\"../worker/worker_client\").WorkerClient;\nvar CstyleBehaviour = require(\"./behaviour/cstyle\").CstyleBehaviour;\nvar CStyleFoldMode = require(\"./folding/cstyle\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = JavaScriptHighlightRules;\n \n this.$outdent = new MatchingBraceOutdent();\n this.$behaviour = new CstyleBehaviour();\n this.foldingRules = new CStyleFoldMode();\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.lineCommentStart = \"//\";\n this.blockComment = {start: \"/*\", end: \"*/\"};\n this.$quotes = {'\"': '\"', \"'\": \"'\", \"`\": \"`\"};\n\n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n\n var tokenizedLine = this.getTokenizer().getLineTokens(line, state);\n var tokens = tokenizedLine.tokens;\n var endState = tokenizedLine.state;\n\n if (tokens.length && tokens[tokens.length-1].type == \"comment\") {\n return indent;\n }\n\n if (state == \"start\" || state == \"no_regex\") {\n var match = line.match(/^.*(?:\\bcase\\b.*:|[\\{\\(\\[])\\s*$/);\n if (match) {\n indent += tab;\n }\n } else if (state == \"doc-start\") {\n if (endState == \"start\" || endState == \"no_regex\") {\n return \"\";\n }\n var match = line.match(/^\\s*(\\/?)\\*/);\n if (match) {\n if (match[1]) {\n indent += \" \";\n }\n indent += \"* \";\n }\n }\n\n return indent;\n };\n\n this.checkOutdent = function(state, line, input) {\n return this.$outdent.checkOutdent(line, input);\n };\n\n this.autoOutdent = function(state, doc, row) {\n this.$outdent.autoOutdent(doc, row);\n };\n\n this.createWorker = function(session) {\n var worker = new WorkerClient([\"ace\"], \"ace/mode/javascript_worker\", \"JavaScriptWorker\");\n worker.attachToDocument(session.getDocument());\n\n worker.on(\"annotate\", function(results) {\n session.setAnnotations(results.data);\n });\n\n worker.on(\"terminate\", function() {\n session.clearAnnotations();\n });\n\n return worker;\n };\n\n this.$id = \"ace/mode/javascript\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n});\n\nace.define(\"ace/mode/xml_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar XmlHighlightRules = function(normalize) {\n var tagRegex = \"[_:a-zA-Z\\xc0-\\uffff][-_:.a-zA-Z0-9\\xc0-\\uffff]*\";\n\n this.$rules = {\n start : [\n {token : \"string.cdata.xml\", regex : \"<\\\\!\\\\[CDATA\\\\[\", next : \"cdata\"},\n {\n token : [\"punctuation.instruction.xml\", \"keyword.instruction.xml\"],\n regex : \"(<\\\\?)(\" + tagRegex + \")\", next : \"processing_instruction\"\n },\n {token : \"comment.start.xml\", regex : \"<\\\\!--\", next : \"comment\"},\n {\n token : [\"xml-pe.doctype.xml\", \"xml-pe.doctype.xml\"],\n regex : \"(<\\\\!)(DOCTYPE)(?=[\\\\s])\", next : \"doctype\", caseInsensitive: true\n },\n {include : \"tag\"},\n {token : \"text.end-tag-open.xml\", regex: \"\",\n next : \"start\"\n }],\n\n doctype : [\n {include : \"whitespace\"},\n {include : \"string\"},\n {token : \"xml-pe.doctype.xml\", regex : \">\", next : \"start\"},\n {token : \"xml-pe.xml\", regex : \"[-_a-zA-Z0-9:]+\"},\n {token : \"punctuation.int-subset\", regex : \"\\\\[\", push : \"int_subset\"}\n ],\n\n int_subset : [{\n token : \"text.xml\",\n regex : \"\\\\s+\"\n }, {\n token: \"punctuation.int-subset.xml\",\n regex: \"]\",\n next: \"pop\"\n }, {\n token : [\"punctuation.markup-decl.xml\", \"keyword.markup-decl.xml\"],\n regex : \"(<\\\\!)(\" + tagRegex + \")\",\n push : [{\n token : \"text\",\n regex : \"\\\\s+\"\n },\n {\n token : \"punctuation.markup-decl.xml\",\n regex : \">\",\n next : \"pop\"\n },\n {include : \"string\"}]\n }],\n\n cdata : [\n {token : \"string.cdata.xml\", regex : \"\\\\]\\\\]>\", next : \"start\"},\n {token : \"text.xml\", regex : \"\\\\s+\"},\n {token : \"text.xml\", regex : \"(?:[^\\\\]]|\\\\](?!\\\\]>))+\"}\n ],\n\n comment : [\n {token : \"comment.end.xml\", regex : \"-->\", next : \"start\"},\n {defaultToken : \"comment.xml\"}\n ],\n\n reference : [{\n token : \"constant.language.escape.reference.xml\",\n regex : \"(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\\\.-]+;)\"\n }],\n\n attr_reference : [{\n token : \"constant.language.escape.reference.attribute-value.xml\",\n regex : \"(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\\\.-]+;)\"\n }],\n\n tag : [{\n token : [\"meta.tag.punctuation.tag-open.xml\", \"meta.tag.punctuation.end-tag-open.xml\", \"meta.tag.tag-name.xml\"],\n regex : \"(?:(<)|(\", next : \"start\"}\n ]\n }],\n\n tag_whitespace : [\n {token : \"text.tag-whitespace.xml\", regex : \"\\\\s+\"}\n ],\n whitespace : [\n {token : \"text.whitespace.xml\", regex : \"\\\\s+\"}\n ],\n string: [{\n token : \"string.xml\",\n regex : \"'\",\n push : [\n {token : \"string.xml\", regex: \"'\", next: \"pop\"},\n {defaultToken : \"string.xml\"}\n ]\n }, {\n token : \"string.xml\",\n regex : '\"',\n push : [\n {token : \"string.xml\", regex: '\"', next: \"pop\"},\n {defaultToken : \"string.xml\"}\n ]\n }],\n\n attributes: [{\n token : \"entity.other.attribute-name.xml\",\n regex : tagRegex\n }, {\n token : \"keyword.operator.attribute-equals.xml\",\n regex : \"=\"\n }, {\n include: \"tag_whitespace\"\n }, {\n include: \"attribute_value\"\n }],\n\n attribute_value: [{\n token : \"string.attribute-value.xml\",\n regex : \"'\",\n push : [\n {token : \"string.attribute-value.xml\", regex: \"'\", next: \"pop\"},\n {include : \"attr_reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n }, {\n token : \"string.attribute-value.xml\",\n regex : '\"',\n push : [\n {token : \"string.attribute-value.xml\", regex: '\"', next: \"pop\"},\n {include : \"attr_reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n }]\n };\n\n if (this.constructor === XmlHighlightRules)\n this.normalizeRules();\n};\n\n\n(function() {\n\n this.embedTagRules = function(HighlightRules, prefix, tag){\n this.$rules.tag.unshift({\n token : [\"meta.tag.punctuation.tag-open.xml\", \"meta.tag.\" + tag + \".tag-name.xml\"],\n regex : \"(<)(\" + tag + \"(?=\\\\s|>|$))\",\n next: [\n {include : \"attributes\"},\n {token : \"meta.tag.punctuation.tag-close.xml\", regex : \"/?>\", next : prefix + \"start\"}\n ]\n });\n\n this.$rules[tag + \"-end\"] = [\n {include : \"attributes\"},\n {token : \"meta.tag.punctuation.tag-close.xml\", regex : \"/?>\", next: \"start\",\n onMatch : function(value, currentState, stack) {\n stack.splice(0);\n return this.token;\n }}\n ];\n\n this.embedRules(HighlightRules, prefix, [{\n token: [\"meta.tag.punctuation.end-tag-open.xml\", \"meta.tag.\" + tag + \".tag-name.xml\"],\n regex : \"(|$))\",\n next: tag + \"-end\"\n }, {\n token: \"string.cdata.xml\",\n regex : \"<\\\\!\\\\[CDATA\\\\[\"\n }, {\n token: \"string.cdata.xml\",\n regex : \"\\\\]\\\\]>\"\n }]);\n };\n\n}).call(TextHighlightRules.prototype);\n\noop.inherits(XmlHighlightRules, TextHighlightRules);\n\nexports.XmlHighlightRules = XmlHighlightRules;\n});\n\nace.define(\"ace/mode/behaviour/xml\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/behaviour\",\"ace/token_iterator\",\"ace/lib/lang\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Behaviour = require(\"../behaviour\").Behaviour;\nvar TokenIterator = require(\"../../token_iterator\").TokenIterator;\nvar lang = require(\"../../lib/lang\");\n\nfunction is(token, type) {\n return token && token.type.lastIndexOf(type + \".xml\") > -1;\n}\n\nvar XmlBehaviour = function () {\n\n this.add(\"string_dquotes\", \"insertion\", function (state, action, editor, session, text) {\n if (text == '\"' || text == \"'\") {\n var quote = text;\n var selected = session.doc.getTextRange(editor.getSelectionRange());\n if (selected !== \"\" && selected !== \"'\" && selected != '\"' && editor.getWrapBehavioursEnabled()) {\n return {\n text: quote + selected + quote,\n selection: false\n };\n }\n\n var cursor = editor.getCursorPosition();\n var line = session.doc.getLine(cursor.row);\n var rightChar = line.substring(cursor.column, cursor.column + 1);\n var iterator = new TokenIterator(session, cursor.row, cursor.column);\n var token = iterator.getCurrentToken();\n\n if (rightChar == quote && (is(token, \"attribute-value\") || is(token, \"string\"))) {\n return {\n text: \"\",\n selection: [1, 1]\n };\n }\n\n if (!token)\n token = iterator.stepBackward();\n\n if (!token)\n return;\n\n while (is(token, \"tag-whitespace\") || is(token, \"whitespace\")) {\n token = iterator.stepBackward();\n }\n var rightSpace = !rightChar || rightChar.match(/\\s/);\n if (is(token, \"attribute-equals\") && (rightSpace || rightChar == '>') || (is(token, \"decl-attribute-equals\") && (rightSpace || rightChar == '?'))) {\n return {\n text: quote + quote,\n selection: [1, 1]\n };\n }\n }\n });\n\n this.add(\"string_dquotes\", \"deletion\", function(state, action, editor, session, range) {\n var selected = session.doc.getTextRange(range);\n if (!range.isMultiLine() && (selected == '\"' || selected == \"'\")) {\n var line = session.doc.getLine(range.start.row);\n var rightChar = line.substring(range.start.column + 1, range.start.column + 2);\n if (rightChar == selected) {\n range.end.column++;\n return range;\n }\n }\n });\n\n this.add(\"autoclosing\", \"insertion\", function (state, action, editor, session, text) {\n if (text == '>') {\n var position = editor.getSelectionRange().start;\n var iterator = new TokenIterator(session, position.row, position.column);\n var token = iterator.getCurrentToken() || iterator.stepBackward();\n if (!token || !(is(token, \"tag-name\") || is(token, \"tag-whitespace\") || is(token, \"attribute-name\") || is(token, \"attribute-equals\") || is(token, \"attribute-value\")))\n return;\n if (is(token, \"reference.attribute-value\"))\n return;\n if (is(token, \"attribute-value\")) {\n var tokenEndColumn = iterator.getCurrentTokenColumn() + token.value.length;\n if (position.column < tokenEndColumn)\n return;\n if (position.column == tokenEndColumn) {\n var nextToken = iterator.stepForward();\n if (nextToken && is(nextToken, \"attribute-value\"))\n return;\n iterator.stepBackward();\n }\n }\n \n if (/^\\s*>/.test(session.getLine(position.row).slice(position.column)))\n return;\n while (!is(token, \"tag-name\")) {\n token = iterator.stepBackward();\n if (token.value == \"<\") {\n token = iterator.stepForward();\n break;\n }\n }\n\n var tokenRow = iterator.getCurrentTokenRow();\n var tokenColumn = iterator.getCurrentTokenColumn();\n if (is(iterator.stepBackward(), \"end-tag-open\"))\n return;\n\n var element = token.value;\n if (tokenRow == position.row)\n element = element.substring(0, position.column - tokenColumn);\n\n if (this.voidElements.hasOwnProperty(element.toLowerCase()))\n return;\n\n return {\n text: \">\" + \"\",\n selection: [1, 1]\n };\n }\n });\n\n this.add(\"autoindent\", \"insertion\", function (state, action, editor, session, text) {\n if (text == \"\\n\") {\n var cursor = editor.getCursorPosition();\n var line = session.getLine(cursor.row);\n var iterator = new TokenIterator(session, cursor.row, cursor.column);\n var token = iterator.getCurrentToken();\n\n if (token && token.type.indexOf(\"tag-close\") !== -1) {\n if (token.value == \"/>\")\n return;\n while (token && token.type.indexOf(\"tag-name\") === -1) {\n token = iterator.stepBackward();\n }\n\n if (!token) {\n return;\n }\n\n var tag = token.value;\n var row = iterator.getCurrentTokenRow();\n token = iterator.stepBackward();\n if (!token || token.type.indexOf(\"end-tag\") !== -1) {\n return;\n }\n\n if (this.voidElements && !this.voidElements[tag]) {\n var nextToken = session.getTokenAt(cursor.row, cursor.column+1);\n var line = session.getLine(row);\n var nextIndent = this.$getIndent(line);\n var indent = nextIndent + session.getTabString();\n\n if (nextToken && nextToken.value === \" -1;\n}\n\n(function() {\n\n this.getFoldWidget = function(session, foldStyle, row) {\n var tag = this._getFirstTagInLine(session, row);\n\n if (!tag)\n return this.getCommentFoldWidget(session, row);\n\n if (tag.closing || (!tag.tagName && tag.selfClosing))\n return foldStyle == \"markbeginend\" ? \"end\" : \"\";\n\n if (!tag.tagName || tag.selfClosing || this.voidElements.hasOwnProperty(tag.tagName.toLowerCase()))\n return \"\";\n\n if (this._findEndTagInLine(session, row, tag.tagName, tag.end.column))\n return \"\";\n\n return \"start\";\n };\n \n this.getCommentFoldWidget = function(session, row) {\n if (/comment/.test(session.getState(row)) && /';\n break;\n }\n }\n return tag;\n } else if (is(token, \"tag-close\")) {\n tag.selfClosing = token.value == '/>';\n return tag;\n }\n tag.start.column += token.value.length;\n }\n\n return null;\n };\n\n this._findEndTagInLine = function(session, row, tagName, startColumn) {\n var tokens = session.getTokens(row);\n var column = 0;\n for (var i = 0; i < tokens.length; i++) {\n var token = tokens[i];\n column += token.value.length;\n if (column < startColumn)\n continue;\n if (is(token, \"end-tag-open\")) {\n token = tokens[i + 1];\n if (token && token.value == tagName)\n return true;\n }\n }\n return false;\n };\n this._readTagForward = function(iterator) {\n var token = iterator.getCurrentToken();\n if (!token)\n return null;\n\n var tag = new Tag();\n do {\n if (is(token, \"tag-open\")) {\n tag.closing = is(token, \"end-tag-open\");\n tag.start.row = iterator.getCurrentTokenRow();\n tag.start.column = iterator.getCurrentTokenColumn();\n } else if (is(token, \"tag-name\")) {\n tag.tagName = token.value;\n } else if (is(token, \"tag-close\")) {\n tag.selfClosing = token.value == \"/>\";\n tag.end.row = iterator.getCurrentTokenRow();\n tag.end.column = iterator.getCurrentTokenColumn() + token.value.length;\n iterator.stepForward();\n return tag;\n }\n } while(token = iterator.stepForward());\n\n return null;\n };\n \n this._readTagBackward = function(iterator) {\n var token = iterator.getCurrentToken();\n if (!token)\n return null;\n\n var tag = new Tag();\n do {\n if (is(token, \"tag-open\")) {\n tag.closing = is(token, \"end-tag-open\");\n tag.start.row = iterator.getCurrentTokenRow();\n tag.start.column = iterator.getCurrentTokenColumn();\n iterator.stepBackward();\n return tag;\n } else if (is(token, \"tag-name\")) {\n tag.tagName = token.value;\n } else if (is(token, \"tag-close\")) {\n tag.selfClosing = token.value == \"/>\";\n tag.end.row = iterator.getCurrentTokenRow();\n tag.end.column = iterator.getCurrentTokenColumn() + token.value.length;\n }\n } while(token = iterator.stepBackward());\n\n return null;\n };\n \n this._pop = function(stack, tag) {\n while (stack.length) {\n \n var top = stack[stack.length-1];\n if (!tag || top.tagName == tag.tagName) {\n return stack.pop();\n }\n else if (this.optionalEndTags.hasOwnProperty(top.tagName)) {\n stack.pop();\n continue;\n } else {\n return null;\n }\n }\n };\n \n this.getFoldWidgetRange = function(session, foldStyle, row) {\n var firstTag = this._getFirstTagInLine(session, row);\n \n if (!firstTag) {\n return this.getCommentFoldWidget(session, row)\n && session.getCommentFoldRange(row, session.getLine(row).length);\n }\n \n var isBackward = firstTag.closing || firstTag.selfClosing;\n var stack = [];\n var tag;\n \n if (!isBackward) {\n var iterator = new TokenIterator(session, row, firstTag.start.column);\n var start = {\n row: row,\n column: firstTag.start.column + firstTag.tagName.length + 2\n };\n if (firstTag.start.row == firstTag.end.row)\n start.column = firstTag.end.column;\n while (tag = this._readTagForward(iterator)) {\n if (tag.selfClosing) {\n if (!stack.length) {\n tag.start.column += tag.tagName.length + 2;\n tag.end.column -= 2;\n return Range.fromPoints(tag.start, tag.end);\n } else\n continue;\n }\n \n if (tag.closing) {\n this._pop(stack, tag);\n if (stack.length == 0)\n return Range.fromPoints(start, tag.start);\n }\n else {\n stack.push(tag);\n }\n }\n }\n else {\n var iterator = new TokenIterator(session, row, firstTag.end.column);\n var end = {\n row: row,\n column: firstTag.start.column\n };\n \n while (tag = this._readTagBackward(iterator)) {\n if (tag.selfClosing) {\n if (!stack.length) {\n tag.start.column += tag.tagName.length + 2;\n tag.end.column -= 2;\n return Range.fromPoints(tag.start, tag.end);\n } else\n continue;\n }\n \n if (!tag.closing) {\n this._pop(stack, tag);\n if (stack.length == 0) {\n tag.start.column += tag.tagName.length + 2;\n if (tag.start.row == tag.end.row && tag.start.column < tag.end.column)\n tag.start.column = tag.end.column;\n return Range.fromPoints(tag.start, end);\n }\n }\n else {\n stack.push(tag);\n }\n }\n }\n \n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/xml\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/text\",\"ace/mode/xml_highlight_rules\",\"ace/mode/behaviour/xml\",\"ace/mode/folding/xml\",\"ace/worker/worker_client\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar TextMode = require(\"./text\").Mode;\nvar XmlHighlightRules = require(\"./xml_highlight_rules\").XmlHighlightRules;\nvar XmlBehaviour = require(\"./behaviour/xml\").XmlBehaviour;\nvar XmlFoldMode = require(\"./folding/xml\").FoldMode;\nvar WorkerClient = require(\"../worker/worker_client\").WorkerClient;\n\nvar Mode = function() {\n this.HighlightRules = XmlHighlightRules;\n this.$behaviour = new XmlBehaviour();\n this.foldingRules = new XmlFoldMode();\n};\n\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.voidElements = lang.arrayToMap([]);\n\n this.blockComment = {start: \"\"};\n\n this.createWorker = function(session) {\n var worker = new WorkerClient([\"ace\"], \"ace/mode/xml_worker\", \"Worker\");\n worker.attachToDocument(session.getDocument());\n\n worker.on(\"error\", function(e) {\n session.setAnnotations(e.data);\n });\n\n worker.on(\"terminate\", function() {\n session.clearAnnotations();\n });\n\n return worker;\n };\n \n this.$id = \"ace/mode/xml\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n});\n\nace.define(\"ace/mode/css_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar supportType = exports.supportType = \"align-content|align-items|align-self|all|animation|animation-delay|animation-direction|animation-duration|animation-fill-mode|animation-iteration-count|animation-name|animation-play-state|animation-timing-function|backface-visibility|background|background-attachment|background-blend-mode|background-clip|background-color|background-image|background-origin|background-position|background-repeat|background-size|border|border-bottom|border-bottom-color|border-bottom-left-radius|border-bottom-right-radius|border-bottom-style|border-bottom-width|border-collapse|border-color|border-image|border-image-outset|border-image-repeat|border-image-slice|border-image-source|border-image-width|border-left|border-left-color|border-left-style|border-left-width|border-radius|border-right|border-right-color|border-right-style|border-right-width|border-spacing|border-style|border-top|border-top-color|border-top-left-radius|border-top-right-radius|border-top-style|border-top-width|border-width|bottom|box-shadow|box-sizing|caption-side|clear|clip|color|column-count|column-fill|column-gap|column-rule|column-rule-color|column-rule-style|column-rule-width|column-span|column-width|columns|content|counter-increment|counter-reset|cursor|direction|display|empty-cells|filter|flex|flex-basis|flex-direction|flex-flow|flex-grow|flex-shrink|flex-wrap|float|font|font-family|font-size|font-size-adjust|font-stretch|font-style|font-variant|font-weight|hanging-punctuation|height|justify-content|left|letter-spacing|line-height|list-style|list-style-image|list-style-position|list-style-type|margin|margin-bottom|margin-left|margin-right|margin-top|max-height|max-width|max-zoom|min-height|min-width|min-zoom|nav-down|nav-index|nav-left|nav-right|nav-up|opacity|order|outline|outline-color|outline-offset|outline-style|outline-width|overflow|overflow-x|overflow-y|padding|padding-bottom|padding-left|padding-right|padding-top|page-break-after|page-break-before|page-break-inside|perspective|perspective-origin|position|quotes|resize|right|tab-size|table-layout|text-align|text-align-last|text-decoration|text-decoration-color|text-decoration-line|text-decoration-style|text-indent|text-justify|text-overflow|text-shadow|text-transform|top|transform|transform-origin|transform-style|transition|transition-delay|transition-duration|transition-property|transition-timing-function|unicode-bidi|user-select|user-zoom|vertical-align|visibility|white-space|width|word-break|word-spacing|word-wrap|z-index\";\nvar supportFunction = exports.supportFunction = \"rgb|rgba|url|attr|counter|counters\";\nvar supportConstant = exports.supportConstant = \"absolute|after-edge|after|all-scroll|all|alphabetic|always|antialiased|armenian|auto|avoid-column|avoid-page|avoid|balance|baseline|before-edge|before|below|bidi-override|block-line-height|block|bold|bolder|border-box|both|bottom|box|break-all|break-word|capitalize|caps-height|caption|center|central|char|circle|cjk-ideographic|clone|close-quote|col-resize|collapse|column|consider-shifts|contain|content-box|cover|crosshair|cubic-bezier|dashed|decimal-leading-zero|decimal|default|disabled|disc|disregard-shifts|distribute-all-lines|distribute-letter|distribute-space|distribute|dotted|double|e-resize|ease-in|ease-in-out|ease-out|ease|ellipsis|end|exclude-ruby|fill|fixed|georgian|glyphs|grid-height|groove|hand|hanging|hebrew|help|hidden|hiragana-iroha|hiragana|horizontal|icon|ideograph-alpha|ideograph-numeric|ideograph-parenthesis|ideograph-space|ideographic|inactive|include-ruby|inherit|initial|inline-block|inline-box|inline-line-height|inline-table|inline|inset|inside|inter-ideograph|inter-word|invert|italic|justify|katakana-iroha|katakana|keep-all|last|left|lighter|line-edge|line-through|line|linear|list-item|local|loose|lower-alpha|lower-greek|lower-latin|lower-roman|lowercase|lr-tb|ltr|mathematical|max-height|max-size|medium|menu|message-box|middle|move|n-resize|ne-resize|newspaper|no-change|no-close-quote|no-drop|no-open-quote|no-repeat|none|normal|not-allowed|nowrap|nw-resize|oblique|open-quote|outset|outside|overline|padding-box|page|pointer|pre-line|pre-wrap|pre|preserve-3d|progress|relative|repeat-x|repeat-y|repeat|replaced|reset-size|ridge|right|round|row-resize|rtl|s-resize|scroll|se-resize|separate|slice|small-caps|small-caption|solid|space|square|start|static|status-bar|step-end|step-start|steps|stretch|strict|sub|super|sw-resize|table-caption|table-cell|table-column-group|table-column|table-footer-group|table-header-group|table-row-group|table-row|table|tb-rl|text-after-edge|text-before-edge|text-bottom|text-size|text-top|text|thick|thin|transparent|underline|upper-alpha|upper-latin|upper-roman|uppercase|use-script|vertical-ideographic|vertical-text|visible|w-resize|wait|whitespace|z-index|zero|zoom\";\nvar supportConstantColor = exports.supportConstantColor = \"aliceblue|antiquewhite|aqua|aquamarine|azure|beige|bisque|black|blanchedalmond|blue|blueviolet|brown|burlywood|cadetblue|chartreuse|chocolate|coral|cornflowerblue|cornsilk|crimson|cyan|darkblue|darkcyan|darkgoldenrod|darkgray|darkgreen|darkgrey|darkkhaki|darkmagenta|darkolivegreen|darkorange|darkorchid|darkred|darksalmon|darkseagreen|darkslateblue|darkslategray|darkslategrey|darkturquoise|darkviolet|deeppink|deepskyblue|dimgray|dimgrey|dodgerblue|firebrick|floralwhite|forestgreen|fuchsia|gainsboro|ghostwhite|gold|goldenrod|gray|green|greenyellow|grey|honeydew|hotpink|indianred|indigo|ivory|khaki|lavender|lavenderblush|lawngreen|lemonchiffon|lightblue|lightcoral|lightcyan|lightgoldenrodyellow|lightgray|lightgreen|lightgrey|lightpink|lightsalmon|lightseagreen|lightskyblue|lightslategray|lightslategrey|lightsteelblue|lightyellow|lime|limegreen|linen|magenta|maroon|mediumaquamarine|mediumblue|mediumorchid|mediumpurple|mediumseagreen|mediumslateblue|mediumspringgreen|mediumturquoise|mediumvioletred|midnightblue|mintcream|mistyrose|moccasin|navajowhite|navy|oldlace|olive|olivedrab|orange|orangered|orchid|palegoldenrod|palegreen|paleturquoise|palevioletred|papayawhip|peachpuff|peru|pink|plum|powderblue|purple|rebeccapurple|red|rosybrown|royalblue|saddlebrown|salmon|sandybrown|seagreen|seashell|sienna|silver|skyblue|slateblue|slategray|slategrey|snow|springgreen|steelblue|tan|teal|thistle|tomato|turquoise|violet|wheat|white|whitesmoke|yellow|yellowgreen\";\nvar supportConstantFonts = exports.supportConstantFonts = \"arial|century|comic|courier|cursive|fantasy|garamond|georgia|helvetica|impact|lucida|symbol|system|tahoma|times|trebuchet|utopia|verdana|webdings|sans-serif|serif|monospace\";\n\nvar numRe = exports.numRe = \"\\\\-?(?:(?:[0-9]+(?:\\\\.[0-9]+)?)|(?:\\\\.[0-9]+))\";\nvar pseudoElements = exports.pseudoElements = \"(\\\\:+)\\\\b(after|before|first-letter|first-line|moz-selection|selection)\\\\b\";\nvar pseudoClasses = exports.pseudoClasses = \"(:)\\\\b(active|checked|disabled|empty|enabled|first-child|first-of-type|focus|hover|indeterminate|invalid|last-child|last-of-type|link|not|nth-child|nth-last-child|nth-last-of-type|nth-of-type|only-child|only-of-type|required|root|target|valid|visited)\\\\b\";\n\nvar CssHighlightRules = function() {\n\n var keywordMapper = this.createKeywordMapper({\n \"support.function\": supportFunction,\n \"support.constant\": supportConstant,\n \"support.type\": supportType,\n \"support.constant.color\": supportConstantColor,\n \"support.constant.fonts\": supportConstantFonts\n }, \"text\", true);\n\n this.$rules = {\n \"start\" : [{\n include : [\"strings\", \"url\", \"comments\"]\n }, {\n token: \"paren.lparen\",\n regex: \"\\\\{\",\n next: \"ruleset\"\n }, {\n token: \"paren.rparen\",\n regex: \"\\\\}\"\n }, {\n token: \"string\",\n regex: \"@(?!viewport)\",\n next: \"media\"\n }, {\n token: \"keyword\",\n regex: \"#[a-z0-9-_]+\"\n }, {\n token: \"keyword\",\n regex: \"%\"\n }, {\n token: \"variable\",\n regex: \"\\\\.[a-z0-9-_]+\"\n }, {\n token: \"string\",\n regex: \":[a-z0-9-_]+\"\n }, {\n token : \"constant.numeric\",\n regex : numRe\n }, {\n token: \"constant\",\n regex: \"[a-z0-9-_]+\"\n }, {\n caseInsensitive: true\n }],\n\n \"media\": [{\n include : [\"strings\", \"url\", \"comments\"]\n }, {\n token: \"paren.lparen\",\n regex: \"\\\\{\",\n next: \"start\"\n }, {\n token: \"paren.rparen\",\n regex: \"\\\\}\",\n next: \"start\"\n }, {\n token: \"string\",\n regex: \";\",\n next: \"start\"\n }, {\n token: \"keyword\",\n regex: \"(?:media|supports|document|charset|import|namespace|media|supports|document\"\n + \"|page|font|keyframes|viewport|counter-style|font-feature-values\"\n + \"|swash|ornaments|annotation|stylistic|styleset|character-variant)\"\n }],\n\n \"comments\" : [{\n token: \"comment\", // multi line comment\n regex: \"\\\\/\\\\*\",\n push: [{\n token : \"comment\",\n regex : \"\\\\*\\\\/\",\n next : \"pop\"\n }, {\n defaultToken : \"comment\"\n }]\n }],\n\n \"ruleset\" : [{\n regex : \"-(webkit|ms|moz|o)-\",\n token : \"text\"\n }, {\n token : \"punctuation.operator\",\n regex : \"[:;]\"\n }, {\n token : \"paren.rparen\",\n regex : \"\\\\}\",\n next : \"start\"\n }, {\n include : [\"strings\", \"url\", \"comments\"]\n }, {\n token : [\"constant.numeric\", \"keyword\"],\n regex : \"(\" + numRe + \")(ch|cm|deg|em|ex|fr|gd|grad|Hz|in|kHz|mm|ms|pc|pt|px|rad|rem|s|turn|vh|vmax|vmin|vm|vw|%)\"\n }, {\n token : \"constant.numeric\",\n regex : numRe\n }, {\n token : \"constant.numeric\", // hex6 color\n regex : \"#[a-f0-9]{6}\"\n }, {\n token : \"constant.numeric\", // hex3 color\n regex : \"#[a-f0-9]{3}\"\n }, {\n token : [\"punctuation\", \"entity.other.attribute-name.pseudo-element.css\"],\n regex : pseudoElements\n }, {\n token : [\"punctuation\", \"entity.other.attribute-name.pseudo-class.css\"],\n regex : pseudoClasses\n }, {\n include: \"url\"\n }, {\n token : keywordMapper,\n regex : \"\\\\-?[a-zA-Z_][a-zA-Z0-9_\\\\-]*\"\n }, {\n caseInsensitive: true\n }],\n\n url: [{\n token : \"support.function\",\n regex : \"(?:url(:?-prefix)?|domain|regexp)\\\\(\",\n push: [{\n token : \"support.function\",\n regex : \"\\\\)\",\n next : \"pop\"\n }, {\n defaultToken: \"string\"\n }]\n }],\n\n strings: [{\n token : \"string.start\",\n regex : \"'\",\n push : [{\n token : \"string.end\",\n regex : \"'|$\",\n next: \"pop\"\n }, {\n include : \"escapes\"\n }, {\n token : \"constant.language.escape\",\n regex : /\\\\$/,\n consumeLineEnd: true\n }, {\n defaultToken: \"string\"\n }]\n }, {\n token : \"string.start\",\n regex : '\"',\n push : [{\n token : \"string.end\",\n regex : '\"|$',\n next: \"pop\"\n }, {\n include : \"escapes\"\n }, {\n token : \"constant.language.escape\",\n regex : /\\\\$/,\n consumeLineEnd: true\n }, {\n defaultToken: \"string\"\n }]\n }],\n escapes: [{\n token : \"constant.language.escape\",\n regex : /\\\\([a-fA-F\\d]{1,6}|[^a-fA-F\\d])/\n }]\n\n };\n\n this.normalizeRules();\n};\n\noop.inherits(CssHighlightRules, TextHighlightRules);\n\nexports.CssHighlightRules = CssHighlightRules;\n\n});\n\nace.define(\"ace/mode/css_completions\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nvar propertyMap = {\n \"background\": {\"#$0\": 1},\n \"background-color\": {\"#$0\": 1, \"transparent\": 1, \"fixed\": 1},\n \"background-image\": {\"url('/$0')\": 1},\n \"background-repeat\": {\"repeat\": 1, \"repeat-x\": 1, \"repeat-y\": 1, \"no-repeat\": 1, \"inherit\": 1},\n \"background-position\": {\"bottom\":2, \"center\":2, \"left\":2, \"right\":2, \"top\":2, \"inherit\":2},\n \"background-attachment\": {\"scroll\": 1, \"fixed\": 1},\n \"background-size\": {\"cover\": 1, \"contain\": 1},\n \"background-clip\": {\"border-box\": 1, \"padding-box\": 1, \"content-box\": 1},\n \"background-origin\": {\"border-box\": 1, \"padding-box\": 1, \"content-box\": 1},\n \"border\": {\"solid $0\": 1, \"dashed $0\": 1, \"dotted $0\": 1, \"#$0\": 1},\n \"border-color\": {\"#$0\": 1},\n \"border-style\": {\"solid\":2, \"dashed\":2, \"dotted\":2, \"double\":2, \"groove\":2, \"hidden\":2, \"inherit\":2, \"inset\":2, \"none\":2, \"outset\":2, \"ridged\":2},\n \"border-collapse\": {\"collapse\": 1, \"separate\": 1},\n \"bottom\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"clear\": {\"left\": 1, \"right\": 1, \"both\": 1, \"none\": 1},\n \"color\": {\"#$0\": 1, \"rgb(#$00,0,0)\": 1},\n \"cursor\": {\"default\": 1, \"pointer\": 1, \"move\": 1, \"text\": 1, \"wait\": 1, \"help\": 1, \"progress\": 1, \"n-resize\": 1, \"ne-resize\": 1, \"e-resize\": 1, \"se-resize\": 1, \"s-resize\": 1, \"sw-resize\": 1, \"w-resize\": 1, \"nw-resize\": 1},\n \"display\": {\"none\": 1, \"block\": 1, \"inline\": 1, \"inline-block\": 1, \"table-cell\": 1},\n \"empty-cells\": {\"show\": 1, \"hide\": 1},\n \"float\": {\"left\": 1, \"right\": 1, \"none\": 1},\n \"font-family\": {\"Arial\":2,\"Comic Sans MS\":2,\"Consolas\":2,\"Courier New\":2,\"Courier\":2,\"Georgia\":2,\"Monospace\":2,\"Sans-Serif\":2, \"Segoe UI\":2,\"Tahoma\":2,\"Times New Roman\":2,\"Trebuchet MS\":2,\"Verdana\": 1},\n \"font-size\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"font-weight\": {\"bold\": 1, \"normal\": 1},\n \"font-style\": {\"italic\": 1, \"normal\": 1},\n \"font-variant\": {\"normal\": 1, \"small-caps\": 1},\n \"height\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"left\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"letter-spacing\": {\"normal\": 1},\n \"line-height\": {\"normal\": 1},\n \"list-style-type\": {\"none\": 1, \"disc\": 1, \"circle\": 1, \"square\": 1, \"decimal\": 1, \"decimal-leading-zero\": 1, \"lower-roman\": 1, \"upper-roman\": 1, \"lower-greek\": 1, \"lower-latin\": 1, \"upper-latin\": 1, \"georgian\": 1, \"lower-alpha\": 1, \"upper-alpha\": 1},\n \"margin\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"margin-right\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"margin-left\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"margin-top\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"margin-bottom\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"max-height\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"max-width\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"min-height\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"min-width\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"overflow\": {\"hidden\": 1, \"visible\": 1, \"auto\": 1, \"scroll\": 1},\n \"overflow-x\": {\"hidden\": 1, \"visible\": 1, \"auto\": 1, \"scroll\": 1},\n \"overflow-y\": {\"hidden\": 1, \"visible\": 1, \"auto\": 1, \"scroll\": 1},\n \"padding\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"padding-top\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"padding-right\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"padding-bottom\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"padding-left\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"page-break-after\": {\"auto\": 1, \"always\": 1, \"avoid\": 1, \"left\": 1, \"right\": 1},\n \"page-break-before\": {\"auto\": 1, \"always\": 1, \"avoid\": 1, \"left\": 1, \"right\": 1},\n \"position\": {\"absolute\": 1, \"relative\": 1, \"fixed\": 1, \"static\": 1},\n \"right\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"table-layout\": {\"fixed\": 1, \"auto\": 1},\n \"text-decoration\": {\"none\": 1, \"underline\": 1, \"line-through\": 1, \"blink\": 1},\n \"text-align\": {\"left\": 1, \"right\": 1, \"center\": 1, \"justify\": 1},\n \"text-transform\": {\"capitalize\": 1, \"uppercase\": 1, \"lowercase\": 1, \"none\": 1},\n \"top\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"vertical-align\": {\"top\": 1, \"bottom\": 1},\n \"visibility\": {\"hidden\": 1, \"visible\": 1},\n \"white-space\": {\"nowrap\": 1, \"normal\": 1, \"pre\": 1, \"pre-line\": 1, \"pre-wrap\": 1},\n \"width\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"word-spacing\": {\"normal\": 1},\n \"filter\": {\"alpha(opacity=$0100)\": 1},\n\n \"text-shadow\": {\"$02px 2px 2px #777\": 1},\n \"text-overflow\": {\"ellipsis-word\": 1, \"clip\": 1, \"ellipsis\": 1},\n \"-moz-border-radius\": 1,\n \"-moz-border-radius-topright\": 1,\n \"-moz-border-radius-bottomright\": 1,\n \"-moz-border-radius-topleft\": 1,\n \"-moz-border-radius-bottomleft\": 1,\n \"-webkit-border-radius\": 1,\n \"-webkit-border-top-right-radius\": 1,\n \"-webkit-border-top-left-radius\": 1,\n \"-webkit-border-bottom-right-radius\": 1,\n \"-webkit-border-bottom-left-radius\": 1,\n \"-moz-box-shadow\": 1,\n \"-webkit-box-shadow\": 1,\n \"transform\": {\"rotate($00deg)\": 1, \"skew($00deg)\": 1},\n \"-moz-transform\": {\"rotate($00deg)\": 1, \"skew($00deg)\": 1},\n \"-webkit-transform\": {\"rotate($00deg)\": 1, \"skew($00deg)\": 1 }\n};\n\nvar CssCompletions = function() {\n\n};\n\n(function() {\n\n this.completionsDefined = false;\n\n this.defineCompletions = function() {\n if (document) {\n var style = document.createElement('c').style;\n\n for (var i in style) {\n if (typeof style[i] !== 'string')\n continue;\n\n var name = i.replace(/[A-Z]/g, function(x) {\n return '-' + x.toLowerCase();\n });\n\n if (!propertyMap.hasOwnProperty(name))\n propertyMap[name] = 1;\n }\n }\n\n this.completionsDefined = true;\n };\n\n this.getCompletions = function(state, session, pos, prefix) {\n if (!this.completionsDefined) {\n this.defineCompletions();\n }\n\n var token = session.getTokenAt(pos.row, pos.column);\n\n if (!token)\n return [];\n if (state==='ruleset'){\n var line = session.getLine(pos.row).substr(0, pos.column);\n if (/:[^;]+$/.test(line)) {\n /([\\w\\-]+):[^:]*$/.test(line);\n\n return this.getPropertyValueCompletions(state, session, pos, prefix);\n } else {\n return this.getPropertyCompletions(state, session, pos, prefix);\n }\n }\n\n return [];\n };\n\n this.getPropertyCompletions = function(state, session, pos, prefix) {\n var properties = Object.keys(propertyMap);\n return properties.map(function(property){\n return {\n caption: property,\n snippet: property + ': $0;',\n meta: \"property\",\n score: 1000000\n };\n });\n };\n\n this.getPropertyValueCompletions = function(state, session, pos, prefix) {\n var line = session.getLine(pos.row).substr(0, pos.column);\n var property = (/([\\w\\-]+):[^:]*$/.exec(line) || {})[1];\n\n if (!property)\n return [];\n var values = [];\n if (property in propertyMap && typeof propertyMap[property] === \"object\") {\n values = Object.keys(propertyMap[property]);\n }\n return values.map(function(value){\n return {\n caption: value,\n snippet: value,\n meta: \"property value\",\n score: 1000000\n };\n });\n };\n\n}).call(CssCompletions.prototype);\n\nexports.CssCompletions = CssCompletions;\n});\n\nace.define(\"ace/mode/behaviour/css\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/behaviour\",\"ace/mode/behaviour/cstyle\",\"ace/token_iterator\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Behaviour = require(\"../behaviour\").Behaviour;\nvar CstyleBehaviour = require(\"./cstyle\").CstyleBehaviour;\nvar TokenIterator = require(\"../../token_iterator\").TokenIterator;\n\nvar CssBehaviour = function () {\n\n this.inherit(CstyleBehaviour);\n\n this.add(\"colon\", \"insertion\", function (state, action, editor, session, text) {\n if (text === ':' && editor.selection.isEmpty()) {\n var cursor = editor.getCursorPosition();\n var iterator = new TokenIterator(session, cursor.row, cursor.column);\n var token = iterator.getCurrentToken();\n if (token && token.value.match(/\\s+/)) {\n token = iterator.stepBackward();\n }\n if (token && token.type === 'support.type') {\n var line = session.doc.getLine(cursor.row);\n var rightChar = line.substring(cursor.column, cursor.column + 1);\n if (rightChar === ':') {\n return {\n text: '',\n selection: [1, 1]\n };\n }\n if (/^(\\s+[^;]|\\s*$)/.test(line.substring(cursor.column))) {\n return {\n text: ':;',\n selection: [1, 1]\n };\n }\n }\n }\n });\n\n this.add(\"colon\", \"deletion\", function (state, action, editor, session, range) {\n var selected = session.doc.getTextRange(range);\n if (!range.isMultiLine() && selected === ':') {\n var cursor = editor.getCursorPosition();\n var iterator = new TokenIterator(session, cursor.row, cursor.column);\n var token = iterator.getCurrentToken();\n if (token && token.value.match(/\\s+/)) {\n token = iterator.stepBackward();\n }\n if (token && token.type === 'support.type') {\n var line = session.doc.getLine(range.start.row);\n var rightChar = line.substring(range.end.column, range.end.column + 1);\n if (rightChar === ';') {\n range.end.column ++;\n return range;\n }\n }\n }\n });\n\n this.add(\"semicolon\", \"insertion\", function (state, action, editor, session, text) {\n if (text === ';' && editor.selection.isEmpty()) {\n var cursor = editor.getCursorPosition();\n var line = session.doc.getLine(cursor.row);\n var rightChar = line.substring(cursor.column, cursor.column + 1);\n if (rightChar === ';') {\n return {\n text: '',\n selection: [1, 1]\n };\n }\n }\n });\n\n this.add(\"!important\", \"insertion\", function (state, action, editor, session, text) {\n if (text === '!' && editor.selection.isEmpty()) {\n var cursor = editor.getCursorPosition();\n var line = session.doc.getLine(cursor.row);\n\n if (/^\\s*(;|}|$)/.test(line.substring(cursor.column))) {\n return {\n text: '!important',\n selection: [10, 10]\n };\n }\n }\n });\n\n};\noop.inherits(CssBehaviour, CstyleBehaviour);\n\nexports.CssBehaviour = CssBehaviour;\n});\n\nace.define(\"ace/mode/css\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/css_highlight_rules\",\"ace/mode/matching_brace_outdent\",\"ace/worker/worker_client\",\"ace/mode/css_completions\",\"ace/mode/behaviour/css\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar CssHighlightRules = require(\"./css_highlight_rules\").CssHighlightRules;\nvar MatchingBraceOutdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\nvar WorkerClient = require(\"../worker/worker_client\").WorkerClient;\nvar CssCompletions = require(\"./css_completions\").CssCompletions;\nvar CssBehaviour = require(\"./behaviour/css\").CssBehaviour;\nvar CStyleFoldMode = require(\"./folding/cstyle\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = CssHighlightRules;\n this.$outdent = new MatchingBraceOutdent();\n this.$behaviour = new CssBehaviour();\n this.$completer = new CssCompletions();\n this.foldingRules = new CStyleFoldMode();\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.foldingRules = \"cStyle\";\n this.blockComment = {start: \"/*\", end: \"*/\"};\n\n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n var tokens = this.getTokenizer().getLineTokens(line, state).tokens;\n if (tokens.length && tokens[tokens.length-1].type == \"comment\") {\n return indent;\n }\n\n var match = line.match(/^.*\\{\\s*$/);\n if (match) {\n indent += tab;\n }\n\n return indent;\n };\n\n this.checkOutdent = function(state, line, input) {\n return this.$outdent.checkOutdent(line, input);\n };\n\n this.autoOutdent = function(state, doc, row) {\n this.$outdent.autoOutdent(doc, row);\n };\n\n this.getCompletions = function(state, session, pos, prefix) {\n return this.$completer.getCompletions(state, session, pos, prefix);\n };\n\n this.createWorker = function(session) {\n var worker = new WorkerClient([\"ace\"], \"ace/mode/css_worker\", \"Worker\");\n worker.attachToDocument(session.getDocument());\n\n worker.on(\"annotate\", function(e) {\n session.setAnnotations(e.data);\n });\n\n worker.on(\"terminate\", function() {\n session.clearAnnotations();\n });\n\n return worker;\n };\n\n this.$id = \"ace/mode/css\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n\n});\n\nace.define(\"ace/mode/html_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/css_highlight_rules\",\"ace/mode/javascript_highlight_rules\",\"ace/mode/xml_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar CssHighlightRules = require(\"./css_highlight_rules\").CssHighlightRules;\nvar JavaScriptHighlightRules = require(\"./javascript_highlight_rules\").JavaScriptHighlightRules;\nvar XmlHighlightRules = require(\"./xml_highlight_rules\").XmlHighlightRules;\n\nvar tagMap = lang.createMap({\n a : 'anchor',\n button \t : 'form',\n form : 'form',\n img : 'image',\n input : 'form',\n label : 'form',\n option : 'form',\n script : 'script',\n select : 'form',\n textarea : 'form',\n style : 'style',\n table : 'table',\n tbody : 'table',\n td : 'table',\n tfoot : 'table',\n th : 'table',\n tr : 'table'\n});\n\nvar HtmlHighlightRules = function() {\n XmlHighlightRules.call(this);\n\n this.addRules({\n attributes: [{\n include : \"tag_whitespace\"\n }, {\n token : \"entity.other.attribute-name.xml\",\n regex : \"[-_a-zA-Z0-9:.]+\"\n }, {\n token : \"keyword.operator.attribute-equals.xml\",\n regex : \"=\",\n push : [{\n include: \"tag_whitespace\"\n }, {\n token : \"string.unquoted.attribute-value.html\",\n regex : \"[^<>='\\\"`\\\\s]+\",\n next : \"pop\"\n }, {\n token : \"empty\",\n regex : \"\",\n next : \"pop\"\n }]\n }, {\n include : \"attribute_value\"\n }],\n tag: [{\n token : function(start, tag) {\n var group = tagMap[tag];\n return [\"meta.tag.punctuation.\" + (start == \"<\" ? \"\" : \"end-\") + \"tag-open.xml\",\n \"meta.tag\" + (group ? \".\" + group : \"\") + \".tag-name.xml\"];\n },\n regex : \"(\", next : \"start\"}\n ]\n });\n\n this.embedTagRules(CssHighlightRules, \"css-\", \"style\");\n this.embedTagRules(new JavaScriptHighlightRules({jsx: false}).getRules(), \"js-\", \"script\");\n\n if (this.constructor === HtmlHighlightRules)\n this.normalizeRules();\n};\n\noop.inherits(HtmlHighlightRules, XmlHighlightRules);\n\nexports.HtmlHighlightRules = HtmlHighlightRules;\n});\n\nace.define(\"ace/mode/folding/mixed\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/folding/fold_mode\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function(defaultMode, subModes) {\n this.defaultMode = defaultMode;\n this.subModes = subModes;\n};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n\n\n this.$getMode = function(state) {\n if (typeof state != \"string\") \n state = state[0];\n for (var key in this.subModes) {\n if (state.indexOf(key) === 0)\n return this.subModes[key];\n }\n return null;\n };\n \n this.$tryMode = function(state, session, foldStyle, row) {\n var mode = this.$getMode(state);\n return (mode ? mode.getFoldWidget(session, foldStyle, row) : \"\");\n };\n\n this.getFoldWidget = function(session, foldStyle, row) {\n return (\n this.$tryMode(session.getState(row-1), session, foldStyle, row) ||\n this.$tryMode(session.getState(row), session, foldStyle, row) ||\n this.defaultMode.getFoldWidget(session, foldStyle, row)\n );\n };\n\n this.getFoldWidgetRange = function(session, foldStyle, row) {\n var mode = this.$getMode(session.getState(row-1));\n \n if (!mode || !mode.getFoldWidget(session, foldStyle, row))\n mode = this.$getMode(session.getState(row));\n \n if (!mode || !mode.getFoldWidget(session, foldStyle, row))\n mode = this.defaultMode;\n \n return mode.getFoldWidgetRange(session, foldStyle, row);\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/folding/html\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/folding/mixed\",\"ace/mode/folding/xml\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar MixedFoldMode = require(\"./mixed\").FoldMode;\nvar XmlFoldMode = require(\"./xml\").FoldMode;\nvar CStyleFoldMode = require(\"./cstyle\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function(voidElements, optionalTags) {\n MixedFoldMode.call(this, new XmlFoldMode(voidElements, optionalTags), {\n \"js-\": new CStyleFoldMode(),\n \"css-\": new CStyleFoldMode()\n });\n};\n\noop.inherits(FoldMode, MixedFoldMode);\n\n});\n\nace.define(\"ace/mode/html_completions\",[\"require\",\"exports\",\"module\",\"ace/token_iterator\"], function(require, exports, module) {\n\"use strict\";\n\nvar TokenIterator = require(\"../token_iterator\").TokenIterator;\n\nvar commonAttributes = [\n \"accesskey\",\n \"class\",\n \"contenteditable\",\n \"contextmenu\",\n \"dir\",\n \"draggable\",\n \"dropzone\",\n \"hidden\",\n \"id\",\n \"inert\",\n \"itemid\",\n \"itemprop\",\n \"itemref\",\n \"itemscope\",\n \"itemtype\",\n \"lang\",\n \"spellcheck\",\n \"style\",\n \"tabindex\",\n \"title\",\n \"translate\"\n];\n\nvar eventAttributes = [\n \"onabort\",\n \"onblur\",\n \"oncancel\",\n \"oncanplay\",\n \"oncanplaythrough\",\n \"onchange\",\n \"onclick\",\n \"onclose\",\n \"oncontextmenu\",\n \"oncuechange\",\n \"ondblclick\",\n \"ondrag\",\n \"ondragend\",\n \"ondragenter\",\n \"ondragleave\",\n \"ondragover\",\n \"ondragstart\",\n \"ondrop\",\n \"ondurationchange\",\n \"onemptied\",\n \"onended\",\n \"onerror\",\n \"onfocus\",\n \"oninput\",\n \"oninvalid\",\n \"onkeydown\",\n \"onkeypress\",\n \"onkeyup\",\n \"onload\",\n \"onloadeddata\",\n \"onloadedmetadata\",\n \"onloadstart\",\n \"onmousedown\",\n \"onmousemove\",\n \"onmouseout\",\n \"onmouseover\",\n \"onmouseup\",\n \"onmousewheel\",\n \"onpause\",\n \"onplay\",\n \"onplaying\",\n \"onprogress\",\n \"onratechange\",\n \"onreset\",\n \"onscroll\",\n \"onseeked\",\n \"onseeking\",\n \"onselect\",\n \"onshow\",\n \"onstalled\",\n \"onsubmit\",\n \"onsuspend\",\n \"ontimeupdate\",\n \"onvolumechange\",\n \"onwaiting\"\n];\n\nvar globalAttributes = commonAttributes.concat(eventAttributes);\n\nvar attributeMap = {\n \"a\": {\"href\": 1, \"target\": {\"_blank\": 1, \"top\": 1}, \"ping\": 1, \"rel\": {\"nofollow\": 1, \"alternate\": 1, \"author\": 1, \"bookmark\": 1, \"help\": 1, \"license\": 1, \"next\": 1, \"noreferrer\": 1, \"prefetch\": 1, \"prev\": 1, \"search\": 1, \"tag\": 1}, \"media\": 1, \"hreflang\": 1, \"type\": 1},\n \"abbr\": {},\n \"address\": {},\n \"area\": {\"shape\": 1, \"coords\": 1, \"href\": 1, \"hreflang\": 1, \"alt\": 1, \"target\": 1, \"media\": 1, \"rel\": 1, \"ping\": 1, \"type\": 1},\n \"article\": {\"pubdate\": 1},\n \"aside\": {},\n \"audio\": {\"src\": 1, \"autobuffer\": 1, \"autoplay\": {\"autoplay\": 1}, \"loop\": {\"loop\": 1}, \"controls\": {\"controls\": 1}, \"muted\": {\"muted\": 1}, \"preload\": {\"auto\": 1, \"metadata\": 1, \"none\": 1 }},\n \"b\": {},\n \"base\": {\"href\": 1, \"target\": 1},\n \"bdi\": {},\n \"bdo\": {},\n \"blockquote\": {\"cite\": 1},\n \"body\": {\"onafterprint\": 1, \"onbeforeprint\": 1, \"onbeforeunload\": 1, \"onhashchange\": 1, \"onmessage\": 1, \"onoffline\": 1, \"onpopstate\": 1, \"onredo\": 1, \"onresize\": 1, \"onstorage\": 1, \"onundo\": 1, \"onunload\": 1},\n \"br\": {},\n \"button\": {\"autofocus\": 1, \"disabled\": {\"disabled\": 1}, \"form\": 1, \"formaction\": 1, \"formenctype\": 1, \"formmethod\": 1, \"formnovalidate\": 1, \"formtarget\": 1, \"name\": 1, \"value\": 1, \"type\": {\"button\": 1, \"submit\": 1}},\n \"canvas\": {\"width\": 1, \"height\": 1},\n \"caption\": {},\n \"cite\": {},\n \"code\": {},\n \"col\": {\"span\": 1},\n \"colgroup\": {\"span\": 1},\n \"command\": {\"type\": 1, \"label\": 1, \"icon\": 1, \"disabled\": 1, \"checked\": 1, \"radiogroup\": 1, \"command\": 1},\n \"data\": {},\n \"datalist\": {},\n \"dd\": {},\n \"del\": {\"cite\": 1, \"datetime\": 1},\n \"details\": {\"open\": 1},\n \"dfn\": {},\n \"dialog\": {\"open\": 1},\n \"div\": {},\n \"dl\": {},\n \"dt\": {},\n \"em\": {},\n \"embed\": {\"src\": 1, \"height\": 1, \"width\": 1, \"type\": 1},\n \"fieldset\": {\"disabled\": 1, \"form\": 1, \"name\": 1},\n \"figcaption\": {},\n \"figure\": {},\n \"footer\": {},\n \"form\": {\"accept-charset\": 1, \"action\": 1, \"autocomplete\": 1, \"enctype\": {\"multipart/form-data\": 1, \"application/x-www-form-urlencoded\": 1}, \"method\": {\"get\": 1, \"post\": 1}, \"name\": 1, \"novalidate\": 1, \"target\": {\"_blank\": 1, \"top\": 1}},\n \"h1\": {},\n \"h2\": {},\n \"h3\": {},\n \"h4\": {},\n \"h5\": {},\n \"h6\": {},\n \"head\": {},\n \"header\": {},\n \"hr\": {},\n \"html\": {\"manifest\": 1},\n \"i\": {},\n \"iframe\": {\"name\": 1, \"src\": 1, \"height\": 1, \"width\": 1, \"sandbox\": {\"allow-same-origin\": 1, \"allow-top-navigation\": 1, \"allow-forms\": 1, \"allow-scripts\": 1}, \"seamless\": {\"seamless\": 1}},\n \"img\": {\"alt\": 1, \"src\": 1, \"height\": 1, \"width\": 1, \"usemap\": 1, \"ismap\": 1},\n \"input\": {\n \"type\": {\"text\": 1, \"password\": 1, \"hidden\": 1, \"checkbox\": 1, \"submit\": 1, \"radio\": 1, \"file\": 1, \"button\": 1, \"reset\": 1, \"image\": 31, \"color\": 1, \"date\": 1, \"datetime\": 1, \"datetime-local\": 1, \"email\": 1, \"month\": 1, \"number\": 1, \"range\": 1, \"search\": 1, \"tel\": 1, \"time\": 1, \"url\": 1, \"week\": 1},\n \"accept\": 1, \"alt\": 1, \"autocomplete\": {\"on\": 1, \"off\": 1}, \"autofocus\": {\"autofocus\": 1}, \"checked\": {\"checked\": 1}, \"disabled\": {\"disabled\": 1}, \"form\": 1, \"formaction\": 1, \"formenctype\": {\"application/x-www-form-urlencoded\": 1, \"multipart/form-data\": 1, \"text/plain\": 1}, \"formmethod\": {\"get\": 1, \"post\": 1}, \"formnovalidate\": {\"formnovalidate\": 1}, \"formtarget\": {\"_blank\": 1, \"_self\": 1, \"_parent\": 1, \"_top\": 1}, \"height\": 1, \"list\": 1, \"max\": 1, \"maxlength\": 1, \"min\": 1, \"multiple\": {\"multiple\": 1}, \"name\": 1, \"pattern\": 1, \"placeholder\": 1, \"readonly\": {\"readonly\": 1}, \"required\": {\"required\": 1}, \"size\": 1, \"src\": 1, \"step\": 1, \"width\": 1, \"files\": 1, \"value\": 1},\n \"ins\": {\"cite\": 1, \"datetime\": 1},\n \"kbd\": {},\n \"keygen\": {\"autofocus\": 1, \"challenge\": {\"challenge\": 1}, \"disabled\": {\"disabled\": 1}, \"form\": 1, \"keytype\": {\"rsa\": 1, \"dsa\": 1, \"ec\": 1}, \"name\": 1},\n \"label\": {\"form\": 1, \"for\": 1},\n \"legend\": {},\n \"li\": {\"value\": 1},\n \"link\": {\"href\": 1, \"hreflang\": 1, \"rel\": {\"stylesheet\": 1, \"icon\": 1}, \"media\": {\"all\": 1, \"screen\": 1, \"print\": 1}, \"type\": {\"text/css\": 1, \"image/png\": 1, \"image/jpeg\": 1, \"image/gif\": 1}, \"sizes\": 1},\n \"main\": {},\n \"map\": {\"name\": 1},\n \"mark\": {},\n \"math\": {},\n \"menu\": {\"type\": 1, \"label\": 1},\n \"meta\": {\"http-equiv\": {\"content-type\": 1}, \"name\": {\"description\": 1, \"keywords\": 1}, \"content\": {\"text/html; charset=UTF-8\": 1}, \"charset\": 1},\n \"meter\": {\"value\": 1, \"min\": 1, \"max\": 1, \"low\": 1, \"high\": 1, \"optimum\": 1},\n \"nav\": {},\n \"noscript\": {\"href\": 1},\n \"object\": {\"param\": 1, \"data\": 1, \"type\": 1, \"height\" : 1, \"width\": 1, \"usemap\": 1, \"name\": 1, \"form\": 1, \"classid\": 1},\n \"ol\": {\"start\": 1, \"reversed\": 1},\n \"optgroup\": {\"disabled\": 1, \"label\": 1},\n \"option\": {\"disabled\": 1, \"selected\": 1, \"label\": 1, \"value\": 1},\n \"output\": {\"for\": 1, \"form\": 1, \"name\": 1},\n \"p\": {},\n \"param\": {\"name\": 1, \"value\": 1},\n \"pre\": {},\n \"progress\": {\"value\": 1, \"max\": 1},\n \"q\": {\"cite\": 1},\n \"rp\": {},\n \"rt\": {},\n \"ruby\": {},\n \"s\": {},\n \"samp\": {},\n \"script\": {\"charset\": 1, \"type\": {\"text/javascript\": 1}, \"src\": 1, \"defer\": 1, \"async\": 1},\n \"select\": {\"autofocus\": 1, \"disabled\": 1, \"form\": 1, \"multiple\": {\"multiple\": 1}, \"name\": 1, \"size\": 1, \"readonly\":{\"readonly\": 1}},\n \"small\": {},\n \"source\": {\"src\": 1, \"type\": 1, \"media\": 1},\n \"span\": {},\n \"strong\": {},\n \"style\": {\"type\": 1, \"media\": {\"all\": 1, \"screen\": 1, \"print\": 1}, \"scoped\": 1},\n \"sub\": {},\n \"sup\": {},\n \"svg\": {},\n \"table\": {\"summary\": 1},\n \"tbody\": {},\n \"td\": {\"headers\": 1, \"rowspan\": 1, \"colspan\": 1},\n \"textarea\": {\"autofocus\": {\"autofocus\": 1}, \"disabled\": {\"disabled\": 1}, \"form\": 1, \"maxlength\": 1, \"name\": 1, \"placeholder\": 1, \"readonly\": {\"readonly\": 1}, \"required\": {\"required\": 1}, \"rows\": 1, \"cols\": 1, \"wrap\": {\"on\": 1, \"off\": 1, \"hard\": 1, \"soft\": 1}},\n \"tfoot\": {},\n \"th\": {\"headers\": 1, \"rowspan\": 1, \"colspan\": 1, \"scope\": 1},\n \"thead\": {},\n \"time\": {\"datetime\": 1},\n \"title\": {},\n \"tr\": {},\n \"track\": {\"kind\": 1, \"src\": 1, \"srclang\": 1, \"label\": 1, \"default\": 1},\n \"section\": {},\n \"summary\": {},\n \"u\": {},\n \"ul\": {},\n \"var\": {},\n \"video\": {\"src\": 1, \"autobuffer\": 1, \"autoplay\": {\"autoplay\": 1}, \"loop\": {\"loop\": 1}, \"controls\": {\"controls\": 1}, \"width\": 1, \"height\": 1, \"poster\": 1, \"muted\": {\"muted\": 1}, \"preload\": {\"auto\": 1, \"metadata\": 1, \"none\": 1}},\n \"wbr\": {}\n};\n\nvar elements = Object.keys(attributeMap);\n\nfunction is(token, type) {\n return token.type.lastIndexOf(type + \".xml\") > -1;\n}\n\nfunction findTagName(session, pos) {\n var iterator = new TokenIterator(session, pos.row, pos.column);\n var token = iterator.getCurrentToken();\n while (token && !is(token, \"tag-name\")){\n token = iterator.stepBackward();\n }\n if (token)\n return token.value;\n}\n\nfunction findAttributeName(session, pos) {\n var iterator = new TokenIterator(session, pos.row, pos.column);\n var token = iterator.getCurrentToken();\n while (token && !is(token, \"attribute-name\")){\n token = iterator.stepBackward();\n }\n if (token)\n return token.value;\n}\n\nvar HtmlCompletions = function() {\n\n};\n\n(function() {\n\n this.getCompletions = function(state, session, pos, prefix) {\n var token = session.getTokenAt(pos.row, pos.column);\n\n if (!token)\n return [];\n if (is(token, \"tag-name\") || is(token, \"tag-open\") || is(token, \"end-tag-open\"))\n return this.getTagCompletions(state, session, pos, prefix);\n if (is(token, \"tag-whitespace\") || is(token, \"attribute-name\"))\n return this.getAttributeCompletions(state, session, pos, prefix);\n if (is(token, \"attribute-value\"))\n return this.getAttributeValueCompletions(state, session, pos, prefix);\n var line = session.getLine(pos.row).substr(0, pos.column);\n if (/&[a-z]*$/i.test(line))\n return this.getHTMLEntityCompletions(state, session, pos, prefix);\n\n return [];\n };\n\n this.getTagCompletions = function(state, session, pos, prefix) {\n return elements.map(function(element){\n return {\n value: element,\n meta: \"tag\",\n score: 1000000\n };\n });\n };\n\n this.getAttributeCompletions = function(state, session, pos, prefix) {\n var tagName = findTagName(session, pos);\n if (!tagName)\n return [];\n var attributes = globalAttributes;\n if (tagName in attributeMap) {\n attributes = attributes.concat(Object.keys(attributeMap[tagName]));\n }\n return attributes.map(function(attribute){\n return {\n caption: attribute,\n snippet: attribute + '=\"$0\"',\n meta: \"attribute\",\n score: 1000000\n };\n });\n };\n\n this.getAttributeValueCompletions = function(state, session, pos, prefix) {\n var tagName = findTagName(session, pos);\n var attributeName = findAttributeName(session, pos);\n \n if (!tagName)\n return [];\n var values = [];\n if (tagName in attributeMap && attributeName in attributeMap[tagName] && typeof attributeMap[tagName][attributeName] === \"object\") {\n values = Object.keys(attributeMap[tagName][attributeName]);\n }\n return values.map(function(value){\n return {\n caption: value,\n snippet: value,\n meta: \"attribute value\",\n score: 1000000\n };\n });\n };\n\n this.getHTMLEntityCompletions = function(state, session, pos, prefix) {\n var values = ['Aacute;', 'aacute;', 'Acirc;', 'acirc;', 'acute;', 'AElig;', 'aelig;', 'Agrave;', 'agrave;', 'alefsym;', 'Alpha;', 'alpha;', 'amp;', 'and;', 'ang;', 'Aring;', 'aring;', 'asymp;', 'Atilde;', 'atilde;', 'Auml;', 'auml;', 'bdquo;', 'Beta;', 'beta;', 'brvbar;', 'bull;', 'cap;', 'Ccedil;', 'ccedil;', 'cedil;', 'cent;', 'Chi;', 'chi;', 'circ;', 'clubs;', 'cong;', 'copy;', 'crarr;', 'cup;', 'curren;', 'Dagger;', 'dagger;', 'dArr;', 'darr;', 'deg;', 'Delta;', 'delta;', 'diams;', 'divide;', 'Eacute;', 'eacute;', 'Ecirc;', 'ecirc;', 'Egrave;', 'egrave;', 'empty;', 'emsp;', 'ensp;', 'Epsilon;', 'epsilon;', 'equiv;', 'Eta;', 'eta;', 'ETH;', 'eth;', 'Euml;', 'euml;', 'euro;', 'exist;', 'fnof;', 'forall;', 'frac12;', 'frac14;', 'frac34;', 'frasl;', 'Gamma;', 'gamma;', 'ge;', 'gt;', 'hArr;', 'harr;', 'hearts;', 'hellip;', 'Iacute;', 'iacute;', 'Icirc;', 'icirc;', 'iexcl;', 'Igrave;', 'igrave;', 'image;', 'infin;', 'int;', 'Iota;', 'iota;', 'iquest;', 'isin;', 'Iuml;', 'iuml;', 'Kappa;', 'kappa;', 'Lambda;', 'lambda;', 'lang;', 'laquo;', 'lArr;', 'larr;', 'lceil;', 'ldquo;', 'le;', 'lfloor;', 'lowast;', 'loz;', 'lrm;', 'lsaquo;', 'lsquo;', 'lt;', 'macr;', 'mdash;', 'micro;', 'middot;', 'minus;', 'Mu;', 'mu;', 'nabla;', 'nbsp;', 'ndash;', 'ne;', 'ni;', 'not;', 'notin;', 'nsub;', 'Ntilde;', 'ntilde;', 'Nu;', 'nu;', 'Oacute;', 'oacute;', 'Ocirc;', 'ocirc;', 'OElig;', 'oelig;', 'Ograve;', 'ograve;', 'oline;', 'Omega;', 'omega;', 'Omicron;', 'omicron;', 'oplus;', 'or;', 'ordf;', 'ordm;', 'Oslash;', 'oslash;', 'Otilde;', 'otilde;', 'otimes;', 'Ouml;', 'ouml;', 'para;', 'part;', 'permil;', 'perp;', 'Phi;', 'phi;', 'Pi;', 'pi;', 'piv;', 'plusmn;', 'pound;', 'Prime;', 'prime;', 'prod;', 'prop;', 'Psi;', 'psi;', 'quot;', 'radic;', 'rang;', 'raquo;', 'rArr;', 'rarr;', 'rceil;', 'rdquo;', 'real;', 'reg;', 'rfloor;', 'Rho;', 'rho;', 'rlm;', 'rsaquo;', 'rsquo;', 'sbquo;', 'Scaron;', 'scaron;', 'sdot;', 'sect;', 'shy;', 'Sigma;', 'sigma;', 'sigmaf;', 'sim;', 'spades;', 'sub;', 'sube;', 'sum;', 'sup;', 'sup1;', 'sup2;', 'sup3;', 'supe;', 'szlig;', 'Tau;', 'tau;', 'there4;', 'Theta;', 'theta;', 'thetasym;', 'thinsp;', 'THORN;', 'thorn;', 'tilde;', 'times;', 'trade;', 'Uacute;', 'uacute;', 'uArr;', 'uarr;', 'Ucirc;', 'ucirc;', 'Ugrave;', 'ugrave;', 'uml;', 'upsih;', 'Upsilon;', 'upsilon;', 'Uuml;', 'uuml;', 'weierp;', 'Xi;', 'xi;', 'Yacute;', 'yacute;', 'yen;', 'Yuml;', 'yuml;', 'Zeta;', 'zeta;', 'zwj;', 'zwnj;'];\n\n return values.map(function(value){\n return {\n caption: value,\n snippet: value,\n meta: \"html entity\",\n score: 1000000\n };\n });\n };\n\n}).call(HtmlCompletions.prototype);\n\nexports.HtmlCompletions = HtmlCompletions;\n});\n\nace.define(\"ace/mode/html\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/text\",\"ace/mode/javascript\",\"ace/mode/css\",\"ace/mode/html_highlight_rules\",\"ace/mode/behaviour/xml\",\"ace/mode/folding/html\",\"ace/mode/html_completions\",\"ace/worker/worker_client\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar TextMode = require(\"./text\").Mode;\nvar JavaScriptMode = require(\"./javascript\").Mode;\nvar CssMode = require(\"./css\").Mode;\nvar HtmlHighlightRules = require(\"./html_highlight_rules\").HtmlHighlightRules;\nvar XmlBehaviour = require(\"./behaviour/xml\").XmlBehaviour;\nvar HtmlFoldMode = require(\"./folding/html\").FoldMode;\nvar HtmlCompletions = require(\"./html_completions\").HtmlCompletions;\nvar WorkerClient = require(\"../worker/worker_client\").WorkerClient;\nvar voidElements = [\"area\", \"base\", \"br\", \"col\", \"embed\", \"hr\", \"img\", \"input\", \"keygen\", \"link\", \"meta\", \"menuitem\", \"param\", \"source\", \"track\", \"wbr\"];\nvar optionalEndTags = [\"li\", \"dt\", \"dd\", \"p\", \"rt\", \"rp\", \"optgroup\", \"option\", \"colgroup\", \"td\", \"th\"];\n\nvar Mode = function(options) {\n this.fragmentContext = options && options.fragmentContext;\n this.HighlightRules = HtmlHighlightRules;\n this.$behaviour = new XmlBehaviour();\n this.$completer = new HtmlCompletions();\n \n this.createModeDelegates({\n \"js-\": JavaScriptMode,\n \"css-\": CssMode\n });\n \n this.foldingRules = new HtmlFoldMode(this.voidElements, lang.arrayToMap(optionalEndTags));\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.blockComment = {start: \"\"};\n\n this.voidElements = lang.arrayToMap(voidElements);\n\n this.getNextLineIndent = function(state, line, tab) {\n return this.$getIndent(line);\n };\n\n this.checkOutdent = function(state, line, input) {\n return false;\n };\n\n this.getCompletions = function(state, session, pos, prefix) {\n return this.$completer.getCompletions(state, session, pos, prefix);\n };\n\n this.createWorker = function(session) {\n if (this.constructor != Mode)\n return;\n var worker = new WorkerClient([\"ace\"], \"ace/mode/html_worker\", \"Worker\");\n worker.attachToDocument(session.getDocument());\n\n if (this.fragmentContext)\n worker.call(\"setOptions\", [{context: this.fragmentContext}]);\n\n worker.on(\"error\", function(e) {\n session.setAnnotations(e.data);\n });\n\n worker.on(\"terminate\", function() {\n session.clearAnnotations();\n });\n\n return worker;\n };\n\n this.$id = \"ace/mode/html\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n});\n\nace.define(\"ace/mode/markdown_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/config\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/text_highlight_rules\",\"ace/mode/html_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar modes = require(\"../config\").$modes;\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar HtmlHighlightRules = require(\"./html_highlight_rules\").HtmlHighlightRules;\n\nvar escaped = function(ch) {\n return \"(?:[^\" + lang.escapeRegExp(ch) + \"\\\\\\\\]|\\\\\\\\.)*\";\n};\n\nvar MarkdownHighlightRules = function() {\n HtmlHighlightRules.call(this);\n var codeBlockStartRule = {\n token : \"support.function\",\n regex : /^\\s*(```+[^`]*|~~~+[^~]*)$/,\n onMatch: function(value, state, stack, line) {\n var m = value.match(/^(\\s*)([`~]+)(.*)/);\n var language = /[\\w-]+|$/.exec(m[3])[0];\n if (!modes[language])\n language = \"\";\n stack.unshift(\"githubblock\", [], [m[1], m[2], language], state);\n return this.token;\n },\n next : \"githubblock\"\n };\n var codeBlockRules = [{\n token : \"support.function\",\n regex : \".*\",\n onMatch: function(value, state, stack, line) {\n var embedState = stack[1];\n var indent = stack[2][0];\n var endMarker = stack[2][1];\n var language = stack[2][2];\n \n var m = /^(\\s*)(`+|~+)\\s*$/.exec(value);\n if (\n m && m[1].length < indent.length + 3\n && m[2].length >= endMarker.length && m[2][0] == endMarker[0]\n ) {\n stack.splice(0, 3);\n this.next = stack.shift();\n return this.token;\n }\n this.next = \"\";\n if (language && modes[language]) {\n var data = modes[language].getTokenizer().getLineTokens(value, embedState.slice(0));\n stack[1] = data.state;\n return data.tokens;\n }\n return this.token;\n }\n }];\n\n this.$rules[\"start\"].unshift({\n token : \"empty_line\",\n regex : '^$',\n next: \"allowBlock\"\n }, { // h1\n token: \"markup.heading.1\",\n regex: \"^=+(?=\\\\s*$)\"\n }, { // h2\n token: \"markup.heading.2\",\n regex: \"^\\\\-+(?=\\\\s*$)\"\n }, {\n token : function(value) {\n return \"markup.heading.\" + value.length;\n },\n regex : /^#{1,6}(?=\\s|$)/,\n next : \"header\"\n },\n codeBlockStartRule,\n { // block quote\n token : \"string.blockquote\",\n regex : \"^\\\\s*>\\\\s*(?:[*+-]|\\\\d+\\\\.)?\\\\s+\",\n next : \"blockquote\"\n }, { // HR * - _\n token : \"constant\",\n regex : \"^ {0,2}(?:(?: ?\\\\* ?){3,}|(?: ?\\\\- ?){3,}|(?: ?\\\\_ ?){3,})\\\\s*$\",\n next: \"allowBlock\"\n }, { // list\n token : \"markup.list\",\n regex : \"^\\\\s{0,3}(?:[*+-]|\\\\d+\\\\.)\\\\s+\",\n next : \"listblock-start\"\n }, {\n include : \"basic\"\n });\n\n this.addRules({\n \"basic\" : [{\n token : \"constant.language.escape\",\n regex : /\\\\[\\\\`*_{}\\[\\]()#+\\-.!]/\n }, { // code span `\n token : \"support.function\",\n regex : \"(`+)(.*?[^`])(\\\\1)\"\n }, { // reference\n token : [\"text\", \"constant\", \"text\", \"url\", \"string\", \"text\"],\n regex : \"^([ ]{0,3}\\\\[)([^\\\\]]+)(\\\\]:\\\\s*)([^ ]+)(\\\\s*(?:[\\\"][^\\\"]+[\\\"])?(\\\\s*))$\"\n }, { // link by reference\n token : [\"text\", \"string\", \"text\", \"constant\", \"text\"],\n regex : \"(\\\\[)(\" + escaped(\"]\") + \")(\\\\]\\\\s*\\\\[)(\"+ escaped(\"]\") + \")(\\\\])\"\n }, { // link by url\n token : [\"text\", \"string\", \"text\", \"markup.underline\", \"string\", \"text\"],\n regex : \"(\\\\!?\\\\[)(\" + // [\n escaped(\"]\") + // link text or alt text\n \")(\\\\]\\\\()\"+ // ](\n '((?:[^\\\\)\\\\s\\\\\\\\]|\\\\\\\\.|\\\\s(?=[^\"]))*)' + // href or image\n '(\\\\s*\"' + escaped('\"') + '\"\\\\s*)?' + // \"title\"\n \"(\\\\))\" // )\n }, { // strong ** __\n token : \"string.strong\",\n regex : \"([*]{2}|[_]{2}(?=\\\\S))(.*?\\\\S[*_]*)(\\\\1)\"\n }, { // emphasis * _\n token : \"string.emphasis\",\n regex : \"([*]|[_](?=\\\\S))(.*?\\\\S[*_]*)(\\\\1)\"\n }, { //\n token : [\"text\", \"url\", \"text\"],\n regex : \"(<)(\"+\n \"(?:https?|ftp|dict):[^'\\\">\\\\s]+\"+\n \"|\"+\n \"(?:mailto:)?[-.\\\\w]+\\\\@[-a-z0-9]+(?:\\\\.[-a-z0-9]+)*\\\\.[a-z]+\"+\n \")(>)\"\n }],\n \"allowBlock\": [\n {token : \"support.function\", regex : \"^ {4}.+\", next : \"allowBlock\"},\n {token : \"empty_line\", regex : '^$', next: \"allowBlock\"},\n {token : \"empty\", regex : \"\", next : \"start\"}\n ],\n\n \"header\" : [{\n regex: \"$\",\n next : \"start\"\n }, {\n include: \"basic\"\n }, {\n defaultToken : \"heading\"\n } ],\n\n \"listblock-start\" : [{\n token : \"support.variable\",\n regex : /(?:\\[[ x]\\])?/,\n next : \"listblock\"\n }],\n\n \"listblock\" : [ { // Lists only escape on completely blank lines.\n token : \"empty_line\",\n regex : \"^$\",\n next : \"start\"\n }, { // list\n token : \"markup.list\",\n regex : \"^\\\\s{0,3}(?:[*+-]|\\\\d+\\\\.)\\\\s+\",\n next : \"listblock-start\"\n }, {\n include : \"basic\", noEscape: true\n },\n codeBlockStartRule,\n {\n defaultToken : \"list\" //do not use markup.list to allow stling leading `*` differntly\n } ],\n\n \"blockquote\" : [ { // Blockquotes only escape on blank lines.\n token : \"empty_line\",\n regex : \"^\\\\s*$\",\n next : \"start\"\n }, { // block quote\n token : \"string.blockquote\",\n regex : \"^\\\\s*>\\\\s*(?:[*+-]|\\\\d+\\\\.)?\\\\s+\",\n next : \"blockquote\"\n }, {\n include : \"basic\", noEscape: true\n }, {\n defaultToken : \"string.blockquote\"\n } ],\n\n \"githubblock\" : codeBlockRules\n });\n\n this.normalizeRules();\n};\noop.inherits(MarkdownHighlightRules, TextHighlightRules);\n\nexports.MarkdownHighlightRules = MarkdownHighlightRules;\n});\n\nace.define(\"ace/mode/folding/markdown\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/folding/fold_mode\",\"ace/range\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\nvar Range = require(\"../../range\").Range;\n\nvar FoldMode = exports.FoldMode = function() {};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n this.foldingStartMarker = /^(?:[=-]+\\s*$|#{1,6} |`{3})/;\n\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n if (!this.foldingStartMarker.test(line))\n return \"\";\n\n if (line[0] == \"`\") {\n if (session.bgTokenizer.getState(row) == \"start\")\n return \"end\";\n return \"start\";\n }\n\n return \"start\";\n };\n\n this.getFoldWidgetRange = function(session, foldStyle, row) {\n var line = session.getLine(row);\n var startColumn = line.length;\n var maxRow = session.getLength();\n var startRow = row;\n var endRow = row;\n if (!line.match(this.foldingStartMarker))\n return;\n\n if (line[0] == \"`\") {\n if (session.bgTokenizer.getState(row) !== \"start\") {\n while (++row < maxRow) {\n line = session.getLine(row);\n if (line[0] == \"`\" & line.substring(0, 3) == \"```\")\n break;\n }\n return new Range(startRow, startColumn, row, 0);\n } else {\n while (row -- > 0) {\n line = session.getLine(row);\n if (line[0] == \"`\" & line.substring(0, 3) == \"```\")\n break;\n }\n return new Range(row, line.length, startRow, 0);\n }\n }\n\n var token;\n function isHeading(row) {\n token = session.getTokens(row)[0];\n return token && token.type.lastIndexOf(heading, 0) === 0;\n }\n\n var heading = \"markup.heading\";\n function getLevel() {\n var ch = token.value[0];\n if (ch == \"=\") return 6;\n if (ch == \"-\") return 5;\n return 7 - token.value.search(/[^#]/);\n }\n\n if (isHeading(row)) {\n var startHeadingLevel = getLevel();\n while (++row < maxRow) {\n if (!isHeading(row))\n continue;\n var level = getLevel();\n if (level >= startHeadingLevel)\n break;\n }\n\n endRow = row - (!token || [\"=\", \"-\"].indexOf(token.value[0]) == -1 ? 1 : 2);\n\n if (endRow > startRow) {\n while (endRow > startRow && /^\\s*$/.test(session.getLine(endRow)))\n endRow--;\n }\n\n if (endRow > startRow) {\n var endColumn = session.getLine(endRow).length;\n return new Range(startRow, startColumn, endRow, endColumn);\n }\n }\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/sh_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar reservedKeywords = exports.reservedKeywords = (\n '!|{|}|case|do|done|elif|else|'+\n 'esac|fi|for|if|in|then|until|while|'+\n '&|;|export|local|read|typeset|unset|'+\n 'elif|select|set|function|declare|readonly'\n );\n\nvar languageConstructs = exports.languageConstructs = (\n '[|]|alias|bg|bind|break|builtin|'+\n 'cd|command|compgen|complete|continue|'+\n 'dirs|disown|echo|enable|eval|exec|'+\n 'exit|fc|fg|getopts|hash|help|history|'+\n 'jobs|kill|let|logout|popd|printf|pushd|'+\n 'pwd|return|set|shift|shopt|source|'+\n 'suspend|test|times|trap|type|ulimit|'+\n 'umask|unalias|wait'\n);\n\nvar ShHighlightRules = function() {\n var keywordMapper = this.createKeywordMapper({\n \"keyword\": reservedKeywords,\n \"support.function.builtin\": languageConstructs,\n \"invalid.deprecated\": \"debugger\"\n }, \"identifier\");\n\n var integer = \"(?:(?:[1-9]\\\\d*)|(?:0))\";\n\n var fraction = \"(?:\\\\.\\\\d+)\";\n var intPart = \"(?:\\\\d+)\";\n var pointFloat = \"(?:(?:\" + intPart + \"?\" + fraction + \")|(?:\" + intPart + \"\\\\.))\";\n var exponentFloat = \"(?:(?:\" + pointFloat + \"|\" + intPart + \")\" + \")\";\n var floatNumber = \"(?:\" + exponentFloat + \"|\" + pointFloat + \")\";\n var fileDescriptor = \"(?:&\" + intPart + \")\";\n\n var variableName = \"[a-zA-Z_][a-zA-Z0-9_]*\";\n var variable = \"(?:\" + variableName + \"(?==))\";\n\n var builtinVariable = \"(?:\\\\$(?:SHLVL|\\\\$|\\\\!|\\\\?))\";\n\n var func = \"(?:\" + variableName + \"\\\\s*\\\\(\\\\))\";\n\n this.$rules = {\n \"start\" : [{\n token : \"constant\",\n regex : /\\\\./\n }, {\n token : [\"text\", \"comment\"],\n regex : /(^|\\s)(#.*)$/\n }, {\n token : \"string.start\",\n regex : '\"',\n push : [{\n token : \"constant.language.escape\",\n regex : /\\\\(?:[$`\"\\\\]|$)/\n }, {\n include : \"variables\"\n }, {\n token : \"keyword.operator\",\n regex : /`/ // TODO highlight `\n }, {\n token : \"string.end\",\n regex : '\"',\n next: \"pop\"\n }, {\n defaultToken: \"string\"\n }]\n }, {\n token : \"string\",\n regex : \"\\\\$'\",\n push : [{\n token : \"constant.language.escape\",\n regex : /\\\\(?:[abeEfnrtv\\\\'\"]|x[a-fA-F\\d]{1,2}|u[a-fA-F\\d]{4}([a-fA-F\\d]{4})?|c.|\\d{1,3})/\n }, {\n token : \"string\",\n regex : \"'\",\n next: \"pop\"\n }, {\n defaultToken: \"string\"\n }]\n }, {\n regex : \"<<<\",\n token : \"keyword.operator\"\n }, {\n stateName: \"heredoc\",\n regex : \"(<<-?)(\\\\s*)(['\\\"`]?)([\\\\w\\\\-]+)(['\\\"`]?)\",\n onMatch : function(value, currentState, stack) {\n var next = value[2] == '-' ? \"indentedHeredoc\" : \"heredoc\";\n var tokens = value.split(this.splitRegex);\n stack.push(next, tokens[4]);\n return [\n {type:\"constant\", value: tokens[1]},\n {type:\"text\", value: tokens[2]},\n {type:\"string\", value: tokens[3]},\n {type:\"support.class\", value: tokens[4]},\n {type:\"string\", value: tokens[5]}\n ];\n },\n rules: {\n heredoc: [{\n onMatch: function(value, currentState, stack) {\n if (value === stack[1]) {\n stack.shift();\n stack.shift();\n this.next = stack[0] || \"start\";\n return \"support.class\";\n }\n this.next = \"\";\n return \"string\";\n },\n regex: \".*$\",\n next: \"start\"\n }],\n indentedHeredoc: [{\n token: \"string\",\n regex: \"^\\t+\"\n }, {\n onMatch: function(value, currentState, stack) {\n if (value === stack[1]) {\n stack.shift();\n stack.shift();\n this.next = stack[0] || \"start\";\n return \"support.class\";\n }\n this.next = \"\";\n return \"string\";\n },\n regex: \".*$\",\n next: \"start\"\n }]\n }\n }, {\n regex : \"$\",\n token : \"empty\",\n next : function(currentState, stack) {\n if (stack[0] === \"heredoc\" || stack[0] === \"indentedHeredoc\")\n return stack[0];\n return currentState;\n }\n }, {\n token : [\"keyword\", \"text\", \"text\", \"text\", \"variable\"],\n regex : /(declare|local|readonly)(\\s+)(?:(-[fixar]+)(\\s+))?([a-zA-Z_][a-zA-Z0-9_]*\\b)/\n }, {\n token : \"variable.language\",\n regex : builtinVariable\n }, {\n token : \"variable\",\n regex : variable\n }, {\n include : \"variables\"\n }, {\n token : \"support.function\",\n regex : func\n }, {\n token : \"support.function\",\n regex : fileDescriptor\n }, {\n token : \"string\", // ' string\n start : \"'\", end : \"'\"\n }, {\n token : \"constant.numeric\", // float\n regex : floatNumber\n }, {\n token : \"constant.numeric\", // integer\n regex : integer + \"\\\\b\"\n }, {\n token : keywordMapper,\n regex : \"[a-zA-Z_][a-zA-Z0-9_]*\\\\b\"\n }, {\n token : \"keyword.operator\",\n regex : \"\\\\+|\\\\-|\\\\*|\\\\*\\\\*|\\\\/|\\\\/\\\\/|~|<|>|<=|=>|=|!=|[%&|`]\"\n }, {\n token : \"punctuation.operator\",\n regex : \";\"\n }, {\n token : \"paren.lparen\",\n regex : \"[\\\\[\\\\(\\\\{]\"\n }, {\n token : \"paren.rparen\",\n regex : \"[\\\\]]\"\n }, {\n token : \"paren.rparen\",\n regex : \"[\\\\)\\\\}]\",\n next : \"pop\"\n }],\n variables: [{\n token : \"variable\",\n regex : /(\\$)(\\w+)/\n }, {\n token : [\"variable\", \"paren.lparen\"],\n regex : /(\\$)(\\()/,\n push : \"start\"\n }, {\n token : [\"variable\", \"paren.lparen\", \"keyword.operator\", \"variable\", \"keyword.operator\"],\n regex : /(\\$)(\\{)([#!]?)(\\w+|[*@#?\\-$!0_])(:[?+\\-=]?|##?|%%?|,,?\\/|\\^\\^?)?/,\n push : \"start\"\n }, {\n token : \"variable\",\n regex : /\\$[*@#?\\-$!0_]/\n }, {\n token : [\"variable\", \"paren.lparen\"],\n regex : /(\\$)(\\{)/,\n push : \"start\"\n }]\n };\n \n this.normalizeRules();\n};\n\noop.inherits(ShHighlightRules, TextHighlightRules);\n\nexports.ShHighlightRules = ShHighlightRules;\n});\n\nace.define(\"ace/mode/sh\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/sh_highlight_rules\",\"ace/range\",\"ace/mode/folding/cstyle\",\"ace/mode/behaviour/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar ShHighlightRules = require(\"./sh_highlight_rules\").ShHighlightRules;\nvar Range = require(\"../range\").Range;\nvar CStyleFoldMode = require(\"./folding/cstyle\").FoldMode;\nvar CstyleBehaviour = require(\"./behaviour/cstyle\").CstyleBehaviour;\n\nvar Mode = function() {\n this.HighlightRules = ShHighlightRules;\n this.foldingRules = new CStyleFoldMode();\n this.$behaviour = new CstyleBehaviour();\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n \n this.lineCommentStart = \"#\";\n\n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n\n var tokenizedLine = this.getTokenizer().getLineTokens(line, state);\n var tokens = tokenizedLine.tokens;\n\n if (tokens.length && tokens[tokens.length-1].type == \"comment\") {\n return indent;\n }\n\n if (state == \"start\") {\n var match = line.match(/^.*[\\{\\(\\[:]\\s*$/);\n if (match) {\n indent += tab;\n }\n }\n\n return indent;\n };\n\n var outdents = {\n \"pass\": 1,\n \"return\": 1,\n \"raise\": 1,\n \"break\": 1,\n \"continue\": 1\n };\n\n this.checkOutdent = function(state, line, input) {\n if (input !== \"\\r\\n\" && input !== \"\\r\" && input !== \"\\n\")\n return false;\n\n var tokens = this.getTokenizer().getLineTokens(line.trim(), state).tokens;\n\n if (!tokens)\n return false;\n do {\n var last = tokens.pop();\n } while (last && (last.type == \"comment\" || (last.type == \"text\" && last.value.match(/^\\s+$/))));\n\n if (!last)\n return false;\n\n return (last.type == \"keyword\" && outdents[last.value]);\n };\n\n this.autoOutdent = function(state, doc, row) {\n\n row += 1;\n var indent = this.$getIndent(doc.getLine(row));\n var tab = doc.getTabString();\n if (indent.slice(-tab.length) == tab)\n doc.remove(new Range(row, indent.length-tab.length, row, indent.length));\n };\n\n this.$id = \"ace/mode/sh\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n});\n\nace.define(\"ace/mode/markdown\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/javascript\",\"ace/mode/xml\",\"ace/mode/html\",\"ace/mode/markdown_highlight_rules\",\"ace/mode/folding/markdown\",\"ace/mode/javascript\",\"ace/mode/html\",\"ace/mode/sh\",\"ace/mode/sh\",\"ace/mode/xml\",\"ace/mode/css\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar JavaScriptMode = require(\"./javascript\").Mode;\nvar XmlMode = require(\"./xml\").Mode;\nvar HtmlMode = require(\"./html\").Mode;\nvar MarkdownHighlightRules = require(\"./markdown_highlight_rules\").MarkdownHighlightRules;\nvar MarkdownFoldMode = require(\"./folding/markdown\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = MarkdownHighlightRules;\n\n this.createModeDelegates({\n javascript: require(\"./javascript\").Mode,\n html: require(\"./html\").Mode,\n bash: require(\"./sh\").Mode,\n sh: require(\"./sh\").Mode,\n xml: require(\"./xml\").Mode,\n css: require(\"./css\").Mode\n });\n\n this.foldingRules = new MarkdownFoldMode();\n this.$behaviour = this.$defaultBehaviour;\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n this.type = \"text\";\n this.blockComment = {start: \"\"};\n\n this.getNextLineIndent = function(state, line, tab) {\n if (state == \"listblock\") {\n var match = /^(\\s*)(?:([-+*])|(\\d+)\\.)(\\s+)/.exec(line);\n if (!match)\n return \"\";\n var marker = match[2];\n if (!marker)\n marker = parseInt(match[3], 10) + 1 + \".\";\n return match[1] + marker + match[4];\n } else {\n return this.$getIndent(line);\n }\n };\n this.$id = \"ace/mode/markdown\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n});\n\nace.define(\"ace/mode/coffee_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\n var oop = require(\"../lib/oop\");\n var TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\n oop.inherits(CoffeeHighlightRules, TextHighlightRules);\n\n function CoffeeHighlightRules() {\n var identifier = \"[$A-Za-z_\\\\x7f-\\\\uffff][$\\\\w\\\\x7f-\\\\uffff]*\";\n\n var keywords = (\n \"this|throw|then|try|typeof|super|switch|return|break|by|continue|\" +\n \"catch|class|in|instanceof|is|isnt|if|else|extends|for|own|\" +\n \"finally|function|while|when|new|no|not|delete|debugger|do|loop|of|off|\" +\n \"or|on|unless|until|and|yes|yield|export|import|default\"\n );\n\n var langConstant = (\n \"true|false|null|undefined|NaN|Infinity\"\n );\n\n var illegal = (\n \"case|const|function|var|void|with|enum|implements|\" +\n \"interface|let|package|private|protected|public|static\"\n );\n\n var supportClass = (\n \"Array|Boolean|Date|Function|Number|Object|RegExp|ReferenceError|String|\" +\n \"Error|EvalError|InternalError|RangeError|ReferenceError|StopIteration|\" +\n \"SyntaxError|TypeError|URIError|\" +\n \"ArrayBuffer|Float32Array|Float64Array|Int16Array|Int32Array|Int8Array|\" +\n \"Uint16Array|Uint32Array|Uint8Array|Uint8ClampedArray\"\n );\n\n var supportFunction = (\n \"Math|JSON|isNaN|isFinite|parseInt|parseFloat|encodeURI|\" +\n \"encodeURIComponent|decodeURI|decodeURIComponent|String|\"\n );\n\n var variableLanguage = (\n \"window|arguments|prototype|document\"\n );\n\n var keywordMapper = this.createKeywordMapper({\n \"keyword\": keywords,\n \"constant.language\": langConstant,\n \"invalid.illegal\": illegal,\n \"language.support.class\": supportClass,\n \"language.support.function\": supportFunction,\n \"variable.language\": variableLanguage\n }, \"identifier\");\n\n var functionRule = {\n token: [\"paren.lparen\", \"variable.parameter\", \"paren.rparen\", \"text\", \"storage.type\"],\n regex: /(?:(\\()((?:\"[^\")]*?\"|'[^')]*?'|\\/[^\\/)]*?\\/|[^()\"'\\/])*?)(\\))(\\s*))?([\\-=]>)/.source\n };\n\n var stringEscape = /\\\\(?:x[0-9a-fA-F]{2}|u[0-9a-fA-F]{4}|[0-2][0-7]{0,2}|3[0-6][0-7]?|37[0-7]?|[4-7][0-7]?|.)/;\n\n this.$rules = {\n start : [\n {\n token : \"constant.numeric\",\n regex : \"(?:0x[\\\\da-fA-F]+|(?:\\\\d+(?:\\\\.\\\\d+)?|\\\\.\\\\d+)(?:[eE][+-]?\\\\d+)?)\"\n }, {\n stateName: \"qdoc\",\n token : \"string\", regex : \"'''\", next : [\n {token : \"string\", regex : \"'''\", next : \"start\"},\n {token : \"constant.language.escape\", regex : stringEscape},\n {defaultToken: \"string\"}\n ]\n }, {\n stateName: \"qqdoc\",\n token : \"string\",\n regex : '\"\"\"',\n next : [\n {token : \"string\", regex : '\"\"\"', next : \"start\"},\n {token : \"paren.string\", regex : '#{', push : \"start\"},\n {token : \"constant.language.escape\", regex : stringEscape},\n {defaultToken: \"string\"}\n ]\n }, {\n stateName: \"qstring\",\n token : \"string\", regex : \"'\", next : [\n {token : \"string\", regex : \"'\", next : \"start\"},\n {token : \"constant.language.escape\", regex : stringEscape},\n {defaultToken: \"string\"}\n ]\n }, {\n stateName: \"qqstring\",\n token : \"string.start\", regex : '\"', next : [\n {token : \"string.end\", regex : '\"', next : \"start\"},\n {token : \"paren.string\", regex : '#{', push : \"start\"},\n {token : \"constant.language.escape\", regex : stringEscape},\n {defaultToken: \"string\"}\n ]\n }, {\n stateName: \"js\",\n token : \"string\", regex : \"`\", next : [\n {token : \"string\", regex : \"`\", next : \"start\"},\n {token : \"constant.language.escape\", regex : stringEscape},\n {defaultToken: \"string\"}\n ]\n }, {\n regex: \"[{}]\", onMatch: function(val, state, stack) {\n this.next = \"\";\n if (val == \"{\" && stack.length) {\n stack.unshift(\"start\", state);\n return \"paren\";\n }\n if (val == \"}\" && stack.length) {\n stack.shift();\n this.next = stack.shift() || \"\";\n if (this.next.indexOf(\"string\") != -1)\n return \"paren.string\";\n }\n return \"paren\";\n }\n }, {\n token : \"string.regex\",\n regex : \"///\",\n next : \"heregex\"\n }, {\n token : \"string.regex\",\n regex : /(?:\\/(?![\\s=])[^[\\/\\n\\\\]*(?:(?:\\\\[\\s\\S]|\\[[^\\]\\n\\\\]*(?:\\\\[\\s\\S][^\\]\\n\\\\]*)*])[^[\\/\\n\\\\]*)*\\/)(?:[imgy]{0,4})(?!\\w)/\n }, {\n token : \"comment\",\n regex : \"###(?!#)\",\n next : \"comment\"\n }, {\n token : \"comment\",\n regex : \"#.*\"\n }, {\n token : [\"punctuation.operator\", \"text\", \"identifier\"],\n regex : \"(\\\\.)(\\\\s*)(\" + illegal + \")\"\n }, {\n token : \"punctuation.operator\",\n regex : \"\\\\.{1,3}\"\n }, {\n token : [\"keyword\", \"text\", \"language.support.class\",\n \"text\", \"keyword\", \"text\", \"language.support.class\"],\n regex : \"(class)(\\\\s+)(\" + identifier + \")(?:(\\\\s+)(extends)(\\\\s+)(\" + identifier + \"))?\"\n }, {\n token : [\"entity.name.function\", \"text\", \"keyword.operator\", \"text\"].concat(functionRule.token),\n regex : \"(\" + identifier + \")(\\\\s*)([=:])(\\\\s*)\" + functionRule.regex\n }, \n functionRule, \n {\n token : \"variable\",\n regex : \"@(?:\" + identifier + \")?\"\n }, {\n token: keywordMapper,\n regex : identifier\n }, {\n token : \"punctuation.operator\",\n regex : \"\\\\,|\\\\.\"\n }, {\n token : \"storage.type\",\n regex : \"[\\\\-=]>\"\n }, {\n token : \"keyword.operator\",\n regex : \"(?:[-+*/%<>&|^!?=]=|>>>=?|\\\\-\\\\-|\\\\+\\\\+|::|&&=|\\\\|\\\\|=|<<=|>>=|\\\\?\\\\.|\\\\.{2,3}|[!*+-=><])\"\n }, {\n token : \"paren.lparen\",\n regex : \"[({[]\"\n }, {\n token : \"paren.rparen\",\n regex : \"[\\\\]})]\"\n }, {\n token : \"text\",\n regex : \"\\\\s+\"\n }],\n\n\n heregex : [{\n token : \"string.regex\",\n regex : '.*?///[imgy]{0,4}',\n next : \"start\"\n }, {\n token : \"comment.regex\",\n regex : \"\\\\s+(?:#.*)?\"\n }, {\n token : \"string.regex\",\n regex : \"\\\\S+\"\n }],\n\n comment : [{\n token : \"comment\",\n regex : '###',\n next : \"start\"\n }, {\n defaultToken : \"comment\"\n }]\n };\n this.normalizeRules();\n }\n\n exports.CoffeeHighlightRules = CoffeeHighlightRules;\n});\n\nace.define(\"ace/mode/folding/coffee\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/folding/fold_mode\",\"ace/range\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\nvar Range = require(\"../../range\").Range;\n\nvar FoldMode = exports.FoldMode = function() {};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n\n this.getFoldWidgetRange = function(session, foldStyle, row) {\n var range = this.indentationBlock(session, row);\n if (range)\n return range;\n\n var re = /\\S/;\n var line = session.getLine(row);\n var startLevel = line.search(re);\n if (startLevel == -1 || line[startLevel] != \"#\")\n return;\n\n var startColumn = line.length;\n var maxRow = session.getLength();\n var startRow = row;\n var endRow = row;\n\n while (++row < maxRow) {\n line = session.getLine(row);\n var level = line.search(re);\n\n if (level == -1)\n continue;\n\n if (line[level] != \"#\")\n break;\n\n endRow = row;\n }\n\n if (endRow > startRow) {\n var endColumn = session.getLine(endRow).length;\n return new Range(startRow, startColumn, endRow, endColumn);\n }\n };\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n var indent = line.search(/\\S/);\n var next = session.getLine(row + 1);\n var prev = session.getLine(row - 1);\n var prevIndent = prev.search(/\\S/);\n var nextIndent = next.search(/\\S/);\n\n if (indent == -1) {\n session.foldWidgets[row - 1] = prevIndent!= -1 && prevIndent < nextIndent ? \"start\" : \"\";\n return \"\";\n }\n if (prevIndent == -1) {\n if (indent == nextIndent && line[indent] == \"#\" && next[indent] == \"#\") {\n session.foldWidgets[row - 1] = \"\";\n session.foldWidgets[row + 1] = \"\";\n return \"start\";\n }\n } else if (prevIndent == indent && line[indent] == \"#\" && prev[indent] == \"#\") {\n if (session.getLine(row - 2).search(/\\S/) == -1) {\n session.foldWidgets[row - 1] = \"start\";\n session.foldWidgets[row + 1] = \"\";\n return \"\";\n }\n }\n\n if (prevIndent!= -1 && prevIndent < indent)\n session.foldWidgets[row - 1] = \"start\";\n else\n session.foldWidgets[row - 1] = \"\";\n\n if (indent < nextIndent)\n return \"start\";\n else\n return \"\";\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/coffee\",[\"require\",\"exports\",\"module\",\"ace/mode/coffee_highlight_rules\",\"ace/mode/matching_brace_outdent\",\"ace/mode/folding/coffee\",\"ace/range\",\"ace/mode/text\",\"ace/worker/worker_client\",\"ace/lib/oop\"], function(require, exports, module) {\n\"use strict\";\n\nvar Rules = require(\"./coffee_highlight_rules\").CoffeeHighlightRules;\nvar Outdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\nvar FoldMode = require(\"./folding/coffee\").FoldMode;\nvar Range = require(\"../range\").Range;\nvar TextMode = require(\"./text\").Mode;\nvar WorkerClient = require(\"../worker/worker_client\").WorkerClient;\nvar oop = require(\"../lib/oop\");\n\nfunction Mode() {\n this.HighlightRules = Rules;\n this.$outdent = new Outdent();\n this.foldingRules = new FoldMode();\n}\n\noop.inherits(Mode, TextMode);\n\n(function() {\n var indenter = /(?:[({[=:]|[-=]>|\\b(?:else|try|(?:swi|ca)tch(?:\\s+[$A-Za-z_\\x7f-\\uffff][$\\w\\x7f-\\uffff]*)?|finally))\\s*$|^\\s*(else\\b\\s*)?(?:if|for|while|loop)\\b(?!.*\\bthen\\b)/;\n \n this.lineCommentStart = \"#\";\n this.blockComment = {start: \"###\", end: \"###\"};\n \n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n var tokens = this.getTokenizer().getLineTokens(line, state).tokens;\n \n if (!(tokens.length && tokens[tokens.length - 1].type === 'comment') &&\n state === 'start' && indenter.test(line))\n indent += tab;\n return indent;\n };\n \n this.checkOutdent = function(state, line, input) {\n return this.$outdent.checkOutdent(line, input);\n };\n \n this.autoOutdent = function(state, doc, row) {\n this.$outdent.autoOutdent(doc, row);\n };\n \n this.createWorker = function(session) {\n var worker = new WorkerClient([\"ace\"], \"ace/mode/coffee_worker\", \"Worker\");\n worker.attachToDocument(session.getDocument());\n \n worker.on(\"annotate\", function(e) {\n session.setAnnotations(e.data);\n });\n \n worker.on(\"terminate\", function() {\n session.clearAnnotations();\n });\n \n return worker;\n };\n\n this.$id = \"ace/mode/coffee\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n\n});\n\nace.define(\"ace/mode/scss_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/text_highlight_rules\",\"ace/mode/css_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar CssHighlightRules = require(\"./css_highlight_rules\");\n\nvar ScssHighlightRules = function() {\n \n var properties = lang.arrayToMap(CssHighlightRules.supportType.split(\"|\"));\n\n var functions = lang.arrayToMap(\n (\"hsl|hsla|rgb|rgba|url|attr|counter|counters|abs|adjust_color|adjust_hue|\" +\n \"alpha|join|blue|ceil|change_color|comparable|complement|darken|desaturate|\" + \n \"floor|grayscale|green|hue|if|invert|join|length|lighten|lightness|mix|\" + \n \"nth|opacify|opacity|percentage|quote|red|round|saturate|saturation|\" +\n \"scale_color|transparentize|type_of|unit|unitless|unquote\").split(\"|\")\n );\n\n var constants = lang.arrayToMap(CssHighlightRules.supportConstant.split(\"|\"));\n\n var colors = lang.arrayToMap(CssHighlightRules.supportConstantColor.split(\"|\"));\n \n var keywords = lang.arrayToMap(\n (\"@mixin|@extend|@include|@import|@media|@debug|@warn|@if|@for|@each|@while|@else|@font-face|@-webkit-keyframes|if|and|!default|module|def|end|declare\").split(\"|\")\n );\n \n var tags = lang.arrayToMap(\n (\"a|abbr|acronym|address|applet|area|article|aside|audio|b|base|basefont|bdo|\" + \n \"big|blockquote|body|br|button|canvas|caption|center|cite|code|col|colgroup|\" + \n \"command|datalist|dd|del|details|dfn|dir|div|dl|dt|em|embed|fieldset|\" + \n \"figcaption|figure|font|footer|form|frame|frameset|h1|h2|h3|h4|h5|h6|head|\" + \n \"header|hgroup|hr|html|i|iframe|img|input|ins|keygen|kbd|label|legend|li|\" + \n \"link|map|mark|menu|meta|meter|nav|noframes|noscript|object|ol|optgroup|\" + \n \"option|output|p|param|pre|progress|q|rp|rt|ruby|s|samp|script|section|select|\" + \n \"small|source|span|strike|strong|style|sub|summary|sup|table|tbody|td|\" + \n \"textarea|tfoot|th|thead|time|title|tr|tt|u|ul|var|video|wbr|xmp\").split(\"|\")\n );\n\n var numRe = \"\\\\-?(?:(?:[0-9]+)|(?:[0-9]*\\\\.[0-9]+))\";\n\n this.$rules = {\n \"start\" : [\n {\n token : \"comment\",\n regex : \"\\\\/\\\\/.*$\"\n },\n {\n token : \"comment\", // multi line comment\n regex : \"\\\\/\\\\*\",\n next : \"comment\"\n }, {\n token : \"string\", // single line\n regex : '[\"](?:(?:\\\\\\\\.)|(?:[^\"\\\\\\\\]))*?[\"]'\n }, {\n token : \"string\", // multi line string start\n regex : '[\"].*\\\\\\\\$',\n next : \"qqstring\"\n }, {\n token : \"string\", // single line\n regex : \"['](?:(?:\\\\\\\\.)|(?:[^'\\\\\\\\]))*?[']\"\n }, {\n token : \"string\", // multi line string start\n regex : \"['].*\\\\\\\\$\",\n next : \"qstring\"\n }, {\n token : \"constant.numeric\",\n regex : numRe + \"(?:ch|cm|deg|em|ex|fr|gd|grad|Hz|in|kHz|mm|ms|pc|pt|px|rad|rem|s|turn|vh|vmax|vmin|vm|vw|%)\"\n }, {\n token : \"constant.numeric\", // hex6 color\n regex : \"#[a-f0-9]{6}\"\n }, {\n token : \"constant.numeric\", // hex3 color\n regex : \"#[a-f0-9]{3}\"\n }, {\n token : \"constant.numeric\",\n regex : numRe\n }, {\n token : [\"support.function\", \"string\", \"support.function\"],\n regex : \"(url\\\\()(.*)(\\\\))\"\n }, {\n token : function(value) {\n if (properties.hasOwnProperty(value.toLowerCase()))\n return \"support.type\";\n if (keywords.hasOwnProperty(value))\n return \"keyword\";\n else if (constants.hasOwnProperty(value))\n return \"constant.language\";\n else if (functions.hasOwnProperty(value))\n return \"support.function\";\n else if (colors.hasOwnProperty(value.toLowerCase()))\n return \"support.constant.color\";\n else if (tags.hasOwnProperty(value.toLowerCase()))\n return \"variable.language\";\n else\n return \"text\";\n },\n regex : \"\\\\-?[@a-z_][@a-z0-9_\\\\-]*\"\n }, {\n token : \"variable\",\n regex : \"[a-z_\\\\-$][a-z0-9_\\\\-$]*\\\\b\"\n }, {\n token: \"variable.language\",\n regex: \"#[a-z0-9-_]+\"\n }, {\n token: \"variable.language\",\n regex: \"\\\\.[a-z0-9-_]+\"\n }, {\n token: \"variable.language\",\n regex: \":[a-z0-9-_]+\"\n }, {\n token: \"constant\",\n regex: \"[a-z0-9-_]+\"\n }, {\n token : \"keyword.operator\",\n regex : \"<|>|<=|>=|==|!=|-|%|#|\\\\+|\\\\$|\\\\+|\\\\*\"\n }, {\n token : \"paren.lparen\",\n regex : \"[[({]\"\n }, {\n token : \"paren.rparen\",\n regex : \"[\\\\])}]\"\n }, {\n token : \"text\",\n regex : \"\\\\s+\"\n }, {\n caseInsensitive: true\n }\n ],\n \"comment\" : [\n {\n token : \"comment\", // closing comment\n regex : \"\\\\*\\\\/\",\n next : \"start\"\n }, {\n defaultToken : \"comment\"\n }\n ],\n \"qqstring\" : [\n {\n token : \"string\",\n regex : '(?:(?:\\\\\\\\.)|(?:[^\"\\\\\\\\]))*?\"',\n next : \"start\"\n }, {\n token : \"string\",\n regex : '.+'\n }\n ],\n \"qstring\" : [\n {\n token : \"string\",\n regex : \"(?:(?:\\\\\\\\.)|(?:[^'\\\\\\\\]))*?'\",\n next : \"start\"\n }, {\n token : \"string\",\n regex : '.+'\n }\n ]\n };\n};\n\noop.inherits(ScssHighlightRules, TextHighlightRules);\n\nexports.ScssHighlightRules = ScssHighlightRules;\n\n});\n\nace.define(\"ace/mode/scss\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/scss_highlight_rules\",\"ace/mode/matching_brace_outdent\",\"ace/mode/behaviour/css\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar ScssHighlightRules = require(\"./scss_highlight_rules\").ScssHighlightRules;\nvar MatchingBraceOutdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\nvar CssBehaviour = require(\"./behaviour/css\").CssBehaviour;\nvar CStyleFoldMode = require(\"./folding/cstyle\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = ScssHighlightRules;\n this.$outdent = new MatchingBraceOutdent();\n this.$behaviour = new CssBehaviour();\n this.foldingRules = new CStyleFoldMode();\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n \n this.lineCommentStart = \"//\";\n this.blockComment = {start: \"/*\", end: \"*/\"};\n\n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n var tokens = this.getTokenizer().getLineTokens(line, state).tokens;\n if (tokens.length && tokens[tokens.length-1].type == \"comment\") {\n return indent;\n }\n\n var match = line.match(/^.*\\{\\s*$/);\n if (match) {\n indent += tab;\n }\n\n return indent;\n };\n\n this.checkOutdent = function(state, line, input) {\n return this.$outdent.checkOutdent(line, input);\n };\n\n this.autoOutdent = function(state, doc, row) {\n this.$outdent.autoOutdent(doc, row);\n };\n\n this.$id = \"ace/mode/scss\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n\n});\n\nace.define(\"ace/mode/sass_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/scss_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar ScssHighlightRules = require(\"./scss_highlight_rules\").ScssHighlightRules;\n\nvar SassHighlightRules = function() {\n ScssHighlightRules.call(this);\n var start = this.$rules.start;\n if (start[1].token == \"comment\") {\n start.splice(1, 1, {\n onMatch: function(value, currentState, stack) {\n stack.unshift(this.next, -1, value.length - 2, currentState);\n return \"comment\";\n },\n regex: /^\\s*\\/\\*/,\n next: \"comment\"\n }, {\n token: \"error.invalid\",\n regex: \"/\\\\*|[{;}]\"\n }, {\n token: \"support.type\",\n regex: /^\\s*:[\\w\\-]+\\s/\n });\n \n this.$rules.comment = [\n {regex: /^\\s*/, onMatch: function(value, currentState, stack) {\n if (stack[1] === -1)\n stack[1] = Math.max(stack[2], value.length - 1);\n if (value.length <= stack[1]) {stack.shift();stack.shift();stack.shift();\n this.next = stack.shift();\n return \"text\";\n } else {\n this.next = \"\";\n return \"comment\";\n }\n }, next: \"start\"},\n {defaultToken: \"comment\"}\n ];\n }\n};\n\noop.inherits(SassHighlightRules, ScssHighlightRules);\n\nexports.SassHighlightRules = SassHighlightRules;\n\n});\n\nace.define(\"ace/mode/sass\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/sass_highlight_rules\",\"ace/mode/folding/coffee\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar SassHighlightRules = require(\"./sass_highlight_rules\").SassHighlightRules;\nvar FoldMode = require(\"./folding/coffee\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = SassHighlightRules;\n this.foldingRules = new FoldMode();\n this.$behaviour = this.$defaultBehaviour;\n};\noop.inherits(Mode, TextMode);\n\n(function() { \n this.lineCommentStart = \"//\";\n this.$id = \"ace/mode/sass\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n\n});\n\nace.define(\"ace/mode/less_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\",\"ace/mode/css_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar CssHighlightRules = require('./css_highlight_rules');\n\nvar LessHighlightRules = function() {\n\n\n var keywordList = \"@import|@media|@font-face|@keyframes|@-webkit-keyframes|@supports|\" + \n \"@charset|@plugin|@namespace|@document|@page|@viewport|@-ms-viewport|\" +\n \"or|and|when|not\";\n\n var keywords = keywordList.split('|');\n\n var properties = CssHighlightRules.supportType.split('|');\n\n var keywordMapper = this.createKeywordMapper({\n \"support.constant\": CssHighlightRules.supportConstant,\n \"keyword\": keywordList,\n \"support.constant.color\": CssHighlightRules.supportConstantColor,\n \"support.constant.fonts\": CssHighlightRules.supportConstantFonts\n }, \"identifier\", true); \n\n var numRe = \"\\\\-?(?:(?:[0-9]+)|(?:[0-9]*\\\\.[0-9]+))\";\n\n this.$rules = {\n \"start\" : [\n {\n token : \"comment\",\n regex : \"\\\\/\\\\/.*$\"\n },\n {\n token : \"comment\", // multi line comment\n regex : \"\\\\/\\\\*\",\n next : \"comment\"\n }, {\n token : \"string\", // single line\n regex : '[\"](?:(?:\\\\\\\\.)|(?:[^\"\\\\\\\\]))*?[\"]'\n }, {\n token : \"string\", // single line\n regex : \"['](?:(?:\\\\\\\\.)|(?:[^'\\\\\\\\]))*?[']\"\n }, {\n token : [\"constant.numeric\", \"keyword\"],\n regex : \"(\" + numRe + \")(ch|cm|deg|em|ex|fr|gd|grad|Hz|in|kHz|mm|ms|pc|pt|px|rad|rem|s|turn|vh|vm|vw|%)\"\n }, {\n token : \"constant.numeric\", // hex6 color\n regex : \"#[a-f0-9]{6}\"\n }, {\n token : \"constant.numeric\", // hex3 color\n regex : \"#[a-f0-9]{3}\"\n }, {\n token : \"constant.numeric\",\n regex : numRe\n }, {\n token : [\"support.function\", \"paren.lparen\", \"string\", \"paren.rparen\"],\n regex : \"(url)(\\\\()(.*)(\\\\))\"\n }, {\n token : [\"support.function\", \"paren.lparen\"],\n regex : \"(:extend|[a-z0-9_\\\\-]+)(\\\\()\"\n }, {\n token : function(value) {\n if (keywords.indexOf(value.toLowerCase()) > -1)\n return \"keyword\";\n else\n return \"variable\";\n },\n regex : \"[@\\\\$][a-z0-9_\\\\-@\\\\$]*\\\\b\"\n }, {\n token : \"variable\",\n regex : \"[@\\\\$]\\\\{[a-z0-9_\\\\-@\\\\$]*\\\\}\"\n }, {\n token : function(first, second) {\n if(properties.indexOf(first.toLowerCase()) > -1) {\n return [\"support.type.property\", \"text\"];\n }\n else {\n return [\"support.type.unknownProperty\", \"text\"];\n }\n },\n regex : \"([a-z0-9-_]+)(\\\\s*:)\"\n }, {\n token : \"keyword\",\n regex : \"&\" // special case - always treat as keyword\n }, {\n token : keywordMapper,\n regex : \"\\\\-?[@a-z_][@a-z0-9_\\\\-]*\"\n }, {\n token: \"variable.language\",\n regex: \"#[a-z0-9-_]+\"\n }, {\n token: \"variable.language\",\n regex: \"\\\\.[a-z0-9-_]+\"\n }, {\n token: \"variable.language\",\n regex: \":[a-z_][a-z0-9-_]*\"\n }, {\n token: \"constant\",\n regex: \"[a-z0-9-_]+\"\n }, {\n token : \"keyword.operator\",\n regex : \"<|>|<=|>=|=|!=|-|%|\\\\+|\\\\*\"\n }, {\n token : \"paren.lparen\",\n regex : \"[[({]\"\n }, {\n token : \"paren.rparen\",\n regex : \"[\\\\])}]\"\n }, {\n token : \"text\",\n regex : \"\\\\s+\"\n }, {\n caseInsensitive: true\n }\n ],\n \"comment\" : [\n {\n token : \"comment\", // closing comment\n regex : \"\\\\*\\\\/\",\n next : \"start\"\n }, {\n defaultToken : \"comment\"\n }\n ]\n };\n this.normalizeRules();\n};\n\noop.inherits(LessHighlightRules, TextHighlightRules);\n\nexports.LessHighlightRules = LessHighlightRules;\n\n});\n\nace.define(\"ace/mode/less\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/less_highlight_rules\",\"ace/mode/matching_brace_outdent\",\"ace/mode/behaviour/css\",\"ace/mode/css_completions\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar LessHighlightRules = require(\"./less_highlight_rules\").LessHighlightRules;\nvar MatchingBraceOutdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\nvar CssBehaviour = require(\"./behaviour/css\").CssBehaviour;\nvar CssCompletions = require(\"./css_completions\").CssCompletions;\n\nvar CStyleFoldMode = require(\"./folding/cstyle\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = LessHighlightRules;\n this.$outdent = new MatchingBraceOutdent();\n this.$behaviour = new CssBehaviour();\n this.$completer = new CssCompletions();\n this.foldingRules = new CStyleFoldMode();\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.lineCommentStart = \"//\";\n this.blockComment = {start: \"/*\", end: \"*/\"};\n \n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n var tokens = this.getTokenizer().getLineTokens(line, state).tokens;\n if (tokens.length && tokens[tokens.length-1].type == \"comment\") {\n return indent;\n }\n\n var match = line.match(/^.*\\{\\s*$/);\n if (match) {\n indent += tab;\n }\n\n return indent;\n };\n\n this.checkOutdent = function(state, line, input) {\n return this.$outdent.checkOutdent(line, input);\n };\n\n this.autoOutdent = function(state, doc, row) {\n this.$outdent.autoOutdent(doc, row);\n };\n\n this.getCompletions = function(state, session, pos, prefix) {\n return this.$completer.getCompletions(\"ruleset\", session, pos, prefix);\n };\n\n this.$id = \"ace/mode/less\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n\n});\n\nace.define(\"ace/mode/ruby_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar constantOtherSymbol = exports.constantOtherSymbol = {\n token : \"constant.other.symbol.ruby\", // symbol\n regex : \"[:](?:[A-Za-z_]|[@$](?=[a-zA-Z0-9_]))[a-zA-Z0-9_]*[!=?]?\"\n};\n\nvar qString = exports.qString = {\n token : \"string\", // single line\n regex : \"['](?:(?:\\\\\\\\.)|(?:[^'\\\\\\\\]))*?[']\"\n};\n\nvar qqString = exports.qqString = {\n token : \"string\", // single line\n regex : '[\"](?:(?:\\\\\\\\.)|(?:[^\"\\\\\\\\]))*?[\"]'\n};\n\nvar tString = exports.tString = {\n token : \"string\", // backtick string\n regex : \"[`](?:(?:\\\\\\\\.)|(?:[^'\\\\\\\\]))*?[`]\"\n};\n\nvar constantNumericHex = exports.constantNumericHex = {\n token : \"constant.numeric\", // hex\n regex : \"0[xX][0-9a-fA-F](?:[0-9a-fA-F]|_(?=[0-9a-fA-F]))*\\\\b\"\n};\n\nvar constantNumericFloat = exports.constantNumericFloat = {\n token : \"constant.numeric\", // float\n regex : \"[+-]?\\\\d(?:\\\\d|_(?=\\\\d))*(?:(?:\\\\.\\\\d(?:\\\\d|_(?=\\\\d))*)?(?:[eE][+-]?\\\\d+)?)?\\\\b\"\n};\n\nvar instanceVariable = exports.instanceVariable = {\n token : \"variable.instance\", // instance variable\n regex : \"@{1,2}[a-zA-Z_\\\\d]+\"\n};\n\nvar RubyHighlightRules = function() {\n\n var builtinFunctions = (\n \"abort|Array|assert|assert_equal|assert_not_equal|assert_same|assert_not_same|\" +\n \"assert_nil|assert_not_nil|assert_match|assert_no_match|assert_in_delta|assert_throws|\" +\n \"assert_raise|assert_nothing_raised|assert_instance_of|assert_kind_of|assert_respond_to|\" +\n \"assert_operator|assert_send|assert_difference|assert_no_difference|assert_recognizes|\" +\n \"assert_generates|assert_response|assert_redirected_to|assert_template|assert_select|\" +\n \"assert_select_email|assert_select_rjs|assert_select_encoded|css_select|at_exit|\" +\n \"attr|attr_writer|attr_reader|attr_accessor|attr_accessible|autoload|binding|block_given?|callcc|\" +\n \"caller|catch|chomp|chomp!|chop|chop!|defined?|delete_via_redirect|eval|exec|exit|\" +\n \"exit!|fail|Float|flunk|follow_redirect!|fork|form_for|form_tag|format|gets|global_variables|gsub|\" +\n \"gsub!|get_via_redirect|host!|https?|https!|include|Integer|lambda|link_to|\" +\n \"link_to_unless_current|link_to_function|link_to_remote|load|local_variables|loop|open|open_session|\" +\n \"p|print|printf|proc|putc|puts|post_via_redirect|put_via_redirect|raise|rand|\" +\n \"raw|readline|readlines|redirect?|request_via_redirect|require|scan|select|\" +\n \"set_trace_func|sleep|split|sprintf|srand|String|stylesheet_link_tag|syscall|system|sub|sub!|test|\" +\n \"throw|trace_var|trap|untrace_var|atan2|cos|exp|frexp|ldexp|log|log10|sin|sqrt|tan|\" +\n \"render|javascript_include_tag|csrf_meta_tag|label_tag|text_field_tag|submit_tag|check_box_tag|\" +\n \"content_tag|radio_button_tag|text_area_tag|password_field_tag|hidden_field_tag|\" +\n \"fields_for|select_tag|options_for_select|options_from_collection_for_select|collection_select|\" +\n \"time_zone_select|select_date|select_time|select_datetime|date_select|time_select|datetime_select|\" +\n \"select_year|select_month|select_day|select_hour|select_minute|select_second|file_field_tag|\" +\n \"file_field|respond_to|skip_before_filter|around_filter|after_filter|verify|\" +\n \"protect_from_forgery|rescue_from|helper_method|redirect_to|before_filter|\" +\n \"send_data|send_file|validates_presence_of|validates_uniqueness_of|validates_length_of|\" +\n \"validates_format_of|validates_acceptance_of|validates_associated|validates_exclusion_of|\" +\n \"validates_inclusion_of|validates_numericality_of|validates_with|validates_each|\" +\n \"authenticate_or_request_with_http_basic|authenticate_or_request_with_http_digest|\" +\n \"filter_parameter_logging|match|get|post|resources|redirect|scope|assert_routing|\" +\n \"translate|localize|extract_locale_from_tld|caches_page|expire_page|caches_action|expire_action|\" +\n \"cache|expire_fragment|expire_cache_for|observe|cache_sweeper|\" +\n \"has_many|has_one|belongs_to|has_and_belongs_to_many\"\n );\n\n var keywords = (\n \"alias|and|BEGIN|begin|break|case|class|def|defined|do|else|elsif|END|end|ensure|\" +\n \"__FILE__|finally|for|gem|if|in|__LINE__|module|next|not|or|private|protected|public|\" +\n \"redo|rescue|retry|return|super|then|undef|unless|until|when|while|yield\"\n );\n\n var buildinConstants = (\n \"true|TRUE|false|FALSE|nil|NIL|ARGF|ARGV|DATA|ENV|RUBY_PLATFORM|RUBY_RELEASE_DATE|\" +\n \"RUBY_VERSION|STDERR|STDIN|STDOUT|TOPLEVEL_BINDING\"\n );\n\n var builtinVariables = (\n \"$DEBUG|$defout|$FILENAME|$LOAD_PATH|$SAFE|$stdin|$stdout|$stderr|$VERBOSE|\" +\n \"$!|root_url|flash|session|cookies|params|request|response|logger|self\"\n );\n\n var keywordMapper = this.$keywords = this.createKeywordMapper({\n \"keyword\": keywords,\n \"constant.language\": buildinConstants,\n \"variable.language\": builtinVariables,\n \"support.function\": builtinFunctions,\n \"invalid.deprecated\": \"debugger\" // TODO is this a remnant from js mode?\n }, \"identifier\");\n\n this.$rules = {\n \"start\" : [\n {\n token : \"comment\",\n regex : \"#.*$\"\n }, {\n token : \"comment\", // multi line comment\n regex : \"^=begin(?:$|\\\\s.*$)\",\n next : \"comment\"\n }, {\n token : \"string.regexp\",\n regex : \"[/](?:(?:\\\\[(?:\\\\\\\\]|[^\\\\]])+\\\\])|(?:\\\\\\\\/|[^\\\\]/]))*[/]\\\\w*\\\\s*(?=[).,;]|$)\"\n },\n\n [{\n regex: \"[{}]\", onMatch: function(val, state, stack) {\n this.next = val == \"{\" ? this.nextState : \"\";\n if (val == \"{\" && stack.length) {\n stack.unshift(\"start\", state);\n return \"paren.lparen\";\n }\n if (val == \"}\" && stack.length) {\n stack.shift();\n this.next = stack.shift();\n if (this.next.indexOf(\"string\") != -1)\n return \"paren.end\";\n }\n return val == \"{\" ? \"paren.lparen\" : \"paren.rparen\";\n },\n nextState: \"start\"\n }, {\n token : \"string.start\",\n regex : /\"/,\n push : [{\n token : \"constant.language.escape\",\n regex : /\\\\(?:[nsrtvfbae'\"\\\\]|c.|C-.|M-.(?:\\\\C-.)?|[0-7]{3}|x[\\da-fA-F]{2}|u[\\da-fA-F]{4})/\n }, {\n token : \"paren.start\",\n regex : /#{/,\n push : \"start\"\n }, {\n token : \"string.end\",\n regex : /\"/,\n next : \"pop\"\n }, {\n defaultToken: \"string\"\n }]\n }, {\n token : \"string.start\",\n regex : /`/,\n push : [{\n token : \"constant.language.escape\",\n regex : /\\\\(?:[nsrtvfbae'\"\\\\]|c.|C-.|M-.(?:\\\\C-.)?|[0-7]{3}|x[\\da-fA-F]{2}|u[\\da-fA-F]{4})/\n }, {\n token : \"paren.start\",\n regex : /#{/,\n push : \"start\"\n }, {\n token : \"string.end\",\n regex : /`/,\n next : \"pop\"\n }, {\n defaultToken: \"string\"\n }]\n }, {\n token : \"string.start\",\n regex : /'/,\n push : [{\n token : \"constant.language.escape\",\n regex : /\\\\['\\\\]/\n }, {\n token : \"string.end\",\n regex : /'/,\n next : \"pop\"\n }, {\n defaultToken: \"string\"\n }]\n }],\n\n {\n token : \"text\", // namespaces aren't symbols\n regex : \"::\"\n }, {\n token : \"variable.instance\", // instance variable\n regex : \"@{1,2}[a-zA-Z_\\\\d]+\"\n }, {\n token : \"support.class\", // class name\n regex : \"[A-Z][a-zA-Z_\\\\d]+\"\n },\n\n constantOtherSymbol,\n constantNumericHex,\n constantNumericFloat,\n\n {\n token : \"constant.language.boolean\",\n regex : \"(?:true|false)\\\\b\"\n }, {\n token : keywordMapper,\n regex : \"[a-zA-Z_$][a-zA-Z0-9_$]*\\\\b\"\n }, {\n token : \"punctuation.separator.key-value\",\n regex : \"=>\"\n }, {\n stateName: \"heredoc\",\n onMatch : function(value, currentState, stack) {\n var next = value[2] == '-' ? \"indentedHeredoc\" : \"heredoc\";\n var tokens = value.split(this.splitRegex);\n stack.push(next, tokens[3]);\n return [\n {type:\"constant\", value: tokens[1]},\n {type:\"string\", value: tokens[2]},\n {type:\"support.class\", value: tokens[3]},\n {type:\"string\", value: tokens[4]}\n ];\n },\n regex : \"(<<-?)(['\\\"`]?)([\\\\w]+)(['\\\"`]?)\",\n rules: {\n heredoc: [{\n onMatch: function(value, currentState, stack) {\n if (value === stack[1]) {\n stack.shift();\n stack.shift();\n this.next = stack[0] || \"start\";\n return \"support.class\";\n }\n this.next = \"\";\n return \"string\";\n },\n regex: \".*$\",\n next: \"start\"\n }],\n indentedHeredoc: [{\n token: \"string\",\n regex: \"^ +\"\n }, {\n onMatch: function(value, currentState, stack) {\n if (value === stack[1]) {\n stack.shift();\n stack.shift();\n this.next = stack[0] || \"start\";\n return \"support.class\";\n }\n this.next = \"\";\n return \"string\";\n },\n regex: \".*$\",\n next: \"start\"\n }]\n }\n }, {\n regex : \"$\",\n token : \"empty\",\n next : function(currentState, stack) {\n if (stack[0] === \"heredoc\" || stack[0] === \"indentedHeredoc\")\n return stack[0];\n return currentState;\n }\n }, {\n token : \"string.character\",\n regex : \"\\\\B\\\\?.\"\n }, {\n token : \"keyword.operator\",\n regex : \"!|\\\\$|%|&|\\\\*|\\\\-\\\\-|\\\\-|\\\\+\\\\+|\\\\+|~|===|==|=|!=|!==|<=|>=|<<=|>>=|>>>=|<>|<|>|!|&&|\\\\|\\\\||\\\\?\\\\:|\\\\*=|%=|\\\\+=|\\\\-=|&=|\\\\^=|\\\\b(?:in|instanceof|new|delete|typeof|void)\"\n }, {\n token : \"paren.lparen\",\n regex : \"[[({]\"\n }, {\n token : \"paren.rparen\",\n regex : \"[\\\\])}]\"\n }, {\n token : \"text\",\n regex : \"\\\\s+\"\n }\n ],\n \"comment\" : [\n {\n token : \"comment\", // closing comment\n regex : \"^=end(?:$|\\\\s.*$)\",\n next : \"start\"\n }, {\n token : \"comment\", // comment spanning whole line\n regex : \".+\"\n }\n ]\n };\n\n this.normalizeRules();\n};\n\noop.inherits(RubyHighlightRules, TextHighlightRules);\n\nexports.RubyHighlightRules = RubyHighlightRules;\n});\n\nace.define(\"ace/mode/ruby\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/ruby_highlight_rules\",\"ace/mode/matching_brace_outdent\",\"ace/range\",\"ace/mode/behaviour/cstyle\",\"ace/mode/folding/coffee\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar RubyHighlightRules = require(\"./ruby_highlight_rules\").RubyHighlightRules;\nvar MatchingBraceOutdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\nvar Range = require(\"../range\").Range;\nvar CstyleBehaviour = require(\"./behaviour/cstyle\").CstyleBehaviour;\nvar FoldMode = require(\"./folding/coffee\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = RubyHighlightRules;\n this.$outdent = new MatchingBraceOutdent();\n this.$behaviour = new CstyleBehaviour();\n this.foldingRules = new FoldMode();\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n\n this.lineCommentStart = \"#\";\n\n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n\n var tokenizedLine = this.getTokenizer().getLineTokens(line, state);\n var tokens = tokenizedLine.tokens;\n\n if (tokens.length && tokens[tokens.length-1].type == \"comment\") {\n return indent;\n }\n\n if (state == \"start\") {\n var match = line.match(/^.*[\\{\\(\\[]\\s*$/);\n var startingClassOrMethod = line.match(/^\\s*(class|def|module)\\s.*$/);\n var startingDoBlock = line.match(/.*do(\\s*|\\s+\\|.*\\|\\s*)$/);\n var startingConditional = line.match(/^\\s*(if|else|when)\\s*/);\n if (match || startingClassOrMethod || startingDoBlock || startingConditional) {\n indent += tab;\n }\n }\n\n return indent;\n };\n\n this.checkOutdent = function(state, line, input) {\n return /^\\s+(end|else)$/.test(line + input) || this.$outdent.checkOutdent(line, input);\n };\n\n this.autoOutdent = function(state, session, row) {\n var line = session.getLine(row);\n if (/}/.test(line))\n return this.$outdent.autoOutdent(session, row);\n var indent = this.$getIndent(line);\n var prevLine = session.getLine(row - 1);\n var prevIndent = this.$getIndent(prevLine);\n var tab = session.getTabString();\n if (prevIndent.length <= indent.length) {\n if (indent.slice(-tab.length) == tab)\n session.remove(new Range(row, indent.length-tab.length, row, indent.length));\n }\n };\n\n this.$id = \"ace/mode/ruby\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n});\n\nace.define(\"ace/mode/slim\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/slim_highlight_rules\",\"ace/mode/javascript\",\"ace/mode/markdown\",\"ace/mode/coffee\",\"ace/mode/scss\",\"ace/mode/sass\",\"ace/mode/less\",\"ace/mode/ruby\",\"ace/mode/css\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar SlimHighlightRules = require(\"./slim_highlight_rules\").SlimHighlightRules;\n\nvar Mode = function() {\n TextMode.call(this);\n this.HighlightRules = SlimHighlightRules;\n this.createModeDelegates({\n javascript: require(\"./javascript\").Mode,\n markdown: require(\"./markdown\").Mode,\n coffee: require(\"./coffee\").Mode,\n scss: require(\"./scss\").Mode,\n sass: require(\"./sass\").Mode,\n less: require(\"./less\").Mode,\n ruby: require(\"./ruby\").Mode,\n css: require(\"./css\").Mode\n });\n};\n\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.$id = \"ace/mode/slim\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/slim\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file2g := &embedded.EmbeddedFile{ Filename: "37e37aa178d97ffcd94eeee1e1a25967.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/abc\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText = \"\\n\\\nsnippet zupfnoter.print\\n\\\n\t%%%%hn.print {\\\"startpos\\\": ${1:pos_y}, \\\"t\\\":\\\"${2:title}\\\", \\\"v\\\":[${3:voices}], \\\"s\\\":[[${4:syncvoices}1,2]], \\\"f\\\":[${5:flowlines}], \\\"sf\\\":[${6:subflowlines}], \\\"j\\\":[${7:jumplines}]}\\n\\\n\\n\\\nsnippet zupfnoter.note\\n\\\n\t%%%%hn.note {\\\"pos\\\": [${1:pos_x},${2:pos_y}], \\\"text\\\": \\\"${3:text}\\\", \\\"style\\\": \\\"${4:style}\\\"}\\n\\\n\\n\\\nsnippet zupfnoter.annotation\\n\\\n\t%%%%hn.annotation {\\\"id\\\": \\\"${1:id}\\\", \\\"pos\\\": [${2:pos}], \\\"text\\\": \\\"${3:text}\\\"}\\n\\\n\\n\\\nsnippet zupfnoter.lyrics\\n\\\n\t%%%%hn.lyrics {\\\"pos\\\": [${1:x_pos},${2:y_pos}]}\\n\\\n\\n\\\nsnippet zupfnoter.legend\\n\\\n\t%%%%hn.legend {\\\"pos\\\": [${1:x_pos},${2:y_pos}]}\\n\\\n\\n\\\n\\n\\\n\\n\\\nsnippet zupfnoter.target\\n\\\n\t\\\"^:${1:target}\\\"\\n\\\n\\n\\\nsnippet zupfnoter.goto\\n\\\n\t\\\"^@${1:target}@${2:distance}\\\"\\n\\\n\\n\\\nsnippet zupfnoter.annotationref\\n\\\n\t\\\"^#${1:target}\\\"\\n\\\n\\n\\\nsnippet zupfnoter.annotation\\n\\\n\t\\\"^!${1:text}@${2:x_offset},${3:y_offset}\\\"\\n\\\n\\n\\\n\\n\\\n\";\nexports.scope = \"abc\";\n\n}); (function() {\n ace.require([\"ace/snippets/abc\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file2h := &embedded.EmbeddedFile{ Filename: "38a696bcfe6021b6442e70b6d3017b93.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/mel_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar MELHighlightRules = function() {\n\n this.$rules = { start: \n [ { caseInsensitive: true,\n token: 'storage.type.mel',\n regex: '\\\\b(matrix|string|vector|float|int|void)\\\\b' },\n { caseInsensitive: true,\n token: 'support.function.mel',\n regex: '\\\\b((s(h(ow(ManipCtx|S(hadingGroupAttrEditor|electionInTitle)|H(idden|elp)|Window)|el(f(Button|TabLayout|Layout)|lField)|ading(GeometryRelCtx|Node|Connection|LightRelCtx))|y(s(tem|File)|mbol(Button|CheckBox))|nap(shot|Mode|2to2 |TogetherCtx|Key)|c(ulpt|ene(UIReplacement|Editor)|ale(BrushBrightness |Constraint|Key(Ctx)?)?|r(ipt(Node|Ctx|Table|edPanel(Type)?|Job|EditorInfo)|oll(Field|Layout))|mh)|t(itch(Surface(Points)?|AndExplodeShell )|a(ckTrace|rt(sWith |String ))|r(cmp|i(ng(ToStringArray |Array(Remove(Duplicates | )|C(ount |atenate )|ToString |Intersector))|p )|oke))|i(n(gleProfileBirailSurface)?|ze|gn|mplify)|o(u(nd(Control)?|rce)|ft(Mod(Ctx)?)?|rt)|u(perCtx|rface(S(haderList|ampler))?|b(st(itute(Geometry|AllString )?|ring)|d(M(irror|a(tchTopology|p(SewMove|Cut)))|iv(Crease|DisplaySmoothness)?|C(ollapse|leanTopology)|T(o(Blind|Poly)|ransferUVsToCache)|DuplicateAndConnect|EditUV|ListComponentConversion|AutoProjection)))|p(h(ere|rand)|otLight(PreviewPort)?|aceLocator|r(ing|eadSheetEditor))|e(t(s|MenuMode|Sta(te |rtupMessage|mpDensity )|NodeTypeFlag|ConstraintRestPosition |ToolTo|In(putDeviceMapping|finity)|D(ynamic|efaultShadingGroup|rivenKeyframe)|UITemplate|P(ar(ticleAttr|ent)|roject )|E(scapeCtx|dit(or|Ctx))|Key(Ctx|frame|Path)|F(ocus|luidAttr)|Attr(Mapping)?)|parator|ed|l(ect(Mode|ionConnection|Context|Type|edNodes|Pr(iority|ef)|Key(Ctx)?)?|LoadSettings)|archPathArray )|kin(Cluster|Percent)|q(uareSurface|rt)|w(itchTable|atchDisplayPort)|a(ve(Menu|Shelf|ToolSettings|I(nitialState|mage)|Pref(s|Objects)|Fluid|A(ttrPreset |llShelves))|mpleImage)|rtContext|mooth(step|Curve|TangentSurface))|h(sv_to_rgb|yp(ot|er(Graph|Shade|Panel))|i(tTest|de|lite)|ot(Box|key(Check)?)|ud(Button|Slider(Button)?)|e(lp(Line)?|adsUpDisplay|rmite)|wRe(nder(Load)?|flectionMap)|ard(enPointCurve|ware(RenderPanel)?))|n(o(nLinear|ise|de(Type|IconButton|Outliner|Preset)|rmal(ize |Constraint))|urbs(Boolean|S(elect|quare)|C(opyUVSet|ube)|To(Subdiv|Poly(gonsPref)?)|Plane|ViewDirectionVector )|ew(ton|PanelItems)|ame(space(Info)?|Command|Field))|c(h(oice|dir|eck(Box(Grp)?|DefaultRenderGlobals)|a(n(nelBox|geSubdiv(Region|ComponentDisplayLevel))|racter(Map|OutlineEditor)?))|y(cleCheck|linder)|tx(Completion|Traverse|EditMode|Abort)|irc(ularFillet|le)|o(s|n(str(uctionHistory|ain(Value)?)|nect(ionInfo|Control|Dynamic|Joint|Attr)|t(extInfo|rol)|dition|e|vert(SolidTx|Tessellation|Unit|FromOldLayers |Lightmap)|firmDialog)|py(SkinWeights|Key|Flexor|Array )|l(or(Slider(Grp|ButtonGrp)|Index(SliderGrp)?|Editor|AtPoint)?|umnLayout|lision)|arsenSubdivSelectionList|m(p(onentEditor|utePolysetVolume |actHairSystem )|mand(Port|Echo|Line)))|u(tKey|r(ve(MoveEPCtx|SketchCtx|CVCtx|Intersect|OnSurface|E(ditorCtx|PCtx)|AddPtCtx)?|rent(Ctx|Time(Ctx)?|Unit)))|p(GetSolverAttr|Button|S(olver(Types)?|e(t(SolverAttr|Edit)|am))|C(o(nstraint|llision)|ache)|Tool|P(anel|roperty))|eil|l(ip(Schedule(rOutliner)?|TrimBefore |Editor(CurrentTimeCtx)?)?|ose(Surface|Curve)|uster|ear(Cache)?|amp)|a(n(CreateManip|vas)|tch(Quiet)?|pitalizeString |mera(View)?)|r(oss(Product )?|eate(RenderLayer|MotionField |SubdivRegion|N(ode|ewShelf )|D(isplayLayer|rawCtx)|Editor))|md(Shell|FileOutput))|M(R(ender(ShadowData|Callback|Data|Util|View|Line(Array)?)|ampAttribute)|G(eometryData|lobal)|M(odelMessage|essage|a(nipData|t(erial|rix)))|BoundingBox|S(yntax|ceneMessage|t(atus|ring(Array)?)|imple|pace|elect(ion(Mask|List)|Info)|watchRender(Register|Base))|H(ardwareRenderer|WShaderSwatchGenerator)|NodeMessage|C(o(nditionMessage|lor(Array)?|m(putation|mand(Result|Message)))|ursor|loth(Material|S(ystem|olverRegister)|Con(straint|trol)|Triangle|Particle|Edge|Force)|allbackIdArray)|T(ypeId|ime(r(Message)?|Array)?|oolsInfo|esselationParams|r(imBoundaryArray|ansformationMatrix))|I(ntArray|t(Geometry|Mesh(Polygon|Edge|Vertex|FaceVertex)|S(urfaceCV|electionList)|CurveCV|Instancer|eratorType|D(ependency(Graph|Nodes)|ag)|Keyframe)|k(System|HandleGroup)|mage)|3dView|Object(SetMessage|Handle|Array)?|D(G(M(odifier|essage)|Context)|ynSwept(Triangle|Line)|istance|oubleArray|evice(State|Channel)|a(ta(Block|Handle)|g(M(odifier|essage)|Path(Array)?))|raw(Request(Queue)?|Info|Data|ProcedureBase))|U(serEventMessage|i(nt(Array|64Array)|Message))|P(o(int(Array)?|lyMessage)|lug(Array)?|rogressWindow|x(G(eometry(Iterator|Data)|lBuffer)|M(idiInputDevice|odelEditorCommand|anipContainer)|S(urfaceShape(UI)?|pringNode|electionContext)|HwShaderNode|Node|Co(ntext(Command)?|m(ponentShape|mand))|T(oolCommand|ransform(ationMatrix)?)|IkSolver(Node)?|3dModelView|ObjectSet|D(eformerNode|ata|ragAndDropBehavior)|PolyT(weakUVCommand|rg)|EmitterNode|F(i(eldNode|leTranslator)|luidEmitterNode)|LocatorNode))|E(ulerRotation|vent(Message)?)|ayatomr|Vector(Array)?|Quaternion|F(n(R(otateManip|eflectShader|adialField)|G(e(nericAttribute|ometry(Data|Filter))|ravityField)|M(otionPath|es(sageAttribute|h(Data)?)|a(nip3D|trix(Data|Attribute)))|B(l(innShader|endShapeDeformer)|ase)|S(caleManip|t(ateManip|ring(Data|ArrayData))|ingleIndexedComponent|ubd(Names|Data)?|p(hereData|otLight)|et|kinCluster)|HikEffector|N(on(ExtendedLight|AmbientLight)|u(rbs(Surface(Data)?|Curve(Data)?)|meric(Data|Attribute))|ewtonField)|C(haracter|ircleSweepManip|ompo(nent(ListData)?|undAttribute)|urveSegmentManip|lip|amera)|T(ypedAttribute|oggleManip|urbulenceField|r(ipleIndexedComponent|ansform))|I(ntArrayData|k(Solver|Handle|Joint|Effector))|D(ynSweptGeometryData|i(s(cManip|tanceManip)|rection(Manip|alLight))|ouble(IndexedComponent|ArrayData)|ependencyNode|a(ta|gNode)|ragField)|U(ni(tAttribute|formField)|Int64ArrayData)|P(hong(Shader|EShader)|oint(On(SurfaceManip|CurveManip)|Light|ArrayData)|fxGeometry|lugin(Data)?|arti(cleSystem|tion))|E(numAttribute|xpression)|V(o(lume(Light|AxisField)|rtexField)|ectorArrayData)|KeyframeDelta(Move|B(lockAddRemove|reakdown)|Scale|Tangent|InfType|Weighted|AddRemove)?|F(ield|luid|reePointTriadManip)|W(ireDeformer|eightGeometryFilter)|L(ight(DataAttribute)?|a(yeredShader|ttice(D(eformer|ata))?|mbertShader))|A(ni(sotropyShader|mCurve)|ttribute|irField|r(eaLight|rayAttrsData)|mbientLight))?|ile(IO|Object)|eedbackLine|loat(Matrix|Point(Array)?|Vector(Array)?|Array))|L(i(ghtLinks|brary)|ockMessage)|A(n(im(Message|C(ontrol|urveC(hange|lipboard(Item(Array)?)?))|Util)|gle)|ttribute(Spec(Array)?|Index)|r(rayData(Builder|Handle)|g(Database|Parser|List))))|t(hreePointArcCtx|ime(Control|Port|rX)|o(ol(Button|HasOptions|Collection|Dropped|PropertyWindow)|NativePath |upper|kenize(List )?|l(ower|erance)|rus|ggle(WindowVisibility|Axis)?)|u(rbulence|mble(Ctx)?)|ex(RotateContext|M(oveContext|anipContext)|t(ScrollList|Curves|ure(HairColor |DisplacePlane |PlacementContext|Window)|ToShelf |Field(Grp|ButtonGrp)?)?|S(caleContext|electContext|mudgeUVContext)|WinToolCtx)|woPointArcCtx|a(n(gentConstraint)?|bLayout)|r(im|unc(ate(HairCache|FluidCache))?|a(ns(formLimits|lator)|c(e|k(Ctx)?))))|i(s(olateSelect|Connected|True|Dirty|ParentOf |Valid(String |ObjectName |UiName )|AnimCurve )|n(s(tance(r)?|ert(Joint(Ctx)?|K(not(Surface|Curve)|eyCtx)))|heritTransform|t(S(crollBar|lider(Grp)?)|er(sect|nalVar|ToUI )|Field(Grp)?))|conText(Radio(Button|Collection)|Button|StaticLabel|CheckBox)|temFilter(Render|Type|Attr)?|prEngine|k(S(ystem(Info)?|olver|plineHandleCtx)|Handle(Ctx|DisplayScale)?|fkDisplayMethod)|m(portComposerCurves |fPlugins|age))|o(ceanNurbsPreviewPlane |utliner(Panel|Editor)|p(tion(Menu(Grp)?|Var)|en(GLExtension|MayaPref))|verrideModifier|ffset(Surface|Curve(OnSurface)?)|r(ientConstraint|bit(Ctx)?)|b(soleteProc |j(ect(Center|Type(UI)?|Layer )|Exists)))|d(yn(RelEd(itor|Panel)|Globals|C(ontrol|ache)|P(a(intEditor|rticleCtx)|ref)|Exp(ort|ression)|amicLoad)|i(s(connect(Joint|Attr)|tanceDim(Context|ension)|pla(y(RGBColor|S(tats|urface|moothness)|C(olor|ull)|Pref|LevelOfDetail|Affected)|cementToPoly)|kCache|able)|r(name |ect(ionalLight|KeyCtx)|map)|mWhen)|o(cServer|Blur|t(Product )?|ubleProfileBirailSurface|peSheetEditor|lly(Ctx)?)|uplicate(Surface|Curve)?|e(tach(Surface|Curve|DeviceAttr)|vice(Panel|Editor)|f(ine(DataServer|VirtualDevice)|ormer|ault(Navigation|LightListCheckBox))|l(ete(Sh(elfTab |adingGroupsAndMaterials )|U(nusedBrushes |I)|Attr)?|randstr)|g_to_rad)|agPose|r(opoffLocator|ag(gerContext)?)|g(timer|dirty|Info|eval))|CBG |u(serCtx|n(t(angleUV|rim)|i(t|form)|do(Info)?|loadPlugin|assignInputDevice|group)|iTemplate|p(dateAE |Axis)|v(Snapshot|Link))|joint(C(tx|luster)|DisplayScale|Lattice)?|p(sd(ChannelOutliner|TextureFile|E(ditTextureFile|xport))|close|i(c(ture|kWalk)|xelMove)|o(se|int(MatrixMult |C(onstraint|urveConstraint)|On(Surface|Curve)|Position|Light)|p(upMenu|en)|w|l(y(Reduce|GeoSampler|M(irrorFace|ove(UV|Edge|Vertex|Facet(UV)?)|erge(UV|Edge(Ctx)?|Vertex|Facet(Ctx)?)|ap(Sew(Move)?|Cut|Del))|B(oolOp|evel|l(indData|endColor))|S(traightenUVBorder|oftEdge|u(perCtx|bdivide(Edge|Facet))|p(her(icalProjection|e)|lit(Ring|Ctx|Edge|Vertex)?)|e(tToFaceNormal|parate|wEdge|lect(Constraint(Monitor)?|EditCtx))|mooth)|Normal(izeUV|PerVertex)?|C(hipOff|ylind(er|ricalProjection)|o(ne|pyUV|l(or(BlindData|Set|PerVertex)|lapse(Edge|Facet)))|u(t(Ctx)?|be)|l(ipboard|oseBorder)|acheMonitor|rea(seEdge|teFacet(Ctx)?))|T(o(Subdiv|rus)|r(iangulate|ansfer))|In(stallAction|fo)|Options|D(uplicate(Edge|AndConnect)|el(Edge|Vertex|Facet))|U(nite|VSet)|P(yramid|oke|lan(e|arProjection)|r(ism|ojection))|E(ditUV|valuate|xtrude(Edge|Facet))|Qu(eryBlindData|ad)|F(orceUV|lip(UV|Edge))|WedgeFace|L(istComponentConversion|ayoutUV)|A(utoProjection|ppend(Vertex|FacetCtx)?|verage(Normal|Vertex)))|eVectorConstraint))|utenv|er(cent|formanceOptions)|fxstrokes|wd|l(uginInfo|a(y(b(last|ackOptions))?|n(e|arSrf)))|a(steKey|ne(l(History|Configuration)?|Layout)|thAnimation|irBlend|use|lettePort|r(ti(cle(RenderInfo|Instancer|Exists)?|tion)|ent(Constraint)?|am(Dim(Context|ension)|Locator)))|r(int|o(j(ect(ion(Manip|Context)|Curve|Tangent)|FileViewer)|pMo(dCtx|ve)|gress(Bar|Window)|mptDialog)|eloadRefEd))|e(n(codeString|d(sWith |String )|v|ableDevice)|dit(RenderLayer(Globals|Members)|or(Template)?|DisplayLayer(Globals|Members)|AttrLimits )|v(ent|al(Deferred|Echo)?)|quivalent(Tol | )|ffector|r(f|ror)|x(clusiveLightCheckBox|t(end(Surface|Curve)|rude)|ists|p(ortComposerCurves |ression(EditorListen)?)?|ec(uteForEachObject )?|actWorldBoundingBox)|mit(ter)?)|v(i(sor|ew(Set|HeadOn|2dToolCtx|C(lipPlane|amera)|Place|Fit|LookAt))|o(lumeAxis|rtex)|e(ctorize|rifyCmd )|alidateShelfName )|key(Tangent|frame(Region(MoveKeyCtx|S(caleKeyCtx|e(tKeyCtx|lectKeyCtx))|CurrentTimeCtx|TrackCtx|InsertKeyCtx|D(irectKeyCtx|ollyCtx))|Stats|Outliner)?)|qu(it|erySubdiv)|f(c(heck|lose)|i(nd(RelatedSkinCluster |MenuItem |er|Keyframe|AllIntersections )|tBspline|l(ter(StudioImport|Curve|Expand)?|e(BrowserDialog|test|Info|Dialog|Extension )?|letCurve)|rstParentOf )|o(ntDialog|pen|rmLayout)|print|eof|flush|write|l(o(or|w|at(S(crollBar|lider(Grp|ButtonGrp|2)?)|Eq |Field(Grp)?))|u(shUndo|id(CacheInfo|Emitter|VoxelInfo))|exor)|r(omNativePath |e(eFormFillet|wind|ad)|ameLayout)|get(word|line)|mod)|w(hatIs|i(ndow(Pref)?|re(Context)?)|orkspace|ebBrowser(Prefs)?|a(itCursor|rning)|ri(nkle(Context)?|teTake))|l(s(T(hroughFilter|ype )|UI)?|i(st(Relatives|MenuAnnotation |Sets|History|NodeTypes|C(onnections|ameras)|Transforms |InputDevice(s|Buttons|Axes)|erEditor|DeviceAttachments|Unselected |A(nimatable|ttr))|n(step|eIntersection )|ght(link|List(Panel|Editor)?))|o(ckNode|okThru|ft|ad(NewShelf |P(lugin|refObjects)|Fluid)|g)|a(ssoContext|y(out|er(Button|ed(ShaderPort|TexturePort)))|ttice(DeformKeyCtx)?|unch(ImageEditor)?))|a(ssign(Command|InputDevice)|n(notate|im(C(one|urveEditor)|Display|View)|gle(Between)?)|tt(ach(Surface|Curve|DeviceAttr)|r(ibute(Menu|Info|Exists|Query)|NavigationControlGrp|Co(ntrolGrp|lorSliderGrp|mpatibility)|PresetEditWin|EnumOptionMenu(Grp)?|Field(Grp|SliderGrp)))|i(r|mConstraint)|d(d(NewShelfTab|Dynamic|PP|Attr(ibuteEditorNodeHelp)?)|vanceToNextDrivenKey)|uto(Place|Keyframe)|pp(endStringArray|l(y(Take|AttrPreset)|icationName))|ffect(s|edNet)|l(i(as(Attr)?|gn(Surface|C(tx|urve))?)|lViewFit)|r(c(len|Len(DimContext|gthDimension))|t(BuildPaintMenu|Se(tPaintCtx|lectCtx)|3dPaintCtx|UserPaintCtx|PuttyCtx|FluidAttrCtx|Attr(SkinPaintCtx|Ctx|PaintVertexCtx))|rayMapper)|mbientLight|b(s|out))|r(igid(Body|Solver)|o(t(at(ionInterpolation|e))?|otOf |undConstantRadius|w(ColumnLayout|Layout)|ll(Ctx)?)|un(up|TimeCommand)|e(s(olutionNode|et(Tool|AE )|ampleFluid)|hash|n(der(GlobalsNode|Manip|ThumbnailUpdate|Info|er|Partition|QualityNode|Window(SelectContext|Editor)|LayerButton)?|ame(SelectionList |UI|Attr)?)|cord(Device|Attr)|target|order(Deformers)?|do|v(olve|erse(Surface|Curve))|quires|f(ineSubdivSelectionList|erence(Edit|Query)?|resh(AE )?)|loadImage|adTake|root|move(MultiInstance|Joint)|build(Surface|Curve))|a(n(d(state|omizeFollicles )?|geControl)|d(i(o(MenuItemCollection|Button(Grp)?|Collection)|al)|_to_deg)|mpColorPort)|gb_to_hsv)|g(o(toBindPose |al)|e(t(M(odifiers|ayaPanelTypes )|Classification|InputDeviceRange|pid|env|DefaultBrush|Pa(nel|rticleAttr)|F(ileList|luidAttr)|A(ttr|pplicationVersionAsFloat ))|ometryConstraint)|l(Render(Editor)?|obalStitch)|a(uss|mma)|r(id(Layout)?|oup(ObjectsByName )?|a(dientControl(NoAttr)?|ph(SelectContext|TrackCtx|DollyCtx)|vity|bColor))|match)|x(pmPicker|form|bmLangPathList )|m(i(n(imizeApp)?|rrorJoint)|o(del(CurrentTimeCtx|Panel|Editor)|use|v(In|e(IKtoFK |VertexAlongDirection|KeyCtx)?|Out))|u(te|ltiProfileBirailSurface)|e(ssageLine|nu(BarLayout|Item(ToShelf )?|Editor)?|mory)|a(nip(Rotate(Context|LimitsCtx)|Move(Context|LimitsCtx)|Scale(Context|LimitsCtx)|Options)|tch|ke(Roll |SingleSurface|TubeOn |Identity|Paintable|bot|Live)|rker|g|x))|b(in(Membership|d(Skin|Pose))|o(neLattice|undary|x(ZoomCtx|DollyCtx))|u(tton(Manip)?|ild(BookmarkMenu|KeyframeMenu)|fferCurve)|e(ssel|vel(Plus)?)|l(indDataType|end(Shape(Panel|Editor)?|2|TwoAttr))|a(sename(Ex | )|tchRender|ke(Results|Simulation|Clip|PartialHistory|FluidShading )))))\\\\b' },\n { caseInsensitive: true,\n token: 'support.constant.mel',\n regex: '\\\\b(s(h(ellTessellate|a(d(ing(Map|Engine)|erGlow)|pe))|n(ow|apshot(Shape)?)|c(ulpt|aleConstraint|ript)|t(yleCurve|itch(Srf|AsNurbsShell)|u(cco|dioClearCoat)|encil|roke(Globals)?)|i(ngleShadingSwitch|mpleVolumeShader)|o(ftMod(Manip|Handle)?|lidFractal)|u(rface(Sha(der|pe)|Info|EdManip|VarGroup|Luminance)|b(Surface|d(M(odifier(UV|World)?|ap(SewMove|Cut|pingManip))|B(lindData|ase)|iv(ReverseFaces|SurfaceVarGroup|Co(llapse|mponentId)|To(Nurbs|Poly))?|HierBlind|CleanTopology|Tweak(UV)?|P(lanarProj|rojManip)|LayoutUV|A(ddTopology|utoProj))|Curve))|p(BirailSrf|otLight|ring)|e(tRange|lectionListOperator)|k(inCluster|etchPlane)|quareSrf|ampler(Info)?|m(ooth(Curve|TangentSrf)|ear))|h(svToRgb|yper(GraphInfo|View|Layout)|ik(Solver|Handle|Effector)|oldMatrix|eightField|w(Re(nderGlobals|flectionMap)|Shader)|a(ir(System|Constraint|TubeShader)|rd(enPoint|wareRenderGlobals)))|n(o(n(ExtendedLightShapeNode|Linear|AmbientLightShapeNode)|ise|rmalConstraint)|urbs(Surface|Curve|T(oSubdiv(Proc)?|essellate)|DimShape)|e(twork|wtonField))|c(h(o(ice|oser)|ecker|aracter(Map|Offset)?)|o(n(straint|tr(olPoint|ast)|dition)|py(ColorSet|UVSet))|urve(Range|Shape|Normalizer(Linear|Angle)?|In(tersect|fo)|VarGroup|From(Mesh(CoM|Edge)?|Su(rface(Bnd|CoS|Iso)?|bdiv(Edge|Face)?)))|l(ip(Scheduler|Library)|o(se(stPointOnSurface|Surface|Curve)|th|ud)|uster(Handle)?|amp)|amera(View)?|r(eate(BPManip|ColorSet|UVSet)|ater))|t(ime(ToUnitConversion|Function)?|oo(nLineAttributes|lDrawManip)|urbulenceField|ex(BaseDeformManip|ture(BakeSet|2d|ToGeom|3d|Env)|SmudgeUVManip|LatticeDeformManip)|weak|angentConstraint|r(i(pleShadingSwitch|m(WithBoundaries)?)|ansform(Geometry)?))|i(n(s(tancer|ertKnot(Surface|Curve))|tersectSurface)|k(RPsolver|MCsolver|S(ystem|olver|Csolver|plineSolver)|Handle|PASolver|Effector)|m(plicit(Box|Sphere|Cone)|agePlane))|o(cean(Shader)?|pticalFX|ffset(Surface|C(os|urve))|ldBlindDataBase|rient(Constraint|ationMarker)|bject(RenderFilter|MultiFilter|BinFilter|S(criptFilter|et)|NameFilter|TypeFilter|Filter|AttrFilter))|d(yn(Globals|Base)|i(s(tance(Between|DimShape)|pla(yLayer(Manager)?|cementShader)|kCache)|rect(ionalLight|edDisc)|mensionShape)|o(ubleShadingSwitch|f)|pBirailSrf|e(tach(Surface|Curve)|pendNode|f(orm(Bend|S(ine|quash)|Twist|ableShape|F(unc|lare)|Wave)|ault(RenderUtilityList|ShaderList|TextureList|LightList))|lete(Co(lorSet|mponent)|UVSet))|ag(Node|Pose)|r(opoffLocator|agField))|u(seBackground|n(trim|i(t(Conversion|ToTimeConversion)|formField)|known(Transform|Dag)?)|vChooser)|j(iggle|oint(Cluster|Ffd|Lattice)?)|p(sdFileTex|hong(E)?|o(s(tProcessList|itionMarker)|int(MatrixMult|Constraint|On(SurfaceInfo|CurveInfo)|Emitter|Light)|l(y(Reduce|M(irror|o(difier(UV|World)?|ve(UV|Edge|Vertex|Face(tUV)?))|erge(UV|Edge|Vert|Face)|ap(Sew(Move)?|Cut|Del))|B(oolOp|evel|lindData|ase)|S(traightenUVBorder|oftEdge|ubd(Edge|Face)|p(h(ere|Proj)|lit(Ring|Edge|Vert)?)|e(parate|wEdge)|mooth(Proxy|Face)?)|Normal(izeUV|PerVertex)?|C(hipOff|yl(inder|Proj)|o(ne|pyUV|l(orPerVertex|lapse(Edge|F)))|u(t(Manip(Container)?)?|be)|loseBorder|rea(seEdge|t(or|eFace)))|T(o(Subdiv|rus)|weak(UV)?|r(iangulate|ansfer))|OptUvs|D(uplicateEdge|el(Edge|Vertex|Facet))|Unite|P(yramid|oke(Manip)?|lan(e|arProj)|r(i(sm|mitive)|oj))|Extrude(Edge|Vertex|Face)|VertexNormalManip|Quad|Flip(UV|Edge)|WedgeFace|LayoutUV|A(utoProj|ppend(Vertex)?|verageVertex))|eVectorConstraint))|fx(Geometry|Hair|Toon)|l(usMinusAverage|a(n(e|arTrimSurface)|ce(2dTexture|3dTexture)))|a(ssMatrix|irBlend|r(ti(cle(SamplerInfo|C(olorMapper|loud)|TranspMapper|IncandMapper|AgeMapper)?|tion)|ent(Constraint|Tessellate)|amDimension))|r(imitive|o(ject(ion|Curve|Tangent)|xyManager)))|e(n(tity|v(Ball|ironmentFog|S(phere|ky)|C(hrome|ube)|Fog))|x(t(end(Surface|Curve)|rude)|p(lodeNurbsShell|ression)))|v(iewManip|o(lume(Shader|Noise|Fog|Light|AxisField)|rtexField)|e(ctor(RenderGlobals|Product)|rtexBakeSet))|quadShadingSwitch|f(i(tBspline|eld|l(ter(Resample|Simplify|ClosestSample|Euler)?|e|letCurve))|o(urByFourMatrix|llicle)|urPointOn(MeshInfo|Subd)|f(BlendSrf(Obsolete)?|d|FilletSrf)|l(ow|uid(S(hape|liceManip)|Texture(2D|3D)|Emitter)|exorShape)|ra(ctal|meCache))|w(tAddMatrix|ire|ood|eightGeometryFilter|ater|rap)|l(ight(Info|Fog|Li(st|nker))?|o(cator|okAt|d(Group|Thresholds)|ft)|uminance|ea(stSquaresModifier|ther)|a(yered(Shader|Texture)|ttice|mbert))|a(n(notationShape|i(sotropic|m(Blend(InOut)?|C(urve(T(T|U|L|A)|U(T|U|L|A))?|lip)))|gleBetween)|tt(ach(Surface|Curve)|rHierarchyTest)|i(rField|mConstraint)|dd(Matrix|DoubleLinear)|udio|vg(SurfacePoints|NurbsSurfacePoints|Curves)|lign(Manip|Surface|Curve)|r(cLengthDimension|tAttrPaintTest|eaLight|rayMapper)|mbientLight|bstractBase(NurbsConversion|Create))|r(igid(Body|Solver|Constraint)|o(ck|undConstantRadius)|e(s(olution|ultCurve(TimeTo(Time|Unitless|Linear|Angular))?)|nder(Rect|Globals(List)?|Box|Sphere|Cone|Quality|L(ight|ayer(Manager)?))|cord|v(olve(dPrimitive)?|erse(Surface|Curve)?)|f(erence|lect)|map(Hsv|Color|Value)|build(Surface|Curve))|a(dialField|mp(Shader)?)|gbToHsv|bfSrf)|g(uide|eo(Connect(or|able)|metry(Shape|Constraint|VarGroup|Filter))|lobal(Stitch|CacheControl)|ammaCorrect|r(id|oup(Id|Parts)|a(nite|vityField)))|Fur(Globals|Description|Feedback|Attractors)|xformManip|m(o(tionPath|untain|vie)|u(te|lt(Matrix|i(plyDivide|listerLight)|DoubleLinear))|pBirailSrf|e(sh(VarGroup)?|ntalray(Texture|IblShape))|a(terialInfo|ke(Group|Nurb(sSquare|Sphere|C(ylinder|ircle|one|ube)|Torus|Plane)|CircularArc|T(hreePointCircularArc|extCurves|woPointCircularArc))|rble))|b(irailSrf|o(neLattice|olean|undary(Base)?)|u(lge|mp(2d|3d))|evel(Plus)?|l(in(n|dDataTemplate)|end(Shape|Color(s|Sets)|TwoAttr|Device|Weighted)?)|a(se(GeometryVarGroup|ShadingSwitch|Lattice)|keSet)|r(ownian|ush)))\\\\b' },\n { caseInsensitive: true,\n token: 'keyword.control.mel',\n regex: '\\\\b(if|in|else|for|while|break|continue|case|default|do|switch|return|switch|case|source|catch|alias)\\\\b' },\n { token: 'keyword.other.mel', regex: '\\\\b(global)\\\\b' },\n { caseInsensitive: true,\n token: 'constant.language.mel',\n regex: '\\\\b(null|undefined)\\\\b' },\n { token: 'constant.numeric.mel',\n regex: '\\\\b((0(x|X)[0-9a-fA-F]*)|(([0-9]+\\\\.?[0-9]*)|(\\\\.[0-9]+))((e|E)(\\\\+|-)?[0-9]+)?)(L|l|UL|ul|u|U|F|f)?\\\\b' },\n { token: 'punctuation.definition.string.begin.mel',\n regex: '\"',\n push: \n [ { token: 'constant.character.escape.mel', regex: '\\\\\\\\.' },\n { token: 'punctuation.definition.string.end.mel',\n regex: '\"',\n next: 'pop' },\n { defaultToken: 'string.quoted.double.mel' } ] },\n \n { token: [ 'variable.other.mel', 'punctuation.definition.variable.mel' ],\n regex: '(\\\\$)([a-zA-Z_\\\\x7f-\\\\xff][a-zA-Z0-9_\\\\x7f-\\\\xff]*?\\\\b)' },\n \n { token: 'punctuation.definition.string.begin.mel',\n regex: '\\'',\n push: \n [ { token: 'constant.character.escape.mel', regex: '\\\\\\\\.' },\n { token: 'punctuation.definition.string.end.mel',\n regex: '\\'',\n next: 'pop' },\n { defaultToken: 'string.quoted.single.mel' } ] },\n \n { token: 'constant.language.mel',\n regex: '\\\\b(false|true|yes|no|on|off)\\\\b' },\n \n { token: 'punctuation.definition.comment.mel',\n regex: '/\\\\*',\n push: \n [ { token: 'punctuation.definition.comment.mel',\n regex: '\\\\*/',\n next: 'pop' },\n { defaultToken: 'comment.block.mel' } ] },\n \n { token: [ 'comment.line.double-slash.mel', 'punctuation.definition.comment.mel' ],\n regex: '(//)(.*$\\\\n?)' },\n \n { caseInsensitive: true,\n token: 'keyword.operator.mel',\n regex: '\\\\b(instanceof)\\\\b' },\n { token: 'keyword.operator.symbolic.mel',\n regex: '[-\\\\!\\\\%\\\\&\\\\*\\\\+\\\\=\\\\/\\\\?\\\\:]' },\n \n { token: [ 'meta.preprocessor.mel', 'punctuation.definition.preprocessor.mel' ],\n regex: '(^[ \\\\t]*)((?:#)[a-zA-Z]+)' },\n \n { token: [ 'meta.function.mel', 'keyword.other.mel', 'storage.type.mel', 'entity.name.function.mel', 'punctuation.section.function.mel' ],\n regex: '(global\\\\s*)?(proc\\\\s*)(\\\\w+\\\\s*\\\\[?\\\\]?\\\\s+|\\\\s+)([A-Za-z_][A-Za-z0-9_\\\\.]*)(\\\\s*\\\\()',\n push: \n [ { include: '$self' },\n { token: 'punctuation.section.function.mel',\n regex: '\\\\)',\n next: 'pop' },\n { defaultToken: 'meta.function.mel' } ] }\n \n ] };\n \n this.normalizeRules();\n};\n\noop.inherits(MELHighlightRules, TextHighlightRules);\n\nexports.MELHighlightRules = MELHighlightRules;\n});\n\nace.define(\"ace/mode/folding/cstyle\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/range\",\"ace/mode/folding/fold_mode\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Range = require(\"../../range\").Range;\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function(commentRegex) {\n if (commentRegex) {\n this.foldingStartMarker = new RegExp(\n this.foldingStartMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.start)\n );\n this.foldingStopMarker = new RegExp(\n this.foldingStopMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.end)\n );\n }\n};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n \n this.foldingStartMarker = /([\\{\\[\\(])[^\\}\\]\\)]*$|^\\s*(\\/\\*)/;\n this.foldingStopMarker = /^[^\\[\\{\\(]*([\\}\\]\\)])|^[\\s\\*]*(\\*\\/)/;\n this.singleLineBlockCommentRe= /^\\s*(\\/\\*).*\\*\\/\\s*$/;\n this.tripleStarBlockCommentRe = /^\\s*(\\/\\*\\*\\*).*\\*\\/\\s*$/;\n this.startRegionRe = /^\\s*(\\/\\*|\\/\\/)#?region\\b/;\n this._getFoldWidgetBase = this.getFoldWidget;\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n \n if (this.singleLineBlockCommentRe.test(line)) {\n if (!this.startRegionRe.test(line) && !this.tripleStarBlockCommentRe.test(line))\n return \"\";\n }\n \n var fw = this._getFoldWidgetBase(session, foldStyle, row);\n \n if (!fw && this.startRegionRe.test(line))\n return \"start\"; // lineCommentRegionStart\n \n return fw;\n };\n\n this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {\n var line = session.getLine(row);\n \n if (this.startRegionRe.test(line))\n return this.getCommentRegionBlock(session, line, row);\n \n var match = line.match(this.foldingStartMarker);\n if (match) {\n var i = match.index;\n\n if (match[1])\n return this.openingBracketBlock(session, match[1], row, i);\n \n var range = session.getCommentFoldRange(row, i + match[0].length, 1);\n \n if (range && !range.isMultiLine()) {\n if (forceMultiline) {\n range = this.getSectionRange(session, row);\n } else if (foldStyle != \"all\")\n range = null;\n }\n \n return range;\n }\n\n if (foldStyle === \"markbegin\")\n return;\n\n var match = line.match(this.foldingStopMarker);\n if (match) {\n var i = match.index + match[0].length;\n\n if (match[1])\n return this.closingBracketBlock(session, match[1], row, i);\n\n return session.getCommentFoldRange(row, i, -1);\n }\n };\n \n this.getSectionRange = function(session, row) {\n var line = session.getLine(row);\n var startIndent = line.search(/\\S/);\n var startRow = row;\n var startColumn = line.length;\n row = row + 1;\n var endRow = row;\n var maxRow = session.getLength();\n while (++row < maxRow) {\n line = session.getLine(row);\n var indent = line.search(/\\S/);\n if (indent === -1)\n continue;\n if (startIndent > indent)\n break;\n var subRange = this.getFoldWidgetRange(session, \"all\", row);\n \n if (subRange) {\n if (subRange.start.row <= startRow) {\n break;\n } else if (subRange.isMultiLine()) {\n row = subRange.end.row;\n } else if (startIndent == indent) {\n break;\n }\n }\n endRow = row;\n }\n \n return new Range(startRow, startColumn, endRow, session.getLine(endRow).length);\n };\n this.getCommentRegionBlock = function(session, line, row) {\n var startColumn = line.search(/\\s*$/);\n var maxRow = session.getLength();\n var startRow = row;\n \n var re = /^\\s*(?:\\/\\*|\\/\\/|--)#?(end)?region\\b/;\n var depth = 1;\n while (++row < maxRow) {\n line = session.getLine(row);\n var m = re.exec(line);\n if (!m) continue;\n if (m[1]) depth--;\n else depth++;\n\n if (!depth) break;\n }\n\n var endRow = row;\n if (endRow > startRow) {\n return new Range(startRow, startColumn, endRow, line.length);\n }\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/mel\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/mel_highlight_rules\",\"ace/mode/behaviour/cstyle\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar MELHighlightRules = require(\"./mel_highlight_rules\").MELHighlightRules;\nvar CstyleBehaviour = require(\"./behaviour/cstyle\").CstyleBehaviour;\nvar CStyleFoldMode = require(\"./folding/cstyle\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = MELHighlightRules;\n this.$behaviour = new CstyleBehaviour();\n this.foldingRules = new CStyleFoldMode();\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.lineCommentStart = \"//\";\n this.blockComment = {start: \"/*\", end: \"*/\"};\n this.$id = \"ace/mode/mel\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n\n}); (function() {\n ace.require([\"ace/mode/mel\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file2i := &embedded.EmbeddedFile{ Filename: "38dffd524853685a5860844222aac0ea.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/csound_preprocessor_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\n\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar CsoundPreprocessorHighlightRules = function() {\n\n this.semicolonComments = {\n token : \"comment.line.semicolon.csound\",\n regex : \";.*$\"\n };\n\n this.comments = [\n {\n token : \"punctuation.definition.comment.begin.csound\",\n regex : \"/\\\\*\",\n push : [\n {\n token : \"punctuation.definition.comment.end.csound\",\n regex : \"\\\\*/\",\n next : \"pop\"\n }, {\n defaultToken: \"comment.block.csound\"\n }\n ]\n }, {\n token : \"comment.line.double-slash.csound\",\n regex : \"//.*$\"\n },\n this.semicolonComments\n ];\n\n this.macroUses = [\n {\n token : [\"entity.name.function.preprocessor.csound\", \"punctuation.definition.macro-parameter-value-list.begin.csound\"],\n regex : /(\\$[A-Z_a-z]\\w*\\.?)(\\()/,\n next : \"macro parameter value list\"\n }, {\n token : \"entity.name.function.preprocessor.csound\",\n regex : /\\$[A-Z_a-z]\\w*(?:\\.|\\b)/\n }\n ];\n\n this.numbers = [\n {\n token : \"constant.numeric.float.csound\",\n regex : /(?:\\d+[Ee][+-]?\\d+)|(?:\\d+\\.\\d*|\\d*\\.\\d+)(?:[Ee][+-]?\\d+)?/\n }, {\n token : [\"storage.type.number.csound\", \"constant.numeric.integer.hexadecimal.csound\"],\n regex : /(0[Xx])([0-9A-Fa-f]+)/\n }, {\n token : \"constant.numeric.integer.decimal.csound\",\n regex : /\\d+/\n }\n ];\n\n this.bracedStringContents = [\n {\n token : \"constant.character.escape.csound\",\n regex : /\\\\(?:[\\\\abnrt\"]|[0-7]{1,3})/\n },\n {\n token : \"constant.character.placeholder.csound\",\n regex : /%[#0\\- +]*\\d*(?:\\.\\d+)?[diuoxXfFeEgGaAcs]/\n }, {\n token : \"constant.character.escape.csound\",\n regex : /%%/\n }\n ];\n\n this.quotedStringContents = [\n this.macroUses,\n this.bracedStringContents\n ];\n\n var start = [\n this.comments,\n\n {\n token : \"keyword.preprocessor.csound\",\n regex : /#(?:e(?:nd(?:if)?|lse)\\b|##)|@@?[ \\t]*\\d+/\n }, {\n token : \"keyword.preprocessor.csound\",\n regex : /#include/,\n push : [\n this.comments,\n {\n token : \"string.csound\",\n regex : /([^ \\t])(?:.*?\\1)/,\n next : \"pop\"\n }\n ]\n }, {\n token : \"keyword.preprocessor.csound\",\n regex : /#[ \\t]*define/,\n next : \"define directive\"\n }, {\n token : \"keyword.preprocessor.csound\",\n regex : /#(?:ifn?def|undef)\\b/,\n next : \"macro directive\"\n },\n\n this.macroUses\n ];\n\n this.$rules = {\n \"start\": start,\n\n \"define directive\": [\n this.comments,\n {\n token : \"entity.name.function.preprocessor.csound\",\n regex : /[A-Z_a-z]\\w*/\n }, {\n token : \"punctuation.definition.macro-parameter-name-list.begin.csound\",\n regex : /\\(/,\n next : \"macro parameter name list\"\n }, {\n token : \"punctuation.definition.macro.begin.csound\",\n regex : /#/,\n next : \"macro body\"\n }\n ],\n \"macro parameter name list\": [\n {\n token : \"variable.parameter.preprocessor.csound\",\n regex : /[A-Z_a-z]\\w*/\n }, {\n token : \"punctuation.definition.macro-parameter-name-list.end.csound\",\n regex : /\\)/,\n next : \"define directive\"\n }\n ],\n \"macro body\": [\n {\n token : \"constant.character.escape.csound\",\n regex : /\\\\#/\n }, {\n token : \"punctuation.definition.macro.end.csound\",\n regex : /#/,\n next : \"start\"\n },\n start\n ],\n\n \"macro directive\": [\n this.comments,\n {\n token : \"entity.name.function.preprocessor.csound\",\n regex : /[A-Z_a-z]\\w*/,\n next : \"start\"\n }\n ],\n\n \"macro parameter value list\": [\n {\n token : \"punctuation.definition.macro-parameter-value-list.end.csound\",\n regex : /\\)/,\n next : \"start\"\n }, {\n token : \"punctuation.definition.string.begin.csound\",\n regex : /\"/,\n next : \"macro parameter value quoted string\"\n }, this.pushRule({\n token : \"punctuation.macro-parameter-value-parenthetical.begin.csound\",\n regex : /\\(/,\n next : \"macro parameter value parenthetical\"\n }), {\n token : \"punctuation.macro-parameter-value-separator.csound\",\n regex : \"[#']\"\n }\n ],\n \"macro parameter value quoted string\": [\n {\n token : \"constant.character.escape.csound\",\n regex : /\\\\[#'()]/\n }, {\n token : \"invalid.illegal.csound\",\n regex : /[#'()]/\n }, {\n token : \"punctuation.definition.string.end.csound\",\n regex : /\"/,\n next : \"macro parameter value list\"\n },\n this.quotedStringContents,\n {\n defaultToken: \"string.quoted.csound\"\n }\n ],\n \"macro parameter value parenthetical\": [\n {\n token : \"constant.character.escape.csound\",\n regex : /\\\\\\)/\n }, this.popRule({\n token : \"punctuation.macro-parameter-value-parenthetical.end.csound\",\n regex : /\\)/\n }), this.pushRule({\n token : \"punctuation.macro-parameter-value-parenthetical.begin.csound\",\n regex : /\\(/,\n next : \"macro parameter value parenthetical\"\n }),\n start\n ]\n };\n};\n\noop.inherits(CsoundPreprocessorHighlightRules, TextHighlightRules);\n\n(function() {\n\n this.pushRule = function(params) {\n return {\n regex : params.regex, onMatch: function(value, currentState, stack, line) {\n if (stack.length === 0)\n stack.push(currentState);\n if (Array.isArray(params.next)) {\n for (var i = 0; i < params.next.length; i++) {\n stack.push(params.next[i]);\n }\n } else {\n stack.push(params.next);\n }\n this.next = stack[stack.length - 1];\n return params.token;\n },\n get next() { return Array.isArray(params.next) ? params.next[params.next.length - 1] : params.next; },\n set next(next) {\n if (Array.isArray(params.next)) {\n var oldNext = params.next[params.next.length - 1];\n var oldNextIndex = oldNext.length - 1;\n var newNextIndex = next.length - 1;\n if (newNextIndex > oldNextIndex) {\n while (oldNextIndex >= 0 && newNextIndex >= 0) {\n if (oldNext.charAt(oldNextIndex) !== next.charAt(newNextIndex)) {\n var prefix = next.substr(0, newNextIndex);\n for (var i = 0; i < params.next.length; i++) {\n params.next[i] = prefix + params.next[i];\n }\n break;\n }\n oldNextIndex--;\n newNextIndex--;\n }\n }\n } else {\n params.next = next;\n }\n },\n get token() { return params.token; }\n };\n };\n\n this.popRule = function(params) {\n return {\n regex : params.regex, onMatch: function(value, currentState, stack, line) {\n stack.pop();\n if (params.next) {\n stack.push(params.next);\n this.next = stack[stack.length - 1];\n } else {\n this.next = stack.length > 1 ? stack[stack.length - 1] : stack.pop();\n }\n return params.token;\n }\n };\n };\n\n}).call(CsoundPreprocessorHighlightRules.prototype);\n\nexports.CsoundPreprocessorHighlightRules = CsoundPreprocessorHighlightRules;\n});\n\nace.define(\"ace/mode/csound_score_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/csound_preprocessor_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\n\nvar CsoundPreprocessorHighlightRules = require(\"./csound_preprocessor_highlight_rules\").CsoundPreprocessorHighlightRules;\n\nvar CsoundScoreHighlightRules = function() {\n\n CsoundPreprocessorHighlightRules.call(this);\n\n this.quotedStringContents.push({\n token : \"invalid.illegal.csound-score\",\n regex : /[^\"]*$/\n });\n\n var start = this.$rules.start;\n start.push(\n {\n token : \"keyword.control.csound-score\",\n regex : /[abCdefiqstvxy]/\n }, {\n token : \"invalid.illegal.csound-score\",\n regex : /w/\n }, {\n token : \"constant.numeric.language.csound-score\",\n regex : /z/\n }, {\n token : [\"keyword.control.csound-score\", \"constant.numeric.integer.decimal.csound-score\"],\n regex : /([nNpP][pP])(\\d+)/\n }, {\n token : \"keyword.other.csound-score\",\n regex : /[mn]/,\n push : [\n {\n token : \"empty\",\n regex : /$/,\n next : \"pop\"\n },\n this.comments,\n {\n token : \"entity.name.label.csound-score\",\n regex : /[A-Z_a-z]\\w*/\n }\n ]\n }, {\n token : \"keyword.preprocessor.csound-score\",\n regex : /r\\b/,\n next : \"repeat section\"\n },\n\n this.numbers,\n\n {\n token : \"keyword.operator.csound-score\",\n regex : \"[!+\\\\-*/^%&|<>#~.]\"\n },\n\n this.pushRule({\n token : \"punctuation.definition.string.begin.csound-score\",\n regex : /\"/,\n next : \"quoted string\"\n }),\n\n this.pushRule({\n token : \"punctuation.braced-loop.begin.csound-score\",\n regex : /{/,\n next : \"loop after left brace\"\n })\n );\n\n this.addRules({\n \"repeat section\": [\n {\n token : \"empty\",\n regex : /$/,\n next : \"start\"\n },\n this.comments,\n {\n token : \"constant.numeric.integer.decimal.csound-score\",\n regex : /\\d+/,\n next : \"repeat section before label\"\n }\n ],\n \"repeat section before label\": [\n {\n token : \"empty\",\n regex : /$/,\n next : \"start\"\n },\n this.comments,\n {\n token : \"entity.name.label.csound-score\",\n regex : /[A-Z_a-z]\\w*/,\n next : \"start\"\n }\n ],\n\n \"quoted string\": [\n this.popRule({\n token : \"punctuation.definition.string.end.csound-score\",\n regex : /\"/\n }),\n this.quotedStringContents,\n {\n defaultToken: \"string.quoted.csound-score\"\n }\n ],\n\n \"loop after left brace\": [\n this.popRule({\n token : \"constant.numeric.integer.decimal.csound-score\",\n regex : /\\d+/,\n next : \"loop after repeat count\"\n }),\n this.comments,\n {\n token : \"invalid.illegal.csound\",\n regex : /\\S.*/\n }\n ],\n \"loop after repeat count\": [\n this.popRule({\n token : \"entity.name.function.preprocessor.csound-score\",\n regex : /[A-Z_a-z]\\w*\\b/,\n next : \"loop after macro name\"\n }),\n this.comments,\n {\n token : \"invalid.illegal.csound\",\n regex : /\\S.*/\n }\n ],\n \"loop after macro name\": [\n start,\n this.popRule({\n token : \"punctuation.braced-loop.end.csound-score\",\n regex : /}/\n })\n ]\n });\n\n this.normalizeRules();\n};\n\noop.inherits(CsoundScoreHighlightRules, CsoundPreprocessorHighlightRules);\n\nexports.CsoundScoreHighlightRules = CsoundScoreHighlightRules;\n});\n\nace.define(\"ace/mode/lua_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar LuaHighlightRules = function() {\n\n var keywords = (\n \"break|do|else|elseif|end|for|function|if|in|local|repeat|\"+\n \"return|then|until|while|or|and|not\"\n );\n\n var builtinConstants = (\"true|false|nil|_G|_VERSION\");\n\n var functions = (\n \"string|xpcall|package|tostring|print|os|unpack|require|\"+\n \"getfenv|setmetatable|next|assert|tonumber|io|rawequal|\"+\n \"collectgarbage|getmetatable|module|rawset|math|debug|\"+\n \"pcall|table|newproxy|type|coroutine|_G|select|gcinfo|\"+\n \"pairs|rawget|loadstring|ipairs|_VERSION|dofile|setfenv|\"+\n \"load|error|loadfile|\"+\n\n \"sub|upper|len|gfind|rep|find|match|char|dump|gmatch|\"+\n \"reverse|byte|format|gsub|lower|preload|loadlib|loaded|\"+\n \"loaders|cpath|config|path|seeall|exit|setlocale|date|\"+\n \"getenv|difftime|remove|time|clock|tmpname|rename|execute|\"+\n \"lines|write|close|flush|open|output|type|read|stderr|\"+\n \"stdin|input|stdout|popen|tmpfile|log|max|acos|huge|\"+\n \"ldexp|pi|cos|tanh|pow|deg|tan|cosh|sinh|random|randomseed|\"+\n \"frexp|ceil|floor|rad|abs|sqrt|modf|asin|min|mod|fmod|log10|\"+\n \"atan2|exp|sin|atan|getupvalue|debug|sethook|getmetatable|\"+\n \"gethook|setmetatable|setlocal|traceback|setfenv|getinfo|\"+\n \"setupvalue|getlocal|getregistry|getfenv|setn|insert|getn|\"+\n \"foreachi|maxn|foreach|concat|sort|remove|resume|yield|\"+\n \"status|wrap|create|running|\"+\n \"__add|__sub|__mod|__unm|__concat|__lt|__index|__call|__gc|__metatable|\"+\n \"__mul|__div|__pow|__len|__eq|__le|__newindex|__tostring|__mode|__tonumber\"\n );\n\n var stdLibaries = (\"string|package|os|io|math|debug|table|coroutine\");\n\n var deprecatedIn5152 = (\"setn|foreach|foreachi|gcinfo|log10|maxn\");\n\n var keywordMapper = this.createKeywordMapper({\n \"keyword\": keywords,\n \"support.function\": functions,\n \"keyword.deprecated\": deprecatedIn5152,\n \"constant.library\": stdLibaries,\n \"constant.language\": builtinConstants,\n \"variable.language\": \"self\"\n }, \"identifier\");\n\n var decimalInteger = \"(?:(?:[1-9]\\\\d*)|(?:0))\";\n var hexInteger = \"(?:0[xX][\\\\dA-Fa-f]+)\";\n var integer = \"(?:\" + decimalInteger + \"|\" + hexInteger + \")\";\n\n var fraction = \"(?:\\\\.\\\\d+)\";\n var intPart = \"(?:\\\\d+)\";\n var pointFloat = \"(?:(?:\" + intPart + \"?\" + fraction + \")|(?:\" + intPart + \"\\\\.))\";\n var floatNumber = \"(?:\" + pointFloat + \")\";\n\n this.$rules = {\n \"start\" : [{\n stateName: \"bracketedComment\",\n onMatch : function(value, currentState, stack){\n stack.unshift(this.next, value.length - 2, currentState);\n return \"comment\";\n },\n regex : /\\-\\-\\[=*\\[/,\n next : [\n {\n onMatch : function(value, currentState, stack) {\n if (value.length == stack[1]) {\n stack.shift();\n stack.shift();\n this.next = stack.shift();\n } else {\n this.next = \"\";\n }\n return \"comment\";\n },\n regex : /\\]=*\\]/,\n next : \"start\"\n }, {\n defaultToken : \"comment\"\n }\n ]\n },\n\n {\n token : \"comment\",\n regex : \"\\\\-\\\\-.*$\"\n },\n {\n stateName: \"bracketedString\",\n onMatch : function(value, currentState, stack){\n stack.unshift(this.next, value.length, currentState);\n return \"string.start\";\n },\n regex : /\\[=*\\[/,\n next : [\n {\n onMatch : function(value, currentState, stack) {\n if (value.length == stack[1]) {\n stack.shift();\n stack.shift();\n this.next = stack.shift();\n } else {\n this.next = \"\";\n }\n return \"string.end\";\n },\n \n regex : /\\]=*\\]/,\n next : \"start\"\n }, {\n defaultToken : \"string\"\n }\n ]\n },\n {\n token : \"string\", // \" string\n regex : '\"(?:[^\\\\\\\\]|\\\\\\\\.)*?\"'\n }, {\n token : \"string\", // ' string\n regex : \"'(?:[^\\\\\\\\]|\\\\\\\\.)*?'\"\n }, {\n token : \"constant.numeric\", // float\n regex : floatNumber\n }, {\n token : \"constant.numeric\", // integer\n regex : integer + \"\\\\b\"\n }, {\n token : keywordMapper,\n regex : \"[a-zA-Z_$][a-zA-Z0-9_$]*\\\\b\"\n }, {\n token : \"keyword.operator\",\n regex : \"\\\\+|\\\\-|\\\\*|\\\\/|%|\\\\#|\\\\^|~|<|>|<=|=>|==|~=|=|\\\\:|\\\\.\\\\.\\\\.|\\\\.\\\\.\"\n }, {\n token : \"paren.lparen\",\n regex : \"[\\\\[\\\\(\\\\{]\"\n }, {\n token : \"paren.rparen\",\n regex : \"[\\\\]\\\\)\\\\}]\"\n }, {\n token : \"text\",\n regex : \"\\\\s+|\\\\w+\"\n } ]\n };\n \n this.normalizeRules();\n};\n\noop.inherits(LuaHighlightRules, TextHighlightRules);\n\nexports.LuaHighlightRules = LuaHighlightRules;\n});\n\nace.define(\"ace/mode/python_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar PythonHighlightRules = function() {\n\n var keywords = (\n \"and|as|assert|break|class|continue|def|del|elif|else|except|exec|\" +\n \"finally|for|from|global|if|import|in|is|lambda|not|or|pass|print|\" +\n \"raise|return|try|while|with|yield|async|await|nonlocal\"\n );\n\n var builtinConstants = (\n \"True|False|None|NotImplemented|Ellipsis|__debug__\"\n );\n\n var builtinFunctions = (\n \"abs|divmod|input|open|staticmethod|all|enumerate|int|ord|str|any|\" +\n \"eval|isinstance|pow|sum|basestring|execfile|issubclass|print|super|\" +\n \"binfile|bin|iter|property|tuple|bool|filter|len|range|type|bytearray|\" +\n \"float|list|raw_input|unichr|callable|format|locals|reduce|unicode|\" +\n \"chr|frozenset|long|reload|vars|classmethod|getattr|map|repr|xrange|\" +\n \"cmp|globals|max|reversed|zip|compile|hasattr|memoryview|round|\" +\n \"__import__|complex|hash|min|apply|delattr|help|next|setattr|set|\" +\n \"buffer|dict|hex|object|slice|coerce|dir|id|oct|sorted|intern|\" +\n \"ascii|breakpoint|bytes\"\n );\n var keywordMapper = this.createKeywordMapper({\n \"invalid.deprecated\": \"debugger\",\n \"support.function\": builtinFunctions,\n \"variable.language\": \"self|cls\",\n \"constant.language\": builtinConstants,\n \"keyword\": keywords\n }, \"identifier\");\n\n var strPre = \"[uU]?\";\n var strRawPre = \"[rR]\";\n var strFormatPre = \"[fF]\";\n var strRawFormatPre = \"(?:[rR][fF]|[fF][rR])\";\n var decimalInteger = \"(?:(?:[1-9]\\\\d*)|(?:0))\";\n var octInteger = \"(?:0[oO]?[0-7]+)\";\n var hexInteger = \"(?:0[xX][\\\\dA-Fa-f]+)\";\n var binInteger = \"(?:0[bB][01]+)\";\n var integer = \"(?:\" + decimalInteger + \"|\" + octInteger + \"|\" + hexInteger + \"|\" + binInteger + \")\";\n\n var exponent = \"(?:[eE][+-]?\\\\d+)\";\n var fraction = \"(?:\\\\.\\\\d+)\";\n var intPart = \"(?:\\\\d+)\";\n var pointFloat = \"(?:(?:\" + intPart + \"?\" + fraction + \")|(?:\" + intPart + \"\\\\.))\";\n var exponentFloat = \"(?:(?:\" + pointFloat + \"|\" + intPart + \")\" + exponent + \")\";\n var floatNumber = \"(?:\" + exponentFloat + \"|\" + pointFloat + \")\";\n\n var stringEscape = \"\\\\\\\\(x[0-9A-Fa-f]{2}|[0-7]{3}|[\\\\\\\\abfnrtv'\\\"]|U[0-9A-Fa-f]{8}|u[0-9A-Fa-f]{4})\";\n\n this.$rules = {\n \"start\" : [ {\n token : \"comment\",\n regex : \"#.*$\"\n }, {\n token : \"string\", // multi line \"\"\" string start\n regex : strPre + '\"{3}',\n next : \"qqstring3\"\n }, {\n token : \"string\", // \" string\n regex : strPre + '\"(?=.)',\n next : \"qqstring\"\n }, {\n token : \"string\", // multi line ''' string start\n regex : strPre + \"'{3}\",\n next : \"qstring3\"\n }, {\n token : \"string\", // ' string\n regex : strPre + \"'(?=.)\",\n next : \"qstring\"\n }, {\n token: \"string\",\n regex: strRawPre + '\"{3}',\n next: \"rawqqstring3\"\n }, {\n token: \"string\", \n regex: strRawPre + '\"(?=.)',\n next: \"rawqqstring\"\n }, {\n token: \"string\",\n regex: strRawPre + \"'{3}\",\n next: \"rawqstring3\"\n }, {\n token: \"string\",\n regex: strRawPre + \"'(?=.)\",\n next: \"rawqstring\"\n }, {\n token: \"string\",\n regex: strFormatPre + '\"{3}',\n next: \"fqqstring3\"\n }, {\n token: \"string\",\n regex: strFormatPre + '\"(?=.)',\n next: \"fqqstring\"\n }, {\n token: \"string\",\n regex: strFormatPre + \"'{3}\",\n next: \"fqstring3\"\n }, {\n token: \"string\",\n regex: strFormatPre + \"'(?=.)\",\n next: \"fqstring\"\n },{\n token: \"string\",\n regex: strRawFormatPre + '\"{3}',\n next: \"rfqqstring3\"\n }, {\n token: \"string\",\n regex: strRawFormatPre + '\"(?=.)',\n next: \"rfqqstring\"\n }, {\n token: \"string\",\n regex: strRawFormatPre + \"'{3}\",\n next: \"rfqstring3\"\n }, {\n token: \"string\",\n regex: strRawFormatPre + \"'(?=.)\",\n next: \"rfqstring\"\n }, {\n token: \"keyword.operator\",\n regex: \"\\\\+|\\\\-|\\\\*|\\\\*\\\\*|\\\\/|\\\\/\\\\/|%|@|<<|>>|&|\\\\||\\\\^|~|<|>|<=|=>|==|!=|<>|=\"\n }, {\n token: \"punctuation\",\n regex: \",|:|;|\\\\->|\\\\+=|\\\\-=|\\\\*=|\\\\/=|\\\\/\\\\/=|%=|@=|&=|\\\\|=|^=|>>=|<<=|\\\\*\\\\*=\"\n }, {\n token: \"paren.lparen\",\n regex: \"[\\\\[\\\\(\\\\{]\"\n }, {\n token: \"paren.rparen\",\n regex: \"[\\\\]\\\\)\\\\}]\"\n }, {\n token: \"text\",\n regex: \"\\\\s+\"\n }, {\n include: \"constants\"\n }],\n \"qqstring3\": [{\n token: \"constant.language.escape\",\n regex: stringEscape\n }, {\n token: \"string\", // multi line \"\"\" string end\n regex: '\"{3}',\n next: \"start\"\n }, {\n defaultToken: \"string\"\n }],\n \"qstring3\": [{\n token: \"constant.language.escape\",\n regex: stringEscape\n }, {\n token: \"string\", // multi line ''' string end\n regex: \"'{3}\",\n next: \"start\"\n }, {\n defaultToken: \"string\"\n }],\n \"qqstring\": [{\n token: \"constant.language.escape\",\n regex: stringEscape\n }, {\n token: \"string\",\n regex: \"\\\\\\\\$\",\n next: \"qqstring\"\n }, {\n token: \"string\",\n regex: '\"|$',\n next: \"start\"\n }, {\n defaultToken: \"string\"\n }],\n \"qstring\": [{\n token: \"constant.language.escape\",\n regex: stringEscape\n }, {\n token: \"string\",\n regex: \"\\\\\\\\$\",\n next: \"qstring\"\n }, {\n token: \"string\",\n regex: \"'|$\",\n next: \"start\"\n }, {\n defaultToken: \"string\"\n }],\n \"rawqqstring3\": [{\n token: \"string\", // multi line \"\"\" string end\n regex: '\"{3}',\n next: \"start\"\n }, {\n defaultToken: \"string\"\n }],\n \"rawqstring3\": [{\n token: \"string\", // multi line ''' string end\n regex: \"'{3}\",\n next: \"start\"\n }, {\n defaultToken: \"string\"\n }],\n \"rawqqstring\": [{\n token: \"string\",\n regex: \"\\\\\\\\$\",\n next: \"rawqqstring\"\n }, {\n token: \"string\",\n regex: '\"|$',\n next: \"start\"\n }, {\n defaultToken: \"string\"\n }],\n \"rawqstring\": [{\n token: \"string\",\n regex: \"\\\\\\\\$\",\n next: \"rawqstring\"\n }, {\n token: \"string\",\n regex: \"'|$\",\n next: \"start\"\n }, {\n defaultToken: \"string\"\n }],\n \"fqqstring3\": [{\n token: \"constant.language.escape\",\n regex: stringEscape\n }, {\n token: \"string\", // multi line \"\"\" string end\n regex: '\"{3}',\n next: \"start\"\n }, {\n token: \"paren.lparen\",\n regex: \"{\",\n push: \"fqstringParRules\"\n }, {\n defaultToken: \"string\"\n }],\n \"fqstring3\": [{\n token: \"constant.language.escape\",\n regex: stringEscape\n }, {\n token: \"string\", // multi line ''' string end\n regex: \"'{3}\",\n next: \"start\"\n }, {\n token: \"paren.lparen\",\n regex: \"{\",\n push: \"fqstringParRules\"\n }, {\n defaultToken: \"string\"\n }],\n \"fqqstring\": [{\n token: \"constant.language.escape\",\n regex: stringEscape\n }, {\n token: \"string\",\n regex: \"\\\\\\\\$\",\n next: \"fqqstring\"\n }, {\n token: \"string\",\n regex: '\"|$',\n next: \"start\"\n }, {\n token: \"paren.lparen\",\n regex: \"{\",\n push: \"fqstringParRules\"\n }, {\n defaultToken: \"string\"\n }],\n \"fqstring\": [{\n token: \"constant.language.escape\",\n regex: stringEscape\n }, {\n token: \"string\",\n regex: \"'|$\",\n next: \"start\"\n }, {\n token: \"paren.lparen\",\n regex: \"{\",\n push: \"fqstringParRules\"\n }, {\n defaultToken: \"string\"\n }],\n \"rfqqstring3\": [{\n token: \"string\", // multi line \"\"\" string end\n regex: '\"{3}',\n next: \"start\"\n }, {\n token: \"paren.lparen\",\n regex: \"{\",\n push: \"fqstringParRules\"\n }, {\n defaultToken: \"string\"\n }],\n \"rfqstring3\": [{\n token: \"string\", // multi line ''' string end\n regex: \"'{3}\",\n next: \"start\"\n }, {\n token: \"paren.lparen\",\n regex: \"{\",\n push: \"fqstringParRules\"\n }, {\n defaultToken: \"string\"\n }],\n \"rfqqstring\": [{\n token: \"string\",\n regex: \"\\\\\\\\$\",\n next: \"rfqqstring\"\n }, {\n token: \"string\",\n regex: '\"|$',\n next: \"start\"\n }, {\n token: \"paren.lparen\",\n regex: \"{\",\n push: \"fqstringParRules\"\n }, {\n defaultToken: \"string\"\n }],\n \"rfqstring\": [{\n token: \"string\",\n regex: \"'|$\",\n next: \"start\"\n }, {\n token: \"paren.lparen\",\n regex: \"{\",\n push: \"fqstringParRules\"\n }, {\n defaultToken: \"string\"\n }],\n \"fqstringParRules\": [{//TODO: nested {}\n token: \"paren.lparen\",\n regex: \"[\\\\[\\\\(]\"\n }, {\n token: \"paren.rparen\",\n regex: \"[\\\\]\\\\)]\"\n }, {\n token: \"string\",\n regex: \"\\\\s+\"\n }, {\n token: \"string\",\n regex: \"'(.)*'\"\n }, {\n token: \"string\",\n regex: '\"(.)*\"'\n }, {\n token: \"function.support\",\n regex: \"(!s|!r|!a)\"\n }, {\n include: \"constants\"\n },{\n token: 'paren.rparen',\n regex: \"}\",\n next: 'pop'\n },{\n token: 'paren.lparen',\n regex: \"{\",\n push: \"fqstringParRules\"\n }],\n \"constants\": [{\n token: \"constant.numeric\", // imaginary\n regex: \"(?:\" + floatNumber + \"|\\\\d+)[jJ]\\\\b\"\n }, {\n token: \"constant.numeric\", // float\n regex: floatNumber\n }, {\n token: \"constant.numeric\", // long integer\n regex: integer + \"[lL]\\\\b\"\n }, {\n token: \"constant.numeric\", // integer\n regex: integer + \"\\\\b\"\n }, {\n token: [\"punctuation\", \"function.support\"],// method\n regex: \"(\\\\.)([a-zA-Z_]+)\\\\b\"\n }, {\n token: keywordMapper,\n regex: \"[a-zA-Z_$][a-zA-Z0-9_$]*\\\\b\"\n }]\n };\n this.normalizeRules();\n};\n\noop.inherits(PythonHighlightRules, TextHighlightRules);\n\nexports.PythonHighlightRules = PythonHighlightRules;\n});\n\nace.define(\"ace/mode/csound_orchestra_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/lang\",\"ace/lib/oop\",\"ace/mode/csound_preprocessor_highlight_rules\",\"ace/mode/csound_score_highlight_rules\",\"ace/mode/lua_highlight_rules\",\"ace/mode/python_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar lang = require(\"../lib/lang\");\nvar oop = require(\"../lib/oop\");\n\nvar CsoundPreprocessorHighlightRules = require(\"./csound_preprocessor_highlight_rules\").CsoundPreprocessorHighlightRules;\nvar CsoundScoreHighlightRules = require(\"./csound_score_highlight_rules\").CsoundScoreHighlightRules;\nvar LuaHighlightRules = require(\"./lua_highlight_rules\").LuaHighlightRules;\nvar PythonHighlightRules = require(\"./python_highlight_rules\").PythonHighlightRules;\n\nvar CsoundOrchestraHighlightRules = function() {\n\n CsoundPreprocessorHighlightRules.call(this);\n var opcodes = [\n \"ATSadd\",\n \"ATSaddnz\",\n \"ATSbufread\",\n \"ATScross\",\n \"ATSinfo\",\n \"ATSinterpread\",\n \"ATSpartialtap\",\n \"ATSread\",\n \"ATSreadnz\",\n \"ATSsinnoi\",\n \"FLbox\",\n \"FLbutBank\",\n \"FLbutton\",\n \"FLcloseButton\",\n \"FLcolor\",\n \"FLcolor2\",\n \"FLcount\",\n \"FLexecButton\",\n \"FLgetsnap\",\n \"FLgroup\",\n \"FLgroupEnd\",\n \"FLgroup_end\",\n \"FLhide\",\n \"FLhvsBox\",\n \"FLhvsBoxSetValue\",\n \"FLjoy\",\n \"FLkeyIn\",\n \"FLknob\",\n \"FLlabel\",\n \"FLloadsnap\",\n \"FLmouse\",\n \"FLpack\",\n \"FLpackEnd\",\n \"FLpack_end\",\n \"FLpanel\",\n \"FLpanelEnd\",\n \"FLpanel_end\",\n \"FLprintk\",\n \"FLprintk2\",\n \"FLroller\",\n \"FLrun\",\n \"FLsavesnap\",\n \"FLscroll\",\n \"FLscrollEnd\",\n \"FLscroll_end\",\n \"FLsetAlign\",\n \"FLsetBox\",\n \"FLsetColor\",\n \"FLsetColor2\",\n \"FLsetFont\",\n \"FLsetPosition\",\n \"FLsetSize\",\n \"FLsetSnapGroup\",\n \"FLsetText\",\n \"FLsetTextColor\",\n \"FLsetTextSize\",\n \"FLsetTextType\",\n \"FLsetVal\",\n \"FLsetVal_i\",\n \"FLsetVali\",\n \"FLsetsnap\",\n \"FLshow\",\n \"FLslidBnk\",\n \"FLslidBnk2\",\n \"FLslidBnk2Set\",\n \"FLslidBnk2Setk\",\n \"FLslidBnkGetHandle\",\n \"FLslidBnkSet\",\n \"FLslidBnkSetk\",\n \"FLslider\",\n \"FLtabs\",\n \"FLtabsEnd\",\n \"FLtabs_end\",\n \"FLtext\",\n \"FLupdate\",\n \"FLvalue\",\n \"FLvkeybd\",\n \"FLvslidBnk\",\n \"FLvslidBnk2\",\n \"FLxyin\",\n \"JackoAudioIn\",\n \"JackoAudioInConnect\",\n \"JackoAudioOut\",\n \"JackoAudioOutConnect\",\n \"JackoFreewheel\",\n \"JackoInfo\",\n \"JackoInit\",\n \"JackoMidiInConnect\",\n \"JackoMidiOut\",\n \"JackoMidiOutConnect\",\n \"JackoNoteOut\",\n \"JackoOn\",\n \"JackoTransport\",\n \"K35_hpf\",\n \"K35_lpf\",\n \"MixerClear\",\n \"MixerGetLevel\",\n \"MixerReceive\",\n \"MixerSend\",\n \"MixerSetLevel\",\n \"MixerSetLevel_i\",\n \"OSCbundle\",\n \"OSCcount\",\n \"OSCinit\",\n \"OSCinitM\",\n \"OSClisten\",\n \"OSCraw\",\n \"OSCsend\",\n \"OSCsend_lo\",\n \"S\",\n \"STKBandedWG\",\n \"STKBeeThree\",\n \"STKBlowBotl\",\n \"STKBlowHole\",\n \"STKBowed\",\n \"STKBrass\",\n \"STKClarinet\",\n \"STKDrummer\",\n \"STKFMVoices\",\n \"STKFlute\",\n \"STKHevyMetl\",\n \"STKMandolin\",\n \"STKModalBar\",\n \"STKMoog\",\n \"STKPercFlut\",\n \"STKPlucked\",\n \"STKResonate\",\n \"STKRhodey\",\n \"STKSaxofony\",\n \"STKShakers\",\n \"STKSimple\",\n \"STKSitar\",\n \"STKStifKarp\",\n \"STKTubeBell\",\n \"STKVoicForm\",\n \"STKWhistle\",\n \"STKWurley\",\n \"a\",\n \"abs\",\n \"active\",\n \"adsr\",\n \"adsyn\",\n \"adsynt\",\n \"adsynt2\",\n \"aftouch\",\n \"alpass\",\n \"alwayson\",\n \"ampdb\",\n \"ampdbfs\",\n \"ampmidi\",\n \"ampmidid\",\n \"areson\",\n \"aresonk\",\n \"atone\",\n \"atonek\",\n \"atonex\",\n \"babo\",\n \"balance\",\n \"balance2\",\n \"bamboo\",\n \"barmodel\",\n \"bbcutm\",\n \"bbcuts\",\n \"beadsynt\",\n \"beosc\",\n \"betarand\",\n \"bexprnd\",\n \"bformdec1\",\n \"bformenc1\",\n \"binit\",\n \"biquad\",\n \"biquada\",\n \"birnd\",\n \"bpf\",\n \"bpfcos\",\n \"bqrez\",\n \"butbp\",\n \"butbr\",\n \"buthp\",\n \"butlp\",\n \"butterbp\",\n \"butterbr\",\n \"butterhp\",\n \"butterlp\",\n \"button\",\n \"buzz\",\n \"c2r\",\n \"cabasa\",\n \"cauchy\",\n \"cauchyi\",\n \"cbrt\",\n \"ceil\",\n \"cell\",\n \"cent\",\n \"centroid\",\n \"ceps\",\n \"cepsinv\",\n \"chanctrl\",\n \"changed\",\n \"changed2\",\n \"chani\",\n \"chano\",\n \"chebyshevpoly\",\n \"checkbox\",\n \"chn_S\",\n \"chn_a\",\n \"chn_k\",\n \"chnclear\",\n \"chnexport\",\n \"chnget\",\n \"chngetks\",\n \"chnmix\",\n \"chnparams\",\n \"chnset\",\n \"chnsetks\",\n \"chuap\",\n \"clear\",\n \"clfilt\",\n \"clip\",\n \"clockoff\",\n \"clockon\",\n \"cmp\",\n \"cmplxprod\",\n \"comb\",\n \"combinv\",\n \"compilecsd\",\n \"compileorc\",\n \"compilestr\",\n \"compress\",\n \"compress2\",\n \"connect\",\n \"control\",\n \"convle\",\n \"convolve\",\n \"copya2ftab\",\n \"copyf2array\",\n \"cos\",\n \"cosh\",\n \"cosinv\",\n \"cosseg\",\n \"cossegb\",\n \"cossegr\",\n \"cps2pch\",\n \"cpsmidi\",\n \"cpsmidib\",\n \"cpsmidinn\",\n \"cpsoct\",\n \"cpspch\",\n \"cpstmid\",\n \"cpstun\",\n \"cpstuni\",\n \"cpsxpch\",\n \"cpumeter\",\n \"cpuprc\",\n \"cross2\",\n \"crossfm\",\n \"crossfmi\",\n \"crossfmpm\",\n \"crossfmpmi\",\n \"crosspm\",\n \"crosspmi\",\n \"crunch\",\n \"ctlchn\",\n \"ctrl14\",\n \"ctrl21\",\n \"ctrl7\",\n \"ctrlinit\",\n \"cuserrnd\",\n \"dam\",\n \"date\",\n \"dates\",\n \"db\",\n \"dbamp\",\n \"dbfsamp\",\n \"dcblock\",\n \"dcblock2\",\n \"dconv\",\n \"dct\",\n \"dctinv\",\n \"deinterleave\",\n \"delay\",\n \"delay1\",\n \"delayk\",\n \"delayr\",\n \"delayw\",\n \"deltap\",\n \"deltap3\",\n \"deltapi\",\n \"deltapn\",\n \"deltapx\",\n \"deltapxw\",\n \"denorm\",\n \"diff\",\n \"diode_ladder\",\n \"directory\",\n \"diskgrain\",\n \"diskin\",\n \"diskin2\",\n \"dispfft\",\n \"display\",\n \"distort\",\n \"distort1\",\n \"divz\",\n \"doppler\",\n \"dot\",\n \"downsamp\",\n \"dripwater\",\n \"dssiactivate\",\n \"dssiaudio\",\n \"dssictls\",\n \"dssiinit\",\n \"dssilist\",\n \"dumpk\",\n \"dumpk2\",\n \"dumpk3\",\n \"dumpk4\",\n \"duserrnd\",\n \"dust\",\n \"dust2\",\n \"envlpx\",\n \"envlpxr\",\n \"ephasor\",\n \"eqfil\",\n \"evalstr\",\n \"event\",\n \"event_i\",\n \"exciter\",\n \"exitnow\",\n \"exp\",\n \"expcurve\",\n \"expon\",\n \"exprand\",\n \"exprandi\",\n \"expseg\",\n \"expsega\",\n \"expsegb\",\n \"expsegba\",\n \"expsegr\",\n \"fareylen\",\n \"fareyleni\",\n \"faustaudio\",\n \"faustcompile\",\n \"faustctl\",\n \"faustdsp\",\n \"faustgen\",\n \"faustplay\",\n \"fft\",\n \"fftinv\",\n \"ficlose\",\n \"filebit\",\n \"filelen\",\n \"filenchnls\",\n \"filepeak\",\n \"filescal\",\n \"filesr\",\n \"filevalid\",\n \"fillarray\",\n \"filter2\",\n \"fin\",\n \"fini\",\n \"fink\",\n \"fiopen\",\n \"flanger\",\n \"flashtxt\",\n \"flooper\",\n \"flooper2\",\n \"floor\",\n \"fmanal\",\n \"fmax\",\n \"fmb3\",\n \"fmbell\",\n \"fmin\",\n \"fmmetal\",\n \"fmod\",\n \"fmpercfl\",\n \"fmrhode\",\n \"fmvoice\",\n \"fmwurlie\",\n \"fof\",\n \"fof2\",\n \"fofilter\",\n \"fog\",\n \"fold\",\n \"follow\",\n \"follow2\",\n \"foscil\",\n \"foscili\",\n \"fout\",\n \"fouti\",\n \"foutir\",\n \"foutk\",\n \"fprintks\",\n \"fprints\",\n \"frac\",\n \"fractalnoise\",\n \"framebuffer\",\n \"freeverb\",\n \"ftaudio\",\n \"ftchnls\",\n \"ftconv\",\n \"ftcps\",\n \"ftfree\",\n \"ftgen\",\n \"ftgenonce\",\n \"ftgentmp\",\n \"ftlen\",\n \"ftload\",\n \"ftloadk\",\n \"ftlptim\",\n \"ftmorf\",\n \"ftom\",\n \"ftprint\",\n \"ftresize\",\n \"ftresizei\",\n \"ftsamplebank\",\n \"ftsave\",\n \"ftsavek\",\n \"ftslice\",\n \"ftsr\",\n \"gain\",\n \"gainslider\",\n \"gauss\",\n \"gaussi\",\n \"gausstrig\",\n \"gbuzz\",\n \"genarray\",\n \"genarray_i\",\n \"gendy\",\n \"gendyc\",\n \"gendyx\",\n \"getcfg\",\n \"getcol\",\n \"getftargs\",\n \"getrow\",\n \"getrowlin\",\n \"getseed\",\n \"gogobel\",\n \"grain\",\n \"grain2\",\n \"grain3\",\n \"granule\",\n \"guiro\",\n \"harmon\",\n \"harmon2\",\n \"harmon3\",\n \"harmon4\",\n \"hdf5read\",\n \"hdf5write\",\n \"hilbert\",\n \"hilbert2\",\n \"hrtfearly\",\n \"hrtfmove\",\n \"hrtfmove2\",\n \"hrtfreverb\",\n \"hrtfstat\",\n \"hsboscil\",\n \"hvs1\",\n \"hvs2\",\n \"hvs3\",\n \"hypot\",\n \"i\",\n \"ihold\",\n \"imagecreate\",\n \"imagefree\",\n \"imagegetpixel\",\n \"imageload\",\n \"imagesave\",\n \"imagesetpixel\",\n \"imagesize\",\n \"in\",\n \"in32\",\n \"inch\",\n \"inh\",\n \"init\",\n \"initc14\",\n \"initc21\",\n \"initc7\",\n \"inleta\",\n \"inletf\",\n \"inletk\",\n \"inletkid\",\n \"inletv\",\n \"ino\",\n \"inq\",\n \"inrg\",\n \"ins\",\n \"insglobal\",\n \"insremot\",\n \"int\",\n \"integ\",\n \"interleave\",\n \"interp\",\n \"invalue\",\n \"inx\",\n \"inz\",\n \"jacktransport\",\n \"jitter\",\n \"jitter2\",\n \"joystick\",\n \"jspline\",\n \"k\",\n \"la_i_add_mc\",\n \"la_i_add_mr\",\n \"la_i_add_vc\",\n \"la_i_add_vr\",\n \"la_i_assign_mc\",\n \"la_i_assign_mr\",\n \"la_i_assign_t\",\n \"la_i_assign_vc\",\n \"la_i_assign_vr\",\n \"la_i_conjugate_mc\",\n \"la_i_conjugate_mr\",\n \"la_i_conjugate_vc\",\n \"la_i_conjugate_vr\",\n \"la_i_distance_vc\",\n \"la_i_distance_vr\",\n \"la_i_divide_mc\",\n \"la_i_divide_mr\",\n \"la_i_divide_vc\",\n \"la_i_divide_vr\",\n \"la_i_dot_mc\",\n \"la_i_dot_mc_vc\",\n \"la_i_dot_mr\",\n \"la_i_dot_mr_vr\",\n \"la_i_dot_vc\",\n \"la_i_dot_vr\",\n \"la_i_get_mc\",\n \"la_i_get_mr\",\n \"la_i_get_vc\",\n \"la_i_get_vr\",\n \"la_i_invert_mc\",\n \"la_i_invert_mr\",\n \"la_i_lower_solve_mc\",\n \"la_i_lower_solve_mr\",\n \"la_i_lu_det_mc\",\n \"la_i_lu_det_mr\",\n \"la_i_lu_factor_mc\",\n \"la_i_lu_factor_mr\",\n \"la_i_lu_solve_mc\",\n \"la_i_lu_solve_mr\",\n \"la_i_mc_create\",\n \"la_i_mc_set\",\n \"la_i_mr_create\",\n \"la_i_mr_set\",\n \"la_i_multiply_mc\",\n \"la_i_multiply_mr\",\n \"la_i_multiply_vc\",\n \"la_i_multiply_vr\",\n \"la_i_norm1_mc\",\n \"la_i_norm1_mr\",\n \"la_i_norm1_vc\",\n \"la_i_norm1_vr\",\n \"la_i_norm_euclid_mc\",\n \"la_i_norm_euclid_mr\",\n \"la_i_norm_euclid_vc\",\n \"la_i_norm_euclid_vr\",\n \"la_i_norm_inf_mc\",\n \"la_i_norm_inf_mr\",\n \"la_i_norm_inf_vc\",\n \"la_i_norm_inf_vr\",\n \"la_i_norm_max_mc\",\n \"la_i_norm_max_mr\",\n \"la_i_print_mc\",\n \"la_i_print_mr\",\n \"la_i_print_vc\",\n \"la_i_print_vr\",\n \"la_i_qr_eigen_mc\",\n \"la_i_qr_eigen_mr\",\n \"la_i_qr_factor_mc\",\n \"la_i_qr_factor_mr\",\n \"la_i_qr_sym_eigen_mc\",\n \"la_i_qr_sym_eigen_mr\",\n \"la_i_random_mc\",\n \"la_i_random_mr\",\n \"la_i_random_vc\",\n \"la_i_random_vr\",\n \"la_i_size_mc\",\n \"la_i_size_mr\",\n \"la_i_size_vc\",\n \"la_i_size_vr\",\n \"la_i_subtract_mc\",\n \"la_i_subtract_mr\",\n \"la_i_subtract_vc\",\n \"la_i_subtract_vr\",\n \"la_i_t_assign\",\n \"la_i_trace_mc\",\n \"la_i_trace_mr\",\n \"la_i_transpose_mc\",\n \"la_i_transpose_mr\",\n \"la_i_upper_solve_mc\",\n \"la_i_upper_solve_mr\",\n \"la_i_vc_create\",\n \"la_i_vc_set\",\n \"la_i_vr_create\",\n \"la_i_vr_set\",\n \"la_k_a_assign\",\n \"la_k_add_mc\",\n \"la_k_add_mr\",\n \"la_k_add_vc\",\n \"la_k_add_vr\",\n \"la_k_assign_a\",\n \"la_k_assign_f\",\n \"la_k_assign_mc\",\n \"la_k_assign_mr\",\n \"la_k_assign_t\",\n \"la_k_assign_vc\",\n \"la_k_assign_vr\",\n \"la_k_conjugate_mc\",\n \"la_k_conjugate_mr\",\n \"la_k_conjugate_vc\",\n \"la_k_conjugate_vr\",\n \"la_k_current_f\",\n \"la_k_current_vr\",\n \"la_k_distance_vc\",\n \"la_k_distance_vr\",\n \"la_k_divide_mc\",\n \"la_k_divide_mr\",\n \"la_k_divide_vc\",\n \"la_k_divide_vr\",\n \"la_k_dot_mc\",\n \"la_k_dot_mc_vc\",\n \"la_k_dot_mr\",\n \"la_k_dot_mr_vr\",\n \"la_k_dot_vc\",\n \"la_k_dot_vr\",\n \"la_k_f_assign\",\n \"la_k_get_mc\",\n \"la_k_get_mr\",\n \"la_k_get_vc\",\n \"la_k_get_vr\",\n \"la_k_invert_mc\",\n \"la_k_invert_mr\",\n \"la_k_lower_solve_mc\",\n \"la_k_lower_solve_mr\",\n \"la_k_lu_det_mc\",\n \"la_k_lu_det_mr\",\n \"la_k_lu_factor_mc\",\n \"la_k_lu_factor_mr\",\n \"la_k_lu_solve_mc\",\n \"la_k_lu_solve_mr\",\n \"la_k_mc_set\",\n \"la_k_mr_set\",\n \"la_k_multiply_mc\",\n \"la_k_multiply_mr\",\n \"la_k_multiply_vc\",\n \"la_k_multiply_vr\",\n \"la_k_norm1_mc\",\n \"la_k_norm1_mr\",\n \"la_k_norm1_vc\",\n \"la_k_norm1_vr\",\n \"la_k_norm_euclid_mc\",\n \"la_k_norm_euclid_mr\",\n \"la_k_norm_euclid_vc\",\n \"la_k_norm_euclid_vr\",\n \"la_k_norm_inf_mc\",\n \"la_k_norm_inf_mr\",\n \"la_k_norm_inf_vc\",\n \"la_k_norm_inf_vr\",\n \"la_k_norm_max_mc\",\n \"la_k_norm_max_mr\",\n \"la_k_qr_eigen_mc\",\n \"la_k_qr_eigen_mr\",\n \"la_k_qr_factor_mc\",\n \"la_k_qr_factor_mr\",\n \"la_k_qr_sym_eigen_mc\",\n \"la_k_qr_sym_eigen_mr\",\n \"la_k_random_mc\",\n \"la_k_random_mr\",\n \"la_k_random_vc\",\n \"la_k_random_vr\",\n \"la_k_subtract_mc\",\n \"la_k_subtract_mr\",\n \"la_k_subtract_vc\",\n \"la_k_subtract_vr\",\n \"la_k_t_assign\",\n \"la_k_trace_mc\",\n \"la_k_trace_mr\",\n \"la_k_upper_solve_mc\",\n \"la_k_upper_solve_mr\",\n \"la_k_vc_set\",\n \"la_k_vr_set\",\n \"lenarray\",\n \"lfo\",\n \"limit\",\n \"limit1\",\n \"lincos\",\n \"line\",\n \"linen\",\n \"linenr\",\n \"lineto\",\n \"link_beat_force\",\n \"link_beat_get\",\n \"link_beat_request\",\n \"link_create\",\n \"link_enable\",\n \"link_is_enabled\",\n \"link_metro\",\n \"link_peers\",\n \"link_tempo_get\",\n \"link_tempo_set\",\n \"linlin\",\n \"linrand\",\n \"linseg\",\n \"linsegb\",\n \"linsegr\",\n \"liveconv\",\n \"locsend\",\n \"locsig\",\n \"log\",\n \"log10\",\n \"log2\",\n \"logbtwo\",\n \"logcurve\",\n \"loopseg\",\n \"loopsegp\",\n \"looptseg\",\n \"loopxseg\",\n \"lorenz\",\n \"loscil\",\n \"loscil3\",\n \"loscil3phs\",\n \"loscilphs\",\n \"loscilx\",\n \"lowpass2\",\n \"lowres\",\n \"lowresx\",\n \"lpf18\",\n \"lpform\",\n \"lpfreson\",\n \"lphasor\",\n \"lpinterp\",\n \"lposcil\",\n \"lposcil3\",\n \"lposcila\",\n \"lposcilsa\",\n \"lposcilsa2\",\n \"lpread\",\n \"lpreson\",\n \"lpshold\",\n \"lpsholdp\",\n \"lpslot\",\n \"lua_exec\",\n \"lua_iaopcall\",\n \"lua_iaopcall_off\",\n \"lua_ikopcall\",\n \"lua_ikopcall_off\",\n \"lua_iopcall\",\n \"lua_iopcall_off\",\n \"lua_opdef\",\n \"mac\",\n \"maca\",\n \"madsr\",\n \"mags\",\n \"mandel\",\n \"mandol\",\n \"maparray\",\n \"maparray_i\",\n \"marimba\",\n \"massign\",\n \"max\",\n \"max_k\",\n \"maxabs\",\n \"maxabsaccum\",\n \"maxaccum\",\n \"maxalloc\",\n \"maxarray\",\n \"mclock\",\n \"mdelay\",\n \"median\",\n \"mediank\",\n \"metro\",\n \"mfb\",\n \"midglobal\",\n \"midiarp\",\n \"midic14\",\n \"midic21\",\n \"midic7\",\n \"midichannelaftertouch\",\n \"midichn\",\n \"midicontrolchange\",\n \"midictrl\",\n \"mididefault\",\n \"midifilestatus\",\n \"midiin\",\n \"midinoteoff\",\n \"midinoteoncps\",\n \"midinoteonkey\",\n \"midinoteonoct\",\n \"midinoteonpch\",\n \"midion\",\n \"midion2\",\n \"midiout\",\n \"midiout_i\",\n \"midipgm\",\n \"midipitchbend\",\n \"midipolyaftertouch\",\n \"midiprogramchange\",\n \"miditempo\",\n \"midremot\",\n \"min\",\n \"minabs\",\n \"minabsaccum\",\n \"minaccum\",\n \"minarray\",\n \"mincer\",\n \"mirror\",\n \"mode\",\n \"modmatrix\",\n \"monitor\",\n \"moog\",\n \"moogladder\",\n \"moogladder2\",\n \"moogvcf\",\n \"moogvcf2\",\n \"moscil\",\n \"mp3bitrate\",\n \"mp3in\",\n \"mp3len\",\n \"mp3nchnls\",\n \"mp3scal\",\n \"mp3sr\",\n \"mpulse\",\n \"mrtmsg\",\n \"mtof\",\n \"mton\",\n \"multitap\",\n \"mute\",\n \"mvchpf\",\n \"mvclpf1\",\n \"mvclpf2\",\n \"mvclpf3\",\n \"mvclpf4\",\n \"mxadsr\",\n \"nchnls_hw\",\n \"nestedap\",\n \"nlalp\",\n \"nlfilt\",\n \"nlfilt2\",\n \"noise\",\n \"noteoff\",\n \"noteon\",\n \"noteondur\",\n \"noteondur2\",\n \"notnum\",\n \"nreverb\",\n \"nrpn\",\n \"nsamp\",\n \"nstance\",\n \"nstrnum\",\n \"ntom\",\n \"ntrpol\",\n \"nxtpow2\",\n \"octave\",\n \"octcps\",\n \"octmidi\",\n \"octmidib\",\n \"octmidinn\",\n \"octpch\",\n \"olabuffer\",\n \"oscbnk\",\n \"oscil\",\n \"oscil1\",\n \"oscil1i\",\n \"oscil3\",\n \"oscili\",\n \"oscilikt\",\n \"osciliktp\",\n \"oscilikts\",\n \"osciln\",\n \"oscils\",\n \"oscilx\",\n \"out\",\n \"out32\",\n \"outc\",\n \"outch\",\n \"outh\",\n \"outiat\",\n \"outic\",\n \"outic14\",\n \"outipat\",\n \"outipb\",\n \"outipc\",\n \"outkat\",\n \"outkc\",\n \"outkc14\",\n \"outkpat\",\n \"outkpb\",\n \"outkpc\",\n \"outleta\",\n \"outletf\",\n \"outletk\",\n \"outletkid\",\n \"outletv\",\n \"outo\",\n \"outq\",\n \"outq1\",\n \"outq2\",\n \"outq3\",\n \"outq4\",\n \"outrg\",\n \"outs\",\n \"outs1\",\n \"outs2\",\n \"outvalue\",\n \"outx\",\n \"outz\",\n \"p\",\n \"p5gconnect\",\n \"p5gdata\",\n \"pan\",\n \"pan2\",\n \"pareq\",\n \"part2txt\",\n \"partials\",\n \"partikkel\",\n \"partikkelget\",\n \"partikkelset\",\n \"partikkelsync\",\n \"passign\",\n \"paulstretch\",\n \"pcauchy\",\n \"pchbend\",\n \"pchmidi\",\n \"pchmidib\",\n \"pchmidinn\",\n \"pchoct\",\n \"pchtom\",\n \"pconvolve\",\n \"pcount\",\n \"pdclip\",\n \"pdhalf\",\n \"pdhalfy\",\n \"peak\",\n \"pgmassign\",\n \"pgmchn\",\n \"phaser1\",\n \"phaser2\",\n \"phasor\",\n \"phasorbnk\",\n \"phs\",\n \"pindex\",\n \"pinker\",\n \"pinkish\",\n \"pitch\",\n \"pitchac\",\n \"pitchamdf\",\n \"planet\",\n \"platerev\",\n \"plltrack\",\n \"pluck\",\n \"poisson\",\n \"pol2rect\",\n \"polyaft\",\n \"polynomial\",\n \"port\",\n \"portk\",\n \"poscil\",\n \"poscil3\",\n \"pow\",\n \"powershape\",\n \"powoftwo\",\n \"pows\",\n \"prealloc\",\n \"prepiano\",\n \"print\",\n \"print_type\",\n \"printarray\",\n \"printf\",\n \"printf_i\",\n \"printk\",\n \"printk2\",\n \"printks\",\n \"printks2\",\n \"prints\",\n \"product\",\n \"pset\",\n \"ptable\",\n \"ptable3\",\n \"ptablei\",\n \"ptableiw\",\n \"ptablew\",\n \"ptrack\",\n \"puts\",\n \"pvadd\",\n \"pvbufread\",\n \"pvcross\",\n \"pvinterp\",\n \"pvoc\",\n \"pvread\",\n \"pvs2array\",\n \"pvs2tab\",\n \"pvsadsyn\",\n \"pvsanal\",\n \"pvsarp\",\n \"pvsbandp\",\n \"pvsbandr\",\n \"pvsbin\",\n \"pvsblur\",\n \"pvsbuffer\",\n \"pvsbufread\",\n \"pvsbufread2\",\n \"pvscale\",\n \"pvscent\",\n \"pvsceps\",\n \"pvscross\",\n \"pvsdemix\",\n \"pvsdiskin\",\n \"pvsdisp\",\n \"pvsenvftw\",\n \"pvsfilter\",\n \"pvsfread\",\n \"pvsfreeze\",\n \"pvsfromarray\",\n \"pvsftr\",\n \"pvsftw\",\n \"pvsfwrite\",\n \"pvsgain\",\n \"pvshift\",\n \"pvsifd\",\n \"pvsin\",\n \"pvsinfo\",\n \"pvsinit\",\n \"pvslock\",\n \"pvsmaska\",\n \"pvsmix\",\n \"pvsmooth\",\n \"pvsmorph\",\n \"pvsosc\",\n \"pvsout\",\n \"pvspitch\",\n \"pvstanal\",\n \"pvstencil\",\n \"pvstrace\",\n \"pvsvoc\",\n \"pvswarp\",\n \"pvsynth\",\n \"pwd\",\n \"pyassign\",\n \"pyassigni\",\n \"pyassignt\",\n \"pycall\",\n \"pycall1\",\n \"pycall1i\",\n \"pycall1t\",\n \"pycall2\",\n \"pycall2i\",\n \"pycall2t\",\n \"pycall3\",\n \"pycall3i\",\n \"pycall3t\",\n \"pycall4\",\n \"pycall4i\",\n \"pycall4t\",\n \"pycall5\",\n \"pycall5i\",\n \"pycall5t\",\n \"pycall6\",\n \"pycall6i\",\n \"pycall6t\",\n \"pycall7\",\n \"pycall7i\",\n \"pycall7t\",\n \"pycall8\",\n \"pycall8i\",\n \"pycall8t\",\n \"pycalli\",\n \"pycalln\",\n \"pycallni\",\n \"pycallt\",\n \"pyeval\",\n \"pyevali\",\n \"pyevalt\",\n \"pyexec\",\n \"pyexeci\",\n \"pyexect\",\n \"pyinit\",\n \"pylassign\",\n \"pylassigni\",\n \"pylassignt\",\n \"pylcall\",\n \"pylcall1\",\n \"pylcall1i\",\n \"pylcall1t\",\n \"pylcall2\",\n \"pylcall2i\",\n \"pylcall2t\",\n \"pylcall3\",\n \"pylcall3i\",\n \"pylcall3t\",\n \"pylcall4\",\n \"pylcall4i\",\n \"pylcall4t\",\n \"pylcall5\",\n \"pylcall5i\",\n \"pylcall5t\",\n \"pylcall6\",\n \"pylcall6i\",\n \"pylcall6t\",\n \"pylcall7\",\n \"pylcall7i\",\n \"pylcall7t\",\n \"pylcall8\",\n \"pylcall8i\",\n \"pylcall8t\",\n \"pylcalli\",\n \"pylcalln\",\n \"pylcallni\",\n \"pylcallt\",\n \"pyleval\",\n \"pylevali\",\n \"pylevalt\",\n \"pylexec\",\n \"pylexeci\",\n \"pylexect\",\n \"pylrun\",\n \"pylruni\",\n \"pylrunt\",\n \"pyrun\",\n \"pyruni\",\n \"pyrunt\",\n \"qinf\",\n \"qnan\",\n \"r2c\",\n \"rand\",\n \"randh\",\n \"randi\",\n \"random\",\n \"randomh\",\n \"randomi\",\n \"rbjeq\",\n \"readclock\",\n \"readf\",\n \"readfi\",\n \"readk\",\n \"readk2\",\n \"readk3\",\n \"readk4\",\n \"readks\",\n \"readscore\",\n \"readscratch\",\n \"rect2pol\",\n \"release\",\n \"remoteport\",\n \"remove\",\n \"repluck\",\n \"reshapearray\",\n \"reson\",\n \"resonk\",\n \"resonr\",\n \"resonx\",\n \"resonxk\",\n \"resony\",\n \"resonz\",\n \"resyn\",\n \"reverb\",\n \"reverb2\",\n \"reverbsc\",\n \"rewindscore\",\n \"rezzy\",\n \"rfft\",\n \"rifft\",\n \"rms\",\n \"rnd\",\n \"rnd31\",\n \"round\",\n \"rspline\",\n \"rtclock\",\n \"s16b14\",\n \"s32b14\",\n \"samphold\",\n \"sandpaper\",\n \"sc_lag\",\n \"sc_lagud\",\n \"sc_phasor\",\n \"sc_trig\",\n \"scale\",\n \"scalearray\",\n \"scanhammer\",\n \"scans\",\n \"scantable\",\n \"scanu\",\n \"schedkwhen\",\n \"schedkwhennamed\",\n \"schedule\",\n \"schedwhen\",\n \"scoreline\",\n \"scoreline_i\",\n \"seed\",\n \"sekere\",\n \"select\",\n \"semitone\",\n \"sense\",\n \"sensekey\",\n \"seqtime\",\n \"seqtime2\",\n \"serialBegin\",\n \"serialEnd\",\n \"serialFlush\",\n \"serialPrint\",\n \"serialRead\",\n \"serialWrite\",\n \"serialWrite_i\",\n \"setcol\",\n \"setctrl\",\n \"setksmps\",\n \"setrow\",\n \"setscorepos\",\n \"sfilist\",\n \"sfinstr\",\n \"sfinstr3\",\n \"sfinstr3m\",\n \"sfinstrm\",\n \"sfload\",\n \"sflooper\",\n \"sfpassign\",\n \"sfplay\",\n \"sfplay3\",\n \"sfplay3m\",\n \"sfplaym\",\n \"sfplist\",\n \"sfpreset\",\n \"shaker\",\n \"shiftin\",\n \"shiftout\",\n \"signum\",\n \"sin\",\n \"sinh\",\n \"sininv\",\n \"sinsyn\",\n \"sleighbells\",\n \"slicearray\",\n \"slicearray_i\",\n \"slider16\",\n \"slider16f\",\n \"slider16table\",\n \"slider16tablef\",\n \"slider32\",\n \"slider32f\",\n \"slider32table\",\n \"slider32tablef\",\n \"slider64\",\n \"slider64f\",\n \"slider64table\",\n \"slider64tablef\",\n \"slider8\",\n \"slider8f\",\n \"slider8table\",\n \"slider8tablef\",\n \"sliderKawai\",\n \"sndloop\",\n \"sndwarp\",\n \"sndwarpst\",\n \"sockrecv\",\n \"sockrecvs\",\n \"socksend\",\n \"socksends\",\n \"sorta\",\n \"sortd\",\n \"soundin\",\n \"space\",\n \"spat3d\",\n \"spat3di\",\n \"spat3dt\",\n \"spdist\",\n \"splitrig\",\n \"sprintf\",\n \"sprintfk\",\n \"spsend\",\n \"sqrt\",\n \"squinewave\",\n \"statevar\",\n \"stix\",\n \"strcat\",\n \"strcatk\",\n \"strchar\",\n \"strchark\",\n \"strcmp\",\n \"strcmpk\",\n \"strcpy\",\n \"strcpyk\",\n \"strecv\",\n \"streson\",\n \"strfromurl\",\n \"strget\",\n \"strindex\",\n \"strindexk\",\n \"strlen\",\n \"strlenk\",\n \"strlower\",\n \"strlowerk\",\n \"strrindex\",\n \"strrindexk\",\n \"strset\",\n \"strsub\",\n \"strsubk\",\n \"strtod\",\n \"strtodk\",\n \"strtol\",\n \"strtolk\",\n \"strupper\",\n \"strupperk\",\n \"stsend\",\n \"subinstr\",\n \"subinstrinit\",\n \"sum\",\n \"sumarray\",\n \"svfilter\",\n \"syncgrain\",\n \"syncloop\",\n \"syncphasor\",\n \"system\",\n \"system_i\",\n \"tab\",\n \"tab2array\",\n \"tab2pvs\",\n \"tab_i\",\n \"tabifd\",\n \"table\",\n \"table3\",\n \"table3kt\",\n \"tablecopy\",\n \"tablefilter\",\n \"tablefilteri\",\n \"tablegpw\",\n \"tablei\",\n \"tableicopy\",\n \"tableigpw\",\n \"tableikt\",\n \"tableimix\",\n \"tableiw\",\n \"tablekt\",\n \"tablemix\",\n \"tableng\",\n \"tablera\",\n \"tableseg\",\n \"tableshuffle\",\n \"tableshufflei\",\n \"tablew\",\n \"tablewa\",\n \"tablewkt\",\n \"tablexkt\",\n \"tablexseg\",\n \"tabmorph\",\n \"tabmorpha\",\n \"tabmorphak\",\n \"tabmorphi\",\n \"tabplay\",\n \"tabrec\",\n \"tabrowlin\",\n \"tabsum\",\n \"tabw\",\n \"tabw_i\",\n \"tambourine\",\n \"tan\",\n \"tanh\",\n \"taninv\",\n \"taninv2\",\n \"tbvcf\",\n \"tempest\",\n \"tempo\",\n \"temposcal\",\n \"tempoval\",\n \"timedseq\",\n \"timeinstk\",\n \"timeinsts\",\n \"timek\",\n \"times\",\n \"tival\",\n \"tlineto\",\n \"tone\",\n \"tonek\",\n \"tonex\",\n \"tradsyn\",\n \"trandom\",\n \"transeg\",\n \"transegb\",\n \"transegr\",\n \"trcross\",\n \"trfilter\",\n \"trhighest\",\n \"trigger\",\n \"trigseq\",\n \"trim\",\n \"trim_i\",\n \"trirand\",\n \"trlowest\",\n \"trmix\",\n \"trscale\",\n \"trshift\",\n \"trsplit\",\n \"turnoff\",\n \"turnoff2\",\n \"turnon\",\n \"tvconv\",\n \"unirand\",\n \"unwrap\",\n \"upsamp\",\n \"urandom\",\n \"urd\",\n \"vactrol\",\n \"vadd\",\n \"vadd_i\",\n \"vaddv\",\n \"vaddv_i\",\n \"vaget\",\n \"valpass\",\n \"vaset\",\n \"vbap\",\n \"vbapg\",\n \"vbapgmove\",\n \"vbaplsinit\",\n \"vbapmove\",\n \"vbapz\",\n \"vbapzmove\",\n \"vcella\",\n \"vco\",\n \"vco2\",\n \"vco2ft\",\n \"vco2ift\",\n \"vco2init\",\n \"vcomb\",\n \"vcopy\",\n \"vcopy_i\",\n \"vdel_k\",\n \"vdelay\",\n \"vdelay3\",\n \"vdelayk\",\n \"vdelayx\",\n \"vdelayxq\",\n \"vdelayxs\",\n \"vdelayxw\",\n \"vdelayxwq\",\n \"vdelayxws\",\n \"vdivv\",\n \"vdivv_i\",\n \"vecdelay\",\n \"veloc\",\n \"vexp\",\n \"vexp_i\",\n \"vexpseg\",\n \"vexpv\",\n \"vexpv_i\",\n \"vibes\",\n \"vibr\",\n \"vibrato\",\n \"vincr\",\n \"vlimit\",\n \"vlinseg\",\n \"vlowres\",\n \"vmap\",\n \"vmirror\",\n \"vmult\",\n \"vmult_i\",\n \"vmultv\",\n \"vmultv_i\",\n \"voice\",\n \"vosim\",\n \"vphaseseg\",\n \"vport\",\n \"vpow\",\n \"vpow_i\",\n \"vpowv\",\n \"vpowv_i\",\n \"vpvoc\",\n \"vrandh\",\n \"vrandi\",\n \"vsubv\",\n \"vsubv_i\",\n \"vtaba\",\n \"vtabi\",\n \"vtabk\",\n \"vtable1k\",\n \"vtablea\",\n \"vtablei\",\n \"vtablek\",\n \"vtablewa\",\n \"vtablewi\",\n \"vtablewk\",\n \"vtabwa\",\n \"vtabwi\",\n \"vtabwk\",\n \"vwrap\",\n \"waveset\",\n \"websocket\",\n \"weibull\",\n \"wgbow\",\n \"wgbowedbar\",\n \"wgbrass\",\n \"wgclar\",\n \"wgflute\",\n \"wgpluck\",\n \"wgpluck2\",\n \"wguide1\",\n \"wguide2\",\n \"wiiconnect\",\n \"wiidata\",\n \"wiirange\",\n \"wiisend\",\n \"window\",\n \"wrap\",\n \"writescratch\",\n \"wterrain\",\n \"xadsr\",\n \"xin\",\n \"xout\",\n \"xscanmap\",\n \"xscans\",\n \"xscansmap\",\n \"xscanu\",\n \"xtratim\",\n \"xyscale\",\n \"zacl\",\n \"zakinit\",\n \"zamod\",\n \"zar\",\n \"zarg\",\n \"zaw\",\n \"zawm\",\n \"zdf_1pole\",\n \"zdf_1pole_mode\",\n \"zdf_2pole\",\n \"zdf_2pole_mode\",\n \"zdf_ladder\",\n \"zfilter2\",\n \"zir\",\n \"ziw\",\n \"ziwm\",\n \"zkcl\",\n \"zkmod\",\n \"zkr\",\n \"zkw\",\n \"zkwm\"\n ];\n var deprecatedOpcodes = [\n \"array\",\n \"bformdec\",\n \"bformenc\",\n \"copy2ftab\",\n \"copy2ttab\",\n \"hrtfer\",\n \"ktableseg\",\n \"lentab\",\n \"maxtab\",\n \"mintab\",\n \"pop\",\n \"pop_f\",\n \"push\",\n \"push_f\",\n \"scalet\",\n \"sndload\",\n \"soundout\",\n \"soundouts\",\n \"specaddm\",\n \"specdiff\",\n \"specdisp\",\n \"specfilt\",\n \"spechist\",\n \"specptrk\",\n \"specscal\",\n \"specsum\",\n \"spectrum\",\n \"stack\",\n \"sumtab\",\n \"tabgen\",\n \"tabmap\",\n \"tabmap_i\",\n \"tabslice\",\n \"tb0\",\n \"tb0_init\",\n \"tb1\",\n \"tb10\",\n \"tb10_init\",\n \"tb11\",\n \"tb11_init\",\n \"tb12\",\n \"tb12_init\",\n \"tb13\",\n \"tb13_init\",\n \"tb14\",\n \"tb14_init\",\n \"tb15\",\n \"tb15_init\",\n \"tb1_init\",\n \"tb2\",\n \"tb2_init\",\n \"tb3\",\n \"tb3_init\",\n \"tb4\",\n \"tb4_init\",\n \"tb5\",\n \"tb5_init\",\n \"tb6\",\n \"tb6_init\",\n \"tb7\",\n \"tb7_init\",\n \"tb8\",\n \"tb8_init\",\n \"tb9\",\n \"tb9_init\",\n \"vbap16\",\n \"vbap4\",\n \"vbap4move\",\n \"vbap8\",\n \"vbap8move\",\n \"xyin\"\n ];\n\n opcodes = lang.arrayToMap(opcodes);\n deprecatedOpcodes = lang.arrayToMap(deprecatedOpcodes);\n\n this.lineContinuations = [\n {\n token : \"constant.character.escape.line-continuation.csound\",\n regex : /\\\\$/\n }, this.pushRule({\n token : \"constant.character.escape.line-continuation.csound\",\n regex : /\\\\/,\n next : \"line continuation\"\n })\n ];\n\n this.comments.push(this.lineContinuations);\n\n this.quotedStringContents.push(\n this.lineContinuations,\n {\n token : \"invalid.illegal\",\n regex : /[^\"\\\\]*$/\n }\n );\n\n var start = this.$rules.start;\n start.splice(1, 0, {\n token : [\"text.csound\", \"entity.name.label.csound\", \"entity.punctuation.label.csound\", \"text.csound\"],\n regex : /^([ \\t]*)(\\w+)(:)([ \\t]+|$)/\n });\n start.push(\n this.pushRule({\n token : \"keyword.function.csound\",\n regex : /\\binstr\\b/,\n next : \"instrument numbers and identifiers\"\n }), this.pushRule({\n token : \"keyword.function.csound\",\n regex : /\\bopcode\\b/,\n next : \"after opcode keyword\"\n }), {\n token : \"keyword.other.csound\",\n regex : /\\bend(?:in|op)\\b/\n },\n\n {\n token : \"variable.language.csound\",\n regex : /\\b(?:0dbfs|A4|k(?:r|smps)|nchnls(?:_i)?|sr)\\b/\n },\n\n this.numbers,\n\n {\n token : \"keyword.operator.csound\",\n regex : \"\\\\+=|-=|\\\\*=|/=|<<|>>|<=|>=|==|!=|&&|\\\\|\\\\||[~¬]|[=!+\\\\-*/^%&|<>#?:]\"\n },\n\n this.pushRule({\n token : \"punctuation.definition.string.begin.csound\",\n regex : /\"/,\n next : \"quoted string\"\n }), this.pushRule({\n token : \"punctuation.definition.string.begin.csound\",\n regex : /{{/,\n next : \"braced string\"\n }),\n\n {\n token : \"keyword.control.csound\",\n regex : /\\b(?:do|else(?:if)?|end(?:if|until)|fi|i(?:f|then)|kthen|od|r(?:ir)?eturn|then|until|while)\\b/\n },\n\n this.pushRule({\n token : \"keyword.control.csound\",\n regex : /\\b[ik]?goto\\b/,\n next : \"goto before label\"\n }), this.pushRule({\n token : \"keyword.control.csound\",\n regex : /\\b(?:r(?:einit|igoto)|tigoto)\\b/,\n next : \"goto before label\"\n }), this.pushRule({\n token : \"keyword.control.csound\",\n regex : /\\bc(?:g|in?|k|nk?)goto\\b/,\n next : [\"goto before label\", \"goto before argument\"]\n }), this.pushRule({\n token : \"keyword.control.csound\",\n regex : /\\btimout\\b/,\n next : [\"goto before label\", \"goto before argument\", \"goto before argument\"]\n }), this.pushRule({\n token : \"keyword.control.csound\",\n regex : /\\bloop_[gl][et]\\b/,\n next : [\"goto before label\", \"goto before argument\", \"goto before argument\", \"goto before argument\"]\n }),\n\n this.pushRule({\n token : \"support.function.csound\",\n regex : /\\b(?:readscore|scoreline(?:_i)?)\\b/,\n next : \"Csound score opcode\"\n }), this.pushRule({\n token : \"support.function.csound\",\n regex : /\\bpyl?run[it]?\\b(?!$)/,\n next : \"Python opcode\"\n }), this.pushRule({\n token : \"support.function.csound\",\n regex : /\\blua_(?:exec|opdef)\\b(?!$)/,\n next : \"Lua opcode\"\n }),\n\n {\n token : \"support.variable.csound\",\n regex : /\\bp\\d+\\b/\n }, {\n regex : /\\b([A-Z_a-z]\\w*)(?:(:)([A-Za-z]))?\\b/, onMatch: function(value, currentState, stack, line) {\n var tokens = value.split(this.splitRegex);\n var name = tokens[1];\n var type;\n if (opcodes.hasOwnProperty(name))\n type = \"support.function.csound\";\n else if (deprecatedOpcodes.hasOwnProperty(name))\n type = \"invalid.deprecated.csound\";\n if (type) {\n if (tokens[2]) {\n return [\n {type: type, value: name},\n {type: \"punctuation.type-annotation.csound\", value: tokens[2]},\n {type: \"type-annotation.storage.type.csound\", value: tokens[3]}\n ];\n }\n return type;\n }\n return \"text.csound\";\n }\n }\n );\n\n this.$rules[\"macro parameter value list\"].splice(2, 0, {\n token : \"punctuation.definition.string.begin.csound\",\n regex : /{{/,\n next : \"macro parameter value braced string\"\n });\n\n this.addRules({\n \"macro parameter value braced string\": [\n {\n token : \"constant.character.escape.csound\",\n regex : /\\\\[#'()]/\n }, {\n token : \"invalid.illegal.csound.csound\",\n regex : /[#'()]/\n }, {\n token : \"punctuation.definition.string.end.csound\",\n regex : /}}/,\n next : \"macro parameter value list\"\n }, {\n defaultToken: \"string.braced.csound\"\n }\n ],\n\n \"instrument numbers and identifiers\": [\n this.comments,\n {\n token : \"entity.name.function.csound\",\n regex : /\\d+|[A-Z_a-z]\\w*/\n }, this.popRule({\n token : \"empty\",\n regex : /$/\n })\n ],\n\n \"after opcode keyword\": [\n this.comments,\n this.popRule({\n token : \"empty\",\n regex : /$/\n }), this.popRule({\n token : \"entity.name.function.opcode.csound\",\n regex : /[A-Z_a-z]\\w*/,\n next : \"opcode type signatures\"\n })\n ],\n \"opcode type signatures\": [\n this.comments,\n this.popRule({\n token : \"empty\",\n regex : /$/\n }), {\n token : \"storage.type.csound\",\n regex : /\\b(?:0|[afijkKoOpPStV\\[\\]]+)/\n }\n ],\n\n \"quoted string\": [\n this.popRule({\n token : \"punctuation.definition.string.end.csound\",\n regex : /\"/\n }),\n this.quotedStringContents,\n {\n defaultToken: \"string.quoted.csound\"\n }\n ],\n \"braced string\": [\n this.popRule({\n token : \"punctuation.definition.string.end.csound\",\n regex : /}}/\n }),\n this.bracedStringContents,\n {\n defaultToken: \"string.braced.csound\"\n }\n ],\n\n \"goto before argument\": [\n this.popRule({\n token : \"text.csound\",\n regex : /,/\n }),\n start\n ],\n \"goto before label\": [\n {\n token : \"text.csound\",\n regex : /\\s+/\n },\n this.comments,\n this.popRule({\n token : \"entity.name.label.csound\",\n regex : /\\w+/\n }), this.popRule({\n token : \"empty\",\n regex : /(?!\\w)/\n })\n ],\n\n \"Csound score opcode\": [\n this.comments,\n {\n token : \"punctuation.definition.string.begin.csound\",\n regex : /{{/,\n next : \"csound-score-start\"\n }, this.popRule({\n token : \"empty\",\n regex : /$/\n })\n ],\n\n \"Python opcode\": [\n this.comments,\n {\n token : \"punctuation.definition.string.begin.csound\",\n regex : /{{/,\n next : \"python-start\"\n }, this.popRule({\n token : \"empty\",\n regex : /$/\n })\n ],\n\n \"Lua opcode\": [\n this.comments,\n {\n token : \"punctuation.definition.string.begin.csound\",\n regex : /{{/,\n next : \"lua-start\"\n }, this.popRule({\n token : \"empty\",\n regex : /$/\n })\n ],\n\n \"line continuation\": [\n this.popRule({\n token : \"empty\",\n regex : /$/\n }),\n this.semicolonComments,\n {\n token : \"invalid.illegal.csound\",\n regex : /\\S.*/\n }\n ]\n });\n\n var rules = [\n this.popRule({\n token : \"punctuation.definition.string.end.csound\",\n regex : /}}/\n })\n ];\n this.embedRules(CsoundScoreHighlightRules, \"csound-score-\", rules);\n this.embedRules(PythonHighlightRules, \"python-\", rules);\n this.embedRules(LuaHighlightRules, \"lua-\", rules);\n\n this.normalizeRules();\n};\n\noop.inherits(CsoundOrchestraHighlightRules, CsoundPreprocessorHighlightRules);\n\nexports.CsoundOrchestraHighlightRules = CsoundOrchestraHighlightRules;\n});\n\nace.define(\"ace/mode/css_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar supportType = exports.supportType = \"align-content|align-items|align-self|all|animation|animation-delay|animation-direction|animation-duration|animation-fill-mode|animation-iteration-count|animation-name|animation-play-state|animation-timing-function|backface-visibility|background|background-attachment|background-blend-mode|background-clip|background-color|background-image|background-origin|background-position|background-repeat|background-size|border|border-bottom|border-bottom-color|border-bottom-left-radius|border-bottom-right-radius|border-bottom-style|border-bottom-width|border-collapse|border-color|border-image|border-image-outset|border-image-repeat|border-image-slice|border-image-source|border-image-width|border-left|border-left-color|border-left-style|border-left-width|border-radius|border-right|border-right-color|border-right-style|border-right-width|border-spacing|border-style|border-top|border-top-color|border-top-left-radius|border-top-right-radius|border-top-style|border-top-width|border-width|bottom|box-shadow|box-sizing|caption-side|clear|clip|color|column-count|column-fill|column-gap|column-rule|column-rule-color|column-rule-style|column-rule-width|column-span|column-width|columns|content|counter-increment|counter-reset|cursor|direction|display|empty-cells|filter|flex|flex-basis|flex-direction|flex-flow|flex-grow|flex-shrink|flex-wrap|float|font|font-family|font-size|font-size-adjust|font-stretch|font-style|font-variant|font-weight|hanging-punctuation|height|justify-content|left|letter-spacing|line-height|list-style|list-style-image|list-style-position|list-style-type|margin|margin-bottom|margin-left|margin-right|margin-top|max-height|max-width|max-zoom|min-height|min-width|min-zoom|nav-down|nav-index|nav-left|nav-right|nav-up|opacity|order|outline|outline-color|outline-offset|outline-style|outline-width|overflow|overflow-x|overflow-y|padding|padding-bottom|padding-left|padding-right|padding-top|page-break-after|page-break-before|page-break-inside|perspective|perspective-origin|position|quotes|resize|right|tab-size|table-layout|text-align|text-align-last|text-decoration|text-decoration-color|text-decoration-line|text-decoration-style|text-indent|text-justify|text-overflow|text-shadow|text-transform|top|transform|transform-origin|transform-style|transition|transition-delay|transition-duration|transition-property|transition-timing-function|unicode-bidi|user-select|user-zoom|vertical-align|visibility|white-space|width|word-break|word-spacing|word-wrap|z-index\";\nvar supportFunction = exports.supportFunction = \"rgb|rgba|url|attr|counter|counters\";\nvar supportConstant = exports.supportConstant = \"absolute|after-edge|after|all-scroll|all|alphabetic|always|antialiased|armenian|auto|avoid-column|avoid-page|avoid|balance|baseline|before-edge|before|below|bidi-override|block-line-height|block|bold|bolder|border-box|both|bottom|box|break-all|break-word|capitalize|caps-height|caption|center|central|char|circle|cjk-ideographic|clone|close-quote|col-resize|collapse|column|consider-shifts|contain|content-box|cover|crosshair|cubic-bezier|dashed|decimal-leading-zero|decimal|default|disabled|disc|disregard-shifts|distribute-all-lines|distribute-letter|distribute-space|distribute|dotted|double|e-resize|ease-in|ease-in-out|ease-out|ease|ellipsis|end|exclude-ruby|fill|fixed|georgian|glyphs|grid-height|groove|hand|hanging|hebrew|help|hidden|hiragana-iroha|hiragana|horizontal|icon|ideograph-alpha|ideograph-numeric|ideograph-parenthesis|ideograph-space|ideographic|inactive|include-ruby|inherit|initial|inline-block|inline-box|inline-line-height|inline-table|inline|inset|inside|inter-ideograph|inter-word|invert|italic|justify|katakana-iroha|katakana|keep-all|last|left|lighter|line-edge|line-through|line|linear|list-item|local|loose|lower-alpha|lower-greek|lower-latin|lower-roman|lowercase|lr-tb|ltr|mathematical|max-height|max-size|medium|menu|message-box|middle|move|n-resize|ne-resize|newspaper|no-change|no-close-quote|no-drop|no-open-quote|no-repeat|none|normal|not-allowed|nowrap|nw-resize|oblique|open-quote|outset|outside|overline|padding-box|page|pointer|pre-line|pre-wrap|pre|preserve-3d|progress|relative|repeat-x|repeat-y|repeat|replaced|reset-size|ridge|right|round|row-resize|rtl|s-resize|scroll|se-resize|separate|slice|small-caps|small-caption|solid|space|square|start|static|status-bar|step-end|step-start|steps|stretch|strict|sub|super|sw-resize|table-caption|table-cell|table-column-group|table-column|table-footer-group|table-header-group|table-row-group|table-row|table|tb-rl|text-after-edge|text-before-edge|text-bottom|text-size|text-top|text|thick|thin|transparent|underline|upper-alpha|upper-latin|upper-roman|uppercase|use-script|vertical-ideographic|vertical-text|visible|w-resize|wait|whitespace|z-index|zero|zoom\";\nvar supportConstantColor = exports.supportConstantColor = \"aliceblue|antiquewhite|aqua|aquamarine|azure|beige|bisque|black|blanchedalmond|blue|blueviolet|brown|burlywood|cadetblue|chartreuse|chocolate|coral|cornflowerblue|cornsilk|crimson|cyan|darkblue|darkcyan|darkgoldenrod|darkgray|darkgreen|darkgrey|darkkhaki|darkmagenta|darkolivegreen|darkorange|darkorchid|darkred|darksalmon|darkseagreen|darkslateblue|darkslategray|darkslategrey|darkturquoise|darkviolet|deeppink|deepskyblue|dimgray|dimgrey|dodgerblue|firebrick|floralwhite|forestgreen|fuchsia|gainsboro|ghostwhite|gold|goldenrod|gray|green|greenyellow|grey|honeydew|hotpink|indianred|indigo|ivory|khaki|lavender|lavenderblush|lawngreen|lemonchiffon|lightblue|lightcoral|lightcyan|lightgoldenrodyellow|lightgray|lightgreen|lightgrey|lightpink|lightsalmon|lightseagreen|lightskyblue|lightslategray|lightslategrey|lightsteelblue|lightyellow|lime|limegreen|linen|magenta|maroon|mediumaquamarine|mediumblue|mediumorchid|mediumpurple|mediumseagreen|mediumslateblue|mediumspringgreen|mediumturquoise|mediumvioletred|midnightblue|mintcream|mistyrose|moccasin|navajowhite|navy|oldlace|olive|olivedrab|orange|orangered|orchid|palegoldenrod|palegreen|paleturquoise|palevioletred|papayawhip|peachpuff|peru|pink|plum|powderblue|purple|rebeccapurple|red|rosybrown|royalblue|saddlebrown|salmon|sandybrown|seagreen|seashell|sienna|silver|skyblue|slateblue|slategray|slategrey|snow|springgreen|steelblue|tan|teal|thistle|tomato|turquoise|violet|wheat|white|whitesmoke|yellow|yellowgreen\";\nvar supportConstantFonts = exports.supportConstantFonts = \"arial|century|comic|courier|cursive|fantasy|garamond|georgia|helvetica|impact|lucida|symbol|system|tahoma|times|trebuchet|utopia|verdana|webdings|sans-serif|serif|monospace\";\n\nvar numRe = exports.numRe = \"\\\\-?(?:(?:[0-9]+(?:\\\\.[0-9]+)?)|(?:\\\\.[0-9]+))\";\nvar pseudoElements = exports.pseudoElements = \"(\\\\:+)\\\\b(after|before|first-letter|first-line|moz-selection|selection)\\\\b\";\nvar pseudoClasses = exports.pseudoClasses = \"(:)\\\\b(active|checked|disabled|empty|enabled|first-child|first-of-type|focus|hover|indeterminate|invalid|last-child|last-of-type|link|not|nth-child|nth-last-child|nth-last-of-type|nth-of-type|only-child|only-of-type|required|root|target|valid|visited)\\\\b\";\n\nvar CssHighlightRules = function() {\n\n var keywordMapper = this.createKeywordMapper({\n \"support.function\": supportFunction,\n \"support.constant\": supportConstant,\n \"support.type\": supportType,\n \"support.constant.color\": supportConstantColor,\n \"support.constant.fonts\": supportConstantFonts\n }, \"text\", true);\n\n this.$rules = {\n \"start\" : [{\n include : [\"strings\", \"url\", \"comments\"]\n }, {\n token: \"paren.lparen\",\n regex: \"\\\\{\",\n next: \"ruleset\"\n }, {\n token: \"paren.rparen\",\n regex: \"\\\\}\"\n }, {\n token: \"string\",\n regex: \"@(?!viewport)\",\n next: \"media\"\n }, {\n token: \"keyword\",\n regex: \"#[a-z0-9-_]+\"\n }, {\n token: \"keyword\",\n regex: \"%\"\n }, {\n token: \"variable\",\n regex: \"\\\\.[a-z0-9-_]+\"\n }, {\n token: \"string\",\n regex: \":[a-z0-9-_]+\"\n }, {\n token : \"constant.numeric\",\n regex : numRe\n }, {\n token: \"constant\",\n regex: \"[a-z0-9-_]+\"\n }, {\n caseInsensitive: true\n }],\n\n \"media\": [{\n include : [\"strings\", \"url\", \"comments\"]\n }, {\n token: \"paren.lparen\",\n regex: \"\\\\{\",\n next: \"start\"\n }, {\n token: \"paren.rparen\",\n regex: \"\\\\}\",\n next: \"start\"\n }, {\n token: \"string\",\n regex: \";\",\n next: \"start\"\n }, {\n token: \"keyword\",\n regex: \"(?:media|supports|document|charset|import|namespace|media|supports|document\"\n + \"|page|font|keyframes|viewport|counter-style|font-feature-values\"\n + \"|swash|ornaments|annotation|stylistic|styleset|character-variant)\"\n }],\n\n \"comments\" : [{\n token: \"comment\", // multi line comment\n regex: \"\\\\/\\\\*\",\n push: [{\n token : \"comment\",\n regex : \"\\\\*\\\\/\",\n next : \"pop\"\n }, {\n defaultToken : \"comment\"\n }]\n }],\n\n \"ruleset\" : [{\n regex : \"-(webkit|ms|moz|o)-\",\n token : \"text\"\n }, {\n token : \"punctuation.operator\",\n regex : \"[:;]\"\n }, {\n token : \"paren.rparen\",\n regex : \"\\\\}\",\n next : \"start\"\n }, {\n include : [\"strings\", \"url\", \"comments\"]\n }, {\n token : [\"constant.numeric\", \"keyword\"],\n regex : \"(\" + numRe + \")(ch|cm|deg|em|ex|fr|gd|grad|Hz|in|kHz|mm|ms|pc|pt|px|rad|rem|s|turn|vh|vmax|vmin|vm|vw|%)\"\n }, {\n token : \"constant.numeric\",\n regex : numRe\n }, {\n token : \"constant.numeric\", // hex6 color\n regex : \"#[a-f0-9]{6}\"\n }, {\n token : \"constant.numeric\", // hex3 color\n regex : \"#[a-f0-9]{3}\"\n }, {\n token : [\"punctuation\", \"entity.other.attribute-name.pseudo-element.css\"],\n regex : pseudoElements\n }, {\n token : [\"punctuation\", \"entity.other.attribute-name.pseudo-class.css\"],\n regex : pseudoClasses\n }, {\n include: \"url\"\n }, {\n token : keywordMapper,\n regex : \"\\\\-?[a-zA-Z_][a-zA-Z0-9_\\\\-]*\"\n }, {\n caseInsensitive: true\n }],\n\n url: [{\n token : \"support.function\",\n regex : \"(?:url(:?-prefix)?|domain|regexp)\\\\(\",\n push: [{\n token : \"support.function\",\n regex : \"\\\\)\",\n next : \"pop\"\n }, {\n defaultToken: \"string\"\n }]\n }],\n\n strings: [{\n token : \"string.start\",\n regex : \"'\",\n push : [{\n token : \"string.end\",\n regex : \"'|$\",\n next: \"pop\"\n }, {\n include : \"escapes\"\n }, {\n token : \"constant.language.escape\",\n regex : /\\\\$/,\n consumeLineEnd: true\n }, {\n defaultToken: \"string\"\n }]\n }, {\n token : \"string.start\",\n regex : '\"',\n push : [{\n token : \"string.end\",\n regex : '\"|$',\n next: \"pop\"\n }, {\n include : \"escapes\"\n }, {\n token : \"constant.language.escape\",\n regex : /\\\\$/,\n consumeLineEnd: true\n }, {\n defaultToken: \"string\"\n }]\n }],\n escapes: [{\n token : \"constant.language.escape\",\n regex : /\\\\([a-fA-F\\d]{1,6}|[^a-fA-F\\d])/\n }]\n\n };\n\n this.normalizeRules();\n};\n\noop.inherits(CssHighlightRules, TextHighlightRules);\n\nexports.CssHighlightRules = CssHighlightRules;\n\n});\n\nace.define(\"ace/mode/doc_comment_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar DocCommentHighlightRules = function() {\n this.$rules = {\n \"start\" : [ {\n token : \"comment.doc.tag\",\n regex : \"@[\\\\w\\\\d_]+\" // TODO: fix email addresses\n }, \n DocCommentHighlightRules.getTagRule(),\n {\n defaultToken : \"comment.doc\",\n caseInsensitive: true\n }]\n };\n};\n\noop.inherits(DocCommentHighlightRules, TextHighlightRules);\n\nDocCommentHighlightRules.getTagRule = function(start) {\n return {\n token : \"comment.doc.tag.storage.type\",\n regex : \"\\\\b(?:TODO|FIXME|XXX|HACK)\\\\b\"\n };\n};\n\nDocCommentHighlightRules.getStartRule = function(start) {\n return {\n token : \"comment.doc\", // doc comment\n regex : \"\\\\/\\\\*(?=\\\\*)\",\n next : start\n };\n};\n\nDocCommentHighlightRules.getEndRule = function (start) {\n return {\n token : \"comment.doc\", // closing comment\n regex : \"\\\\*\\\\/\",\n next : start\n };\n};\n\n\nexports.DocCommentHighlightRules = DocCommentHighlightRules;\n\n});\n\nace.define(\"ace/mode/javascript_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/doc_comment_highlight_rules\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar DocCommentHighlightRules = require(\"./doc_comment_highlight_rules\").DocCommentHighlightRules;\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar identifierRe = \"[a-zA-Z\\\\$_\\u00a1-\\uffff][a-zA-Z\\\\d\\\\$_\\u00a1-\\uffff]*\";\n\nvar JavaScriptHighlightRules = function(options) {\n var keywordMapper = this.createKeywordMapper({\n \"variable.language\":\n \"Array|Boolean|Date|Function|Iterator|Number|Object|RegExp|String|Proxy|\" + // Constructors\n \"Namespace|QName|XML|XMLList|\" + // E4X\n \"ArrayBuffer|Float32Array|Float64Array|Int16Array|Int32Array|Int8Array|\" +\n \"Uint16Array|Uint32Array|Uint8Array|Uint8ClampedArray|\" +\n \"Error|EvalError|InternalError|RangeError|ReferenceError|StopIteration|\" + // Errors\n \"SyntaxError|TypeError|URIError|\" +\n \"decodeURI|decodeURIComponent|encodeURI|encodeURIComponent|eval|isFinite|\" + // Non-constructor functions\n \"isNaN|parseFloat|parseInt|\" +\n \"JSON|Math|\" + // Other\n \"this|arguments|prototype|window|document\" , // Pseudo\n \"keyword\":\n \"const|yield|import|get|set|async|await|\" +\n \"break|case|catch|continue|default|delete|do|else|finally|for|function|\" +\n \"if|in|of|instanceof|new|return|switch|throw|try|typeof|let|var|while|with|debugger|\" +\n \"__parent__|__count__|escape|unescape|with|__proto__|\" +\n \"class|enum|extends|super|export|implements|private|public|interface|package|protected|static\",\n \"storage.type\":\n \"const|let|var|function\",\n \"constant.language\":\n \"null|Infinity|NaN|undefined\",\n \"support.function\":\n \"alert\",\n \"constant.language.boolean\": \"true|false\"\n }, \"identifier\");\n var kwBeforeRe = \"case|do|else|finally|in|instanceof|return|throw|try|typeof|yield|void\";\n\n var escapedRe = \"\\\\\\\\(?:x[0-9a-fA-F]{2}|\" + // hex\n \"u[0-9a-fA-F]{4}|\" + // unicode\n \"u{[0-9a-fA-F]{1,6}}|\" + // es6 unicode\n \"[0-2][0-7]{0,2}|\" + // oct\n \"3[0-7][0-7]?|\" + // oct\n \"[4-7][0-7]?|\" + //oct\n \".)\";\n\n this.$rules = {\n \"no_regex\" : [\n DocCommentHighlightRules.getStartRule(\"doc-start\"),\n comments(\"no_regex\"),\n {\n token : \"string\",\n regex : \"'(?=.)\",\n next : \"qstring\"\n }, {\n token : \"string\",\n regex : '\"(?=.)',\n next : \"qqstring\"\n }, {\n token : \"constant.numeric\", // hexadecimal, octal and binary\n regex : /0(?:[xX][0-9a-fA-F]+|[oO][0-7]+|[bB][01]+)\\b/\n }, {\n token : \"constant.numeric\", // decimal integers and floats\n regex : /(?:\\d\\d*(?:\\.\\d*)?|\\.\\d+)(?:[eE][+-]?\\d+\\b)?/\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"support.function\",\n \"punctuation.operator\", \"entity.name.function\", \"text\",\"keyword.operator\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(prototype)(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"entity.name.function\", \"text\", \"keyword.operator\", \"text\", \"storage.type\",\n \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\",\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s+)(\\\\w+)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(function)(\\\\s+)(\" + identifierRe + \")(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"entity.name.function\", \"text\", \"punctuation.operator\",\n \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\s*)(:)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"text\", \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(:)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : \"keyword\",\n regex : \"from(?=\\\\s*('|\\\"))\"\n }, {\n token : \"keyword\",\n regex : \"(?:\" + kwBeforeRe + \")\\\\b\",\n next : \"start\"\n }, {\n token : [\"support.constant\"],\n regex : /that\\b/\n }, {\n token : [\"storage.type\", \"punctuation.operator\", \"support.function.firebug\"],\n regex : /(console)(\\.)(warn|info|log|error|time|trace|timeEnd|assert)\\b/\n }, {\n token : keywordMapper,\n regex : identifierRe\n }, {\n token : \"punctuation.operator\",\n regex : /[.](?![.])/,\n next : \"property\"\n }, {\n token : \"storage.type\",\n regex : /=>/,\n next : \"start\"\n }, {\n token : \"keyword.operator\",\n regex : /--|\\+\\+|\\.{3}|===|==|=|!=|!==|<+=?|>+=?|!|&&|\\|\\||\\?:|[!$%&*+\\-~\\/^]=?/,\n next : \"start\"\n }, {\n token : \"punctuation.operator\",\n regex : /[?:,;.]/,\n next : \"start\"\n }, {\n token : \"paren.lparen\",\n regex : /[\\[({]/,\n next : \"start\"\n }, {\n token : \"paren.rparen\",\n regex : /[\\])}]/\n }, {\n token: \"comment\",\n regex: /^#!.*$/\n }\n ],\n property: [{\n token : \"text\",\n regex : \"\\\\s+\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\",\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(?:(\\\\s+)(\\\\w+))?(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : \"punctuation.operator\",\n regex : /[.](?![.])/\n }, {\n token : \"support.function\",\n regex : /(s(?:h(?:ift|ow(?:Mod(?:elessDialog|alDialog)|Help))|croll(?:X|By(?:Pages|Lines)?|Y|To)?|t(?:op|rike)|i(?:n|zeToContent|debar|gnText)|ort|u(?:p|b(?:str(?:ing)?)?)|pli(?:ce|t)|e(?:nd|t(?:Re(?:sizable|questHeader)|M(?:i(?:nutes|lliseconds)|onth)|Seconds|Ho(?:tKeys|urs)|Year|Cursor|Time(?:out)?|Interval|ZOptions|Date|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Date|FullYear)|FullYear|Active)|arch)|qrt|lice|avePreferences|mall)|h(?:ome|andleEvent)|navigate|c(?:har(?:CodeAt|At)|o(?:s|n(?:cat|textual|firm)|mpile)|eil|lear(?:Timeout|Interval)?|a(?:ptureEvents|ll)|reate(?:StyleSheet|Popup|EventObject))|t(?:o(?:GMTString|S(?:tring|ource)|U(?:TCString|pperCase)|Lo(?:caleString|werCase))|est|a(?:n|int(?:Enabled)?))|i(?:s(?:NaN|Finite)|ndexOf|talics)|d(?:isableExternalCapture|ump|etachEvent)|u(?:n(?:shift|taint|escape|watch)|pdateCommands)|j(?:oin|avaEnabled)|p(?:o(?:p|w)|ush|lugins.refresh|a(?:ddings|rse(?:Int|Float)?)|r(?:int|ompt|eference))|e(?:scape|nableExternalCapture|val|lementFromPoint|x(?:p|ec(?:Script|Command)?))|valueOf|UTC|queryCommand(?:State|Indeterm|Enabled|Value)|f(?:i(?:nd|le(?:ModifiedDate|Size|CreatedDate|UpdatedDate)|xed)|o(?:nt(?:size|color)|rward)|loor|romCharCode)|watch|l(?:ink|o(?:ad|g)|astIndexOf)|a(?:sin|nchor|cos|t(?:tachEvent|ob|an(?:2)?)|pply|lert|b(?:s|ort))|r(?:ou(?:nd|teEvents)|e(?:size(?:By|To)|calc|turnValue|place|verse|l(?:oad|ease(?:Capture|Events)))|andom)|g(?:o|et(?:ResponseHeader|M(?:i(?:nutes|lliseconds)|onth)|Se(?:conds|lection)|Hours|Year|Time(?:zoneOffset)?|Da(?:y|te)|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Da(?:y|te)|FullYear)|FullYear|A(?:ttention|llResponseHeaders)))|m(?:in|ove(?:B(?:y|elow)|To(?:Absolute)?|Above)|ergeAttributes|a(?:tch|rgins|x))|b(?:toa|ig|o(?:ld|rderWidths)|link|ack))\\b(?=\\()/\n }, {\n token : \"support.function.dom\",\n regex : /(s(?:ub(?:stringData|mit)|plitText|e(?:t(?:NamedItem|Attribute(?:Node)?)|lect))|has(?:ChildNodes|Feature)|namedItem|c(?:l(?:ick|o(?:se|neNode))|reate(?:C(?:omment|DATASection|aption)|T(?:Head|extNode|Foot)|DocumentFragment|ProcessingInstruction|E(?:ntityReference|lement)|Attribute))|tabIndex|i(?:nsert(?:Row|Before|Cell|Data)|tem)|open|delete(?:Row|C(?:ell|aption)|T(?:Head|Foot)|Data)|focus|write(?:ln)?|a(?:dd|ppend(?:Child|Data))|re(?:set|place(?:Child|Data)|move(?:NamedItem|Child|Attribute(?:Node)?)?)|get(?:NamedItem|Element(?:sBy(?:Name|TagName|ClassName)|ById)|Attribute(?:Node)?)|blur)\\b(?=\\()/\n }, {\n token : \"support.constant\",\n regex : /(s(?:ystemLanguage|cr(?:ipts|ollbars|een(?:X|Y|Top|Left))|t(?:yle(?:Sheets)?|atus(?:Text|bar)?)|ibling(?:Below|Above)|ource|uffixes|e(?:curity(?:Policy)?|l(?:ection|f)))|h(?:istory|ost(?:name)?|as(?:h|Focus))|y|X(?:MLDocument|SLDocument)|n(?:ext|ame(?:space(?:s|URI)|Prop))|M(?:IN_VALUE|AX_VALUE)|c(?:haracterSet|o(?:n(?:structor|trollers)|okieEnabled|lorDepth|mp(?:onents|lete))|urrent|puClass|l(?:i(?:p(?:boardData)?|entInformation)|osed|asses)|alle(?:e|r)|rypto)|t(?:o(?:olbar|p)|ext(?:Transform|Indent|Decoration|Align)|ags)|SQRT(?:1_2|2)|i(?:n(?:ner(?:Height|Width)|put)|ds|gnoreCase)|zIndex|o(?:scpu|n(?:readystatechange|Line)|uter(?:Height|Width)|p(?:sProfile|ener)|ffscreenBuffering)|NEGATIVE_INFINITY|d(?:i(?:splay|alog(?:Height|Top|Width|Left|Arguments)|rectories)|e(?:scription|fault(?:Status|Ch(?:ecked|arset)|View)))|u(?:ser(?:Profile|Language|Agent)|n(?:iqueID|defined)|pdateInterval)|_content|p(?:ixelDepth|ort|ersonalbar|kcs11|l(?:ugins|atform)|a(?:thname|dding(?:Right|Bottom|Top|Left)|rent(?:Window|Layer)?|ge(?:X(?:Offset)?|Y(?:Offset)?))|r(?:o(?:to(?:col|type)|duct(?:Sub)?|mpter)|e(?:vious|fix)))|e(?:n(?:coding|abledPlugin)|x(?:ternal|pando)|mbeds)|v(?:isibility|endor(?:Sub)?|Linkcolor)|URLUnencoded|P(?:I|OSITIVE_INFINITY)|f(?:ilename|o(?:nt(?:Size|Family|Weight)|rmName)|rame(?:s|Element)|gColor)|E|whiteSpace|l(?:i(?:stStyleType|n(?:eHeight|kColor))|o(?:ca(?:tion(?:bar)?|lName)|wsrc)|e(?:ngth|ft(?:Context)?)|a(?:st(?:M(?:odified|atch)|Index|Paren)|yer(?:s|X)|nguage))|a(?:pp(?:MinorVersion|Name|Co(?:deName|re)|Version)|vail(?:Height|Top|Width|Left)|ll|r(?:ity|guments)|Linkcolor|bove)|r(?:ight(?:Context)?|e(?:sponse(?:XML|Text)|adyState))|global|x|m(?:imeTypes|ultiline|enubar|argin(?:Right|Bottom|Top|Left))|L(?:N(?:10|2)|OG(?:10E|2E))|b(?:o(?:ttom|rder(?:Width|RightWidth|BottomWidth|Style|Color|TopWidth|LeftWidth))|ufferDepth|elow|ackground(?:Color|Image)))\\b/\n }, {\n token : \"identifier\",\n regex : identifierRe\n }, {\n regex: \"\",\n token: \"empty\",\n next: \"no_regex\"\n }\n ],\n \"start\": [\n DocCommentHighlightRules.getStartRule(\"doc-start\"),\n comments(\"start\"),\n {\n token: \"string.regexp\",\n regex: \"\\\\/\",\n next: \"regex\"\n }, {\n token : \"text\",\n regex : \"\\\\s+|^$\",\n next : \"start\"\n }, {\n token: \"empty\",\n regex: \"\",\n next: \"no_regex\"\n }\n ],\n \"regex\": [\n {\n token: \"regexp.keyword.operator\",\n regex: \"\\\\\\\\(?:u[\\\\da-fA-F]{4}|x[\\\\da-fA-F]{2}|.)\"\n }, {\n token: \"string.regexp\",\n regex: \"/[sxngimy]*\",\n next: \"no_regex\"\n }, {\n token : \"invalid\",\n regex: /\\{\\d+\\b,?\\d*\\}[+*]|[+*$^?][+*]|[$^][?]|\\?{3,}/\n }, {\n token : \"constant.language.escape\",\n regex: /\\(\\?[:=!]|\\)|\\{\\d+\\b,?\\d*\\}|[+*]\\?|[()$^+*?.]/\n }, {\n token : \"constant.language.delimiter\",\n regex: /\\|/\n }, {\n token: \"constant.language.escape\",\n regex: /\\[\\^?/,\n next: \"regex_character_class\"\n }, {\n token: \"empty\",\n regex: \"$\",\n next: \"no_regex\"\n }, {\n defaultToken: \"string.regexp\"\n }\n ],\n \"regex_character_class\": [\n {\n token: \"regexp.charclass.keyword.operator\",\n regex: \"\\\\\\\\(?:u[\\\\da-fA-F]{4}|x[\\\\da-fA-F]{2}|.)\"\n }, {\n token: \"constant.language.escape\",\n regex: \"]\",\n next: \"regex\"\n }, {\n token: \"constant.language.escape\",\n regex: \"-\"\n }, {\n token: \"empty\",\n regex: \"$\",\n next: \"no_regex\"\n }, {\n defaultToken: \"string.regexp.charachterclass\"\n }\n ],\n \"function_arguments\": [\n {\n token: \"variable.parameter\",\n regex: identifierRe\n }, {\n token: \"punctuation.operator\",\n regex: \"[, ]+\"\n }, {\n token: \"punctuation.operator\",\n regex: \"$\"\n }, {\n token: \"empty\",\n regex: \"\",\n next: \"no_regex\"\n }\n ],\n \"qqstring\" : [\n {\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"string\",\n regex : \"\\\\\\\\$\",\n consumeLineEnd : true\n }, {\n token : \"string\",\n regex : '\"|$',\n next : \"no_regex\"\n }, {\n defaultToken: \"string\"\n }\n ],\n \"qstring\" : [\n {\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"string\",\n regex : \"\\\\\\\\$\",\n consumeLineEnd : true\n }, {\n token : \"string\",\n regex : \"'|$\",\n next : \"no_regex\"\n }, {\n defaultToken: \"string\"\n }\n ]\n };\n\n\n if (!options || !options.noES6) {\n this.$rules.no_regex.unshift({\n regex: \"[{}]\", onMatch: function(val, state, stack) {\n this.next = val == \"{\" ? this.nextState : \"\";\n if (val == \"{\" && stack.length) {\n stack.unshift(\"start\", state);\n }\n else if (val == \"}\" && stack.length) {\n stack.shift();\n this.next = stack.shift();\n if (this.next.indexOf(\"string\") != -1 || this.next.indexOf(\"jsx\") != -1)\n return \"paren.quasi.end\";\n }\n return val == \"{\" ? \"paren.lparen\" : \"paren.rparen\";\n },\n nextState: \"start\"\n }, {\n token : \"string.quasi.start\",\n regex : /`/,\n push : [{\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"paren.quasi.start\",\n regex : /\\${/,\n push : \"start\"\n }, {\n token : \"string.quasi.end\",\n regex : /`/,\n next : \"pop\"\n }, {\n defaultToken: \"string.quasi\"\n }]\n });\n\n if (!options || options.jsx != false)\n JSX.call(this);\n }\n\n this.embedRules(DocCommentHighlightRules, \"doc-\",\n [ DocCommentHighlightRules.getEndRule(\"no_regex\") ]);\n\n this.normalizeRules();\n};\n\noop.inherits(JavaScriptHighlightRules, TextHighlightRules);\n\nfunction JSX() {\n var tagRegex = identifierRe.replace(\"\\\\d\", \"\\\\d\\\\-\");\n var jsxTag = {\n onMatch : function(val, state, stack) {\n var offset = val.charAt(1) == \"/\" ? 2 : 1;\n if (offset == 1) {\n if (state != this.nextState)\n stack.unshift(this.next, this.nextState, 0);\n else\n stack.unshift(this.next);\n stack[2]++;\n } else if (offset == 2) {\n if (state == this.nextState) {\n stack[1]--;\n if (!stack[1] || stack[1] < 0) {\n stack.shift();\n stack.shift();\n }\n }\n }\n return [{\n type: \"meta.tag.punctuation.\" + (offset == 1 ? \"\" : \"end-\") + \"tag-open.xml\",\n value: val.slice(0, offset)\n }, {\n type: \"meta.tag.tag-name.xml\",\n value: val.substr(offset)\n }];\n },\n regex : \"\",\n onMatch : function(value, currentState, stack) {\n if (currentState == stack[0])\n stack.shift();\n if (value.length == 2) {\n if (stack[0] == this.nextState)\n stack[1]--;\n if (!stack[1] || stack[1] < 0) {\n stack.splice(0, 2);\n }\n }\n this.next = stack[0] || \"start\";\n return [{type: this.token, value: value}];\n },\n nextState: \"jsx\"\n },\n jsxJsRule,\n comments(\"jsxAttributes\"),\n {\n token : \"entity.other.attribute-name.xml\",\n regex : tagRegex\n }, {\n token : \"keyword.operator.attribute-equals.xml\",\n regex : \"=\"\n }, {\n token : \"text.tag-whitespace.xml\",\n regex : \"\\\\s+\"\n }, {\n token : \"string.attribute-value.xml\",\n regex : \"'\",\n stateName : \"jsx_attr_q\",\n push : [\n {token : \"string.attribute-value.xml\", regex: \"'\", next: \"pop\"},\n {include : \"reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n }, {\n token : \"string.attribute-value.xml\",\n regex : '\"',\n stateName : \"jsx_attr_qq\",\n push : [\n {token : \"string.attribute-value.xml\", regex: '\"', next: \"pop\"},\n {include : \"reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n },\n jsxTag\n ];\n this.$rules.reference = [{\n token : \"constant.language.escape.reference.xml\",\n regex : \"(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\\\.-]+;)\"\n }];\n}\n\nfunction comments(next) {\n return [\n {\n token : \"comment\", // multi line comment\n regex : /\\/\\*/,\n next: [\n DocCommentHighlightRules.getTagRule(),\n {token : \"comment\", regex : \"\\\\*\\\\/\", next : next || \"pop\"},\n {defaultToken : \"comment\", caseInsensitive: true}\n ]\n }, {\n token : \"comment\",\n regex : \"\\\\/\\\\/\",\n next: [\n DocCommentHighlightRules.getTagRule(),\n {token : \"comment\", regex : \"$|^\", next : next || \"pop\"},\n {defaultToken : \"comment\", caseInsensitive: true}\n ]\n }\n ];\n}\nexports.JavaScriptHighlightRules = JavaScriptHighlightRules;\n});\n\nace.define(\"ace/mode/xml_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar XmlHighlightRules = function(normalize) {\n var tagRegex = \"[_:a-zA-Z\\xc0-\\uffff][-_:.a-zA-Z0-9\\xc0-\\uffff]*\";\n\n this.$rules = {\n start : [\n {token : \"string.cdata.xml\", regex : \"<\\\\!\\\\[CDATA\\\\[\", next : \"cdata\"},\n {\n token : [\"punctuation.instruction.xml\", \"keyword.instruction.xml\"],\n regex : \"(<\\\\?)(\" + tagRegex + \")\", next : \"processing_instruction\"\n },\n {token : \"comment.start.xml\", regex : \"<\\\\!--\", next : \"comment\"},\n {\n token : [\"xml-pe.doctype.xml\", \"xml-pe.doctype.xml\"],\n regex : \"(<\\\\!)(DOCTYPE)(?=[\\\\s])\", next : \"doctype\", caseInsensitive: true\n },\n {include : \"tag\"},\n {token : \"text.end-tag-open.xml\", regex: \"\",\n next : \"start\"\n }],\n\n doctype : [\n {include : \"whitespace\"},\n {include : \"string\"},\n {token : \"xml-pe.doctype.xml\", regex : \">\", next : \"start\"},\n {token : \"xml-pe.xml\", regex : \"[-_a-zA-Z0-9:]+\"},\n {token : \"punctuation.int-subset\", regex : \"\\\\[\", push : \"int_subset\"}\n ],\n\n int_subset : [{\n token : \"text.xml\",\n regex : \"\\\\s+\"\n }, {\n token: \"punctuation.int-subset.xml\",\n regex: \"]\",\n next: \"pop\"\n }, {\n token : [\"punctuation.markup-decl.xml\", \"keyword.markup-decl.xml\"],\n regex : \"(<\\\\!)(\" + tagRegex + \")\",\n push : [{\n token : \"text\",\n regex : \"\\\\s+\"\n },\n {\n token : \"punctuation.markup-decl.xml\",\n regex : \">\",\n next : \"pop\"\n },\n {include : \"string\"}]\n }],\n\n cdata : [\n {token : \"string.cdata.xml\", regex : \"\\\\]\\\\]>\", next : \"start\"},\n {token : \"text.xml\", regex : \"\\\\s+\"},\n {token : \"text.xml\", regex : \"(?:[^\\\\]]|\\\\](?!\\\\]>))+\"}\n ],\n\n comment : [\n {token : \"comment.end.xml\", regex : \"-->\", next : \"start\"},\n {defaultToken : \"comment.xml\"}\n ],\n\n reference : [{\n token : \"constant.language.escape.reference.xml\",\n regex : \"(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\\\.-]+;)\"\n }],\n\n attr_reference : [{\n token : \"constant.language.escape.reference.attribute-value.xml\",\n regex : \"(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\\\.-]+;)\"\n }],\n\n tag : [{\n token : [\"meta.tag.punctuation.tag-open.xml\", \"meta.tag.punctuation.end-tag-open.xml\", \"meta.tag.tag-name.xml\"],\n regex : \"(?:(<)|(\", next : \"start\"}\n ]\n }],\n\n tag_whitespace : [\n {token : \"text.tag-whitespace.xml\", regex : \"\\\\s+\"}\n ],\n whitespace : [\n {token : \"text.whitespace.xml\", regex : \"\\\\s+\"}\n ],\n string: [{\n token : \"string.xml\",\n regex : \"'\",\n push : [\n {token : \"string.xml\", regex: \"'\", next: \"pop\"},\n {defaultToken : \"string.xml\"}\n ]\n }, {\n token : \"string.xml\",\n regex : '\"',\n push : [\n {token : \"string.xml\", regex: '\"', next: \"pop\"},\n {defaultToken : \"string.xml\"}\n ]\n }],\n\n attributes: [{\n token : \"entity.other.attribute-name.xml\",\n regex : tagRegex\n }, {\n token : \"keyword.operator.attribute-equals.xml\",\n regex : \"=\"\n }, {\n include: \"tag_whitespace\"\n }, {\n include: \"attribute_value\"\n }],\n\n attribute_value: [{\n token : \"string.attribute-value.xml\",\n regex : \"'\",\n push : [\n {token : \"string.attribute-value.xml\", regex: \"'\", next: \"pop\"},\n {include : \"attr_reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n }, {\n token : \"string.attribute-value.xml\",\n regex : '\"',\n push : [\n {token : \"string.attribute-value.xml\", regex: '\"', next: \"pop\"},\n {include : \"attr_reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n }]\n };\n\n if (this.constructor === XmlHighlightRules)\n this.normalizeRules();\n};\n\n\n(function() {\n\n this.embedTagRules = function(HighlightRules, prefix, tag){\n this.$rules.tag.unshift({\n token : [\"meta.tag.punctuation.tag-open.xml\", \"meta.tag.\" + tag + \".tag-name.xml\"],\n regex : \"(<)(\" + tag + \"(?=\\\\s|>|$))\",\n next: [\n {include : \"attributes\"},\n {token : \"meta.tag.punctuation.tag-close.xml\", regex : \"/?>\", next : prefix + \"start\"}\n ]\n });\n\n this.$rules[tag + \"-end\"] = [\n {include : \"attributes\"},\n {token : \"meta.tag.punctuation.tag-close.xml\", regex : \"/?>\", next: \"start\",\n onMatch : function(value, currentState, stack) {\n stack.splice(0);\n return this.token;\n }}\n ];\n\n this.embedRules(HighlightRules, prefix, [{\n token: [\"meta.tag.punctuation.end-tag-open.xml\", \"meta.tag.\" + tag + \".tag-name.xml\"],\n regex : \"(|$))\",\n next: tag + \"-end\"\n }, {\n token: \"string.cdata.xml\",\n regex : \"<\\\\!\\\\[CDATA\\\\[\"\n }, {\n token: \"string.cdata.xml\",\n regex : \"\\\\]\\\\]>\"\n }]);\n };\n\n}).call(TextHighlightRules.prototype);\n\noop.inherits(XmlHighlightRules, TextHighlightRules);\n\nexports.XmlHighlightRules = XmlHighlightRules;\n});\n\nace.define(\"ace/mode/html_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/css_highlight_rules\",\"ace/mode/javascript_highlight_rules\",\"ace/mode/xml_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar CssHighlightRules = require(\"./css_highlight_rules\").CssHighlightRules;\nvar JavaScriptHighlightRules = require(\"./javascript_highlight_rules\").JavaScriptHighlightRules;\nvar XmlHighlightRules = require(\"./xml_highlight_rules\").XmlHighlightRules;\n\nvar tagMap = lang.createMap({\n a : 'anchor',\n button \t : 'form',\n form : 'form',\n img : 'image',\n input : 'form',\n label : 'form',\n option : 'form',\n script : 'script',\n select : 'form',\n textarea : 'form',\n style : 'style',\n table : 'table',\n tbody : 'table',\n td : 'table',\n tfoot : 'table',\n th : 'table',\n tr : 'table'\n});\n\nvar HtmlHighlightRules = function() {\n XmlHighlightRules.call(this);\n\n this.addRules({\n attributes: [{\n include : \"tag_whitespace\"\n }, {\n token : \"entity.other.attribute-name.xml\",\n regex : \"[-_a-zA-Z0-9:.]+\"\n }, {\n token : \"keyword.operator.attribute-equals.xml\",\n regex : \"=\",\n push : [{\n include: \"tag_whitespace\"\n }, {\n token : \"string.unquoted.attribute-value.html\",\n regex : \"[^<>='\\\"`\\\\s]+\",\n next : \"pop\"\n }, {\n token : \"empty\",\n regex : \"\",\n next : \"pop\"\n }]\n }, {\n include : \"attribute_value\"\n }],\n tag: [{\n token : function(start, tag) {\n var group = tagMap[tag];\n return [\"meta.tag.punctuation.\" + (start == \"<\" ? \"\" : \"end-\") + \"tag-open.xml\",\n \"meta.tag\" + (group ? \".\" + group : \"\") + \".tag-name.xml\"];\n },\n regex : \"(\", next : \"start\"}\n ]\n });\n\n this.embedTagRules(CssHighlightRules, \"css-\", \"style\");\n this.embedTagRules(new JavaScriptHighlightRules({jsx: false}).getRules(), \"js-\", \"script\");\n\n if (this.constructor === HtmlHighlightRules)\n this.normalizeRules();\n};\n\noop.inherits(HtmlHighlightRules, XmlHighlightRules);\n\nexports.HtmlHighlightRules = HtmlHighlightRules;\n});\n\nace.define(\"ace/mode/csound_document_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/csound_orchestra_highlight_rules\",\"ace/mode/csound_score_highlight_rules\",\"ace/mode/html_highlight_rules\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\n\nvar CsoundOrchestraHighlightRules = require(\"./csound_orchestra_highlight_rules\").CsoundOrchestraHighlightRules;\nvar CsoundScoreHighlightRules = require(\"./csound_score_highlight_rules\").CsoundScoreHighlightRules;\nvar HtmlHighlightRules = require(\"./html_highlight_rules\").HtmlHighlightRules;\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar CsoundDocumentHighlightRules = function() {\n\n this.$rules = {\n \"start\": [\n {\n token : [\"meta.tag.punctuation.tag-open.csound-document\", \"entity.name.tag.begin.csound-document\", \"meta.tag.punctuation.tag-close.csound-document\"],\n regex : /(<)(CsoundSynthesi[sz]er)(>)/,\n next : \"synthesizer\"\n },\n {defaultToken : \"text.csound-document\"}\n ],\n\n \"synthesizer\": [\n {\n token : [\"meta.tag.punctuation.end-tag-open.csound-document\", \"entity.name.tag.begin.csound-document\", \"meta.tag.punctuation.tag-close.csound-document\"],\n regex : \"()\",\n next : \"start\"\n }, {\n token : [\"meta.tag.punctuation.tag-open.csound-document\", \"entity.name.tag.begin.csound-document\", \"meta.tag.punctuation.tag-close.csound-document\"],\n regex : \"(<)(CsInstruments)(>)\",\n next : \"csound-start\"\n }, {\n token : [\"meta.tag.punctuation.tag-open.csound-document\", \"entity.name.tag.begin.csound-document\", \"meta.tag.punctuation.tag-close.csound-document\"],\n regex : \"(<)(CsScore)(>)\",\n next : \"csound-score-start\"\n }, {\n token : [\"meta.tag.punctuation.tag-open.csound-document\", \"entity.name.tag.begin.csound-document\", \"meta.tag.punctuation.tag-close.csound-document\"],\n regex : \"(<)([Hh][Tt][Mm][Ll])(>)\",\n next : \"html-start\"\n }\n ]\n };\n\n this.embedRules(CsoundOrchestraHighlightRules, \"csound-\", [{\n token : [\"meta.tag.punctuation.end-tag-open.csound-document\", \"entity.name.tag.begin.csound-document\", \"meta.tag.punctuation.tag-close.csound-document\"],\n regex : \"()\",\n next : \"synthesizer\"\n }]);\n this.embedRules(CsoundScoreHighlightRules, \"csound-score-\", [{\n token : [\"meta.tag.punctuation.end-tag-open.csound-document\", \"entity.name.tag.begin.csound-document\", \"meta.tag.punctuation.tag-close.csound-document\"],\n regex : \"()\",\n next : \"synthesizer\"\n }]);\n this.embedRules(HtmlHighlightRules, \"html-\", [{\n token : [\"meta.tag.punctuation.end-tag-open.csound-document\", \"entity.name.tag.begin.csound-document\", \"meta.tag.punctuation.tag-close.csound-document\"],\n regex : \"()\",\n next : \"synthesizer\"\n }]);\n\n this.normalizeRules();\n};\n\noop.inherits(CsoundDocumentHighlightRules, TextHighlightRules);\n\nexports.CsoundDocumentHighlightRules = CsoundDocumentHighlightRules;\n});\n\nace.define(\"ace/mode/csound_document\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/csound_document_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar CsoundDocumentHighlightRules = require(\"./csound_document_highlight_rules\").CsoundDocumentHighlightRules;\n\nvar Mode = function() {\n this.HighlightRules = CsoundDocumentHighlightRules;\n};\noop.inherits(Mode, TextMode);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/csound_document\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file2j := &embedded.EmbeddedFile{ Filename: "38ec644b492741cce581c3fe271917d6.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/typescript\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText =undefined;\nexports.scope = \"typescript\";\n\n}); (function() {\n ace.require([\"ace/snippets/typescript\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file2k := &embedded.EmbeddedFile{ Filename: "3a43d2dfaedc9f430cebdd2e2d9a5b78.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/ext/whitespace\",[\"require\",\"exports\",\"module\",\"ace/lib/lang\"], function(require, exports, module) {\n\"use strict\";\n\nvar lang = require(\"../lib/lang\");\nexports.$detectIndentation = function(lines, fallback) {\n var stats = [];\n var changes = [];\n var tabIndents = 0;\n var prevSpaces = 0;\n var max = Math.min(lines.length, 1000);\n for (var i = 0; i < max; i++) {\n var line = lines[i];\n if (!/^\\s*[^*+\\-\\s]/.test(line))\n continue;\n\n if (line[0] == \"\\t\") {\n tabIndents++;\n prevSpaces = -Number.MAX_VALUE;\n } else {\n var spaces = line.match(/^ */)[0].length;\n if (spaces && line[spaces] != \"\\t\") {\n var diff = spaces - prevSpaces;\n if (diff > 0 && !(prevSpaces%diff) && !(spaces%diff))\n changes[diff] = (changes[diff] || 0) + 1;\n \n stats[spaces] = (stats[spaces] || 0) + 1;\n }\n prevSpaces = spaces;\n }\n while (i < max && line[line.length - 1] == \"\\\\\")\n line = lines[i++];\n }\n \n function getScore(indent) {\n var score = 0;\n for (var i = indent; i < stats.length; i += indent)\n score += stats[i] || 0;\n return score;\n }\n\n var changesTotal = changes.reduce(function(a,b){return a+b;}, 0);\n\n var first = {score: 0, length: 0};\n var spaceIndents = 0;\n for (var i = 1; i < 12; i++) {\n var score = getScore(i);\n if (i == 1) {\n spaceIndents = score;\n score = stats[1] ? 0.9 : 0.8;\n if (!stats.length)\n score = 0;\n } else\n score /= spaceIndents;\n\n if (changes[i])\n score += changes[i] / changesTotal;\n\n if (score > first.score)\n first = {score: score, length: i};\n }\n\n if (first.score && first.score > 1.4)\n var tabLength = first.length;\n\n if (tabIndents > spaceIndents + 1) {\n if (tabLength == 1 || spaceIndents < tabIndents / 4 || first.score < 1.8)\n tabLength = undefined;\n return {ch: \"\\t\", length: tabLength};\n }\n if (spaceIndents > tabIndents + 1)\n return {ch: \" \", length: tabLength};\n};\n\nexports.detectIndentation = function(session) {\n var lines = session.getLines(0, 1000);\n var indent = exports.$detectIndentation(lines) || {};\n\n if (indent.ch)\n session.setUseSoftTabs(indent.ch == \" \");\n\n if (indent.length)\n session.setTabSize(indent.length);\n return indent;\n};\nexports.trimTrailingSpace = function(session, options) {\n var doc = session.getDocument();\n var lines = doc.getAllLines();\n \n var min = options && options.trimEmpty ? -1 : 0;\n var cursors = [], ci = -1;\n if (options && options.keepCursorPosition) {\n if (session.selection.rangeCount) {\n session.selection.rangeList.ranges.forEach(function(x, i, ranges) {\n var next = ranges[i + 1];\n if (next && next.cursor.row == x.cursor.row)\n return;\n cursors.push(x.cursor);\n });\n } else {\n cursors.push(session.selection.getCursor());\n }\n ci = 0;\n }\n var cursorRow = cursors[ci] && cursors[ci].row;\n\n for (var i = 0, l=lines.length; i < l; i++) {\n var line = lines[i];\n var index = line.search(/\\s+$/);\n\n if (i == cursorRow) {\n if (index < cursors[ci].column && index > min)\n index = cursors[ci].column;\n ci++;\n cursorRow = cursors[ci] ? cursors[ci].row : -1;\n }\n\n if (index > min)\n doc.removeInLine(i, index, line.length);\n }\n};\n\nexports.convertIndentation = function(session, ch, len) {\n var oldCh = session.getTabString()[0];\n var oldLen = session.getTabSize();\n if (!len) len = oldLen;\n if (!ch) ch = oldCh;\n\n var tab = ch == \"\\t\" ? ch: lang.stringRepeat(ch, len);\n\n var doc = session.doc;\n var lines = doc.getAllLines();\n\n var cache = {};\n var spaceCache = {};\n for (var i = 0, l=lines.length; i < l; i++) {\n var line = lines[i];\n var match = line.match(/^\\s*/)[0];\n if (match) {\n var w = session.$getStringScreenWidth(match)[0];\n var tabCount = Math.floor(w/oldLen);\n var reminder = w%oldLen;\n var toInsert = cache[tabCount] || (cache[tabCount] = lang.stringRepeat(tab, tabCount));\n toInsert += spaceCache[reminder] || (spaceCache[reminder] = lang.stringRepeat(\" \", reminder));\n\n if (toInsert != match) {\n doc.removeInLine(i, 0, match.length);\n doc.insertInLine({row: i, column: 0}, toInsert);\n }\n }\n }\n session.setTabSize(len);\n session.setUseSoftTabs(ch == \" \");\n};\n\nexports.$parseStringArg = function(text) {\n var indent = {};\n if (/t/.test(text))\n indent.ch = \"\\t\";\n else if (/s/.test(text))\n indent.ch = \" \";\n var m = text.match(/\\d+/);\n if (m)\n indent.length = parseInt(m[0], 10);\n return indent;\n};\n\nexports.$parseArg = function(arg) {\n if (!arg)\n return {};\n if (typeof arg == \"string\")\n return exports.$parseStringArg(arg);\n if (typeof arg.text == \"string\")\n return exports.$parseStringArg(arg.text);\n return arg;\n};\n\nexports.commands = [{\n name: \"detectIndentation\",\n exec: function(editor) {\n exports.detectIndentation(editor.session);\n }\n}, {\n name: \"trimTrailingSpace\",\n exec: function(editor, args) {\n exports.trimTrailingSpace(editor.session, args);\n }\n}, {\n name: \"convertIndentation\",\n exec: function(editor, arg) {\n var indent = exports.$parseArg(arg);\n exports.convertIndentation(editor.session, indent.ch, indent.length);\n }\n}, {\n name: \"setIndentation\",\n exec: function(editor, arg) {\n var indent = exports.$parseArg(arg);\n indent.length && editor.session.setTabSize(indent.length);\n indent.ch && editor.session.setUseSoftTabs(indent.ch == \" \");\n }\n}];\n\n}); (function() {\n ace.require([\"ace/ext/whitespace\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file2l := &embedded.EmbeddedFile{ Filename: "3a969f15f742add3d383e55d0ceb3d25.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/powershell_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar PowershellHighlightRules = function() {\n var keywords = (\n \"begin|break|catch|continue|data|do|dynamicparam|else|elseif|end|exit|filter|\" +\n \"finally|for|foreach|from|function|if|in|inlinescript|hidden|parallel|param|\" +\n \"process|return|sequence|switch|throw|trap|try|until|while|workflow\"\n );\n var builtinFunctions = (\n \"Get-AppBackgroundTask|Start-AppBackgroundTask|Unregister-AppBackgroundTask|Disable-AppBackgroundTaskDiagnosticLog|Enable-AppBackgroundTaskDiagnosticLog|Set-AppBackgroundTaskResourcePolicy|\" +\n \"Get-AppLockerFileInformation|Get-AppLockerPolicy|New-AppLockerPolicy|Set-AppLockerPolicy|Test-AppLockerPolicy|\" +\n \"Get-AppxLastError|Get-AppxLog|Add-AppxPackage|Add-AppxVolume|Dismount-AppxVolume|Get-AppxDefaultVolume|Get-AppxPackage|Get-AppxPackageManifest|Get-AppxVolume|Mount-AppxVolume|Move-AppxPackage|Remove-AppxPackage|Remove-AppxVolume|Set-AppxDefaultVolume|\" +\n \"Clear-AssignedAccess|Get-AssignedAccess|Set-AssignedAccess|\" +\n \"Add-BitLockerKeyProtector|Backup-BitLockerKeyProtector|Clear-BitLockerAutoUnlock|Disable-BitLocker|Disable-BitLockerAutoUnlock|Enable-BitLocker|Enable-BitLockerAutoUnlock|Get-BitLockerVolume|Lock-BitLocker|Remove-BitLockerKeyProtector|Resume-BitLocker|Suspend-BitLocker|Unlock-BitLocker|\" +\n \"Add-BitsFile|Complete-BitsTransfer|Get-BitsTransfer|Remove-BitsTransfer|Resume-BitsTransfer|Set-BitsTransfer|Start-BitsTransfer|Suspend-BitsTransfer|\" +\n \"Add-BCDataCacheExtension|Clear-BCCache|Disable-BC|Disable-BCDowngrading|Disable-BCServeOnBattery|Enable-BCDistributed|Enable-BCDowngrading|Enable-BCHostedClient|Enable-BCHostedServer|Enable-BCLocal|Enable-BCServeOnBattery|Export-BCCachePackage|Export-BCSecretKey|Get-BCClientConfiguration|Get-BCContentServerConfiguration|Get-BCDataCache|Get-BCDataCacheExtension|Get-BCHashCache|Get-BCHostedCacheServerConfiguration|Get-BCNetworkConfiguration|Get-BCStatus|Import-BCCachePackage|Import-BCSecretKey|Publish-BCFileContent|Publish-BCWebContent|Remove-BCDataCacheExtension|Reset-BC|Set-BCAuthentication|Set-BCCache|Set-BCDataCacheEntryMaxAge|Set-BCMinSMBLatency|Set-BCSecretKey|\" +\n \"Export-BinaryMiLog|Get-CimAssociatedInstance|Get-CimClass|Get-CimInstance|Get-CimSession|Import-BinaryMiLog|Invoke-CimMethod|New-CimInstance|New-CimSession|New-CimSessionOption|Register-CimIndicationEvent|Remove-CimInstance|Remove-CimSession|Set-CimInstance|\" +\n \"ConvertFrom-CIPolicy|\" +\n \"Add-SignerRule|Edit-CIPolicyRule|Get-CIPolicy|Get-CIPolicyInfo|Get-SystemDriver|Merge-CIPolicy|New-CIPolicy|New-CIPolicyRule|Remove-CIPolicyRule|Set-CIPolicyVersion|Set-HVCIOptions|Set-RuleOption|\" +\n \"Add-MpPreference|Get-MpComputerStatus|Get-MpPreference|Get-MpThreat|Get-MpThreatCatalog|Get-MpThreatDetection|Remove-MpPreference|Remove-MpThreat|Set-MpPreference|Start-MpScan|Start-MpWDOScan|Update-MpSignature|\" +\n \"Disable-DAManualEntryPointSelection|Enable-DAManualEntryPointSelection|Get-DAClientExperienceConfiguration|Get-DAEntryPointTableItem|New-DAEntryPointTableItem|Remove-DAEntryPointTableItem|Rename-DAEntryPointTableItem|Reset-DAClientExperienceConfiguration|Reset-DAEntryPointTableItem|Set-DAClientExperienceConfiguration|Set-DAEntryPointTableItem|\" +\n \"Add-ProvisionedAppxPackage|Apply-WindowsUnattend|Get-ProvisionedAppxPackage|Remove-ProvisionedAppxPackage|Add-AppxProvisionedPackage|Add-WindowsCapability|Add-WindowsDriver|Add-WindowsImage|Add-WindowsPackage|Clear-WindowsCorruptMountPoint|Disable-WindowsOptionalFeature|Dismount-WindowsImage|Enable-WindowsOptionalFeature|Expand-WindowsCustomDataImage|Expand-WindowsImage|Export-WindowsDriver|Export-WindowsImage|Get-AppxProvisionedPackage|Get-WIMBootEntry|Get-WindowsCapability|Get-WindowsDriver|Get-WindowsEdition|Get-WindowsImage|Get-WindowsImageContent|Get-WindowsOptionalFeature|Get-WindowsPackage|Mount-WindowsImage|New-WindowsCustomImage|New-WindowsImage|Optimize-WindowsImage|Remove-AppxProvisionedPackage|Remove-WindowsCapability|Remove-WindowsDriver|Remove-WindowsImage|Remove-WindowsPackage|Repair-WindowsImage|Save-WindowsImage|Set-AppXProvisionedDataFile|Set-WindowsEdition|Set-WindowsProductKey|Split-WindowsImage|Update-WIMBootEntry|Use-WindowsUnattend|\" +\n \"Add-DnsClientNrptRule|Clear-DnsClientCache|Get-DnsClient|Get-DnsClientCache|Get-DnsClientGlobalSetting|Get-DnsClientNrptGlobal|Get-DnsClientNrptPolicy|Get-DnsClientNrptRule|Get-DnsClientServerAddress|Register-DnsClient|Remove-DnsClientNrptRule|Set-DnsClient|Set-DnsClientGlobalSetting|Set-DnsClientNrptGlobal|Set-DnsClientNrptRule|Set-DnsClientServerAddress|Resolve-DnsName|\" +\n \"Add-EtwTraceProvider|Get-AutologgerConfig|Get-EtwTraceProvider|Get-EtwTraceSession|New-AutologgerConfig|New-EtwTraceSession|Remove-AutologgerConfig|Remove-EtwTraceProvider|Remove-EtwTraceSession|Send-EtwTraceSession|Set-AutologgerConfig|Set-EtwTraceProvider|Set-EtwTraceSession|\" +\n \"Get-WinAcceptLanguageFromLanguageListOptOut|Get-WinCultureFromLanguageListOptOut|Get-WinDefaultInputMethodOverride|Get-WinHomeLocation|Get-WinLanguageBarOption|Get-WinSystemLocale|Get-WinUILanguageOverride|Get-WinUserLanguageList|New-WinUserLanguageList|Set-Culture|Set-WinAcceptLanguageFromLanguageListOptOut|Set-WinCultureFromLanguageListOptOut|Set-WinDefaultInputMethodOverride|Set-WinHomeLocation|Set-WinLanguageBarOption|Set-WinSystemLocale|Set-WinUILanguageOverride|Set-WinUserLanguageList|\" +\n \"Connect-IscsiTarget|Disconnect-IscsiTarget|Get-IscsiConnection|Get-IscsiSession|Get-IscsiTarget|Get-IscsiTargetPortal|New-IscsiTargetPortal|Register-IscsiSession|Remove-IscsiTargetPortal|Set-IscsiChapSecret|Unregister-IscsiSession|Update-IscsiTarget|Update-IscsiTargetPortal|\" +\n \"Get-IseSnippet|Import-IseSnippet|New-IseSnippet|\" +\n \"Add-KdsRootKey|Clear-KdsCache|Get-KdsConfiguration|Get-KdsRootKey|Set-KdsConfiguration|Test-KdsRootKey|\" +\n \"Compress-Archive|Expand-Archive|\" +\n \"Export-Counter|Get-Counter|Get-WinEvent|Import-Counter|New-WinEvent|\" +\n \"Start-Transcript|Stop-Transcript|\" +\n \"Add-Computer|Add-Content|Checkpoint-Computer|Clear-Content|Clear-EventLog|Clear-Item|Clear-ItemProperty|Clear-RecycleBin|Complete-Transaction|Convert-Path|Copy-Item|Copy-ItemProperty|Debug-Process|Disable-ComputerRestore|Enable-ComputerRestore|Get-ChildItem|Get-Clipboard|Get-ComputerRestorePoint|Get-Content|Get-ControlPanelItem|Get-EventLog|Get-HotFix|Get-Item|Get-ItemProperty|Get-ItemPropertyValue|Get-Location|Get-Process|Get-PSDrive|Get-PSProvider|Get-Service|Get-Transaction|Get-WmiObject|Invoke-Item|Invoke-WmiMethod|Join-Path|Limit-EventLog|Move-Item|Move-ItemProperty|New-EventLog|New-Item|New-ItemProperty|New-PSDrive|New-Service|New-WebServiceProxy|Pop-Location|Push-Location|Register-WmiEvent|Remove-Computer|Remove-EventLog|Remove-Item|Remove-ItemProperty|Remove-PSDrive|Remove-WmiObject|Rename-Computer|Rename-Item|Rename-ItemProperty|Reset-ComputerMachinePassword|Resolve-Path|Restart-Computer|Restart-Service|Restore-Computer|Resume-Service|Set-Clipboard|Set-Content|Set-Item|Set-ItemProperty|Set-Location|Set-Service|Set-WmiInstance|Show-ControlPanelItem|Show-EventLog|Split-Path|Start-Process|Start-Service|Start-Transaction|Stop-Computer|Stop-Process|Stop-Service|Suspend-Service|Test-ComputerSecureChannel|Test-Connection|Test-Path|Undo-Transaction|Use-Transaction|Wait-Process|Write-EventLog|\" +\n \"Export-ODataEndpointProxy|\" +\n \"ConvertFrom-SecureString|ConvertTo-SecureString|Get-Acl|Get-AuthenticodeSignature|Get-CmsMessage|Get-Credential|Get-ExecutionPolicy|Get-PfxCertificate|Protect-CmsMessage|Set-Acl|Set-AuthenticodeSignature|Set-ExecutionPolicy|Unprotect-CmsMessage|\" +\n \"ConvertFrom-SddlString|Format-Hex|Get-FileHash|Import-PowerShellDataFile|New-Guid|New-TemporaryFile|Add-Member|Add-Type|Clear-Variable|Compare-Object|ConvertFrom-Csv|ConvertFrom-Json|ConvertFrom-String|ConvertFrom-StringData|Convert-String|ConvertTo-Csv|ConvertTo-Html|ConvertTo-Json|ConvertTo-Xml|Debug-Runspace|Disable-PSBreakpoint|Disable-RunspaceDebug|Enable-PSBreakpoint|Enable-RunspaceDebug|Export-Alias|Export-Clixml|Export-Csv|Export-FormatData|Export-PSSession|Format-Custom|Format-List|Format-Table|Format-Wide|Get-Alias|Get-Culture|Get-Date|Get-Event|Get-EventSubscriber|Get-FormatData|Get-Host|Get-Member|Get-PSBreakpoint|Get-PSCallStack|Get-Random|Get-Runspace|Get-RunspaceDebug|Get-TraceSource|Get-TypeData|Get-UICulture|Get-Unique|Get-Variable|Group-Object|Import-Alias|Import-Clixml|Import-Csv|Import-LocalizedData|Import-PSSession|Invoke-Expression|Invoke-RestMethod|Invoke-WebRequest|Measure-Command|Measure-Object|New-Alias|New-Event|New-Object|New-TimeSpan|New-Variable|Out-File|Out-GridView|Out-Printer|Out-String|Read-Host|Register-EngineEvent|Register-ObjectEvent|Remove-Event|Remove-PSBreakpoint|Remove-TypeData|Remove-Variable|Select-Object|Select-String|Select-Xml|Send-MailMessage|Set-Alias|Set-Date|Set-PSBreakpoint|Set-TraceSource|Set-Variable|Show-Command|Sort-Object|Start-Sleep|Tee-Object|Trace-Command|Unblock-File|Unregister-Event|Update-FormatData|Update-List|Update-TypeData|Wait-Debugger|Wait-Event|Write-Debug|Write-Error|Write-Host|Write-Information|Write-Output|Write-Progress|Write-Verbose|Write-Warning|\" +\n \"Connect-WSMan|Disable-WSManCredSSP|Disconnect-WSMan|Enable-WSManCredSSP|Get-WSManCredSSP|Get-WSManInstance|Invoke-WSManAction|New-WSManInstance|New-WSManSessionOption|Remove-WSManInstance|Set-WSManInstance|Set-WSManQuickConfig|Test-WSMan|\" +\n \"Debug-MMAppPrelaunch|Disable-MMAgent|Enable-MMAgent|Get-MMAgent|Set-MMAgent|\" +\n \"Add-DtcClusterTMMapping|Get-Dtc|Get-DtcAdvancedHostSetting|Get-DtcAdvancedSetting|Get-DtcClusterDefault|Get-DtcClusterTMMapping|Get-DtcDefault|Get-DtcLog|Get-DtcNetworkSetting|Get-DtcTransaction|Get-DtcTransactionsStatistics|Get-DtcTransactionsTraceSession|Get-DtcTransactionsTraceSetting|Install-Dtc|Remove-DtcClusterTMMapping|Reset-DtcLog|Set-DtcAdvancedHostSetting|Set-DtcAdvancedSetting|Set-DtcClusterDefault|Set-DtcClusterTMMapping|Set-DtcDefault|Set-DtcLog|Set-DtcNetworkSetting|Set-DtcTransaction|Set-DtcTransactionsTraceSession|Set-DtcTransactionsTraceSetting|Start-Dtc|Start-DtcTransactionsTraceSession|Stop-Dtc|Stop-DtcTransactionsTraceSession|Test-Dtc|Uninstall-Dtc|Write-DtcTransactionsTraceSession|Complete-DtcDiagnosticTransaction|Join-DtcDiagnosticResourceManager|New-DtcDiagnosticTransaction|Receive-DtcDiagnosticTransaction|Send-DtcDiagnosticTransaction|Start-DtcDiagnosticResourceManager|Stop-DtcDiagnosticResourceManager|Undo-DtcDiagnosticTransaction|\" +\n \"Disable-NetAdapter|Disable-NetAdapterBinding|Disable-NetAdapterChecksumOffload|Disable-NetAdapterEncapsulatedPacketTaskOffload|Disable-NetAdapterIPsecOffload|Disable-NetAdapterLso|Disable-NetAdapterPacketDirect|Disable-NetAdapterPowerManagement|Disable-NetAdapterQos|Disable-NetAdapterRdma|Disable-NetAdapterRsc|Disable-NetAdapterRss|Disable-NetAdapterSriov|Disable-NetAdapterVmq|Enable-NetAdapter|Enable-NetAdapterBinding|Enable-NetAdapterChecksumOffload|Enable-NetAdapterEncapsulatedPacketTaskOffload|Enable-NetAdapterIPsecOffload|Enable-NetAdapterLso|Enable-NetAdapterPacketDirect|Enable-NetAdapterPowerManagement|Enable-NetAdapterQos|Enable-NetAdapterRdma|Enable-NetAdapterRsc|Enable-NetAdapterRss|Enable-NetAdapterSriov|Enable-NetAdapterVmq|Get-NetAdapter|Get-NetAdapterAdvancedProperty|Get-NetAdapterBinding|Get-NetAdapterChecksumOffload|Get-NetAdapterEncapsulatedPacketTaskOffload|Get-NetAdapterHardwareInfo|Get-NetAdapterIPsecOffload|Get-NetAdapterLso|Get-NetAdapterPacketDirect|Get-NetAdapterPowerManagement|Get-NetAdapterQos|Get-NetAdapterRdma|Get-NetAdapterRsc|Get-NetAdapterRss|Get-NetAdapterSriov|Get-NetAdapterSriovVf|Get-NetAdapterStatistics|Get-NetAdapterVmq|Get-NetAdapterVmqQueue|Get-NetAdapterVPort|New-NetAdapterAdvancedProperty|Remove-NetAdapterAdvancedProperty|Rename-NetAdapter|Reset-NetAdapterAdvancedProperty|Restart-NetAdapter|Set-NetAdapter|Set-NetAdapterAdvancedProperty|Set-NetAdapterBinding|Set-NetAdapterChecksumOffload|Set-NetAdapterEncapsulatedPacketTaskOffload|Set-NetAdapterIPsecOffload|Set-NetAdapterLso|Set-NetAdapterPacketDirect|Set-NetAdapterPowerManagement|Set-NetAdapterQos|Set-NetAdapterRdma|Set-NetAdapterRsc|Set-NetAdapterRss|Set-NetAdapterSriov|Set-NetAdapterVmq|\" +\n \"Get-NetConnectionProfile|Set-NetConnectionProfile|\" +\n \"Add-NetEventNetworkAdapter|Add-NetEventPacketCaptureProvider|Add-NetEventProvider|Add-NetEventVmNetworkAdapter|Add-NetEventVmSwitch|Add-NetEventWFPCaptureProvider|Get-NetEventNetworkAdapter|Get-NetEventPacketCaptureProvider|Get-NetEventProvider|Get-NetEventSession|Get-NetEventVmNetworkAdapter|Get-NetEventVmSwitch|Get-NetEventWFPCaptureProvider|New-NetEventSession|Remove-NetEventNetworkAdapter|Remove-NetEventPacketCaptureProvider|Remove-NetEventProvider|Remove-NetEventSession|Remove-NetEventVmNetworkAdapter|Remove-NetEventVmSwitch|Remove-NetEventWFPCaptureProvider|Set-NetEventPacketCaptureProvider|Set-NetEventProvider|Set-NetEventSession|Set-NetEventWFPCaptureProvider|Start-NetEventSession|Stop-NetEventSession|\" +\n \"Add-NetLbfoTeamMember|Add-NetLbfoTeamNic|Get-NetLbfoTeam|Get-NetLbfoTeamMember|Get-NetLbfoTeamNic|New-NetLbfoTeam|Remove-NetLbfoTeam|Remove-NetLbfoTeamMember|Remove-NetLbfoTeamNic|Rename-NetLbfoTeam|Set-NetLbfoTeam|Set-NetLbfoTeamMember|Set-NetLbfoTeamNic|\" +\n \"Add-NetNatExternalAddress|Add-NetNatStaticMapping|Get-NetNat|Get-NetNatExternalAddress|Get-NetNatGlobal|Get-NetNatSession|Get-NetNatStaticMapping|New-NetNat|Remove-NetNat|Remove-NetNatExternalAddress|Remove-NetNatStaticMapping|Set-NetNat|Set-NetNatGlobal|\" +\n \"Get-NetQosPolicy|New-NetQosPolicy|Remove-NetQosPolicy|Set-NetQosPolicy|\" +\n \"Copy-NetFirewallRule|Copy-NetIPsecMainModeCryptoSet|Copy-NetIPsecMainModeRule|Copy-NetIPsecPhase1AuthSet|Copy-NetIPsecPhase2AuthSet|Copy-NetIPsecQuickModeCryptoSet|Copy-NetIPsecRule|Disable-NetFirewallRule|Disable-NetIPsecMainModeRule|Disable-NetIPsecRule|Enable-NetFirewallRule|Enable-NetIPsecMainModeRule|Enable-NetIPsecRule|Find-NetIPsecRule|Get-NetFirewallAddressFilter|Get-NetFirewallApplicationFilter|Get-NetFirewallInterfaceFilter|Get-NetFirewallInterfaceTypeFilter|Get-NetFirewallPortFilter|Get-NetFirewallProfile|Get-NetFirewallRule|Get-NetFirewallSecurityFilter|Get-NetFirewallServiceFilter|Get-NetFirewallSetting|Get-NetIPsecDospSetting|Get-NetIPsecMainModeCryptoSet|Get-NetIPsecMainModeRule|Get-NetIPsecMainModeSA|Get-NetIPsecPhase1AuthSet|Get-NetIPsecPhase2AuthSet|Get-NetIPsecQuickModeCryptoSet|Get-NetIPsecQuickModeSA|Get-NetIPsecRule|New-NetFirewallRule|New-NetIPsecDospSetting|New-NetIPsecMainModeCryptoSet|New-NetIPsecMainModeRule|New-NetIPsecPhase1AuthSet|New-NetIPsecPhase2AuthSet|New-NetIPsecQuickModeCryptoSet|New-NetIPsecRule|Open-NetGPO|Remove-NetFirewallRule|Remove-NetIPsecDospSetting|Remove-NetIPsecMainModeCryptoSet|Remove-NetIPsecMainModeRule|Remove-NetIPsecMainModeSA|Remove-NetIPsecPhase1AuthSet|Remove-NetIPsecPhase2AuthSet|Remove-NetIPsecQuickModeCryptoSet|Remove-NetIPsecQuickModeSA|Remove-NetIPsecRule|Rename-NetFirewallRule|Rename-NetIPsecMainModeCryptoSet|Rename-NetIPsecMainModeRule|Rename-NetIPsecPhase1AuthSet|Rename-NetIPsecPhase2AuthSet|Rename-NetIPsecQuickModeCryptoSet|Rename-NetIPsecRule|Save-NetGPO|Set-NetFirewallAddressFilter|Set-NetFirewallApplicationFilter|Set-NetFirewallInterfaceFilter|Set-NetFirewallInterfaceTypeFilter|Set-NetFirewallPortFilter|Set-NetFirewallProfile|Set-NetFirewallRule|Set-NetFirewallSecurityFilter|Set-NetFirewallServiceFilter|Set-NetFirewallSetting|Set-NetIPsecDospSetting|Set-NetIPsecMainModeCryptoSet|Set-NetIPsecMainModeRule|Set-NetIPsecPhase1AuthSet|Set-NetIPsecPhase2AuthSet|Set-NetIPsecQuickModeCryptoSet|Set-NetIPsecRule|Show-NetFirewallRule|Show-NetIPsecRule|Sync-NetIPsecRule|Update-NetIPsecRule|Get-DAPolicyChange|New-NetIPsecAuthProposal|New-NetIPsecMainModeCryptoProposal|New-NetIPsecQuickModeCryptoProposal|\" +\n \"Add-NetSwitchTeamMember|Get-NetSwitchTeam|Get-NetSwitchTeamMember|New-NetSwitchTeam|Remove-NetSwitchTeam|Remove-NetSwitchTeamMember|Rename-NetSwitchTeam|\" +\n \"Find-NetRoute|Get-NetCompartment|Get-NetIPAddress|Get-NetIPConfiguration|Get-NetIPInterface|Get-NetIPv4Protocol|Get-NetIPv6Protocol|Get-NetNeighbor|Get-NetOffloadGlobalSetting|Get-NetPrefixPolicy|Get-NetRoute|Get-NetTCPConnection|Get-NetTCPSetting|Get-NetTransportFilter|Get-NetUDPEndpoint|Get-NetUDPSetting|New-NetIPAddress|New-NetNeighbor|New-NetRoute|New-NetTransportFilter|Remove-NetIPAddress|Remove-NetNeighbor|Remove-NetRoute|Remove-NetTransportFilter|Set-NetIPAddress|Set-NetIPInterface|Set-NetIPv4Protocol|Set-NetIPv6Protocol|Set-NetNeighbor|Set-NetOffloadGlobalSetting|Set-NetRoute|Set-NetTCPSetting|Set-NetUDPSetting|Test-NetConnection|\" +\n \"Get-DAConnectionStatus|Get-NCSIPolicyConfiguration|Reset-NCSIPolicyConfiguration|Set-NCSIPolicyConfiguration|\" +\n \"Disable-NetworkSwitchEthernetPort|Disable-NetworkSwitchFeature|Disable-NetworkSwitchVlan|Enable-NetworkSwitchEthernetPort|Enable-NetworkSwitchFeature|Enable-NetworkSwitchVlan|Get-NetworkSwitchEthernetPort|Get-NetworkSwitchFeature|Get-NetworkSwitchGlobalData|Get-NetworkSwitchVlan|New-NetworkSwitchVlan|Remove-NetworkSwitchEthernetPortIPAddress|Remove-NetworkSwitchVlan|Restore-NetworkSwitchConfiguration|Save-NetworkSwitchConfiguration|Set-NetworkSwitchEthernetPortIPAddress|Set-NetworkSwitchPortMode|Set-NetworkSwitchPortProperty|Set-NetworkSwitchVlanProperty|\" +\n \"Add-NetIPHttpsCertBinding|Disable-NetDnsTransitionConfiguration|Disable-NetIPHttpsProfile|Disable-NetNatTransitionConfiguration|Enable-NetDnsTransitionConfiguration|Enable-NetIPHttpsProfile|Enable-NetNatTransitionConfiguration|Get-Net6to4Configuration|Get-NetDnsTransitionConfiguration|Get-NetDnsTransitionMonitoring|Get-NetIPHttpsConfiguration|Get-NetIPHttpsState|Get-NetIsatapConfiguration|Get-NetNatTransitionConfiguration|Get-NetNatTransitionMonitoring|Get-NetTeredoConfiguration|Get-NetTeredoState|New-NetIPHttpsConfiguration|New-NetNatTransitionConfiguration|Remove-NetIPHttpsCertBinding|Remove-NetIPHttpsConfiguration|Remove-NetNatTransitionConfiguration|Rename-NetIPHttpsConfiguration|Reset-Net6to4Configuration|Reset-NetDnsTransitionConfiguration|Reset-NetIPHttpsConfiguration|Reset-NetIsatapConfiguration|Reset-NetTeredoConfiguration|Set-Net6to4Configuration|Set-NetDnsTransitionConfiguration|Set-NetIPHttpsConfiguration|Set-NetIsatapConfiguration|Set-NetNatTransitionConfiguration|Set-NetTeredoConfiguration|\" +\n \"Find-Package|Find-PackageProvider|Get-Package|Get-PackageProvider|Get-PackageSource|Import-PackageProvider|Install-Package|Install-PackageProvider|Register-PackageSource|Save-Package|Set-PackageSource|Uninstall-Package|Unregister-PackageSource|\" +\n \"Clear-PcsvDeviceLog|Get-PcsvDevice|Get-PcsvDeviceLog|Restart-PcsvDevice|Set-PcsvDeviceBootConfiguration|Set-PcsvDeviceNetworkConfiguration|Set-PcsvDeviceUserPassword|Start-PcsvDevice|Stop-PcsvDevice|\" +\n \"AfterAll|AfterEach|Assert-MockCalled|Assert-VerifiableMocks|BeforeAll|BeforeEach|Context|Describe|Get-MockDynamicParameters|Get-TestDriveItem|In|InModuleScope|Invoke-Mock|Invoke-Pester|It|Mock|New-Fixture|Set-DynamicParameterVariables|Setup|Should|\" +\n \"Add-CertificateEnrollmentPolicyServer|Export-Certificate|Export-PfxCertificate|Get-Certificate|Get-CertificateAutoEnrollmentPolicy|Get-CertificateEnrollmentPolicyServer|Get-CertificateNotificationTask|Get-PfxData|Import-Certificate|Import-PfxCertificate|New-CertificateNotificationTask|New-SelfSignedCertificate|Remove-CertificateEnrollmentPolicyServer|Remove-CertificateNotificationTask|Set-CertificateAutoEnrollmentPolicy|Switch-Certificate|Test-Certificate|\" +\n \"Disable-PnpDevice|Enable-PnpDevice|Get-PnpDevice|Get-PnpDeviceProperty|\" +\n \"Find-DscResource|Find-Module|Find-Script|Get-InstalledModule|Get-InstalledScript|Get-PSRepository|Install-Module|Install-Script|New-ScriptFileInfo|Publish-Module|Publish-Script|Register-PSRepository|Save-Module|Save-Script|Set-PSRepository|Test-ScriptFileInfo|Uninstall-Module|Uninstall-Script|Unregister-PSRepository|Update-Module|Update-ModuleManifest|Update-Script|Update-ScriptFileInfo|\" +\n \"Add-Printer|Add-PrinterDriver|Add-PrinterPort|Get-PrintConfiguration|Get-Printer|Get-PrinterDriver|Get-PrinterPort|Get-PrinterProperty|Get-PrintJob|Read-PrinterNfcTag|Remove-Printer|Remove-PrinterDriver|Remove-PrinterPort|Remove-PrintJob|Rename-Printer|Restart-PrintJob|Resume-PrintJob|Set-PrintConfiguration|Set-Printer|Set-PrinterProperty|Suspend-PrintJob|Write-PrinterNfcTag|\" +\n \"Configuration|Disable-DscDebug|Enable-DscDebug|Get-DscConfiguration|Get-DscConfigurationStatus|Get-DscLocalConfigurationManager|Get-DscResource|New-DscChecksum|Remove-DscConfigurationDocument|Restore-DscConfiguration|Stop-DscConfiguration|Invoke-DscResource|Publish-DscConfiguration|Set-DscLocalConfigurationManager|Start-DscConfiguration|Test-DscConfiguration|Update-DscConfiguration|\" +\n \"Disable-PSTrace|Disable-PSWSManCombinedTrace|Disable-WSManTrace|Enable-PSTrace|Enable-PSWSManCombinedTrace|Enable-WSManTrace|Get-LogProperties|Set-LogProperties|Start-Trace|Stop-Trace|\" +\n \"PSConsoleHostReadline|Get-PSReadlineKeyHandler|Get-PSReadlineOption|Remove-PSReadlineKeyHandler|Set-PSReadlineKeyHandler|Set-PSReadlineOption|\" +\n \"Add-JobTrigger|Disable-JobTrigger|Disable-ScheduledJob|Enable-JobTrigger|Enable-ScheduledJob|Get-JobTrigger|Get-ScheduledJob|Get-ScheduledJobOption|New-JobTrigger|New-ScheduledJobOption|Register-ScheduledJob|Remove-JobTrigger|Set-JobTrigger|Set-ScheduledJob|Set-ScheduledJobOption|Unregister-ScheduledJob|\" +\n \"New-PSWorkflowSession|New-PSWorkflowExecutionOption|\" +\n \"Invoke-AsWorkflow|\" +\n \"Disable-ScheduledTask|Enable-ScheduledTask|Export-ScheduledTask|Get-ClusteredScheduledTask|Get-ScheduledTask|Get-ScheduledTaskInfo|New-ScheduledTask|New-ScheduledTaskAction|New-ScheduledTaskPrincipal|New-ScheduledTaskSettingsSet|New-ScheduledTaskTrigger|Register-ClusteredScheduledTask|Register-ScheduledTask|Set-ClusteredScheduledTask|Set-ScheduledTask|Start-ScheduledTask|Stop-ScheduledTask|Unregister-ClusteredScheduledTask|Unregister-ScheduledTask|\" +\n \"Confirm-SecureBootUEFI|Format-SecureBootUEFI|Get-SecureBootPolicy|Get-SecureBootUEFI|Set-SecureBootUEFI|\" +\n \"Block-SmbShareAccess|Close-SmbOpenFile|Close-SmbSession|Disable-SmbDelegation|Enable-SmbDelegation|Get-SmbBandwidthLimit|Get-SmbClientConfiguration|Get-SmbClientNetworkInterface|Get-SmbConnection|Get-SmbDelegation|Get-SmbMapping|Get-SmbMultichannelConnection|Get-SmbMultichannelConstraint|Get-SmbOpenFile|Get-SmbServerConfiguration|Get-SmbServerNetworkInterface|Get-SmbSession|Get-SmbShare|Get-SmbShareAccess|Grant-SmbShareAccess|New-SmbMapping|New-SmbMultichannelConstraint|New-SmbShare|Remove-SmbBandwidthLimit|Remove-SmbMapping|Remove-SmbMultichannelConstraint|Remove-SmbShare|Revoke-SmbShareAccess|Set-SmbBandwidthLimit|Set-SmbClientConfiguration|Set-SmbPathAcl|Set-SmbServerConfiguration|Set-SmbShare|Unblock-SmbShareAccess|Update-SmbMultichannelConnection|\" +\n \"Move-SmbClient|Get-SmbWitnessClient|Move-SmbWitnessClient|\" +\n \"Get-StartApps|Export-StartLayout|Import-StartLayout|\" +\n \"Disable-PhysicalDiskIndication|Disable-StorageDiagnosticLog|Enable-PhysicalDiskIndication|Enable-StorageDiagnosticLog|Flush-Volume|Get-DiskSNV|Get-PhysicalDiskSNV|Get-StorageEnclosureSNV|Initialize-Volume|Write-FileSystemCache|Add-InitiatorIdToMaskingSet|Add-PartitionAccessPath|Add-PhysicalDisk|Add-TargetPortToMaskingSet|Add-VirtualDiskToMaskingSet|Block-FileShareAccess|Clear-Disk|Clear-FileStorageTier|Clear-StorageDiagnosticInfo|Connect-VirtualDisk|Debug-FileShare|Debug-StorageSubSystem|Debug-Volume|Disable-PhysicalDiskIdentification|Disable-StorageEnclosureIdentification|Disable-StorageHighAvailability|Disconnect-VirtualDisk|Dismount-DiskImage|Enable-PhysicalDiskIdentification|Enable-StorageEnclosureIdentification|Enable-StorageHighAvailability|Format-Volume|Get-DedupProperties|Get-Disk|Get-DiskImage|Get-DiskStorageNodeView|Get-FileIntegrity|Get-FileShare|Get-FileShareAccessControlEntry|Get-FileStorageTier|Get-InitiatorId|Get-InitiatorPort|Get-MaskingSet|Get-OffloadDataTransferSetting|Get-Partition|Get-PartitionSupportedSize|Get-PhysicalDisk|Get-PhysicalDiskStorageNodeView|Get-ResiliencySetting|Get-StorageAdvancedProperty|Get-StorageDiagnosticInfo|Get-StorageEnclosure|Get-StorageEnclosureStorageNodeView|Get-StorageEnclosureVendorData|Get-StorageFaultDomain|Get-StorageFileServer|Get-StorageFirmwareInformation|Get-StorageHealthAction|Get-StorageHealthReport|Get-StorageHealthSetting|Get-StorageJob|Get-StorageNode|Get-StoragePool|Get-StorageProvider|Get-StorageReliabilityCounter|Get-StorageSetting|Get-StorageSubSystem|Get-StorageTier|Get-StorageTierSupportedSize|Get-SupportedClusterSizes|Get-SupportedFileSystems|Get-TargetPort|Get-TargetPortal|Get-VirtualDisk|Get-VirtualDiskSupportedSize|Get-Volume|Get-VolumeCorruptionCount|Get-VolumeScrubPolicy|Grant-FileShareAccess|Hide-VirtualDisk|Initialize-Disk|Mount-DiskImage|New-FileShare|New-MaskingSet|New-Partition|New-StorageFileServer|New-StoragePool|New-StorageSubsystemVirtualDisk|New-StorageTier|New-VirtualDisk|New-VirtualDiskClone|New-VirtualDiskSnapshot|New-Volume|Optimize-StoragePool|Optimize-Volume|Register-StorageSubsystem|Remove-FileShare|Remove-InitiatorId|Remove-InitiatorIdFromMaskingSet|Remove-MaskingSet|Remove-Partition|Remove-PartitionAccessPath|Remove-PhysicalDisk|Remove-StorageFileServer|Remove-StorageHealthSetting|Remove-StoragePool|Remove-StorageTier|Remove-TargetPortFromMaskingSet|Remove-VirtualDisk|Remove-VirtualDiskFromMaskingSet|Rename-MaskingSet|Repair-FileIntegrity|Repair-VirtualDisk|Repair-Volume|Reset-PhysicalDisk|Reset-StorageReliabilityCounter|Resize-Partition|Resize-StorageTier|Resize-VirtualDisk|Revoke-FileShareAccess|Set-Disk|Set-FileIntegrity|Set-FileShare|Set-FileStorageTier|Set-InitiatorPort|Set-Partition|Set-PhysicalDisk|Set-ResiliencySetting|Set-StorageFileServer|Set-StorageHealthSetting|Set-StoragePool|Set-StorageProvider|Set-StorageSetting|Set-StorageSubSystem|Set-StorageTier|Set-VirtualDisk|Set-Volume|Set-VolumeScrubPolicy|Show-VirtualDisk|Start-StorageDiagnosticLog|Stop-StorageDiagnosticLog|Stop-StorageJob|Unblock-FileShareAccess|Unregister-StorageSubsystem|Update-Disk|Update-HostStorageCache|Update-StorageFirmware|Update-StoragePool|Update-StorageProviderCache|Write-VolumeCache|\" +\n \"Disable-TlsCipherSuite|Disable-TlsSessionTicketKey|Enable-TlsCipherSuite|Enable-TlsSessionTicketKey|Export-TlsSessionTicketKey|Get-TlsCipherSuite|New-TlsSessionTicketKey|\" +\n \"Get-TroubleshootingPack|Invoke-TroubleshootingPack|\" +\n \"Clear-Tpm|ConvertTo-TpmOwnerAuth|Disable-TpmAutoProvisioning|Enable-TpmAutoProvisioning|Get-Tpm|Get-TpmEndorsementKeyInfo|Get-TpmSupportedFeature|Import-TpmOwnerAuth|Initialize-Tpm|Set-TpmOwnerAuth|Unblock-Tpm|\" +\n \"Add-VpnConnection|Add-VpnConnectionRoute|Add-VpnConnectionTriggerApplication|Add-VpnConnectionTriggerDnsConfiguration|Add-VpnConnectionTriggerTrustedNetwork|Get-VpnConnection|Get-VpnConnectionTrigger|New-EapConfiguration|New-VpnServerAddress|Remove-VpnConnection|Remove-VpnConnectionRoute|Remove-VpnConnectionTriggerApplication|Remove-VpnConnectionTriggerDnsConfiguration|Remove-VpnConnectionTriggerTrustedNetwork|Set-VpnConnection|Set-VpnConnectionIPsecConfiguration|Set-VpnConnectionProxy|Set-VpnConnectionTriggerDnsConfiguration|Set-VpnConnectionTriggerTrustedNetwork|\" +\n \"Add-OdbcDsn|Disable-OdbcPerfCounter|Disable-WdacBidTrace|Enable-OdbcPerfCounter|Enable-WdacBidTrace|Get-OdbcDriver|Get-OdbcDsn|Get-OdbcPerfCounter|Get-WdacBidTrace|Remove-OdbcDsn|Set-OdbcDriver|Set-OdbcDsn|\" +\n \"Get-WindowsDeveloperLicense|Show-WindowsDeveloperLicenseRegistration|Unregister-WindowsDeveloperLicense|\" +\n \"Disable-WindowsErrorReporting|Enable-WindowsErrorReporting|Get-WindowsErrorReporting|\" +\n \"Get-WindowsSearchSetting|Set-WindowsSearchSetting|\" +\n \"Get-WindowsUpdateLog\"\n );\n\n var keywordMapper = this.createKeywordMapper({\n \"support.function\": builtinFunctions,\n \"keyword\": keywords\n }, \"identifier\");\n var binaryOperatorsRe = (\n \"eq|ne|gt|lt|le|ge|like|notlike|match|notmatch|contains|notcontains|in|notin|band|bor|bxor|bnot|\" + \n \"ceq|cne|cgt|clt|cle|cge|clike|cnotlike|cmatch|cnotmatch|ccontains|cnotcontains|cin|cnotin|\" + \n \"ieq|ine|igt|ilt|ile|ige|ilike|inotlike|imatch|inotmatch|icontains|inotcontains|iin|inotin|\" +\n \"and|or|xor|not|\" +\n \"split|join|replace|f|\" +\n \"csplit|creplace|\" +\n \"isplit|ireplace|\" +\n \"is|isnot|as|\" +\n \"shl|shr\"\n );\n\n this.$rules = {\n \"start\" : [\n {\n token : \"comment\",\n regex : \"#.*$\"\n }, {\n token : \"comment.start\",\n regex : \"<#\",\n next : \"comment\"\n }, {\n token : \"string\", // single line\n regex : '[\"](?:(?:\\\\\\\\.)|(?:[^\"\\\\\\\\]))*?[\"]'\n }, {\n token : \"string\", // single line\n regex : \"['](?:(?:\\\\\\\\.)|(?:[^'\\\\\\\\]))*?[']\"\n }, {\n token : \"constant.numeric\", // hex\n regex : \"0[xX][0-9a-fA-F]+\\\\b\"\n }, {\n token : \"constant.numeric\", // float\n regex : \"[+-]?\\\\d+(?:(?:\\\\.\\\\d*)?(?:[eE][+-]?\\\\d+)?)?\\\\b\"\n }, {\n token : \"constant.language.boolean\",\n regex : \"[$](?:[Tt]rue|[Ff]alse)\\\\b\"\n }, {\n token : \"constant.language\",\n regex : \"[$][Nn]ull\\\\b\"\n }, {\n token : \"variable.instance\",\n regex : \"[$][a-zA-Z][a-zA-Z0-9_]*\\\\b\"\n }, {\n token : keywordMapper,\n regex : \"[a-zA-Z_$][a-zA-Z0-9_$\\\\-]*\\\\b\"\n }, {\n token : \"keyword.operator\",\n regex : \"\\\\-(?:\" + binaryOperatorsRe + \")\"\n }, {\n token : \"keyword.operator\",\n regex : \"&|\\\\+|\\\\-|\\\\*|\\\\/|\\\\%|\\\\=|\\\\>|\\\\&|\\\\!|\\\\|\"\n }, {\n token : \"lparen\",\n regex : \"[[({]\"\n }, {\n token : \"rparen\",\n regex : \"[\\\\])}]\"\n }, {\n token : \"text\",\n regex : \"\\\\s+\"\n }\n ],\n \"comment\" : [\n {\n token : \"comment.end\",\n regex : \"#>\",\n next : \"start\"\n }, {\n token : \"doc.comment.tag\",\n regex : \"^\\\\.\\\\w+\"\n }, {\n defaultToken : \"comment\"\n }\n ]\n };\n};\n\noop.inherits(PowershellHighlightRules, TextHighlightRules);\n\nexports.PowershellHighlightRules = PowershellHighlightRules;\n});\n\nace.define(\"ace/mode/matching_brace_outdent\",[\"require\",\"exports\",\"module\",\"ace/range\"], function(require, exports, module) {\n\"use strict\";\n\nvar Range = require(\"../range\").Range;\n\nvar MatchingBraceOutdent = function() {};\n\n(function() {\n\n this.checkOutdent = function(line, input) {\n if (! /^\\s+$/.test(line))\n return false;\n\n return /^\\s*\\}/.test(input);\n };\n\n this.autoOutdent = function(doc, row) {\n var line = doc.getLine(row);\n var match = line.match(/^(\\s*\\})/);\n\n if (!match) return 0;\n\n var column = match[1].length;\n var openBracePos = doc.findMatchingBracket({row: row, column: column});\n\n if (!openBracePos || openBracePos.row == row) return 0;\n\n var indent = this.$getIndent(doc.getLine(openBracePos.row));\n doc.replace(new Range(row, 0, row, column-1), indent);\n };\n\n this.$getIndent = function(line) {\n return line.match(/^\\s*/)[0];\n };\n\n}).call(MatchingBraceOutdent.prototype);\n\nexports.MatchingBraceOutdent = MatchingBraceOutdent;\n});\n\nace.define(\"ace/mode/folding/cstyle\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/range\",\"ace/mode/folding/fold_mode\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Range = require(\"../../range\").Range;\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function(commentRegex) {\n if (commentRegex) {\n this.foldingStartMarker = new RegExp(\n this.foldingStartMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.start)\n );\n this.foldingStopMarker = new RegExp(\n this.foldingStopMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.end)\n );\n }\n};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n \n this.foldingStartMarker = /([\\{\\[\\(])[^\\}\\]\\)]*$|^\\s*(\\/\\*)/;\n this.foldingStopMarker = /^[^\\[\\{\\(]*([\\}\\]\\)])|^[\\s\\*]*(\\*\\/)/;\n this.singleLineBlockCommentRe= /^\\s*(\\/\\*).*\\*\\/\\s*$/;\n this.tripleStarBlockCommentRe = /^\\s*(\\/\\*\\*\\*).*\\*\\/\\s*$/;\n this.startRegionRe = /^\\s*(\\/\\*|\\/\\/)#?region\\b/;\n this._getFoldWidgetBase = this.getFoldWidget;\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n \n if (this.singleLineBlockCommentRe.test(line)) {\n if (!this.startRegionRe.test(line) && !this.tripleStarBlockCommentRe.test(line))\n return \"\";\n }\n \n var fw = this._getFoldWidgetBase(session, foldStyle, row);\n \n if (!fw && this.startRegionRe.test(line))\n return \"start\"; // lineCommentRegionStart\n \n return fw;\n };\n\n this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {\n var line = session.getLine(row);\n \n if (this.startRegionRe.test(line))\n return this.getCommentRegionBlock(session, line, row);\n \n var match = line.match(this.foldingStartMarker);\n if (match) {\n var i = match.index;\n\n if (match[1])\n return this.openingBracketBlock(session, match[1], row, i);\n \n var range = session.getCommentFoldRange(row, i + match[0].length, 1);\n \n if (range && !range.isMultiLine()) {\n if (forceMultiline) {\n range = this.getSectionRange(session, row);\n } else if (foldStyle != \"all\")\n range = null;\n }\n \n return range;\n }\n\n if (foldStyle === \"markbegin\")\n return;\n\n var match = line.match(this.foldingStopMarker);\n if (match) {\n var i = match.index + match[0].length;\n\n if (match[1])\n return this.closingBracketBlock(session, match[1], row, i);\n\n return session.getCommentFoldRange(row, i, -1);\n }\n };\n \n this.getSectionRange = function(session, row) {\n var line = session.getLine(row);\n var startIndent = line.search(/\\S/);\n var startRow = row;\n var startColumn = line.length;\n row = row + 1;\n var endRow = row;\n var maxRow = session.getLength();\n while (++row < maxRow) {\n line = session.getLine(row);\n var indent = line.search(/\\S/);\n if (indent === -1)\n continue;\n if (startIndent > indent)\n break;\n var subRange = this.getFoldWidgetRange(session, \"all\", row);\n \n if (subRange) {\n if (subRange.start.row <= startRow) {\n break;\n } else if (subRange.isMultiLine()) {\n row = subRange.end.row;\n } else if (startIndent == indent) {\n break;\n }\n }\n endRow = row;\n }\n \n return new Range(startRow, startColumn, endRow, session.getLine(endRow).length);\n };\n this.getCommentRegionBlock = function(session, line, row) {\n var startColumn = line.search(/\\s*$/);\n var maxRow = session.getLength();\n var startRow = row;\n \n var re = /^\\s*(?:\\/\\*|\\/\\/|--)#?(end)?region\\b/;\n var depth = 1;\n while (++row < maxRow) {\n line = session.getLine(row);\n var m = re.exec(line);\n if (!m) continue;\n if (m[1]) depth--;\n else depth++;\n\n if (!depth) break;\n }\n\n var endRow = row;\n if (endRow > startRow) {\n return new Range(startRow, startColumn, endRow, line.length);\n }\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/powershell\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/powershell_highlight_rules\",\"ace/mode/matching_brace_outdent\",\"ace/mode/behaviour/cstyle\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar PowershellHighlightRules = require(\"./powershell_highlight_rules\").PowershellHighlightRules;\nvar MatchingBraceOutdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\nvar CstyleBehaviour = require(\"./behaviour/cstyle\").CstyleBehaviour;\nvar CStyleFoldMode = require(\"./folding/cstyle\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = PowershellHighlightRules;\n this.$outdent = new MatchingBraceOutdent();\n this.$behaviour = new CstyleBehaviour();\n this.foldingRules = new CStyleFoldMode({start: \"^\\\\s*(<#)\", end: \"^[#\\\\s]>\\\\s*$\"});\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.lineCommentStart = \"#\";\n this.blockComment = {start: \"<#\", end: \"#>\"};\n \n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n\n var tokenizedLine = this.getTokenizer().getLineTokens(line, state);\n var tokens = tokenizedLine.tokens;\n\n if (tokens.length && tokens[tokens.length-1].type == \"comment\") {\n return indent;\n }\n \n if (state == \"start\") {\n var match = line.match(/^.*[\\{\\(\\[]\\s*$/);\n if (match) {\n indent += tab;\n }\n }\n\n return indent;\n };\n\n this.checkOutdent = function(state, line, input) {\n return this.$outdent.checkOutdent(line, input);\n };\n\n this.autoOutdent = function(state, doc, row) {\n this.$outdent.autoOutdent(doc, row);\n };\n\n\n this.createWorker = function(session) {\n return null;\n };\n\n this.$id = \"ace/mode/powershell\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/powershell\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file2m := &embedded.EmbeddedFile{ Filename: "3be3e31b3decff384801f14329554a9c.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/toml\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText =undefined;\nexports.scope = \"toml\";\n\n}); (function() {\n ace.require([\"ace/snippets/toml\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file2n := &embedded.EmbeddedFile{ Filename: "3c0ec12aff6e148d235875bfed4ca421.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/theme/clouds\",[\"require\",\"exports\",\"module\",\"ace/lib/dom\"], function(require, exports, module) {\n\nexports.isDark = false;\nexports.cssClass = \"ace-clouds\";\nexports.cssText = \".ace-clouds .ace_gutter {\\\nbackground: #ebebeb;\\\ncolor: #333\\\n}\\\n.ace-clouds .ace_print-margin {\\\nwidth: 1px;\\\nbackground: #e8e8e8\\\n}\\\n.ace-clouds {\\\nbackground-color: #FFFFFF;\\\ncolor: #000000\\\n}\\\n.ace-clouds .ace_cursor {\\\ncolor: #000000\\\n}\\\n.ace-clouds .ace_marker-layer .ace_selection {\\\nbackground: #BDD5FC\\\n}\\\n.ace-clouds.ace_multiselect .ace_selection.ace_start {\\\nbox-shadow: 0 0 3px 0px #FFFFFF;\\\n}\\\n.ace-clouds .ace_marker-layer .ace_step {\\\nbackground: rgb(255, 255, 0)\\\n}\\\n.ace-clouds .ace_marker-layer .ace_bracket {\\\nmargin: -1px 0 0 -1px;\\\nborder: 1px solid #BFBFBF\\\n}\\\n.ace-clouds .ace_marker-layer .ace_active-line {\\\nbackground: #FFFBD1\\\n}\\\n.ace-clouds .ace_gutter-active-line {\\\nbackground-color : #dcdcdc\\\n}\\\n.ace-clouds .ace_marker-layer .ace_selected-word {\\\nborder: 1px solid #BDD5FC\\\n}\\\n.ace-clouds .ace_invisible {\\\ncolor: #BFBFBF\\\n}\\\n.ace-clouds .ace_keyword,\\\n.ace-clouds .ace_meta,\\\n.ace-clouds .ace_support.ace_constant.ace_property-value {\\\ncolor: #AF956F\\\n}\\\n.ace-clouds .ace_keyword.ace_operator {\\\ncolor: #484848\\\n}\\\n.ace-clouds .ace_keyword.ace_other.ace_unit {\\\ncolor: #96DC5F\\\n}\\\n.ace-clouds .ace_constant.ace_language {\\\ncolor: #39946A\\\n}\\\n.ace-clouds .ace_constant.ace_numeric {\\\ncolor: #46A609\\\n}\\\n.ace-clouds .ace_constant.ace_character.ace_entity {\\\ncolor: #BF78CC\\\n}\\\n.ace-clouds .ace_invalid {\\\nbackground-color: #FF002A\\\n}\\\n.ace-clouds .ace_fold {\\\nbackground-color: #AF956F;\\\nborder-color: #000000\\\n}\\\n.ace-clouds .ace_storage,\\\n.ace-clouds .ace_support.ace_class,\\\n.ace-clouds .ace_support.ace_function,\\\n.ace-clouds .ace_support.ace_other,\\\n.ace-clouds .ace_support.ace_type {\\\ncolor: #C52727\\\n}\\\n.ace-clouds .ace_string {\\\ncolor: #5D90CD\\\n}\\\n.ace-clouds .ace_comment {\\\ncolor: #BCC8BA\\\n}\\\n.ace-clouds .ace_entity.ace_name.ace_tag,\\\n.ace-clouds .ace_entity.ace_other.ace_attribute-name {\\\ncolor: #606060\\\n}\\\n.ace-clouds .ace_indent-guide {\\\nbackground: url(\\\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==\\\") right repeat-y\\\n}\";\n\nvar dom = require(\"../lib/dom\");\ndom.importCssString(exports.cssText, exports.cssClass);\n}); (function() {\n ace.require([\"ace/theme/clouds\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file2o := &embedded.EmbeddedFile{ Filename: "3d4857cb734b986828b117a81f6bf14b.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/soy_template\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText =undefined;\nexports.scope = \"soy_template\";\n\n}); (function() {\n ace.require([\"ace/snippets/soy_template\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file2p := &embedded.EmbeddedFile{ Filename: "3e6cde7f6a3d84c5cff5127be1c019f3.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/io\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippets = [\n {\n \"content\": \"assertEquals(${1:expected}, ${2:expr})\",\n \"name\": \"assertEquals\",\n \"scope\": \"io\",\n \"tabTrigger\": \"ae\"\n },\n {\n \"content\": \"${1:${2:newValue} := ${3:Object} }clone do(\\n\\t$0\\n)\",\n \"name\": \"clone do\",\n \"scope\": \"io\",\n \"tabTrigger\": \"cdo\"\n },\n {\n \"content\": \"docSlot(\\\"${1:slotName}\\\", \\\"${2:documentation}\\\")\",\n \"name\": \"docSlot\",\n \"scope\": \"io\",\n \"tabTrigger\": \"ds\"\n },\n {\n \"content\": \"(${1:header,}\\n\\t${2:body}\\n)$0\",\n \"keyEquivalent\": \"@(\",\n \"name\": \"Indented Bracketed Line\",\n \"scope\": \"io\",\n \"tabTrigger\": \"(\"\n },\n {\n \"content\": \"\\n\\t$0\\n\",\n \"keyEquivalent\": \"\\r\",\n \"name\": \"Special: Return Inside Empty Parenthesis\",\n \"scope\": \"io meta.empty-parenthesis.io, io meta.comma-parenthesis.io\"\n },\n {\n \"content\": \"${1:methodName} := method(${2:args,}\\n\\t$0\\n)\",\n \"name\": \"method\",\n \"scope\": \"io\",\n \"tabTrigger\": \"m\"\n },\n {\n \"content\": \"newSlot(\\\"${1:slotName}\\\", ${2:defaultValue}, \\\"${3:docString}\\\")$0\",\n \"name\": \"newSlot\",\n \"scope\": \"io\",\n \"tabTrigger\": \"ns\"\n },\n {\n \"content\": \"${1:name} := Object clone do(\\n\\t$0\\n)\",\n \"name\": \"Object clone do\",\n \"scope\": \"io\",\n \"tabTrigger\": \"ocdo\"\n },\n {\n \"content\": \"test${1:SomeFeature} := method(\\n\\t$0\\n)\",\n \"name\": \"testMethod\",\n \"scope\": \"io\",\n \"tabTrigger\": \"ts\"\n },\n {\n \"content\": \"${1:Something}Test := ${2:UnitTest} clone do(\\n\\t$0\\n)\",\n \"name\": \"UnitTest\",\n \"scope\": \"io\",\n \"tabTrigger\": \"ut\"\n }\n];\nexports.scope = \"io\";\n\n}); (function() {\n ace.require([\"ace/snippets/io\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file2q := &embedded.EmbeddedFile{ Filename: "3f9e3ae9d4ee540b9fb067b6fd29d529.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/vala\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\nexports.snippets = [\n {\n \"content\": \"case ${1:condition}:\\n\\t$0\\n\\tbreak;\\n\",\n \"name\": \"case\",\n \"scope\": \"vala\",\n \"tabTrigger\": \"case\"\n },\n {\n \"content\": \"/**\\n * ${6}\\n */\\n${1:public} class ${2:MethodName}${3: : GLib.Object} {\\n\\n\\t/**\\n\\t * ${7}\\n\\t */\\n\\tpublic ${2}(${4}) {\\n\\t\\t${5}\\n\\t}\\n\\n\\t$0\\n}\",\n \"name\": \"class\",\n \"scope\": \"vala\",\n \"tabTrigger\": \"class\"\n },\n {\n \"content\": \"(${1}) => {\\n\\t${0}\\n}\\n\",\n \"name\": \"closure\",\n \"scope\": \"vala\",\n \"tabTrigger\": \"=>\"\n },\n {\n \"content\": \"/*\\n * $0\\n */\",\n \"name\": \"Comment (multiline)\",\n \"scope\": \"vala\",\n \"tabTrigger\": \"/*\"\n },\n {\n \"content\": \"Console.WriteLine($1);\\n$0\",\n \"name\": \"Console.WriteLine (writeline)\",\n \"scope\": \"vala\",\n \"tabTrigger\": \"writeline\"\n },\n {\n \"content\": \"[DBus(name = \\\"$0\\\")]\",\n \"name\": \"DBus annotation\",\n \"scope\": \"vala\",\n \"tabTrigger\": \"[DBus\"\n },\n {\n \"content\": \"delegate ${1:void} ${2:DelegateName}($0);\",\n \"name\": \"delegate\",\n \"scope\": \"vala\",\n \"tabTrigger\": \"delegate\"\n },\n {\n \"content\": \"do {\\n\\t$0\\n} while ($1);\\n\",\n \"name\": \"do while\",\n \"scope\": \"vala\",\n \"tabTrigger\": \"dowhile\"\n },\n {\n \"content\": \"/**\\n * $0\\n */\",\n \"name\": \"DocBlock\",\n \"scope\": \"vala\",\n \"tabTrigger\": \"/**\"\n },\n {\n \"content\": \"else if ($1) {\\n\\t$0\\n}\\n\",\n \"name\": \"else if (elseif)\",\n \"scope\": \"vala\",\n \"tabTrigger\": \"elseif\"\n },\n {\n \"content\": \"else {\\n\\t$0\\n}\",\n \"name\": \"else\",\n \"scope\": \"vala\",\n \"tabTrigger\": \"else\"\n },\n {\n \"content\": \"enum {$1:EnumName} {\\n\\t$0\\n}\",\n \"name\": \"enum\",\n \"scope\": \"vala\",\n \"tabTrigger\": \"enum\"\n },\n {\n \"content\": \"public errordomain ${1:Error} {\\n\\t$0\\n}\",\n \"name\": \"error domain\",\n \"scope\": \"vala\",\n \"tabTrigger\": \"errordomain\"\n },\n {\n \"content\": \"for ($1;$2;$3) {\\n\\t$0\\n}\",\n \"name\": \"for\",\n \"scope\": \"vala\",\n \"tabTrigger\": \"for\"\n },\n {\n \"content\": \"foreach ($1 in $2) {\\n\\t$0\\n}\",\n \"name\": \"foreach\",\n \"scope\": \"vala\",\n \"tabTrigger\": \"foreach\"\n },\n {\n \"content\": \"Gee.ArrayList<${1:G}>($0);\",\n \"name\": \"Gee.ArrayList\",\n \"scope\": \"vala\",\n \"tabTrigger\": \"ArrayList\"\n },\n {\n \"content\": \"Gee.HashMap<${1:K},${2:V}>($0);\",\n \"name\": \"Gee.HashMap\",\n \"scope\": \"vala\",\n \"tabTrigger\": \"HashMap\"\n },\n {\n \"content\": \"Gee.HashSet<${1:G}>($0);\",\n \"name\": \"Gee.HashSet\",\n \"scope\": \"vala\",\n \"tabTrigger\": \"HashSet\"\n },\n {\n \"content\": \"if ($1) {\\n\\t$0\\n}\",\n \"name\": \"if\",\n \"scope\": \"vala\",\n \"tabTrigger\": \"if\"\n },\n {\n \"content\": \"interface ${1:InterfaceName}{$2: : SuperInterface} {\\n\\t$0\\n}\",\n \"name\": \"interface\",\n \"scope\": \"vala\",\n \"tabTrigger\": \"interface\"\n },\n {\n \"content\": \"public static int main(string [] argv) {\\n\\t${0}\\n\\treturn 0;\\n}\",\n \"name\": \"Main function\",\n \"scope\": \"vala\",\n \"tabTrigger\": \"main\"\n },\n {\n \"content\": \"namespace $1 {\\n\\t$0\\n}\\n\",\n \"name\": \"namespace (ns)\",\n \"scope\": \"vala\",\n \"tabTrigger\": \"ns\"\n },\n {\n \"content\": \"stdout.printf($0);\",\n \"name\": \"printf\",\n \"scope\": \"vala\",\n \"tabTrigger\": \"printf\"\n },\n {\n \"content\": \"${1:public} ${2:Type} ${3:Name} {\\n\\tset {\\n\\t\\t$0\\n\\t}\\n\\tget {\\n\\n\\t}\\n}\",\n \"name\": \"property (prop)\",\n \"scope\": \"vala\",\n \"tabTrigger\": \"prop\"\n },\n {\n \"content\": \"${1:public} ${2:Type} ${3:Name} {\\n\\tget {\\n\\t\\t$0\\n\\t}\\n}\",\n \"name\": \"read-only property (roprop)\",\n \"scope\": \"vala\",\n \"tabTrigger\": \"roprop\"\n },\n {\n \"content\": \"@\\\"${1:\\\\$var}\\\"\",\n \"name\": \"String template (@)\",\n \"scope\": \"vala\",\n \"tabTrigger\": \"@\"\n },\n {\n \"content\": \"struct ${1:StructName} {\\n\\t$0\\n}\",\n \"name\": \"struct\",\n \"scope\": \"vala\",\n \"tabTrigger\": \"struct\"\n },\n {\n \"content\": \"switch ($1) {\\n\\t$0\\n}\",\n \"name\": \"switch\",\n \"scope\": \"vala\",\n \"tabTrigger\": \"switch\"\n },\n {\n \"content\": \"try {\\n\\t$2\\n} catch (${1:Error} e) {\\n\\t$0\\n}\",\n \"name\": \"try/catch\",\n \"scope\": \"vala\",\n \"tabTrigger\": \"try\"\n },\n {\n \"content\": \"\\\"\\\"\\\"$0\\\"\\\"\\\";\",\n \"name\": \"Verbatim string (\\\"\\\"\\\")\",\n \"scope\": \"vala\",\n \"tabTrigger\": \"verbatim\"\n },\n {\n \"content\": \"while ($1) {\\n\\t$0\\n}\",\n \"name\": \"while\",\n \"scope\": \"vala\",\n \"tabTrigger\": \"while\"\n }\n];\nexports.scope = \"\";\n\n}); (function() {\n ace.require([\"ace/snippets/vala\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file2r := &embedded.EmbeddedFile{ Filename: "400622a60e8e3194e3d666d073e3c7db.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/theme/kuroir\",[\"require\",\"exports\",\"module\",\"ace/lib/dom\"], function(require, exports, module) {\n\nexports.isDark = false;\nexports.cssClass = \"ace-kuroir\";\nexports.cssText = \"\\\n.ace-kuroir .ace_gutter {\\\nbackground: #e8e8e8;\\\ncolor: #333;\\\n}\\\n.ace-kuroir .ace_print-margin {\\\nwidth: 1px;\\\nbackground: #e8e8e8;\\\n}\\\n.ace-kuroir {\\\nbackground-color: #E8E9E8;\\\ncolor: #363636;\\\n}\\\n.ace-kuroir .ace_cursor {\\\ncolor: #202020;\\\n}\\\n.ace-kuroir .ace_marker-layer .ace_selection {\\\nbackground: rgba(245, 170, 0, 0.57);\\\n}\\\n.ace-kuroir.ace_multiselect .ace_selection.ace_start {\\\nbox-shadow: 0 0 3px 0px #E8E9E8;\\\n}\\\n.ace-kuroir .ace_marker-layer .ace_step {\\\nbackground: rgb(198, 219, 174);\\\n}\\\n.ace-kuroir .ace_marker-layer .ace_bracket {\\\nmargin: -1px 0 0 -1px;\\\nborder: 1px solid rgba(0, 0, 0, 0.29);\\\n}\\\n.ace-kuroir .ace_marker-layer .ace_active-line {\\\nbackground: rgba(203, 220, 47, 0.22);\\\n}\\\n.ace-kuroir .ace_gutter-active-line {\\\nbackground-color: rgba(203, 220, 47, 0.22);\\\n}\\\n.ace-kuroir .ace_marker-layer .ace_selected-word {\\\nborder: 1px solid rgba(245, 170, 0, 0.57);\\\n}\\\n.ace-kuroir .ace_invisible {\\\ncolor: #BFBFBF\\\n}\\\n.ace-kuroir .ace_fold {\\\nborder-color: #363636;\\\n}\\\n.ace-kuroir .ace_constant{color:#CD6839;}.ace-kuroir .ace_constant.ace_numeric{color:#9A5925;}.ace-kuroir .ace_support{color:#104E8B;}.ace-kuroir .ace_support.ace_function{color:#005273;}.ace-kuroir .ace_support.ace_constant{color:#CF6A4C;}.ace-kuroir .ace_storage{color:#A52A2A;}.ace-kuroir .ace_invalid.ace_illegal{color:#FD1224;\\\nbackground-color:rgba(255, 6, 0, 0.15);}.ace-kuroir .ace_invalid.ace_deprecated{text-decoration:underline;\\\nfont-style:italic;\\\ncolor:#FD1732;\\\nbackground-color:#E8E9E8;}.ace-kuroir .ace_string{color:#639300;}.ace-kuroir .ace_string.ace_regexp{color:#417E00;\\\nbackground-color:#C9D4BE;}.ace-kuroir .ace_comment{color:rgba(148, 148, 148, 0.91);\\\nbackground-color:rgba(220, 220, 220, 0.56);}.ace-kuroir .ace_variable{color:#009ACD;}.ace-kuroir .ace_meta.ace_tag{color:#005273;}.ace-kuroir .ace_markup.ace_heading{color:#B8012D;\\\nbackground-color:rgba(191, 97, 51, 0.051);}.ace-kuroir .ace_markup.ace_list{color:#8F5B26;}\\\n\";\n\nvar dom = require(\"../lib/dom\");\ndom.importCssString(exports.cssText, exports.cssClass);\n}); (function() {\n ace.require([\"ace/theme/kuroir\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file2s := &embedded.EmbeddedFile{ Filename: "4037e6d4b18e3e286dec455cc63c1d17.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/django\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText = \"# Model Fields\\n\\\n\\n\\\n# Note: Optional arguments are using defaults that match what Django will use\\n\\\n# as a default, e.g. with max_length fields. Doing this as a form of self\\n\\\n# documentation and to make it easy to know whether you should override the\\n\\\n# default or not.\\n\\\n\\n\\\n# Note: Optional arguments that are booleans will use the opposite since you\\n\\\n# can either not specify them, or override them, e.g. auto_now_add=False.\\n\\\n\\n\\\nsnippet auto\\n\\\n\t${1:FIELDNAME} = models.AutoField(${2})\\n\\\nsnippet bool\\n\\\n\t${1:FIELDNAME} = models.BooleanField(${2:default=True})\\n\\\nsnippet char\\n\\\n\t${1:FIELDNAME} = models.CharField(max_length=${2}${3:, blank=True})\\n\\\nsnippet comma\\n\\\n\t${1:FIELDNAME} = models.CommaSeparatedIntegerField(max_length=${2}${3:, blank=True})\\n\\\nsnippet date\\n\\\n\t${1:FIELDNAME} = models.DateField(${2:auto_now_add=True, auto_now=True}${3:, blank=True, null=True})\\n\\\nsnippet datetime\\n\\\n\t${1:FIELDNAME} = models.DateTimeField(${2:auto_now_add=True, auto_now=True}${3:, blank=True, null=True})\\n\\\nsnippet decimal\\n\\\n\t${1:FIELDNAME} = models.DecimalField(max_digits=${2}, decimal_places=${3})\\n\\\nsnippet email\\n\\\n\t${1:FIELDNAME} = models.EmailField(max_length=${2:75}${3:, blank=True})\\n\\\nsnippet file\\n\\\n\t${1:FIELDNAME} = models.FileField(upload_to=${2:path/for/upload}${3:, max_length=100})\\n\\\nsnippet filepath\\n\\\n\t${1:FIELDNAME} = models.FilePathField(path=${2:\\\"/abs/path/to/dir\\\"}${3:, max_length=100}${4:, match=\\\"*.ext\\\"}${5:, recursive=True}${6:, blank=True, })\\n\\\nsnippet float\\n\\\n\t${1:FIELDNAME} = models.FloatField(${2})\\n\\\nsnippet image\\n\\\n\t${1:FIELDNAME} = models.ImageField(upload_to=${2:path/for/upload}${3:, height_field=height, width_field=width}${4:, max_length=100})\\n\\\nsnippet int\\n\\\n\t${1:FIELDNAME} = models.IntegerField(${2})\\n\\\nsnippet ip\\n\\\n\t${1:FIELDNAME} = models.IPAddressField(${2})\\n\\\nsnippet nullbool\\n\\\n\t${1:FIELDNAME} = models.NullBooleanField(${2})\\n\\\nsnippet posint\\n\\\n\t${1:FIELDNAME} = models.PositiveIntegerField(${2})\\n\\\nsnippet possmallint\\n\\\n\t${1:FIELDNAME} = models.PositiveSmallIntegerField(${2})\\n\\\nsnippet slug\\n\\\n\t${1:FIELDNAME} = models.SlugField(max_length=${2:50}${3:, blank=True})\\n\\\nsnippet smallint\\n\\\n\t${1:FIELDNAME} = models.SmallIntegerField(${2})\\n\\\nsnippet text\\n\\\n\t${1:FIELDNAME} = models.TextField(${2:blank=True})\\n\\\nsnippet time\\n\\\n\t${1:FIELDNAME} = models.TimeField(${2:auto_now_add=True, auto_now=True}${3:, blank=True, null=True})\\n\\\nsnippet url\\n\\\n\t${1:FIELDNAME} = models.URLField(${2:verify_exists=False}${3:, max_length=200}${4:, blank=True})\\n\\\nsnippet xml\\n\\\n\t${1:FIELDNAME} = models.XMLField(schema_path=${2:None}${3:, blank=True})\\n\\\n# Relational Fields\\n\\\nsnippet fk\\n\\\n\t${1:FIELDNAME} = models.ForeignKey(${2:OtherModel}${3:, related_name=''}${4:, limit_choices_to=}${5:, to_field=''})\\n\\\nsnippet m2m\\n\\\n\t${1:FIELDNAME} = models.ManyToManyField(${2:OtherModel}${3:, related_name=''}${4:, limit_choices_to=}${5:, symmetrical=False}${6:, through=''}${7:, db_table=''})\\n\\\nsnippet o2o\\n\\\n\t${1:FIELDNAME} = models.OneToOneField(${2:OtherModel}${3:, parent_link=True}${4:, related_name=''}${5:, limit_choices_to=}${6:, to_field=''})\\n\\\n\\n\\\n# Code Skeletons\\n\\\n\\n\\\nsnippet form\\n\\\n\tclass ${1:FormName}(forms.Form):\\n\\\n\t\t\\\"\\\"\\\"${2:docstring}\\\"\\\"\\\"\\n\\\n\t\t${3}\\n\\\n\\n\\\nsnippet model\\n\\\n\tclass ${1:ModelName}(models.Model):\\n\\\n\t\t\\\"\\\"\\\"${2:docstring}\\\"\\\"\\\"\\n\\\n\t\t${3}\\n\\\n\t\t\\n\\\n\t\tclass Meta:\\n\\\n\t\t\t${4}\\n\\\n\t\t\\n\\\n\t\tdef __unicode__(self):\\n\\\n\t\t\t${5}\\n\\\n\t\t\\n\\\n\t\tdef save(self, force_insert=False, force_update=False):\\n\\\n\t\t\t${6}\\n\\\n\t\t\\n\\\n\t\t@models.permalink\\n\\\n\t\tdef get_absolute_url(self):\\n\\\n\t\t\treturn ('${7:view_or_url_name}' ${8})\\n\\\n\\n\\\nsnippet modeladmin\\n\\\n\tclass ${1:ModelName}Admin(admin.ModelAdmin):\\n\\\n\t\t${2}\\n\\\n\t\\n\\\n\tadmin.site.register($1, $1Admin)\\n\\\n\t\\n\\\nsnippet tabularinline\\n\\\n\tclass ${1:ModelName}Inline(admin.TabularInline):\\n\\\n\t\tmodel = $1\\n\\\n\\n\\\nsnippet stackedinline\\n\\\n\tclass ${1:ModelName}Inline(admin.StackedInline):\\n\\\n\t\tmodel = $1\\n\\\n\\n\\\nsnippet r2r\\n\\\n\treturn render_to_response('${1:template.html}', {\\n\\\n\t\t\t${2}\\n\\\n\t\t}${3:, context_instance=RequestContext(request)}\\n\\\n\t)\\n\\\n\";\nexports.scope = \"django\";\n\n}); (function() {\n ace.require([\"ace/snippets/django\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file2t := &embedded.EmbeddedFile{ Filename: "409c22409d24a1be88312f7c0bf54eb4.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/doc_comment_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar DocCommentHighlightRules = function() {\n this.$rules = {\n \"start\" : [ {\n token : \"comment.doc.tag\",\n regex : \"@[\\\\w\\\\d_]+\" // TODO: fix email addresses\n }, \n DocCommentHighlightRules.getTagRule(),\n {\n defaultToken : \"comment.doc\",\n caseInsensitive: true\n }]\n };\n};\n\noop.inherits(DocCommentHighlightRules, TextHighlightRules);\n\nDocCommentHighlightRules.getTagRule = function(start) {\n return {\n token : \"comment.doc.tag.storage.type\",\n regex : \"\\\\b(?:TODO|FIXME|XXX|HACK)\\\\b\"\n };\n};\n\nDocCommentHighlightRules.getStartRule = function(start) {\n return {\n token : \"comment.doc\", // doc comment\n regex : \"\\\\/\\\\*(?=\\\\*)\",\n next : start\n };\n};\n\nDocCommentHighlightRules.getEndRule = function (start) {\n return {\n token : \"comment.doc\", // closing comment\n regex : \"\\\\*\\\\/\",\n next : start\n };\n};\n\n\nexports.DocCommentHighlightRules = DocCommentHighlightRules;\n\n});\n\nace.define(\"ace/mode/javascript_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/doc_comment_highlight_rules\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar DocCommentHighlightRules = require(\"./doc_comment_highlight_rules\").DocCommentHighlightRules;\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar identifierRe = \"[a-zA-Z\\\\$_\\u00a1-\\uffff][a-zA-Z\\\\d\\\\$_\\u00a1-\\uffff]*\";\n\nvar JavaScriptHighlightRules = function(options) {\n var keywordMapper = this.createKeywordMapper({\n \"variable.language\":\n \"Array|Boolean|Date|Function|Iterator|Number|Object|RegExp|String|Proxy|\" + // Constructors\n \"Namespace|QName|XML|XMLList|\" + // E4X\n \"ArrayBuffer|Float32Array|Float64Array|Int16Array|Int32Array|Int8Array|\" +\n \"Uint16Array|Uint32Array|Uint8Array|Uint8ClampedArray|\" +\n \"Error|EvalError|InternalError|RangeError|ReferenceError|StopIteration|\" + // Errors\n \"SyntaxError|TypeError|URIError|\" +\n \"decodeURI|decodeURIComponent|encodeURI|encodeURIComponent|eval|isFinite|\" + // Non-constructor functions\n \"isNaN|parseFloat|parseInt|\" +\n \"JSON|Math|\" + // Other\n \"this|arguments|prototype|window|document\" , // Pseudo\n \"keyword\":\n \"const|yield|import|get|set|async|await|\" +\n \"break|case|catch|continue|default|delete|do|else|finally|for|function|\" +\n \"if|in|of|instanceof|new|return|switch|throw|try|typeof|let|var|while|with|debugger|\" +\n \"__parent__|__count__|escape|unescape|with|__proto__|\" +\n \"class|enum|extends|super|export|implements|private|public|interface|package|protected|static\",\n \"storage.type\":\n \"const|let|var|function\",\n \"constant.language\":\n \"null|Infinity|NaN|undefined\",\n \"support.function\":\n \"alert\",\n \"constant.language.boolean\": \"true|false\"\n }, \"identifier\");\n var kwBeforeRe = \"case|do|else|finally|in|instanceof|return|throw|try|typeof|yield|void\";\n\n var escapedRe = \"\\\\\\\\(?:x[0-9a-fA-F]{2}|\" + // hex\n \"u[0-9a-fA-F]{4}|\" + // unicode\n \"u{[0-9a-fA-F]{1,6}}|\" + // es6 unicode\n \"[0-2][0-7]{0,2}|\" + // oct\n \"3[0-7][0-7]?|\" + // oct\n \"[4-7][0-7]?|\" + //oct\n \".)\";\n\n this.$rules = {\n \"no_regex\" : [\n DocCommentHighlightRules.getStartRule(\"doc-start\"),\n comments(\"no_regex\"),\n {\n token : \"string\",\n regex : \"'(?=.)\",\n next : \"qstring\"\n }, {\n token : \"string\",\n regex : '\"(?=.)',\n next : \"qqstring\"\n }, {\n token : \"constant.numeric\", // hexadecimal, octal and binary\n regex : /0(?:[xX][0-9a-fA-F]+|[oO][0-7]+|[bB][01]+)\\b/\n }, {\n token : \"constant.numeric\", // decimal integers and floats\n regex : /(?:\\d\\d*(?:\\.\\d*)?|\\.\\d+)(?:[eE][+-]?\\d+\\b)?/\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"support.function\",\n \"punctuation.operator\", \"entity.name.function\", \"text\",\"keyword.operator\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(prototype)(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"entity.name.function\", \"text\", \"keyword.operator\", \"text\", \"storage.type\",\n \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\",\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s+)(\\\\w+)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(function)(\\\\s+)(\" + identifierRe + \")(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"entity.name.function\", \"text\", \"punctuation.operator\",\n \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\s*)(:)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"text\", \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(:)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : \"keyword\",\n regex : \"from(?=\\\\s*('|\\\"))\"\n }, {\n token : \"keyword\",\n regex : \"(?:\" + kwBeforeRe + \")\\\\b\",\n next : \"start\"\n }, {\n token : [\"support.constant\"],\n regex : /that\\b/\n }, {\n token : [\"storage.type\", \"punctuation.operator\", \"support.function.firebug\"],\n regex : /(console)(\\.)(warn|info|log|error|time|trace|timeEnd|assert)\\b/\n }, {\n token : keywordMapper,\n regex : identifierRe\n }, {\n token : \"punctuation.operator\",\n regex : /[.](?![.])/,\n next : \"property\"\n }, {\n token : \"storage.type\",\n regex : /=>/,\n next : \"start\"\n }, {\n token : \"keyword.operator\",\n regex : /--|\\+\\+|\\.{3}|===|==|=|!=|!==|<+=?|>+=?|!|&&|\\|\\||\\?:|[!$%&*+\\-~\\/^]=?/,\n next : \"start\"\n }, {\n token : \"punctuation.operator\",\n regex : /[?:,;.]/,\n next : \"start\"\n }, {\n token : \"paren.lparen\",\n regex : /[\\[({]/,\n next : \"start\"\n }, {\n token : \"paren.rparen\",\n regex : /[\\])}]/\n }, {\n token: \"comment\",\n regex: /^#!.*$/\n }\n ],\n property: [{\n token : \"text\",\n regex : \"\\\\s+\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\",\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(?:(\\\\s+)(\\\\w+))?(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : \"punctuation.operator\",\n regex : /[.](?![.])/\n }, {\n token : \"support.function\",\n regex : /(s(?:h(?:ift|ow(?:Mod(?:elessDialog|alDialog)|Help))|croll(?:X|By(?:Pages|Lines)?|Y|To)?|t(?:op|rike)|i(?:n|zeToContent|debar|gnText)|ort|u(?:p|b(?:str(?:ing)?)?)|pli(?:ce|t)|e(?:nd|t(?:Re(?:sizable|questHeader)|M(?:i(?:nutes|lliseconds)|onth)|Seconds|Ho(?:tKeys|urs)|Year|Cursor|Time(?:out)?|Interval|ZOptions|Date|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Date|FullYear)|FullYear|Active)|arch)|qrt|lice|avePreferences|mall)|h(?:ome|andleEvent)|navigate|c(?:har(?:CodeAt|At)|o(?:s|n(?:cat|textual|firm)|mpile)|eil|lear(?:Timeout|Interval)?|a(?:ptureEvents|ll)|reate(?:StyleSheet|Popup|EventObject))|t(?:o(?:GMTString|S(?:tring|ource)|U(?:TCString|pperCase)|Lo(?:caleString|werCase))|est|a(?:n|int(?:Enabled)?))|i(?:s(?:NaN|Finite)|ndexOf|talics)|d(?:isableExternalCapture|ump|etachEvent)|u(?:n(?:shift|taint|escape|watch)|pdateCommands)|j(?:oin|avaEnabled)|p(?:o(?:p|w)|ush|lugins.refresh|a(?:ddings|rse(?:Int|Float)?)|r(?:int|ompt|eference))|e(?:scape|nableExternalCapture|val|lementFromPoint|x(?:p|ec(?:Script|Command)?))|valueOf|UTC|queryCommand(?:State|Indeterm|Enabled|Value)|f(?:i(?:nd|le(?:ModifiedDate|Size|CreatedDate|UpdatedDate)|xed)|o(?:nt(?:size|color)|rward)|loor|romCharCode)|watch|l(?:ink|o(?:ad|g)|astIndexOf)|a(?:sin|nchor|cos|t(?:tachEvent|ob|an(?:2)?)|pply|lert|b(?:s|ort))|r(?:ou(?:nd|teEvents)|e(?:size(?:By|To)|calc|turnValue|place|verse|l(?:oad|ease(?:Capture|Events)))|andom)|g(?:o|et(?:ResponseHeader|M(?:i(?:nutes|lliseconds)|onth)|Se(?:conds|lection)|Hours|Year|Time(?:zoneOffset)?|Da(?:y|te)|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Da(?:y|te)|FullYear)|FullYear|A(?:ttention|llResponseHeaders)))|m(?:in|ove(?:B(?:y|elow)|To(?:Absolute)?|Above)|ergeAttributes|a(?:tch|rgins|x))|b(?:toa|ig|o(?:ld|rderWidths)|link|ack))\\b(?=\\()/\n }, {\n token : \"support.function.dom\",\n regex : /(s(?:ub(?:stringData|mit)|plitText|e(?:t(?:NamedItem|Attribute(?:Node)?)|lect))|has(?:ChildNodes|Feature)|namedItem|c(?:l(?:ick|o(?:se|neNode))|reate(?:C(?:omment|DATASection|aption)|T(?:Head|extNode|Foot)|DocumentFragment|ProcessingInstruction|E(?:ntityReference|lement)|Attribute))|tabIndex|i(?:nsert(?:Row|Before|Cell|Data)|tem)|open|delete(?:Row|C(?:ell|aption)|T(?:Head|Foot)|Data)|focus|write(?:ln)?|a(?:dd|ppend(?:Child|Data))|re(?:set|place(?:Child|Data)|move(?:NamedItem|Child|Attribute(?:Node)?)?)|get(?:NamedItem|Element(?:sBy(?:Name|TagName|ClassName)|ById)|Attribute(?:Node)?)|blur)\\b(?=\\()/\n }, {\n token : \"support.constant\",\n regex : /(s(?:ystemLanguage|cr(?:ipts|ollbars|een(?:X|Y|Top|Left))|t(?:yle(?:Sheets)?|atus(?:Text|bar)?)|ibling(?:Below|Above)|ource|uffixes|e(?:curity(?:Policy)?|l(?:ection|f)))|h(?:istory|ost(?:name)?|as(?:h|Focus))|y|X(?:MLDocument|SLDocument)|n(?:ext|ame(?:space(?:s|URI)|Prop))|M(?:IN_VALUE|AX_VALUE)|c(?:haracterSet|o(?:n(?:structor|trollers)|okieEnabled|lorDepth|mp(?:onents|lete))|urrent|puClass|l(?:i(?:p(?:boardData)?|entInformation)|osed|asses)|alle(?:e|r)|rypto)|t(?:o(?:olbar|p)|ext(?:Transform|Indent|Decoration|Align)|ags)|SQRT(?:1_2|2)|i(?:n(?:ner(?:Height|Width)|put)|ds|gnoreCase)|zIndex|o(?:scpu|n(?:readystatechange|Line)|uter(?:Height|Width)|p(?:sProfile|ener)|ffscreenBuffering)|NEGATIVE_INFINITY|d(?:i(?:splay|alog(?:Height|Top|Width|Left|Arguments)|rectories)|e(?:scription|fault(?:Status|Ch(?:ecked|arset)|View)))|u(?:ser(?:Profile|Language|Agent)|n(?:iqueID|defined)|pdateInterval)|_content|p(?:ixelDepth|ort|ersonalbar|kcs11|l(?:ugins|atform)|a(?:thname|dding(?:Right|Bottom|Top|Left)|rent(?:Window|Layer)?|ge(?:X(?:Offset)?|Y(?:Offset)?))|r(?:o(?:to(?:col|type)|duct(?:Sub)?|mpter)|e(?:vious|fix)))|e(?:n(?:coding|abledPlugin)|x(?:ternal|pando)|mbeds)|v(?:isibility|endor(?:Sub)?|Linkcolor)|URLUnencoded|P(?:I|OSITIVE_INFINITY)|f(?:ilename|o(?:nt(?:Size|Family|Weight)|rmName)|rame(?:s|Element)|gColor)|E|whiteSpace|l(?:i(?:stStyleType|n(?:eHeight|kColor))|o(?:ca(?:tion(?:bar)?|lName)|wsrc)|e(?:ngth|ft(?:Context)?)|a(?:st(?:M(?:odified|atch)|Index|Paren)|yer(?:s|X)|nguage))|a(?:pp(?:MinorVersion|Name|Co(?:deName|re)|Version)|vail(?:Height|Top|Width|Left)|ll|r(?:ity|guments)|Linkcolor|bove)|r(?:ight(?:Context)?|e(?:sponse(?:XML|Text)|adyState))|global|x|m(?:imeTypes|ultiline|enubar|argin(?:Right|Bottom|Top|Left))|L(?:N(?:10|2)|OG(?:10E|2E))|b(?:o(?:ttom|rder(?:Width|RightWidth|BottomWidth|Style|Color|TopWidth|LeftWidth))|ufferDepth|elow|ackground(?:Color|Image)))\\b/\n }, {\n token : \"identifier\",\n regex : identifierRe\n }, {\n regex: \"\",\n token: \"empty\",\n next: \"no_regex\"\n }\n ],\n \"start\": [\n DocCommentHighlightRules.getStartRule(\"doc-start\"),\n comments(\"start\"),\n {\n token: \"string.regexp\",\n regex: \"\\\\/\",\n next: \"regex\"\n }, {\n token : \"text\",\n regex : \"\\\\s+|^$\",\n next : \"start\"\n }, {\n token: \"empty\",\n regex: \"\",\n next: \"no_regex\"\n }\n ],\n \"regex\": [\n {\n token: \"regexp.keyword.operator\",\n regex: \"\\\\\\\\(?:u[\\\\da-fA-F]{4}|x[\\\\da-fA-F]{2}|.)\"\n }, {\n token: \"string.regexp\",\n regex: \"/[sxngimy]*\",\n next: \"no_regex\"\n }, {\n token : \"invalid\",\n regex: /\\{\\d+\\b,?\\d*\\}[+*]|[+*$^?][+*]|[$^][?]|\\?{3,}/\n }, {\n token : \"constant.language.escape\",\n regex: /\\(\\?[:=!]|\\)|\\{\\d+\\b,?\\d*\\}|[+*]\\?|[()$^+*?.]/\n }, {\n token : \"constant.language.delimiter\",\n regex: /\\|/\n }, {\n token: \"constant.language.escape\",\n regex: /\\[\\^?/,\n next: \"regex_character_class\"\n }, {\n token: \"empty\",\n regex: \"$\",\n next: \"no_regex\"\n }, {\n defaultToken: \"string.regexp\"\n }\n ],\n \"regex_character_class\": [\n {\n token: \"regexp.charclass.keyword.operator\",\n regex: \"\\\\\\\\(?:u[\\\\da-fA-F]{4}|x[\\\\da-fA-F]{2}|.)\"\n }, {\n token: \"constant.language.escape\",\n regex: \"]\",\n next: \"regex\"\n }, {\n token: \"constant.language.escape\",\n regex: \"-\"\n }, {\n token: \"empty\",\n regex: \"$\",\n next: \"no_regex\"\n }, {\n defaultToken: \"string.regexp.charachterclass\"\n }\n ],\n \"function_arguments\": [\n {\n token: \"variable.parameter\",\n regex: identifierRe\n }, {\n token: \"punctuation.operator\",\n regex: \"[, ]+\"\n }, {\n token: \"punctuation.operator\",\n regex: \"$\"\n }, {\n token: \"empty\",\n regex: \"\",\n next: \"no_regex\"\n }\n ],\n \"qqstring\" : [\n {\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"string\",\n regex : \"\\\\\\\\$\",\n consumeLineEnd : true\n }, {\n token : \"string\",\n regex : '\"|$',\n next : \"no_regex\"\n }, {\n defaultToken: \"string\"\n }\n ],\n \"qstring\" : [\n {\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"string\",\n regex : \"\\\\\\\\$\",\n consumeLineEnd : true\n }, {\n token : \"string\",\n regex : \"'|$\",\n next : \"no_regex\"\n }, {\n defaultToken: \"string\"\n }\n ]\n };\n\n\n if (!options || !options.noES6) {\n this.$rules.no_regex.unshift({\n regex: \"[{}]\", onMatch: function(val, state, stack) {\n this.next = val == \"{\" ? this.nextState : \"\";\n if (val == \"{\" && stack.length) {\n stack.unshift(\"start\", state);\n }\n else if (val == \"}\" && stack.length) {\n stack.shift();\n this.next = stack.shift();\n if (this.next.indexOf(\"string\") != -1 || this.next.indexOf(\"jsx\") != -1)\n return \"paren.quasi.end\";\n }\n return val == \"{\" ? \"paren.lparen\" : \"paren.rparen\";\n },\n nextState: \"start\"\n }, {\n token : \"string.quasi.start\",\n regex : /`/,\n push : [{\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"paren.quasi.start\",\n regex : /\\${/,\n push : \"start\"\n }, {\n token : \"string.quasi.end\",\n regex : /`/,\n next : \"pop\"\n }, {\n defaultToken: \"string.quasi\"\n }]\n });\n\n if (!options || options.jsx != false)\n JSX.call(this);\n }\n\n this.embedRules(DocCommentHighlightRules, \"doc-\",\n [ DocCommentHighlightRules.getEndRule(\"no_regex\") ]);\n\n this.normalizeRules();\n};\n\noop.inherits(JavaScriptHighlightRules, TextHighlightRules);\n\nfunction JSX() {\n var tagRegex = identifierRe.replace(\"\\\\d\", \"\\\\d\\\\-\");\n var jsxTag = {\n onMatch : function(val, state, stack) {\n var offset = val.charAt(1) == \"/\" ? 2 : 1;\n if (offset == 1) {\n if (state != this.nextState)\n stack.unshift(this.next, this.nextState, 0);\n else\n stack.unshift(this.next);\n stack[2]++;\n } else if (offset == 2) {\n if (state == this.nextState) {\n stack[1]--;\n if (!stack[1] || stack[1] < 0) {\n stack.shift();\n stack.shift();\n }\n }\n }\n return [{\n type: \"meta.tag.punctuation.\" + (offset == 1 ? \"\" : \"end-\") + \"tag-open.xml\",\n value: val.slice(0, offset)\n }, {\n type: \"meta.tag.tag-name.xml\",\n value: val.substr(offset)\n }];\n },\n regex : \"\",\n onMatch : function(value, currentState, stack) {\n if (currentState == stack[0])\n stack.shift();\n if (value.length == 2) {\n if (stack[0] == this.nextState)\n stack[1]--;\n if (!stack[1] || stack[1] < 0) {\n stack.splice(0, 2);\n }\n }\n this.next = stack[0] || \"start\";\n return [{type: this.token, value: value}];\n },\n nextState: \"jsx\"\n },\n jsxJsRule,\n comments(\"jsxAttributes\"),\n {\n token : \"entity.other.attribute-name.xml\",\n regex : tagRegex\n }, {\n token : \"keyword.operator.attribute-equals.xml\",\n regex : \"=\"\n }, {\n token : \"text.tag-whitespace.xml\",\n regex : \"\\\\s+\"\n }, {\n token : \"string.attribute-value.xml\",\n regex : \"'\",\n stateName : \"jsx_attr_q\",\n push : [\n {token : \"string.attribute-value.xml\", regex: \"'\", next: \"pop\"},\n {include : \"reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n }, {\n token : \"string.attribute-value.xml\",\n regex : '\"',\n stateName : \"jsx_attr_qq\",\n push : [\n {token : \"string.attribute-value.xml\", regex: '\"', next: \"pop\"},\n {include : \"reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n },\n jsxTag\n ];\n this.$rules.reference = [{\n token : \"constant.language.escape.reference.xml\",\n regex : \"(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\\\.-]+;)\"\n }];\n}\n\nfunction comments(next) {\n return [\n {\n token : \"comment\", // multi line comment\n regex : /\\/\\*/,\n next: [\n DocCommentHighlightRules.getTagRule(),\n {token : \"comment\", regex : \"\\\\*\\\\/\", next : next || \"pop\"},\n {defaultToken : \"comment\", caseInsensitive: true}\n ]\n }, {\n token : \"comment\",\n regex : \"\\\\/\\\\/\",\n next: [\n DocCommentHighlightRules.getTagRule(),\n {token : \"comment\", regex : \"$|^\", next : next || \"pop\"},\n {defaultToken : \"comment\", caseInsensitive: true}\n ]\n }\n ];\n}\nexports.JavaScriptHighlightRules = JavaScriptHighlightRules;\n});\n\nace.define(\"ace/mode/matching_brace_outdent\",[\"require\",\"exports\",\"module\",\"ace/range\"], function(require, exports, module) {\n\"use strict\";\n\nvar Range = require(\"../range\").Range;\n\nvar MatchingBraceOutdent = function() {};\n\n(function() {\n\n this.checkOutdent = function(line, input) {\n if (! /^\\s+$/.test(line))\n return false;\n\n return /^\\s*\\}/.test(input);\n };\n\n this.autoOutdent = function(doc, row) {\n var line = doc.getLine(row);\n var match = line.match(/^(\\s*\\})/);\n\n if (!match) return 0;\n\n var column = match[1].length;\n var openBracePos = doc.findMatchingBracket({row: row, column: column});\n\n if (!openBracePos || openBracePos.row == row) return 0;\n\n var indent = this.$getIndent(doc.getLine(openBracePos.row));\n doc.replace(new Range(row, 0, row, column-1), indent);\n };\n\n this.$getIndent = function(line) {\n return line.match(/^\\s*/)[0];\n };\n\n}).call(MatchingBraceOutdent.prototype);\n\nexports.MatchingBraceOutdent = MatchingBraceOutdent;\n});\n\nace.define(\"ace/mode/folding/cstyle\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/range\",\"ace/mode/folding/fold_mode\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Range = require(\"../../range\").Range;\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function(commentRegex) {\n if (commentRegex) {\n this.foldingStartMarker = new RegExp(\n this.foldingStartMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.start)\n );\n this.foldingStopMarker = new RegExp(\n this.foldingStopMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.end)\n );\n }\n};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n \n this.foldingStartMarker = /([\\{\\[\\(])[^\\}\\]\\)]*$|^\\s*(\\/\\*)/;\n this.foldingStopMarker = /^[^\\[\\{\\(]*([\\}\\]\\)])|^[\\s\\*]*(\\*\\/)/;\n this.singleLineBlockCommentRe= /^\\s*(\\/\\*).*\\*\\/\\s*$/;\n this.tripleStarBlockCommentRe = /^\\s*(\\/\\*\\*\\*).*\\*\\/\\s*$/;\n this.startRegionRe = /^\\s*(\\/\\*|\\/\\/)#?region\\b/;\n this._getFoldWidgetBase = this.getFoldWidget;\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n \n if (this.singleLineBlockCommentRe.test(line)) {\n if (!this.startRegionRe.test(line) && !this.tripleStarBlockCommentRe.test(line))\n return \"\";\n }\n \n var fw = this._getFoldWidgetBase(session, foldStyle, row);\n \n if (!fw && this.startRegionRe.test(line))\n return \"start\"; // lineCommentRegionStart\n \n return fw;\n };\n\n this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {\n var line = session.getLine(row);\n \n if (this.startRegionRe.test(line))\n return this.getCommentRegionBlock(session, line, row);\n \n var match = line.match(this.foldingStartMarker);\n if (match) {\n var i = match.index;\n\n if (match[1])\n return this.openingBracketBlock(session, match[1], row, i);\n \n var range = session.getCommentFoldRange(row, i + match[0].length, 1);\n \n if (range && !range.isMultiLine()) {\n if (forceMultiline) {\n range = this.getSectionRange(session, row);\n } else if (foldStyle != \"all\")\n range = null;\n }\n \n return range;\n }\n\n if (foldStyle === \"markbegin\")\n return;\n\n var match = line.match(this.foldingStopMarker);\n if (match) {\n var i = match.index + match[0].length;\n\n if (match[1])\n return this.closingBracketBlock(session, match[1], row, i);\n\n return session.getCommentFoldRange(row, i, -1);\n }\n };\n \n this.getSectionRange = function(session, row) {\n var line = session.getLine(row);\n var startIndent = line.search(/\\S/);\n var startRow = row;\n var startColumn = line.length;\n row = row + 1;\n var endRow = row;\n var maxRow = session.getLength();\n while (++row < maxRow) {\n line = session.getLine(row);\n var indent = line.search(/\\S/);\n if (indent === -1)\n continue;\n if (startIndent > indent)\n break;\n var subRange = this.getFoldWidgetRange(session, \"all\", row);\n \n if (subRange) {\n if (subRange.start.row <= startRow) {\n break;\n } else if (subRange.isMultiLine()) {\n row = subRange.end.row;\n } else if (startIndent == indent) {\n break;\n }\n }\n endRow = row;\n }\n \n return new Range(startRow, startColumn, endRow, session.getLine(endRow).length);\n };\n this.getCommentRegionBlock = function(session, line, row) {\n var startColumn = line.search(/\\s*$/);\n var maxRow = session.getLength();\n var startRow = row;\n \n var re = /^\\s*(?:\\/\\*|\\/\\/|--)#?(end)?region\\b/;\n var depth = 1;\n while (++row < maxRow) {\n line = session.getLine(row);\n var m = re.exec(line);\n if (!m) continue;\n if (m[1]) depth--;\n else depth++;\n\n if (!depth) break;\n }\n\n var endRow = row;\n if (endRow > startRow) {\n return new Range(startRow, startColumn, endRow, line.length);\n }\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/javascript\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/javascript_highlight_rules\",\"ace/mode/matching_brace_outdent\",\"ace/worker/worker_client\",\"ace/mode/behaviour/cstyle\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar JavaScriptHighlightRules = require(\"./javascript_highlight_rules\").JavaScriptHighlightRules;\nvar MatchingBraceOutdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\nvar WorkerClient = require(\"../worker/worker_client\").WorkerClient;\nvar CstyleBehaviour = require(\"./behaviour/cstyle\").CstyleBehaviour;\nvar CStyleFoldMode = require(\"./folding/cstyle\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = JavaScriptHighlightRules;\n \n this.$outdent = new MatchingBraceOutdent();\n this.$behaviour = new CstyleBehaviour();\n this.foldingRules = new CStyleFoldMode();\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.lineCommentStart = \"//\";\n this.blockComment = {start: \"/*\", end: \"*/\"};\n this.$quotes = {'\"': '\"', \"'\": \"'\", \"`\": \"`\"};\n\n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n\n var tokenizedLine = this.getTokenizer().getLineTokens(line, state);\n var tokens = tokenizedLine.tokens;\n var endState = tokenizedLine.state;\n\n if (tokens.length && tokens[tokens.length-1].type == \"comment\") {\n return indent;\n }\n\n if (state == \"start\" || state == \"no_regex\") {\n var match = line.match(/^.*(?:\\bcase\\b.*:|[\\{\\(\\[])\\s*$/);\n if (match) {\n indent += tab;\n }\n } else if (state == \"doc-start\") {\n if (endState == \"start\" || endState == \"no_regex\") {\n return \"\";\n }\n var match = line.match(/^\\s*(\\/?)\\*/);\n if (match) {\n if (match[1]) {\n indent += \" \";\n }\n indent += \"* \";\n }\n }\n\n return indent;\n };\n\n this.checkOutdent = function(state, line, input) {\n return this.$outdent.checkOutdent(line, input);\n };\n\n this.autoOutdent = function(state, doc, row) {\n this.$outdent.autoOutdent(doc, row);\n };\n\n this.createWorker = function(session) {\n var worker = new WorkerClient([\"ace\"], \"ace/mode/javascript_worker\", \"JavaScriptWorker\");\n worker.attachToDocument(session.getDocument());\n\n worker.on(\"annotate\", function(results) {\n session.setAnnotations(results.data);\n });\n\n worker.on(\"terminate\", function() {\n session.clearAnnotations();\n });\n\n return worker;\n };\n\n this.$id = \"ace/mode/javascript\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n});\n\nace.define(\"ace/mode/css_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar supportType = exports.supportType = \"align-content|align-items|align-self|all|animation|animation-delay|animation-direction|animation-duration|animation-fill-mode|animation-iteration-count|animation-name|animation-play-state|animation-timing-function|backface-visibility|background|background-attachment|background-blend-mode|background-clip|background-color|background-image|background-origin|background-position|background-repeat|background-size|border|border-bottom|border-bottom-color|border-bottom-left-radius|border-bottom-right-radius|border-bottom-style|border-bottom-width|border-collapse|border-color|border-image|border-image-outset|border-image-repeat|border-image-slice|border-image-source|border-image-width|border-left|border-left-color|border-left-style|border-left-width|border-radius|border-right|border-right-color|border-right-style|border-right-width|border-spacing|border-style|border-top|border-top-color|border-top-left-radius|border-top-right-radius|border-top-style|border-top-width|border-width|bottom|box-shadow|box-sizing|caption-side|clear|clip|color|column-count|column-fill|column-gap|column-rule|column-rule-color|column-rule-style|column-rule-width|column-span|column-width|columns|content|counter-increment|counter-reset|cursor|direction|display|empty-cells|filter|flex|flex-basis|flex-direction|flex-flow|flex-grow|flex-shrink|flex-wrap|float|font|font-family|font-size|font-size-adjust|font-stretch|font-style|font-variant|font-weight|hanging-punctuation|height|justify-content|left|letter-spacing|line-height|list-style|list-style-image|list-style-position|list-style-type|margin|margin-bottom|margin-left|margin-right|margin-top|max-height|max-width|max-zoom|min-height|min-width|min-zoom|nav-down|nav-index|nav-left|nav-right|nav-up|opacity|order|outline|outline-color|outline-offset|outline-style|outline-width|overflow|overflow-x|overflow-y|padding|padding-bottom|padding-left|padding-right|padding-top|page-break-after|page-break-before|page-break-inside|perspective|perspective-origin|position|quotes|resize|right|tab-size|table-layout|text-align|text-align-last|text-decoration|text-decoration-color|text-decoration-line|text-decoration-style|text-indent|text-justify|text-overflow|text-shadow|text-transform|top|transform|transform-origin|transform-style|transition|transition-delay|transition-duration|transition-property|transition-timing-function|unicode-bidi|user-select|user-zoom|vertical-align|visibility|white-space|width|word-break|word-spacing|word-wrap|z-index\";\nvar supportFunction = exports.supportFunction = \"rgb|rgba|url|attr|counter|counters\";\nvar supportConstant = exports.supportConstant = \"absolute|after-edge|after|all-scroll|all|alphabetic|always|antialiased|armenian|auto|avoid-column|avoid-page|avoid|balance|baseline|before-edge|before|below|bidi-override|block-line-height|block|bold|bolder|border-box|both|bottom|box|break-all|break-word|capitalize|caps-height|caption|center|central|char|circle|cjk-ideographic|clone|close-quote|col-resize|collapse|column|consider-shifts|contain|content-box|cover|crosshair|cubic-bezier|dashed|decimal-leading-zero|decimal|default|disabled|disc|disregard-shifts|distribute-all-lines|distribute-letter|distribute-space|distribute|dotted|double|e-resize|ease-in|ease-in-out|ease-out|ease|ellipsis|end|exclude-ruby|fill|fixed|georgian|glyphs|grid-height|groove|hand|hanging|hebrew|help|hidden|hiragana-iroha|hiragana|horizontal|icon|ideograph-alpha|ideograph-numeric|ideograph-parenthesis|ideograph-space|ideographic|inactive|include-ruby|inherit|initial|inline-block|inline-box|inline-line-height|inline-table|inline|inset|inside|inter-ideograph|inter-word|invert|italic|justify|katakana-iroha|katakana|keep-all|last|left|lighter|line-edge|line-through|line|linear|list-item|local|loose|lower-alpha|lower-greek|lower-latin|lower-roman|lowercase|lr-tb|ltr|mathematical|max-height|max-size|medium|menu|message-box|middle|move|n-resize|ne-resize|newspaper|no-change|no-close-quote|no-drop|no-open-quote|no-repeat|none|normal|not-allowed|nowrap|nw-resize|oblique|open-quote|outset|outside|overline|padding-box|page|pointer|pre-line|pre-wrap|pre|preserve-3d|progress|relative|repeat-x|repeat-y|repeat|replaced|reset-size|ridge|right|round|row-resize|rtl|s-resize|scroll|se-resize|separate|slice|small-caps|small-caption|solid|space|square|start|static|status-bar|step-end|step-start|steps|stretch|strict|sub|super|sw-resize|table-caption|table-cell|table-column-group|table-column|table-footer-group|table-header-group|table-row-group|table-row|table|tb-rl|text-after-edge|text-before-edge|text-bottom|text-size|text-top|text|thick|thin|transparent|underline|upper-alpha|upper-latin|upper-roman|uppercase|use-script|vertical-ideographic|vertical-text|visible|w-resize|wait|whitespace|z-index|zero|zoom\";\nvar supportConstantColor = exports.supportConstantColor = \"aliceblue|antiquewhite|aqua|aquamarine|azure|beige|bisque|black|blanchedalmond|blue|blueviolet|brown|burlywood|cadetblue|chartreuse|chocolate|coral|cornflowerblue|cornsilk|crimson|cyan|darkblue|darkcyan|darkgoldenrod|darkgray|darkgreen|darkgrey|darkkhaki|darkmagenta|darkolivegreen|darkorange|darkorchid|darkred|darksalmon|darkseagreen|darkslateblue|darkslategray|darkslategrey|darkturquoise|darkviolet|deeppink|deepskyblue|dimgray|dimgrey|dodgerblue|firebrick|floralwhite|forestgreen|fuchsia|gainsboro|ghostwhite|gold|goldenrod|gray|green|greenyellow|grey|honeydew|hotpink|indianred|indigo|ivory|khaki|lavender|lavenderblush|lawngreen|lemonchiffon|lightblue|lightcoral|lightcyan|lightgoldenrodyellow|lightgray|lightgreen|lightgrey|lightpink|lightsalmon|lightseagreen|lightskyblue|lightslategray|lightslategrey|lightsteelblue|lightyellow|lime|limegreen|linen|magenta|maroon|mediumaquamarine|mediumblue|mediumorchid|mediumpurple|mediumseagreen|mediumslateblue|mediumspringgreen|mediumturquoise|mediumvioletred|midnightblue|mintcream|mistyrose|moccasin|navajowhite|navy|oldlace|olive|olivedrab|orange|orangered|orchid|palegoldenrod|palegreen|paleturquoise|palevioletred|papayawhip|peachpuff|peru|pink|plum|powderblue|purple|rebeccapurple|red|rosybrown|royalblue|saddlebrown|salmon|sandybrown|seagreen|seashell|sienna|silver|skyblue|slateblue|slategray|slategrey|snow|springgreen|steelblue|tan|teal|thistle|tomato|turquoise|violet|wheat|white|whitesmoke|yellow|yellowgreen\";\nvar supportConstantFonts = exports.supportConstantFonts = \"arial|century|comic|courier|cursive|fantasy|garamond|georgia|helvetica|impact|lucida|symbol|system|tahoma|times|trebuchet|utopia|verdana|webdings|sans-serif|serif|monospace\";\n\nvar numRe = exports.numRe = \"\\\\-?(?:(?:[0-9]+(?:\\\\.[0-9]+)?)|(?:\\\\.[0-9]+))\";\nvar pseudoElements = exports.pseudoElements = \"(\\\\:+)\\\\b(after|before|first-letter|first-line|moz-selection|selection)\\\\b\";\nvar pseudoClasses = exports.pseudoClasses = \"(:)\\\\b(active|checked|disabled|empty|enabled|first-child|first-of-type|focus|hover|indeterminate|invalid|last-child|last-of-type|link|not|nth-child|nth-last-child|nth-last-of-type|nth-of-type|only-child|only-of-type|required|root|target|valid|visited)\\\\b\";\n\nvar CssHighlightRules = function() {\n\n var keywordMapper = this.createKeywordMapper({\n \"support.function\": supportFunction,\n \"support.constant\": supportConstant,\n \"support.type\": supportType,\n \"support.constant.color\": supportConstantColor,\n \"support.constant.fonts\": supportConstantFonts\n }, \"text\", true);\n\n this.$rules = {\n \"start\" : [{\n include : [\"strings\", \"url\", \"comments\"]\n }, {\n token: \"paren.lparen\",\n regex: \"\\\\{\",\n next: \"ruleset\"\n }, {\n token: \"paren.rparen\",\n regex: \"\\\\}\"\n }, {\n token: \"string\",\n regex: \"@(?!viewport)\",\n next: \"media\"\n }, {\n token: \"keyword\",\n regex: \"#[a-z0-9-_]+\"\n }, {\n token: \"keyword\",\n regex: \"%\"\n }, {\n token: \"variable\",\n regex: \"\\\\.[a-z0-9-_]+\"\n }, {\n token: \"string\",\n regex: \":[a-z0-9-_]+\"\n }, {\n token : \"constant.numeric\",\n regex : numRe\n }, {\n token: \"constant\",\n regex: \"[a-z0-9-_]+\"\n }, {\n caseInsensitive: true\n }],\n\n \"media\": [{\n include : [\"strings\", \"url\", \"comments\"]\n }, {\n token: \"paren.lparen\",\n regex: \"\\\\{\",\n next: \"start\"\n }, {\n token: \"paren.rparen\",\n regex: \"\\\\}\",\n next: \"start\"\n }, {\n token: \"string\",\n regex: \";\",\n next: \"start\"\n }, {\n token: \"keyword\",\n regex: \"(?:media|supports|document|charset|import|namespace|media|supports|document\"\n + \"|page|font|keyframes|viewport|counter-style|font-feature-values\"\n + \"|swash|ornaments|annotation|stylistic|styleset|character-variant)\"\n }],\n\n \"comments\" : [{\n token: \"comment\", // multi line comment\n regex: \"\\\\/\\\\*\",\n push: [{\n token : \"comment\",\n regex : \"\\\\*\\\\/\",\n next : \"pop\"\n }, {\n defaultToken : \"comment\"\n }]\n }],\n\n \"ruleset\" : [{\n regex : \"-(webkit|ms|moz|o)-\",\n token : \"text\"\n }, {\n token : \"punctuation.operator\",\n regex : \"[:;]\"\n }, {\n token : \"paren.rparen\",\n regex : \"\\\\}\",\n next : \"start\"\n }, {\n include : [\"strings\", \"url\", \"comments\"]\n }, {\n token : [\"constant.numeric\", \"keyword\"],\n regex : \"(\" + numRe + \")(ch|cm|deg|em|ex|fr|gd|grad|Hz|in|kHz|mm|ms|pc|pt|px|rad|rem|s|turn|vh|vmax|vmin|vm|vw|%)\"\n }, {\n token : \"constant.numeric\",\n regex : numRe\n }, {\n token : \"constant.numeric\", // hex6 color\n regex : \"#[a-f0-9]{6}\"\n }, {\n token : \"constant.numeric\", // hex3 color\n regex : \"#[a-f0-9]{3}\"\n }, {\n token : [\"punctuation\", \"entity.other.attribute-name.pseudo-element.css\"],\n regex : pseudoElements\n }, {\n token : [\"punctuation\", \"entity.other.attribute-name.pseudo-class.css\"],\n regex : pseudoClasses\n }, {\n include: \"url\"\n }, {\n token : keywordMapper,\n regex : \"\\\\-?[a-zA-Z_][a-zA-Z0-9_\\\\-]*\"\n }, {\n caseInsensitive: true\n }],\n\n url: [{\n token : \"support.function\",\n regex : \"(?:url(:?-prefix)?|domain|regexp)\\\\(\",\n push: [{\n token : \"support.function\",\n regex : \"\\\\)\",\n next : \"pop\"\n }, {\n defaultToken: \"string\"\n }]\n }],\n\n strings: [{\n token : \"string.start\",\n regex : \"'\",\n push : [{\n token : \"string.end\",\n regex : \"'|$\",\n next: \"pop\"\n }, {\n include : \"escapes\"\n }, {\n token : \"constant.language.escape\",\n regex : /\\\\$/,\n consumeLineEnd: true\n }, {\n defaultToken: \"string\"\n }]\n }, {\n token : \"string.start\",\n regex : '\"',\n push : [{\n token : \"string.end\",\n regex : '\"|$',\n next: \"pop\"\n }, {\n include : \"escapes\"\n }, {\n token : \"constant.language.escape\",\n regex : /\\\\$/,\n consumeLineEnd: true\n }, {\n defaultToken: \"string\"\n }]\n }],\n escapes: [{\n token : \"constant.language.escape\",\n regex : /\\\\([a-fA-F\\d]{1,6}|[^a-fA-F\\d])/\n }]\n\n };\n\n this.normalizeRules();\n};\n\noop.inherits(CssHighlightRules, TextHighlightRules);\n\nexports.CssHighlightRules = CssHighlightRules;\n\n});\n\nace.define(\"ace/mode/css_completions\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nvar propertyMap = {\n \"background\": {\"#$0\": 1},\n \"background-color\": {\"#$0\": 1, \"transparent\": 1, \"fixed\": 1},\n \"background-image\": {\"url('/$0')\": 1},\n \"background-repeat\": {\"repeat\": 1, \"repeat-x\": 1, \"repeat-y\": 1, \"no-repeat\": 1, \"inherit\": 1},\n \"background-position\": {\"bottom\":2, \"center\":2, \"left\":2, \"right\":2, \"top\":2, \"inherit\":2},\n \"background-attachment\": {\"scroll\": 1, \"fixed\": 1},\n \"background-size\": {\"cover\": 1, \"contain\": 1},\n \"background-clip\": {\"border-box\": 1, \"padding-box\": 1, \"content-box\": 1},\n \"background-origin\": {\"border-box\": 1, \"padding-box\": 1, \"content-box\": 1},\n \"border\": {\"solid $0\": 1, \"dashed $0\": 1, \"dotted $0\": 1, \"#$0\": 1},\n \"border-color\": {\"#$0\": 1},\n \"border-style\": {\"solid\":2, \"dashed\":2, \"dotted\":2, \"double\":2, \"groove\":2, \"hidden\":2, \"inherit\":2, \"inset\":2, \"none\":2, \"outset\":2, \"ridged\":2},\n \"border-collapse\": {\"collapse\": 1, \"separate\": 1},\n \"bottom\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"clear\": {\"left\": 1, \"right\": 1, \"both\": 1, \"none\": 1},\n \"color\": {\"#$0\": 1, \"rgb(#$00,0,0)\": 1},\n \"cursor\": {\"default\": 1, \"pointer\": 1, \"move\": 1, \"text\": 1, \"wait\": 1, \"help\": 1, \"progress\": 1, \"n-resize\": 1, \"ne-resize\": 1, \"e-resize\": 1, \"se-resize\": 1, \"s-resize\": 1, \"sw-resize\": 1, \"w-resize\": 1, \"nw-resize\": 1},\n \"display\": {\"none\": 1, \"block\": 1, \"inline\": 1, \"inline-block\": 1, \"table-cell\": 1},\n \"empty-cells\": {\"show\": 1, \"hide\": 1},\n \"float\": {\"left\": 1, \"right\": 1, \"none\": 1},\n \"font-family\": {\"Arial\":2,\"Comic Sans MS\":2,\"Consolas\":2,\"Courier New\":2,\"Courier\":2,\"Georgia\":2,\"Monospace\":2,\"Sans-Serif\":2, \"Segoe UI\":2,\"Tahoma\":2,\"Times New Roman\":2,\"Trebuchet MS\":2,\"Verdana\": 1},\n \"font-size\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"font-weight\": {\"bold\": 1, \"normal\": 1},\n \"font-style\": {\"italic\": 1, \"normal\": 1},\n \"font-variant\": {\"normal\": 1, \"small-caps\": 1},\n \"height\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"left\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"letter-spacing\": {\"normal\": 1},\n \"line-height\": {\"normal\": 1},\n \"list-style-type\": {\"none\": 1, \"disc\": 1, \"circle\": 1, \"square\": 1, \"decimal\": 1, \"decimal-leading-zero\": 1, \"lower-roman\": 1, \"upper-roman\": 1, \"lower-greek\": 1, \"lower-latin\": 1, \"upper-latin\": 1, \"georgian\": 1, \"lower-alpha\": 1, \"upper-alpha\": 1},\n \"margin\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"margin-right\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"margin-left\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"margin-top\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"margin-bottom\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"max-height\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"max-width\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"min-height\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"min-width\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"overflow\": {\"hidden\": 1, \"visible\": 1, \"auto\": 1, \"scroll\": 1},\n \"overflow-x\": {\"hidden\": 1, \"visible\": 1, \"auto\": 1, \"scroll\": 1},\n \"overflow-y\": {\"hidden\": 1, \"visible\": 1, \"auto\": 1, \"scroll\": 1},\n \"padding\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"padding-top\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"padding-right\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"padding-bottom\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"padding-left\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"page-break-after\": {\"auto\": 1, \"always\": 1, \"avoid\": 1, \"left\": 1, \"right\": 1},\n \"page-break-before\": {\"auto\": 1, \"always\": 1, \"avoid\": 1, \"left\": 1, \"right\": 1},\n \"position\": {\"absolute\": 1, \"relative\": 1, \"fixed\": 1, \"static\": 1},\n \"right\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"table-layout\": {\"fixed\": 1, \"auto\": 1},\n \"text-decoration\": {\"none\": 1, \"underline\": 1, \"line-through\": 1, \"blink\": 1},\n \"text-align\": {\"left\": 1, \"right\": 1, \"center\": 1, \"justify\": 1},\n \"text-transform\": {\"capitalize\": 1, \"uppercase\": 1, \"lowercase\": 1, \"none\": 1},\n \"top\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"vertical-align\": {\"top\": 1, \"bottom\": 1},\n \"visibility\": {\"hidden\": 1, \"visible\": 1},\n \"white-space\": {\"nowrap\": 1, \"normal\": 1, \"pre\": 1, \"pre-line\": 1, \"pre-wrap\": 1},\n \"width\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"word-spacing\": {\"normal\": 1},\n \"filter\": {\"alpha(opacity=$0100)\": 1},\n\n \"text-shadow\": {\"$02px 2px 2px #777\": 1},\n \"text-overflow\": {\"ellipsis-word\": 1, \"clip\": 1, \"ellipsis\": 1},\n \"-moz-border-radius\": 1,\n \"-moz-border-radius-topright\": 1,\n \"-moz-border-radius-bottomright\": 1,\n \"-moz-border-radius-topleft\": 1,\n \"-moz-border-radius-bottomleft\": 1,\n \"-webkit-border-radius\": 1,\n \"-webkit-border-top-right-radius\": 1,\n \"-webkit-border-top-left-radius\": 1,\n \"-webkit-border-bottom-right-radius\": 1,\n \"-webkit-border-bottom-left-radius\": 1,\n \"-moz-box-shadow\": 1,\n \"-webkit-box-shadow\": 1,\n \"transform\": {\"rotate($00deg)\": 1, \"skew($00deg)\": 1},\n \"-moz-transform\": {\"rotate($00deg)\": 1, \"skew($00deg)\": 1},\n \"-webkit-transform\": {\"rotate($00deg)\": 1, \"skew($00deg)\": 1 }\n};\n\nvar CssCompletions = function() {\n\n};\n\n(function() {\n\n this.completionsDefined = false;\n\n this.defineCompletions = function() {\n if (document) {\n var style = document.createElement('c').style;\n\n for (var i in style) {\n if (typeof style[i] !== 'string')\n continue;\n\n var name = i.replace(/[A-Z]/g, function(x) {\n return '-' + x.toLowerCase();\n });\n\n if (!propertyMap.hasOwnProperty(name))\n propertyMap[name] = 1;\n }\n }\n\n this.completionsDefined = true;\n };\n\n this.getCompletions = function(state, session, pos, prefix) {\n if (!this.completionsDefined) {\n this.defineCompletions();\n }\n\n var token = session.getTokenAt(pos.row, pos.column);\n\n if (!token)\n return [];\n if (state==='ruleset'){\n var line = session.getLine(pos.row).substr(0, pos.column);\n if (/:[^;]+$/.test(line)) {\n /([\\w\\-]+):[^:]*$/.test(line);\n\n return this.getPropertyValueCompletions(state, session, pos, prefix);\n } else {\n return this.getPropertyCompletions(state, session, pos, prefix);\n }\n }\n\n return [];\n };\n\n this.getPropertyCompletions = function(state, session, pos, prefix) {\n var properties = Object.keys(propertyMap);\n return properties.map(function(property){\n return {\n caption: property,\n snippet: property + ': $0;',\n meta: \"property\",\n score: 1000000\n };\n });\n };\n\n this.getPropertyValueCompletions = function(state, session, pos, prefix) {\n var line = session.getLine(pos.row).substr(0, pos.column);\n var property = (/([\\w\\-]+):[^:]*$/.exec(line) || {})[1];\n\n if (!property)\n return [];\n var values = [];\n if (property in propertyMap && typeof propertyMap[property] === \"object\") {\n values = Object.keys(propertyMap[property]);\n }\n return values.map(function(value){\n return {\n caption: value,\n snippet: value,\n meta: \"property value\",\n score: 1000000\n };\n });\n };\n\n}).call(CssCompletions.prototype);\n\nexports.CssCompletions = CssCompletions;\n});\n\nace.define(\"ace/mode/behaviour/css\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/behaviour\",\"ace/mode/behaviour/cstyle\",\"ace/token_iterator\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Behaviour = require(\"../behaviour\").Behaviour;\nvar CstyleBehaviour = require(\"./cstyle\").CstyleBehaviour;\nvar TokenIterator = require(\"../../token_iterator\").TokenIterator;\n\nvar CssBehaviour = function () {\n\n this.inherit(CstyleBehaviour);\n\n this.add(\"colon\", \"insertion\", function (state, action, editor, session, text) {\n if (text === ':' && editor.selection.isEmpty()) {\n var cursor = editor.getCursorPosition();\n var iterator = new TokenIterator(session, cursor.row, cursor.column);\n var token = iterator.getCurrentToken();\n if (token && token.value.match(/\\s+/)) {\n token = iterator.stepBackward();\n }\n if (token && token.type === 'support.type') {\n var line = session.doc.getLine(cursor.row);\n var rightChar = line.substring(cursor.column, cursor.column + 1);\n if (rightChar === ':') {\n return {\n text: '',\n selection: [1, 1]\n };\n }\n if (/^(\\s+[^;]|\\s*$)/.test(line.substring(cursor.column))) {\n return {\n text: ':;',\n selection: [1, 1]\n };\n }\n }\n }\n });\n\n this.add(\"colon\", \"deletion\", function (state, action, editor, session, range) {\n var selected = session.doc.getTextRange(range);\n if (!range.isMultiLine() && selected === ':') {\n var cursor = editor.getCursorPosition();\n var iterator = new TokenIterator(session, cursor.row, cursor.column);\n var token = iterator.getCurrentToken();\n if (token && token.value.match(/\\s+/)) {\n token = iterator.stepBackward();\n }\n if (token && token.type === 'support.type') {\n var line = session.doc.getLine(range.start.row);\n var rightChar = line.substring(range.end.column, range.end.column + 1);\n if (rightChar === ';') {\n range.end.column ++;\n return range;\n }\n }\n }\n });\n\n this.add(\"semicolon\", \"insertion\", function (state, action, editor, session, text) {\n if (text === ';' && editor.selection.isEmpty()) {\n var cursor = editor.getCursorPosition();\n var line = session.doc.getLine(cursor.row);\n var rightChar = line.substring(cursor.column, cursor.column + 1);\n if (rightChar === ';') {\n return {\n text: '',\n selection: [1, 1]\n };\n }\n }\n });\n\n this.add(\"!important\", \"insertion\", function (state, action, editor, session, text) {\n if (text === '!' && editor.selection.isEmpty()) {\n var cursor = editor.getCursorPosition();\n var line = session.doc.getLine(cursor.row);\n\n if (/^\\s*(;|}|$)/.test(line.substring(cursor.column))) {\n return {\n text: '!important',\n selection: [10, 10]\n };\n }\n }\n });\n\n};\noop.inherits(CssBehaviour, CstyleBehaviour);\n\nexports.CssBehaviour = CssBehaviour;\n});\n\nace.define(\"ace/mode/css\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/css_highlight_rules\",\"ace/mode/matching_brace_outdent\",\"ace/worker/worker_client\",\"ace/mode/css_completions\",\"ace/mode/behaviour/css\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar CssHighlightRules = require(\"./css_highlight_rules\").CssHighlightRules;\nvar MatchingBraceOutdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\nvar WorkerClient = require(\"../worker/worker_client\").WorkerClient;\nvar CssCompletions = require(\"./css_completions\").CssCompletions;\nvar CssBehaviour = require(\"./behaviour/css\").CssBehaviour;\nvar CStyleFoldMode = require(\"./folding/cstyle\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = CssHighlightRules;\n this.$outdent = new MatchingBraceOutdent();\n this.$behaviour = new CssBehaviour();\n this.$completer = new CssCompletions();\n this.foldingRules = new CStyleFoldMode();\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.foldingRules = \"cStyle\";\n this.blockComment = {start: \"/*\", end: \"*/\"};\n\n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n var tokens = this.getTokenizer().getLineTokens(line, state).tokens;\n if (tokens.length && tokens[tokens.length-1].type == \"comment\") {\n return indent;\n }\n\n var match = line.match(/^.*\\{\\s*$/);\n if (match) {\n indent += tab;\n }\n\n return indent;\n };\n\n this.checkOutdent = function(state, line, input) {\n return this.$outdent.checkOutdent(line, input);\n };\n\n this.autoOutdent = function(state, doc, row) {\n this.$outdent.autoOutdent(doc, row);\n };\n\n this.getCompletions = function(state, session, pos, prefix) {\n return this.$completer.getCompletions(state, session, pos, prefix);\n };\n\n this.createWorker = function(session) {\n var worker = new WorkerClient([\"ace\"], \"ace/mode/css_worker\", \"Worker\");\n worker.attachToDocument(session.getDocument());\n\n worker.on(\"annotate\", function(e) {\n session.setAnnotations(e.data);\n });\n\n worker.on(\"terminate\", function() {\n session.clearAnnotations();\n });\n\n return worker;\n };\n\n this.$id = \"ace/mode/css\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n\n});\n\nace.define(\"ace/mode/xml_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar XmlHighlightRules = function(normalize) {\n var tagRegex = \"[_:a-zA-Z\\xc0-\\uffff][-_:.a-zA-Z0-9\\xc0-\\uffff]*\";\n\n this.$rules = {\n start : [\n {token : \"string.cdata.xml\", regex : \"<\\\\!\\\\[CDATA\\\\[\", next : \"cdata\"},\n {\n token : [\"punctuation.instruction.xml\", \"keyword.instruction.xml\"],\n regex : \"(<\\\\?)(\" + tagRegex + \")\", next : \"processing_instruction\"\n },\n {token : \"comment.start.xml\", regex : \"<\\\\!--\", next : \"comment\"},\n {\n token : [\"xml-pe.doctype.xml\", \"xml-pe.doctype.xml\"],\n regex : \"(<\\\\!)(DOCTYPE)(?=[\\\\s])\", next : \"doctype\", caseInsensitive: true\n },\n {include : \"tag\"},\n {token : \"text.end-tag-open.xml\", regex: \"\",\n next : \"start\"\n }],\n\n doctype : [\n {include : \"whitespace\"},\n {include : \"string\"},\n {token : \"xml-pe.doctype.xml\", regex : \">\", next : \"start\"},\n {token : \"xml-pe.xml\", regex : \"[-_a-zA-Z0-9:]+\"},\n {token : \"punctuation.int-subset\", regex : \"\\\\[\", push : \"int_subset\"}\n ],\n\n int_subset : [{\n token : \"text.xml\",\n regex : \"\\\\s+\"\n }, {\n token: \"punctuation.int-subset.xml\",\n regex: \"]\",\n next: \"pop\"\n }, {\n token : [\"punctuation.markup-decl.xml\", \"keyword.markup-decl.xml\"],\n regex : \"(<\\\\!)(\" + tagRegex + \")\",\n push : [{\n token : \"text\",\n regex : \"\\\\s+\"\n },\n {\n token : \"punctuation.markup-decl.xml\",\n regex : \">\",\n next : \"pop\"\n },\n {include : \"string\"}]\n }],\n\n cdata : [\n {token : \"string.cdata.xml\", regex : \"\\\\]\\\\]>\", next : \"start\"},\n {token : \"text.xml\", regex : \"\\\\s+\"},\n {token : \"text.xml\", regex : \"(?:[^\\\\]]|\\\\](?!\\\\]>))+\"}\n ],\n\n comment : [\n {token : \"comment.end.xml\", regex : \"-->\", next : \"start\"},\n {defaultToken : \"comment.xml\"}\n ],\n\n reference : [{\n token : \"constant.language.escape.reference.xml\",\n regex : \"(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\\\.-]+;)\"\n }],\n\n attr_reference : [{\n token : \"constant.language.escape.reference.attribute-value.xml\",\n regex : \"(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\\\.-]+;)\"\n }],\n\n tag : [{\n token : [\"meta.tag.punctuation.tag-open.xml\", \"meta.tag.punctuation.end-tag-open.xml\", \"meta.tag.tag-name.xml\"],\n regex : \"(?:(<)|(\", next : \"start\"}\n ]\n }],\n\n tag_whitespace : [\n {token : \"text.tag-whitespace.xml\", regex : \"\\\\s+\"}\n ],\n whitespace : [\n {token : \"text.whitespace.xml\", regex : \"\\\\s+\"}\n ],\n string: [{\n token : \"string.xml\",\n regex : \"'\",\n push : [\n {token : \"string.xml\", regex: \"'\", next: \"pop\"},\n {defaultToken : \"string.xml\"}\n ]\n }, {\n token : \"string.xml\",\n regex : '\"',\n push : [\n {token : \"string.xml\", regex: '\"', next: \"pop\"},\n {defaultToken : \"string.xml\"}\n ]\n }],\n\n attributes: [{\n token : \"entity.other.attribute-name.xml\",\n regex : tagRegex\n }, {\n token : \"keyword.operator.attribute-equals.xml\",\n regex : \"=\"\n }, {\n include: \"tag_whitespace\"\n }, {\n include: \"attribute_value\"\n }],\n\n attribute_value: [{\n token : \"string.attribute-value.xml\",\n regex : \"'\",\n push : [\n {token : \"string.attribute-value.xml\", regex: \"'\", next: \"pop\"},\n {include : \"attr_reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n }, {\n token : \"string.attribute-value.xml\",\n regex : '\"',\n push : [\n {token : \"string.attribute-value.xml\", regex: '\"', next: \"pop\"},\n {include : \"attr_reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n }]\n };\n\n if (this.constructor === XmlHighlightRules)\n this.normalizeRules();\n};\n\n\n(function() {\n\n this.embedTagRules = function(HighlightRules, prefix, tag){\n this.$rules.tag.unshift({\n token : [\"meta.tag.punctuation.tag-open.xml\", \"meta.tag.\" + tag + \".tag-name.xml\"],\n regex : \"(<)(\" + tag + \"(?=\\\\s|>|$))\",\n next: [\n {include : \"attributes\"},\n {token : \"meta.tag.punctuation.tag-close.xml\", regex : \"/?>\", next : prefix + \"start\"}\n ]\n });\n\n this.$rules[tag + \"-end\"] = [\n {include : \"attributes\"},\n {token : \"meta.tag.punctuation.tag-close.xml\", regex : \"/?>\", next: \"start\",\n onMatch : function(value, currentState, stack) {\n stack.splice(0);\n return this.token;\n }}\n ];\n\n this.embedRules(HighlightRules, prefix, [{\n token: [\"meta.tag.punctuation.end-tag-open.xml\", \"meta.tag.\" + tag + \".tag-name.xml\"],\n regex : \"(|$))\",\n next: tag + \"-end\"\n }, {\n token: \"string.cdata.xml\",\n regex : \"<\\\\!\\\\[CDATA\\\\[\"\n }, {\n token: \"string.cdata.xml\",\n regex : \"\\\\]\\\\]>\"\n }]);\n };\n\n}).call(TextHighlightRules.prototype);\n\noop.inherits(XmlHighlightRules, TextHighlightRules);\n\nexports.XmlHighlightRules = XmlHighlightRules;\n});\n\nace.define(\"ace/mode/html_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/css_highlight_rules\",\"ace/mode/javascript_highlight_rules\",\"ace/mode/xml_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar CssHighlightRules = require(\"./css_highlight_rules\").CssHighlightRules;\nvar JavaScriptHighlightRules = require(\"./javascript_highlight_rules\").JavaScriptHighlightRules;\nvar XmlHighlightRules = require(\"./xml_highlight_rules\").XmlHighlightRules;\n\nvar tagMap = lang.createMap({\n a : 'anchor',\n button \t : 'form',\n form : 'form',\n img : 'image',\n input : 'form',\n label : 'form',\n option : 'form',\n script : 'script',\n select : 'form',\n textarea : 'form',\n style : 'style',\n table : 'table',\n tbody : 'table',\n td : 'table',\n tfoot : 'table',\n th : 'table',\n tr : 'table'\n});\n\nvar HtmlHighlightRules = function() {\n XmlHighlightRules.call(this);\n\n this.addRules({\n attributes: [{\n include : \"tag_whitespace\"\n }, {\n token : \"entity.other.attribute-name.xml\",\n regex : \"[-_a-zA-Z0-9:.]+\"\n }, {\n token : \"keyword.operator.attribute-equals.xml\",\n regex : \"=\",\n push : [{\n include: \"tag_whitespace\"\n }, {\n token : \"string.unquoted.attribute-value.html\",\n regex : \"[^<>='\\\"`\\\\s]+\",\n next : \"pop\"\n }, {\n token : \"empty\",\n regex : \"\",\n next : \"pop\"\n }]\n }, {\n include : \"attribute_value\"\n }],\n tag: [{\n token : function(start, tag) {\n var group = tagMap[tag];\n return [\"meta.tag.punctuation.\" + (start == \"<\" ? \"\" : \"end-\") + \"tag-open.xml\",\n \"meta.tag\" + (group ? \".\" + group : \"\") + \".tag-name.xml\"];\n },\n regex : \"(\", next : \"start\"}\n ]\n });\n\n this.embedTagRules(CssHighlightRules, \"css-\", \"style\");\n this.embedTagRules(new JavaScriptHighlightRules({jsx: false}).getRules(), \"js-\", \"script\");\n\n if (this.constructor === HtmlHighlightRules)\n this.normalizeRules();\n};\n\noop.inherits(HtmlHighlightRules, XmlHighlightRules);\n\nexports.HtmlHighlightRules = HtmlHighlightRules;\n});\n\nace.define(\"ace/mode/behaviour/xml\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/behaviour\",\"ace/token_iterator\",\"ace/lib/lang\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Behaviour = require(\"../behaviour\").Behaviour;\nvar TokenIterator = require(\"../../token_iterator\").TokenIterator;\nvar lang = require(\"../../lib/lang\");\n\nfunction is(token, type) {\n return token && token.type.lastIndexOf(type + \".xml\") > -1;\n}\n\nvar XmlBehaviour = function () {\n\n this.add(\"string_dquotes\", \"insertion\", function (state, action, editor, session, text) {\n if (text == '\"' || text == \"'\") {\n var quote = text;\n var selected = session.doc.getTextRange(editor.getSelectionRange());\n if (selected !== \"\" && selected !== \"'\" && selected != '\"' && editor.getWrapBehavioursEnabled()) {\n return {\n text: quote + selected + quote,\n selection: false\n };\n }\n\n var cursor = editor.getCursorPosition();\n var line = session.doc.getLine(cursor.row);\n var rightChar = line.substring(cursor.column, cursor.column + 1);\n var iterator = new TokenIterator(session, cursor.row, cursor.column);\n var token = iterator.getCurrentToken();\n\n if (rightChar == quote && (is(token, \"attribute-value\") || is(token, \"string\"))) {\n return {\n text: \"\",\n selection: [1, 1]\n };\n }\n\n if (!token)\n token = iterator.stepBackward();\n\n if (!token)\n return;\n\n while (is(token, \"tag-whitespace\") || is(token, \"whitespace\")) {\n token = iterator.stepBackward();\n }\n var rightSpace = !rightChar || rightChar.match(/\\s/);\n if (is(token, \"attribute-equals\") && (rightSpace || rightChar == '>') || (is(token, \"decl-attribute-equals\") && (rightSpace || rightChar == '?'))) {\n return {\n text: quote + quote,\n selection: [1, 1]\n };\n }\n }\n });\n\n this.add(\"string_dquotes\", \"deletion\", function(state, action, editor, session, range) {\n var selected = session.doc.getTextRange(range);\n if (!range.isMultiLine() && (selected == '\"' || selected == \"'\")) {\n var line = session.doc.getLine(range.start.row);\n var rightChar = line.substring(range.start.column + 1, range.start.column + 2);\n if (rightChar == selected) {\n range.end.column++;\n return range;\n }\n }\n });\n\n this.add(\"autoclosing\", \"insertion\", function (state, action, editor, session, text) {\n if (text == '>') {\n var position = editor.getSelectionRange().start;\n var iterator = new TokenIterator(session, position.row, position.column);\n var token = iterator.getCurrentToken() || iterator.stepBackward();\n if (!token || !(is(token, \"tag-name\") || is(token, \"tag-whitespace\") || is(token, \"attribute-name\") || is(token, \"attribute-equals\") || is(token, \"attribute-value\")))\n return;\n if (is(token, \"reference.attribute-value\"))\n return;\n if (is(token, \"attribute-value\")) {\n var tokenEndColumn = iterator.getCurrentTokenColumn() + token.value.length;\n if (position.column < tokenEndColumn)\n return;\n if (position.column == tokenEndColumn) {\n var nextToken = iterator.stepForward();\n if (nextToken && is(nextToken, \"attribute-value\"))\n return;\n iterator.stepBackward();\n }\n }\n \n if (/^\\s*>/.test(session.getLine(position.row).slice(position.column)))\n return;\n while (!is(token, \"tag-name\")) {\n token = iterator.stepBackward();\n if (token.value == \"<\") {\n token = iterator.stepForward();\n break;\n }\n }\n\n var tokenRow = iterator.getCurrentTokenRow();\n var tokenColumn = iterator.getCurrentTokenColumn();\n if (is(iterator.stepBackward(), \"end-tag-open\"))\n return;\n\n var element = token.value;\n if (tokenRow == position.row)\n element = element.substring(0, position.column - tokenColumn);\n\n if (this.voidElements.hasOwnProperty(element.toLowerCase()))\n return;\n\n return {\n text: \">\" + \"\",\n selection: [1, 1]\n };\n }\n });\n\n this.add(\"autoindent\", \"insertion\", function (state, action, editor, session, text) {\n if (text == \"\\n\") {\n var cursor = editor.getCursorPosition();\n var line = session.getLine(cursor.row);\n var iterator = new TokenIterator(session, cursor.row, cursor.column);\n var token = iterator.getCurrentToken();\n\n if (token && token.type.indexOf(\"tag-close\") !== -1) {\n if (token.value == \"/>\")\n return;\n while (token && token.type.indexOf(\"tag-name\") === -1) {\n token = iterator.stepBackward();\n }\n\n if (!token) {\n return;\n }\n\n var tag = token.value;\n var row = iterator.getCurrentTokenRow();\n token = iterator.stepBackward();\n if (!token || token.type.indexOf(\"end-tag\") !== -1) {\n return;\n }\n\n if (this.voidElements && !this.voidElements[tag]) {\n var nextToken = session.getTokenAt(cursor.row, cursor.column+1);\n var line = session.getLine(row);\n var nextIndent = this.$getIndent(line);\n var indent = nextIndent + session.getTabString();\n\n if (nextToken && nextToken.value === \" -1;\n}\n\n(function() {\n\n this.getFoldWidget = function(session, foldStyle, row) {\n var tag = this._getFirstTagInLine(session, row);\n\n if (!tag)\n return this.getCommentFoldWidget(session, row);\n\n if (tag.closing || (!tag.tagName && tag.selfClosing))\n return foldStyle == \"markbeginend\" ? \"end\" : \"\";\n\n if (!tag.tagName || tag.selfClosing || this.voidElements.hasOwnProperty(tag.tagName.toLowerCase()))\n return \"\";\n\n if (this._findEndTagInLine(session, row, tag.tagName, tag.end.column))\n return \"\";\n\n return \"start\";\n };\n \n this.getCommentFoldWidget = function(session, row) {\n if (/comment/.test(session.getState(row)) && /';\n break;\n }\n }\n return tag;\n } else if (is(token, \"tag-close\")) {\n tag.selfClosing = token.value == '/>';\n return tag;\n }\n tag.start.column += token.value.length;\n }\n\n return null;\n };\n\n this._findEndTagInLine = function(session, row, tagName, startColumn) {\n var tokens = session.getTokens(row);\n var column = 0;\n for (var i = 0; i < tokens.length; i++) {\n var token = tokens[i];\n column += token.value.length;\n if (column < startColumn)\n continue;\n if (is(token, \"end-tag-open\")) {\n token = tokens[i + 1];\n if (token && token.value == tagName)\n return true;\n }\n }\n return false;\n };\n this._readTagForward = function(iterator) {\n var token = iterator.getCurrentToken();\n if (!token)\n return null;\n\n var tag = new Tag();\n do {\n if (is(token, \"tag-open\")) {\n tag.closing = is(token, \"end-tag-open\");\n tag.start.row = iterator.getCurrentTokenRow();\n tag.start.column = iterator.getCurrentTokenColumn();\n } else if (is(token, \"tag-name\")) {\n tag.tagName = token.value;\n } else if (is(token, \"tag-close\")) {\n tag.selfClosing = token.value == \"/>\";\n tag.end.row = iterator.getCurrentTokenRow();\n tag.end.column = iterator.getCurrentTokenColumn() + token.value.length;\n iterator.stepForward();\n return tag;\n }\n } while(token = iterator.stepForward());\n\n return null;\n };\n \n this._readTagBackward = function(iterator) {\n var token = iterator.getCurrentToken();\n if (!token)\n return null;\n\n var tag = new Tag();\n do {\n if (is(token, \"tag-open\")) {\n tag.closing = is(token, \"end-tag-open\");\n tag.start.row = iterator.getCurrentTokenRow();\n tag.start.column = iterator.getCurrentTokenColumn();\n iterator.stepBackward();\n return tag;\n } else if (is(token, \"tag-name\")) {\n tag.tagName = token.value;\n } else if (is(token, \"tag-close\")) {\n tag.selfClosing = token.value == \"/>\";\n tag.end.row = iterator.getCurrentTokenRow();\n tag.end.column = iterator.getCurrentTokenColumn() + token.value.length;\n }\n } while(token = iterator.stepBackward());\n\n return null;\n };\n \n this._pop = function(stack, tag) {\n while (stack.length) {\n \n var top = stack[stack.length-1];\n if (!tag || top.tagName == tag.tagName) {\n return stack.pop();\n }\n else if (this.optionalEndTags.hasOwnProperty(top.tagName)) {\n stack.pop();\n continue;\n } else {\n return null;\n }\n }\n };\n \n this.getFoldWidgetRange = function(session, foldStyle, row) {\n var firstTag = this._getFirstTagInLine(session, row);\n \n if (!firstTag) {\n return this.getCommentFoldWidget(session, row)\n && session.getCommentFoldRange(row, session.getLine(row).length);\n }\n \n var isBackward = firstTag.closing || firstTag.selfClosing;\n var stack = [];\n var tag;\n \n if (!isBackward) {\n var iterator = new TokenIterator(session, row, firstTag.start.column);\n var start = {\n row: row,\n column: firstTag.start.column + firstTag.tagName.length + 2\n };\n if (firstTag.start.row == firstTag.end.row)\n start.column = firstTag.end.column;\n while (tag = this._readTagForward(iterator)) {\n if (tag.selfClosing) {\n if (!stack.length) {\n tag.start.column += tag.tagName.length + 2;\n tag.end.column -= 2;\n return Range.fromPoints(tag.start, tag.end);\n } else\n continue;\n }\n \n if (tag.closing) {\n this._pop(stack, tag);\n if (stack.length == 0)\n return Range.fromPoints(start, tag.start);\n }\n else {\n stack.push(tag);\n }\n }\n }\n else {\n var iterator = new TokenIterator(session, row, firstTag.end.column);\n var end = {\n row: row,\n column: firstTag.start.column\n };\n \n while (tag = this._readTagBackward(iterator)) {\n if (tag.selfClosing) {\n if (!stack.length) {\n tag.start.column += tag.tagName.length + 2;\n tag.end.column -= 2;\n return Range.fromPoints(tag.start, tag.end);\n } else\n continue;\n }\n \n if (!tag.closing) {\n this._pop(stack, tag);\n if (stack.length == 0) {\n tag.start.column += tag.tagName.length + 2;\n if (tag.start.row == tag.end.row && tag.start.column < tag.end.column)\n tag.start.column = tag.end.column;\n return Range.fromPoints(tag.start, end);\n }\n }\n else {\n stack.push(tag);\n }\n }\n }\n \n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/folding/html\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/folding/mixed\",\"ace/mode/folding/xml\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar MixedFoldMode = require(\"./mixed\").FoldMode;\nvar XmlFoldMode = require(\"./xml\").FoldMode;\nvar CStyleFoldMode = require(\"./cstyle\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function(voidElements, optionalTags) {\n MixedFoldMode.call(this, new XmlFoldMode(voidElements, optionalTags), {\n \"js-\": new CStyleFoldMode(),\n \"css-\": new CStyleFoldMode()\n });\n};\n\noop.inherits(FoldMode, MixedFoldMode);\n\n});\n\nace.define(\"ace/mode/html_completions\",[\"require\",\"exports\",\"module\",\"ace/token_iterator\"], function(require, exports, module) {\n\"use strict\";\n\nvar TokenIterator = require(\"../token_iterator\").TokenIterator;\n\nvar commonAttributes = [\n \"accesskey\",\n \"class\",\n \"contenteditable\",\n \"contextmenu\",\n \"dir\",\n \"draggable\",\n \"dropzone\",\n \"hidden\",\n \"id\",\n \"inert\",\n \"itemid\",\n \"itemprop\",\n \"itemref\",\n \"itemscope\",\n \"itemtype\",\n \"lang\",\n \"spellcheck\",\n \"style\",\n \"tabindex\",\n \"title\",\n \"translate\"\n];\n\nvar eventAttributes = [\n \"onabort\",\n \"onblur\",\n \"oncancel\",\n \"oncanplay\",\n \"oncanplaythrough\",\n \"onchange\",\n \"onclick\",\n \"onclose\",\n \"oncontextmenu\",\n \"oncuechange\",\n \"ondblclick\",\n \"ondrag\",\n \"ondragend\",\n \"ondragenter\",\n \"ondragleave\",\n \"ondragover\",\n \"ondragstart\",\n \"ondrop\",\n \"ondurationchange\",\n \"onemptied\",\n \"onended\",\n \"onerror\",\n \"onfocus\",\n \"oninput\",\n \"oninvalid\",\n \"onkeydown\",\n \"onkeypress\",\n \"onkeyup\",\n \"onload\",\n \"onloadeddata\",\n \"onloadedmetadata\",\n \"onloadstart\",\n \"onmousedown\",\n \"onmousemove\",\n \"onmouseout\",\n \"onmouseover\",\n \"onmouseup\",\n \"onmousewheel\",\n \"onpause\",\n \"onplay\",\n \"onplaying\",\n \"onprogress\",\n \"onratechange\",\n \"onreset\",\n \"onscroll\",\n \"onseeked\",\n \"onseeking\",\n \"onselect\",\n \"onshow\",\n \"onstalled\",\n \"onsubmit\",\n \"onsuspend\",\n \"ontimeupdate\",\n \"onvolumechange\",\n \"onwaiting\"\n];\n\nvar globalAttributes = commonAttributes.concat(eventAttributes);\n\nvar attributeMap = {\n \"a\": {\"href\": 1, \"target\": {\"_blank\": 1, \"top\": 1}, \"ping\": 1, \"rel\": {\"nofollow\": 1, \"alternate\": 1, \"author\": 1, \"bookmark\": 1, \"help\": 1, \"license\": 1, \"next\": 1, \"noreferrer\": 1, \"prefetch\": 1, \"prev\": 1, \"search\": 1, \"tag\": 1}, \"media\": 1, \"hreflang\": 1, \"type\": 1},\n \"abbr\": {},\n \"address\": {},\n \"area\": {\"shape\": 1, \"coords\": 1, \"href\": 1, \"hreflang\": 1, \"alt\": 1, \"target\": 1, \"media\": 1, \"rel\": 1, \"ping\": 1, \"type\": 1},\n \"article\": {\"pubdate\": 1},\n \"aside\": {},\n \"audio\": {\"src\": 1, \"autobuffer\": 1, \"autoplay\": {\"autoplay\": 1}, \"loop\": {\"loop\": 1}, \"controls\": {\"controls\": 1}, \"muted\": {\"muted\": 1}, \"preload\": {\"auto\": 1, \"metadata\": 1, \"none\": 1 }},\n \"b\": {},\n \"base\": {\"href\": 1, \"target\": 1},\n \"bdi\": {},\n \"bdo\": {},\n \"blockquote\": {\"cite\": 1},\n \"body\": {\"onafterprint\": 1, \"onbeforeprint\": 1, \"onbeforeunload\": 1, \"onhashchange\": 1, \"onmessage\": 1, \"onoffline\": 1, \"onpopstate\": 1, \"onredo\": 1, \"onresize\": 1, \"onstorage\": 1, \"onundo\": 1, \"onunload\": 1},\n \"br\": {},\n \"button\": {\"autofocus\": 1, \"disabled\": {\"disabled\": 1}, \"form\": 1, \"formaction\": 1, \"formenctype\": 1, \"formmethod\": 1, \"formnovalidate\": 1, \"formtarget\": 1, \"name\": 1, \"value\": 1, \"type\": {\"button\": 1, \"submit\": 1}},\n \"canvas\": {\"width\": 1, \"height\": 1},\n \"caption\": {},\n \"cite\": {},\n \"code\": {},\n \"col\": {\"span\": 1},\n \"colgroup\": {\"span\": 1},\n \"command\": {\"type\": 1, \"label\": 1, \"icon\": 1, \"disabled\": 1, \"checked\": 1, \"radiogroup\": 1, \"command\": 1},\n \"data\": {},\n \"datalist\": {},\n \"dd\": {},\n \"del\": {\"cite\": 1, \"datetime\": 1},\n \"details\": {\"open\": 1},\n \"dfn\": {},\n \"dialog\": {\"open\": 1},\n \"div\": {},\n \"dl\": {},\n \"dt\": {},\n \"em\": {},\n \"embed\": {\"src\": 1, \"height\": 1, \"width\": 1, \"type\": 1},\n \"fieldset\": {\"disabled\": 1, \"form\": 1, \"name\": 1},\n \"figcaption\": {},\n \"figure\": {},\n \"footer\": {},\n \"form\": {\"accept-charset\": 1, \"action\": 1, \"autocomplete\": 1, \"enctype\": {\"multipart/form-data\": 1, \"application/x-www-form-urlencoded\": 1}, \"method\": {\"get\": 1, \"post\": 1}, \"name\": 1, \"novalidate\": 1, \"target\": {\"_blank\": 1, \"top\": 1}},\n \"h1\": {},\n \"h2\": {},\n \"h3\": {},\n \"h4\": {},\n \"h5\": {},\n \"h6\": {},\n \"head\": {},\n \"header\": {},\n \"hr\": {},\n \"html\": {\"manifest\": 1},\n \"i\": {},\n \"iframe\": {\"name\": 1, \"src\": 1, \"height\": 1, \"width\": 1, \"sandbox\": {\"allow-same-origin\": 1, \"allow-top-navigation\": 1, \"allow-forms\": 1, \"allow-scripts\": 1}, \"seamless\": {\"seamless\": 1}},\n \"img\": {\"alt\": 1, \"src\": 1, \"height\": 1, \"width\": 1, \"usemap\": 1, \"ismap\": 1},\n \"input\": {\n \"type\": {\"text\": 1, \"password\": 1, \"hidden\": 1, \"checkbox\": 1, \"submit\": 1, \"radio\": 1, \"file\": 1, \"button\": 1, \"reset\": 1, \"image\": 31, \"color\": 1, \"date\": 1, \"datetime\": 1, \"datetime-local\": 1, \"email\": 1, \"month\": 1, \"number\": 1, \"range\": 1, \"search\": 1, \"tel\": 1, \"time\": 1, \"url\": 1, \"week\": 1},\n \"accept\": 1, \"alt\": 1, \"autocomplete\": {\"on\": 1, \"off\": 1}, \"autofocus\": {\"autofocus\": 1}, \"checked\": {\"checked\": 1}, \"disabled\": {\"disabled\": 1}, \"form\": 1, \"formaction\": 1, \"formenctype\": {\"application/x-www-form-urlencoded\": 1, \"multipart/form-data\": 1, \"text/plain\": 1}, \"formmethod\": {\"get\": 1, \"post\": 1}, \"formnovalidate\": {\"formnovalidate\": 1}, \"formtarget\": {\"_blank\": 1, \"_self\": 1, \"_parent\": 1, \"_top\": 1}, \"height\": 1, \"list\": 1, \"max\": 1, \"maxlength\": 1, \"min\": 1, \"multiple\": {\"multiple\": 1}, \"name\": 1, \"pattern\": 1, \"placeholder\": 1, \"readonly\": {\"readonly\": 1}, \"required\": {\"required\": 1}, \"size\": 1, \"src\": 1, \"step\": 1, \"width\": 1, \"files\": 1, \"value\": 1},\n \"ins\": {\"cite\": 1, \"datetime\": 1},\n \"kbd\": {},\n \"keygen\": {\"autofocus\": 1, \"challenge\": {\"challenge\": 1}, \"disabled\": {\"disabled\": 1}, \"form\": 1, \"keytype\": {\"rsa\": 1, \"dsa\": 1, \"ec\": 1}, \"name\": 1},\n \"label\": {\"form\": 1, \"for\": 1},\n \"legend\": {},\n \"li\": {\"value\": 1},\n \"link\": {\"href\": 1, \"hreflang\": 1, \"rel\": {\"stylesheet\": 1, \"icon\": 1}, \"media\": {\"all\": 1, \"screen\": 1, \"print\": 1}, \"type\": {\"text/css\": 1, \"image/png\": 1, \"image/jpeg\": 1, \"image/gif\": 1}, \"sizes\": 1},\n \"main\": {},\n \"map\": {\"name\": 1},\n \"mark\": {},\n \"math\": {},\n \"menu\": {\"type\": 1, \"label\": 1},\n \"meta\": {\"http-equiv\": {\"content-type\": 1}, \"name\": {\"description\": 1, \"keywords\": 1}, \"content\": {\"text/html; charset=UTF-8\": 1}, \"charset\": 1},\n \"meter\": {\"value\": 1, \"min\": 1, \"max\": 1, \"low\": 1, \"high\": 1, \"optimum\": 1},\n \"nav\": {},\n \"noscript\": {\"href\": 1},\n \"object\": {\"param\": 1, \"data\": 1, \"type\": 1, \"height\" : 1, \"width\": 1, \"usemap\": 1, \"name\": 1, \"form\": 1, \"classid\": 1},\n \"ol\": {\"start\": 1, \"reversed\": 1},\n \"optgroup\": {\"disabled\": 1, \"label\": 1},\n \"option\": {\"disabled\": 1, \"selected\": 1, \"label\": 1, \"value\": 1},\n \"output\": {\"for\": 1, \"form\": 1, \"name\": 1},\n \"p\": {},\n \"param\": {\"name\": 1, \"value\": 1},\n \"pre\": {},\n \"progress\": {\"value\": 1, \"max\": 1},\n \"q\": {\"cite\": 1},\n \"rp\": {},\n \"rt\": {},\n \"ruby\": {},\n \"s\": {},\n \"samp\": {},\n \"script\": {\"charset\": 1, \"type\": {\"text/javascript\": 1}, \"src\": 1, \"defer\": 1, \"async\": 1},\n \"select\": {\"autofocus\": 1, \"disabled\": 1, \"form\": 1, \"multiple\": {\"multiple\": 1}, \"name\": 1, \"size\": 1, \"readonly\":{\"readonly\": 1}},\n \"small\": {},\n \"source\": {\"src\": 1, \"type\": 1, \"media\": 1},\n \"span\": {},\n \"strong\": {},\n \"style\": {\"type\": 1, \"media\": {\"all\": 1, \"screen\": 1, \"print\": 1}, \"scoped\": 1},\n \"sub\": {},\n \"sup\": {},\n \"svg\": {},\n \"table\": {\"summary\": 1},\n \"tbody\": {},\n \"td\": {\"headers\": 1, \"rowspan\": 1, \"colspan\": 1},\n \"textarea\": {\"autofocus\": {\"autofocus\": 1}, \"disabled\": {\"disabled\": 1}, \"form\": 1, \"maxlength\": 1, \"name\": 1, \"placeholder\": 1, \"readonly\": {\"readonly\": 1}, \"required\": {\"required\": 1}, \"rows\": 1, \"cols\": 1, \"wrap\": {\"on\": 1, \"off\": 1, \"hard\": 1, \"soft\": 1}},\n \"tfoot\": {},\n \"th\": {\"headers\": 1, \"rowspan\": 1, \"colspan\": 1, \"scope\": 1},\n \"thead\": {},\n \"time\": {\"datetime\": 1},\n \"title\": {},\n \"tr\": {},\n \"track\": {\"kind\": 1, \"src\": 1, \"srclang\": 1, \"label\": 1, \"default\": 1},\n \"section\": {},\n \"summary\": {},\n \"u\": {},\n \"ul\": {},\n \"var\": {},\n \"video\": {\"src\": 1, \"autobuffer\": 1, \"autoplay\": {\"autoplay\": 1}, \"loop\": {\"loop\": 1}, \"controls\": {\"controls\": 1}, \"width\": 1, \"height\": 1, \"poster\": 1, \"muted\": {\"muted\": 1}, \"preload\": {\"auto\": 1, \"metadata\": 1, \"none\": 1}},\n \"wbr\": {}\n};\n\nvar elements = Object.keys(attributeMap);\n\nfunction is(token, type) {\n return token.type.lastIndexOf(type + \".xml\") > -1;\n}\n\nfunction findTagName(session, pos) {\n var iterator = new TokenIterator(session, pos.row, pos.column);\n var token = iterator.getCurrentToken();\n while (token && !is(token, \"tag-name\")){\n token = iterator.stepBackward();\n }\n if (token)\n return token.value;\n}\n\nfunction findAttributeName(session, pos) {\n var iterator = new TokenIterator(session, pos.row, pos.column);\n var token = iterator.getCurrentToken();\n while (token && !is(token, \"attribute-name\")){\n token = iterator.stepBackward();\n }\n if (token)\n return token.value;\n}\n\nvar HtmlCompletions = function() {\n\n};\n\n(function() {\n\n this.getCompletions = function(state, session, pos, prefix) {\n var token = session.getTokenAt(pos.row, pos.column);\n\n if (!token)\n return [];\n if (is(token, \"tag-name\") || is(token, \"tag-open\") || is(token, \"end-tag-open\"))\n return this.getTagCompletions(state, session, pos, prefix);\n if (is(token, \"tag-whitespace\") || is(token, \"attribute-name\"))\n return this.getAttributeCompletions(state, session, pos, prefix);\n if (is(token, \"attribute-value\"))\n return this.getAttributeValueCompletions(state, session, pos, prefix);\n var line = session.getLine(pos.row).substr(0, pos.column);\n if (/&[a-z]*$/i.test(line))\n return this.getHTMLEntityCompletions(state, session, pos, prefix);\n\n return [];\n };\n\n this.getTagCompletions = function(state, session, pos, prefix) {\n return elements.map(function(element){\n return {\n value: element,\n meta: \"tag\",\n score: 1000000\n };\n });\n };\n\n this.getAttributeCompletions = function(state, session, pos, prefix) {\n var tagName = findTagName(session, pos);\n if (!tagName)\n return [];\n var attributes = globalAttributes;\n if (tagName in attributeMap) {\n attributes = attributes.concat(Object.keys(attributeMap[tagName]));\n }\n return attributes.map(function(attribute){\n return {\n caption: attribute,\n snippet: attribute + '=\"$0\"',\n meta: \"attribute\",\n score: 1000000\n };\n });\n };\n\n this.getAttributeValueCompletions = function(state, session, pos, prefix) {\n var tagName = findTagName(session, pos);\n var attributeName = findAttributeName(session, pos);\n \n if (!tagName)\n return [];\n var values = [];\n if (tagName in attributeMap && attributeName in attributeMap[tagName] && typeof attributeMap[tagName][attributeName] === \"object\") {\n values = Object.keys(attributeMap[tagName][attributeName]);\n }\n return values.map(function(value){\n return {\n caption: value,\n snippet: value,\n meta: \"attribute value\",\n score: 1000000\n };\n });\n };\n\n this.getHTMLEntityCompletions = function(state, session, pos, prefix) {\n var values = ['Aacute;', 'aacute;', 'Acirc;', 'acirc;', 'acute;', 'AElig;', 'aelig;', 'Agrave;', 'agrave;', 'alefsym;', 'Alpha;', 'alpha;', 'amp;', 'and;', 'ang;', 'Aring;', 'aring;', 'asymp;', 'Atilde;', 'atilde;', 'Auml;', 'auml;', 'bdquo;', 'Beta;', 'beta;', 'brvbar;', 'bull;', 'cap;', 'Ccedil;', 'ccedil;', 'cedil;', 'cent;', 'Chi;', 'chi;', 'circ;', 'clubs;', 'cong;', 'copy;', 'crarr;', 'cup;', 'curren;', 'Dagger;', 'dagger;', 'dArr;', 'darr;', 'deg;', 'Delta;', 'delta;', 'diams;', 'divide;', 'Eacute;', 'eacute;', 'Ecirc;', 'ecirc;', 'Egrave;', 'egrave;', 'empty;', 'emsp;', 'ensp;', 'Epsilon;', 'epsilon;', 'equiv;', 'Eta;', 'eta;', 'ETH;', 'eth;', 'Euml;', 'euml;', 'euro;', 'exist;', 'fnof;', 'forall;', 'frac12;', 'frac14;', 'frac34;', 'frasl;', 'Gamma;', 'gamma;', 'ge;', 'gt;', 'hArr;', 'harr;', 'hearts;', 'hellip;', 'Iacute;', 'iacute;', 'Icirc;', 'icirc;', 'iexcl;', 'Igrave;', 'igrave;', 'image;', 'infin;', 'int;', 'Iota;', 'iota;', 'iquest;', 'isin;', 'Iuml;', 'iuml;', 'Kappa;', 'kappa;', 'Lambda;', 'lambda;', 'lang;', 'laquo;', 'lArr;', 'larr;', 'lceil;', 'ldquo;', 'le;', 'lfloor;', 'lowast;', 'loz;', 'lrm;', 'lsaquo;', 'lsquo;', 'lt;', 'macr;', 'mdash;', 'micro;', 'middot;', 'minus;', 'Mu;', 'mu;', 'nabla;', 'nbsp;', 'ndash;', 'ne;', 'ni;', 'not;', 'notin;', 'nsub;', 'Ntilde;', 'ntilde;', 'Nu;', 'nu;', 'Oacute;', 'oacute;', 'Ocirc;', 'ocirc;', 'OElig;', 'oelig;', 'Ograve;', 'ograve;', 'oline;', 'Omega;', 'omega;', 'Omicron;', 'omicron;', 'oplus;', 'or;', 'ordf;', 'ordm;', 'Oslash;', 'oslash;', 'Otilde;', 'otilde;', 'otimes;', 'Ouml;', 'ouml;', 'para;', 'part;', 'permil;', 'perp;', 'Phi;', 'phi;', 'Pi;', 'pi;', 'piv;', 'plusmn;', 'pound;', 'Prime;', 'prime;', 'prod;', 'prop;', 'Psi;', 'psi;', 'quot;', 'radic;', 'rang;', 'raquo;', 'rArr;', 'rarr;', 'rceil;', 'rdquo;', 'real;', 'reg;', 'rfloor;', 'Rho;', 'rho;', 'rlm;', 'rsaquo;', 'rsquo;', 'sbquo;', 'Scaron;', 'scaron;', 'sdot;', 'sect;', 'shy;', 'Sigma;', 'sigma;', 'sigmaf;', 'sim;', 'spades;', 'sub;', 'sube;', 'sum;', 'sup;', 'sup1;', 'sup2;', 'sup3;', 'supe;', 'szlig;', 'Tau;', 'tau;', 'there4;', 'Theta;', 'theta;', 'thetasym;', 'thinsp;', 'THORN;', 'thorn;', 'tilde;', 'times;', 'trade;', 'Uacute;', 'uacute;', 'uArr;', 'uarr;', 'Ucirc;', 'ucirc;', 'Ugrave;', 'ugrave;', 'uml;', 'upsih;', 'Upsilon;', 'upsilon;', 'Uuml;', 'uuml;', 'weierp;', 'Xi;', 'xi;', 'Yacute;', 'yacute;', 'yen;', 'Yuml;', 'yuml;', 'Zeta;', 'zeta;', 'zwj;', 'zwnj;'];\n\n return values.map(function(value){\n return {\n caption: value,\n snippet: value,\n meta: \"html entity\",\n score: 1000000\n };\n });\n };\n\n}).call(HtmlCompletions.prototype);\n\nexports.HtmlCompletions = HtmlCompletions;\n});\n\nace.define(\"ace/mode/html\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/text\",\"ace/mode/javascript\",\"ace/mode/css\",\"ace/mode/html_highlight_rules\",\"ace/mode/behaviour/xml\",\"ace/mode/folding/html\",\"ace/mode/html_completions\",\"ace/worker/worker_client\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar TextMode = require(\"./text\").Mode;\nvar JavaScriptMode = require(\"./javascript\").Mode;\nvar CssMode = require(\"./css\").Mode;\nvar HtmlHighlightRules = require(\"./html_highlight_rules\").HtmlHighlightRules;\nvar XmlBehaviour = require(\"./behaviour/xml\").XmlBehaviour;\nvar HtmlFoldMode = require(\"./folding/html\").FoldMode;\nvar HtmlCompletions = require(\"./html_completions\").HtmlCompletions;\nvar WorkerClient = require(\"../worker/worker_client\").WorkerClient;\nvar voidElements = [\"area\", \"base\", \"br\", \"col\", \"embed\", \"hr\", \"img\", \"input\", \"keygen\", \"link\", \"meta\", \"menuitem\", \"param\", \"source\", \"track\", \"wbr\"];\nvar optionalEndTags = [\"li\", \"dt\", \"dd\", \"p\", \"rt\", \"rp\", \"optgroup\", \"option\", \"colgroup\", \"td\", \"th\"];\n\nvar Mode = function(options) {\n this.fragmentContext = options && options.fragmentContext;\n this.HighlightRules = HtmlHighlightRules;\n this.$behaviour = new XmlBehaviour();\n this.$completer = new HtmlCompletions();\n \n this.createModeDelegates({\n \"js-\": JavaScriptMode,\n \"css-\": CssMode\n });\n \n this.foldingRules = new HtmlFoldMode(this.voidElements, lang.arrayToMap(optionalEndTags));\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.blockComment = {start: \"\"};\n\n this.voidElements = lang.arrayToMap(voidElements);\n\n this.getNextLineIndent = function(state, line, tab) {\n return this.$getIndent(line);\n };\n\n this.checkOutdent = function(state, line, input) {\n return false;\n };\n\n this.getCompletions = function(state, session, pos, prefix) {\n return this.$completer.getCompletions(state, session, pos, prefix);\n };\n\n this.createWorker = function(session) {\n if (this.constructor != Mode)\n return;\n var worker = new WorkerClient([\"ace\"], \"ace/mode/html_worker\", \"Worker\");\n worker.attachToDocument(session.getDocument());\n\n if (this.fragmentContext)\n worker.call(\"setOptions\", [{context: this.fragmentContext}]);\n\n worker.on(\"error\", function(e) {\n session.setAnnotations(e.data);\n });\n\n worker.on(\"terminate\", function() {\n session.clearAnnotations();\n });\n\n return worker;\n };\n\n this.$id = \"ace/mode/html\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/html\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file2u := &embedded.EmbeddedFile{ Filename: "4190490a8257bdfcce6e2bd4f0634086.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/ada_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar AdaHighlightRules = function() {\nvar keywords = \"abort|else|new|return|abs|elsif|not|reverse|abstract|end|null|accept|entry|select|\" +\n\"access|exception|of|separate|aliased|exit|or|some|all|others|subtype|and|for|out|synchronized|\" +\n\"array|function|overriding|at|tagged|generic|package|task|begin|goto|pragma|terminate|\" +\n\"body|private|then|if|procedure|type|case|in|protected|constant|interface|until|\" +\n\"|is|raise|use|declare|range|delay|limited|record|when|delta|loop|rem|while|digits|renames|with|do|mod|requeue|xor\";\n\n var builtinConstants = (\n \"true|false|null\"\n );\n\n var builtinFunctions = (\n \"count|min|max|avg|sum|rank|now|coalesce|main\"\n );\n\n var keywordMapper = this.createKeywordMapper({\n \"support.function\": builtinFunctions,\n \"keyword\": keywords,\n \"constant.language\": builtinConstants\n }, \"identifier\", true);\n\n this.$rules = {\n \"start\" : [ {\n token : \"comment\",\n regex : \"--.*$\"\n }, {\n token : \"string\", // \" string\n regex : '\".*?\"'\n }, {\n token : \"string\", // character\n regex : \"'.'\"\n }, {\n token : \"constant.numeric\", // float\n regex : \"[+-]?\\\\d+(?:(?:\\\\.\\\\d*)?(?:[eE][+-]?\\\\d+)?)?\\\\b\"\n }, {\n token : keywordMapper,\n regex : \"[a-zA-Z_$][a-zA-Z0-9_$]*\\\\b\"\n }, {\n token : \"keyword.operator\",\n regex : \"\\\\+|\\\\-|\\\\/|\\\\/\\\\/|%|<@>|@>|<@|&|\\\\^|~|<|>|<=|=>|==|!=|<>|=\"\n }, {\n token : \"paren.lparen\",\n regex : \"[\\\\(]\"\n }, {\n token : \"paren.rparen\",\n regex : \"[\\\\)]\"\n }, {\n token : \"text\",\n regex : \"\\\\s+\"\n } ]\n };\n};\n\noop.inherits(AdaHighlightRules, TextHighlightRules);\n\nexports.AdaHighlightRules = AdaHighlightRules;\n});\n\nace.define(\"ace/mode/ada\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/ada_highlight_rules\",\"ace/range\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar AdaHighlightRules = require(\"./ada_highlight_rules\").AdaHighlightRules;\nvar Range = require(\"../range\").Range;\n\nvar Mode = function() {\n this.HighlightRules = AdaHighlightRules;\n this.$behaviour = this.$defaultBehaviour;\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.lineCommentStart = \"--\";\n\n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n\n var tokenizedLine = this.getTokenizer().getLineTokens(line, state);\n var tokens = tokenizedLine.tokens;\n\n if (tokens.length && tokens[tokens.length-1].type == \"comment\") {\n return indent;\n }\n if (state == \"start\") {\n var match = line.match(/^.*(begin|loop|then|is|do)\\s*$/);\n if (match) {\n indent += tab;\n }\n }\n\n return indent;\n };\n\n this.checkOutdent = function(state, line, input) {\n var complete_line = line + input;\n if (complete_line.match(/^\\s*(begin|end)$/)) {\n return true;\n }\n\n return false;\n };\n\n this.autoOutdent = function(state, session, row) {\n\n var line = session.getLine(row);\n var prevLine = session.getLine(row - 1);\n var prevIndent = this.$getIndent(prevLine).length;\n var indent = this.$getIndent(line).length;\n if (indent <= prevIndent) {\n return;\n }\n\n session.outdentRows(new Range(row, 0, row + 2, 0));\n };\n\n\n this.$id = \"ace/mode/ada\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n\n}); (function() {\n ace.require([\"ace/mode/ada\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file2v := &embedded.EmbeddedFile{ Filename: "4219a24921493cdd5195cdd11e6b35d9.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/csound_preprocessor_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\n\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar CsoundPreprocessorHighlightRules = function() {\n\n this.semicolonComments = {\n token : \"comment.line.semicolon.csound\",\n regex : \";.*$\"\n };\n\n this.comments = [\n {\n token : \"punctuation.definition.comment.begin.csound\",\n regex : \"/\\\\*\",\n push : [\n {\n token : \"punctuation.definition.comment.end.csound\",\n regex : \"\\\\*/\",\n next : \"pop\"\n }, {\n defaultToken: \"comment.block.csound\"\n }\n ]\n }, {\n token : \"comment.line.double-slash.csound\",\n regex : \"//.*$\"\n },\n this.semicolonComments\n ];\n\n this.macroUses = [\n {\n token : [\"entity.name.function.preprocessor.csound\", \"punctuation.definition.macro-parameter-value-list.begin.csound\"],\n regex : /(\\$[A-Z_a-z]\\w*\\.?)(\\()/,\n next : \"macro parameter value list\"\n }, {\n token : \"entity.name.function.preprocessor.csound\",\n regex : /\\$[A-Z_a-z]\\w*(?:\\.|\\b)/\n }\n ];\n\n this.numbers = [\n {\n token : \"constant.numeric.float.csound\",\n regex : /(?:\\d+[Ee][+-]?\\d+)|(?:\\d+\\.\\d*|\\d*\\.\\d+)(?:[Ee][+-]?\\d+)?/\n }, {\n token : [\"storage.type.number.csound\", \"constant.numeric.integer.hexadecimal.csound\"],\n regex : /(0[Xx])([0-9A-Fa-f]+)/\n }, {\n token : \"constant.numeric.integer.decimal.csound\",\n regex : /\\d+/\n }\n ];\n\n this.bracedStringContents = [\n {\n token : \"constant.character.escape.csound\",\n regex : /\\\\(?:[\\\\abnrt\"]|[0-7]{1,3})/\n },\n {\n token : \"constant.character.placeholder.csound\",\n regex : /%[#0\\- +]*\\d*(?:\\.\\d+)?[diuoxXfFeEgGaAcs]/\n }, {\n token : \"constant.character.escape.csound\",\n regex : /%%/\n }\n ];\n\n this.quotedStringContents = [\n this.macroUses,\n this.bracedStringContents\n ];\n\n var start = [\n this.comments,\n\n {\n token : \"keyword.preprocessor.csound\",\n regex : /#(?:e(?:nd(?:if)?|lse)\\b|##)|@@?[ \\t]*\\d+/\n }, {\n token : \"keyword.preprocessor.csound\",\n regex : /#include/,\n push : [\n this.comments,\n {\n token : \"string.csound\",\n regex : /([^ \\t])(?:.*?\\1)/,\n next : \"pop\"\n }\n ]\n }, {\n token : \"keyword.preprocessor.csound\",\n regex : /#[ \\t]*define/,\n next : \"define directive\"\n }, {\n token : \"keyword.preprocessor.csound\",\n regex : /#(?:ifn?def|undef)\\b/,\n next : \"macro directive\"\n },\n\n this.macroUses\n ];\n\n this.$rules = {\n \"start\": start,\n\n \"define directive\": [\n this.comments,\n {\n token : \"entity.name.function.preprocessor.csound\",\n regex : /[A-Z_a-z]\\w*/\n }, {\n token : \"punctuation.definition.macro-parameter-name-list.begin.csound\",\n regex : /\\(/,\n next : \"macro parameter name list\"\n }, {\n token : \"punctuation.definition.macro.begin.csound\",\n regex : /#/,\n next : \"macro body\"\n }\n ],\n \"macro parameter name list\": [\n {\n token : \"variable.parameter.preprocessor.csound\",\n regex : /[A-Z_a-z]\\w*/\n }, {\n token : \"punctuation.definition.macro-parameter-name-list.end.csound\",\n regex : /\\)/,\n next : \"define directive\"\n }\n ],\n \"macro body\": [\n {\n token : \"constant.character.escape.csound\",\n regex : /\\\\#/\n }, {\n token : \"punctuation.definition.macro.end.csound\",\n regex : /#/,\n next : \"start\"\n },\n start\n ],\n\n \"macro directive\": [\n this.comments,\n {\n token : \"entity.name.function.preprocessor.csound\",\n regex : /[A-Z_a-z]\\w*/,\n next : \"start\"\n }\n ],\n\n \"macro parameter value list\": [\n {\n token : \"punctuation.definition.macro-parameter-value-list.end.csound\",\n regex : /\\)/,\n next : \"start\"\n }, {\n token : \"punctuation.definition.string.begin.csound\",\n regex : /\"/,\n next : \"macro parameter value quoted string\"\n }, this.pushRule({\n token : \"punctuation.macro-parameter-value-parenthetical.begin.csound\",\n regex : /\\(/,\n next : \"macro parameter value parenthetical\"\n }), {\n token : \"punctuation.macro-parameter-value-separator.csound\",\n regex : \"[#']\"\n }\n ],\n \"macro parameter value quoted string\": [\n {\n token : \"constant.character.escape.csound\",\n regex : /\\\\[#'()]/\n }, {\n token : \"invalid.illegal.csound\",\n regex : /[#'()]/\n }, {\n token : \"punctuation.definition.string.end.csound\",\n regex : /\"/,\n next : \"macro parameter value list\"\n },\n this.quotedStringContents,\n {\n defaultToken: \"string.quoted.csound\"\n }\n ],\n \"macro parameter value parenthetical\": [\n {\n token : \"constant.character.escape.csound\",\n regex : /\\\\\\)/\n }, this.popRule({\n token : \"punctuation.macro-parameter-value-parenthetical.end.csound\",\n regex : /\\)/\n }), this.pushRule({\n token : \"punctuation.macro-parameter-value-parenthetical.begin.csound\",\n regex : /\\(/,\n next : \"macro parameter value parenthetical\"\n }),\n start\n ]\n };\n};\n\noop.inherits(CsoundPreprocessorHighlightRules, TextHighlightRules);\n\n(function() {\n\n this.pushRule = function(params) {\n return {\n regex : params.regex, onMatch: function(value, currentState, stack, line) {\n if (stack.length === 0)\n stack.push(currentState);\n if (Array.isArray(params.next)) {\n for (var i = 0; i < params.next.length; i++) {\n stack.push(params.next[i]);\n }\n } else {\n stack.push(params.next);\n }\n this.next = stack[stack.length - 1];\n return params.token;\n },\n get next() { return Array.isArray(params.next) ? params.next[params.next.length - 1] : params.next; },\n set next(next) {\n if (Array.isArray(params.next)) {\n var oldNext = params.next[params.next.length - 1];\n var oldNextIndex = oldNext.length - 1;\n var newNextIndex = next.length - 1;\n if (newNextIndex > oldNextIndex) {\n while (oldNextIndex >= 0 && newNextIndex >= 0) {\n if (oldNext.charAt(oldNextIndex) !== next.charAt(newNextIndex)) {\n var prefix = next.substr(0, newNextIndex);\n for (var i = 0; i < params.next.length; i++) {\n params.next[i] = prefix + params.next[i];\n }\n break;\n }\n oldNextIndex--;\n newNextIndex--;\n }\n }\n } else {\n params.next = next;\n }\n },\n get token() { return params.token; }\n };\n };\n\n this.popRule = function(params) {\n return {\n regex : params.regex, onMatch: function(value, currentState, stack, line) {\n stack.pop();\n if (params.next) {\n stack.push(params.next);\n this.next = stack[stack.length - 1];\n } else {\n this.next = stack.length > 1 ? stack[stack.length - 1] : stack.pop();\n }\n return params.token;\n }\n };\n };\n\n}).call(CsoundPreprocessorHighlightRules.prototype);\n\nexports.CsoundPreprocessorHighlightRules = CsoundPreprocessorHighlightRules;\n});\n\nace.define(\"ace/mode/csound_score_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/csound_preprocessor_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\n\nvar CsoundPreprocessorHighlightRules = require(\"./csound_preprocessor_highlight_rules\").CsoundPreprocessorHighlightRules;\n\nvar CsoundScoreHighlightRules = function() {\n\n CsoundPreprocessorHighlightRules.call(this);\n\n this.quotedStringContents.push({\n token : \"invalid.illegal.csound-score\",\n regex : /[^\"]*$/\n });\n\n var start = this.$rules.start;\n start.push(\n {\n token : \"keyword.control.csound-score\",\n regex : /[abCdefiqstvxy]/\n }, {\n token : \"invalid.illegal.csound-score\",\n regex : /w/\n }, {\n token : \"constant.numeric.language.csound-score\",\n regex : /z/\n }, {\n token : [\"keyword.control.csound-score\", \"constant.numeric.integer.decimal.csound-score\"],\n regex : /([nNpP][pP])(\\d+)/\n }, {\n token : \"keyword.other.csound-score\",\n regex : /[mn]/,\n push : [\n {\n token : \"empty\",\n regex : /$/,\n next : \"pop\"\n },\n this.comments,\n {\n token : \"entity.name.label.csound-score\",\n regex : /[A-Z_a-z]\\w*/\n }\n ]\n }, {\n token : \"keyword.preprocessor.csound-score\",\n regex : /r\\b/,\n next : \"repeat section\"\n },\n\n this.numbers,\n\n {\n token : \"keyword.operator.csound-score\",\n regex : \"[!+\\\\-*/^%&|<>#~.]\"\n },\n\n this.pushRule({\n token : \"punctuation.definition.string.begin.csound-score\",\n regex : /\"/,\n next : \"quoted string\"\n }),\n\n this.pushRule({\n token : \"punctuation.braced-loop.begin.csound-score\",\n regex : /{/,\n next : \"loop after left brace\"\n })\n );\n\n this.addRules({\n \"repeat section\": [\n {\n token : \"empty\",\n regex : /$/,\n next : \"start\"\n },\n this.comments,\n {\n token : \"constant.numeric.integer.decimal.csound-score\",\n regex : /\\d+/,\n next : \"repeat section before label\"\n }\n ],\n \"repeat section before label\": [\n {\n token : \"empty\",\n regex : /$/,\n next : \"start\"\n },\n this.comments,\n {\n token : \"entity.name.label.csound-score\",\n regex : /[A-Z_a-z]\\w*/,\n next : \"start\"\n }\n ],\n\n \"quoted string\": [\n this.popRule({\n token : \"punctuation.definition.string.end.csound-score\",\n regex : /\"/\n }),\n this.quotedStringContents,\n {\n defaultToken: \"string.quoted.csound-score\"\n }\n ],\n\n \"loop after left brace\": [\n this.popRule({\n token : \"constant.numeric.integer.decimal.csound-score\",\n regex : /\\d+/,\n next : \"loop after repeat count\"\n }),\n this.comments,\n {\n token : \"invalid.illegal.csound\",\n regex : /\\S.*/\n }\n ],\n \"loop after repeat count\": [\n this.popRule({\n token : \"entity.name.function.preprocessor.csound-score\",\n regex : /[A-Z_a-z]\\w*\\b/,\n next : \"loop after macro name\"\n }),\n this.comments,\n {\n token : \"invalid.illegal.csound\",\n regex : /\\S.*/\n }\n ],\n \"loop after macro name\": [\n start,\n this.popRule({\n token : \"punctuation.braced-loop.end.csound-score\",\n regex : /}/\n })\n ]\n });\n\n this.normalizeRules();\n};\n\noop.inherits(CsoundScoreHighlightRules, CsoundPreprocessorHighlightRules);\n\nexports.CsoundScoreHighlightRules = CsoundScoreHighlightRules;\n});\n\nace.define(\"ace/mode/csound_score\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/csound_score_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar CsoundScoreHighlightRules = require(\"./csound_score_highlight_rules\").CsoundScoreHighlightRules;\n\nvar Mode = function() {\n this.HighlightRules = CsoundScoreHighlightRules;\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.lineCommentStart = \";\";\n this.blockComment = {start: \"/*\", end: \"*/\"};\n\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/csound_score\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file2w := &embedded.EmbeddedFile{ Filename: "4263ed179f5b2268965e1157074583e8.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/javascript\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText = \"# Prototype\\n\\\nsnippet proto\\n\\\n\t${1:class_name}.prototype.${2:method_name} = function(${3:first_argument}) {\\n\\\n\t\t${4:// body...}\\n\\\n\t};\\n\\\n# Function\\n\\\nsnippet fun\\n\\\n\tfunction ${1?:function_name}(${2:argument}) {\\n\\\n\t\t${3:// body...}\\n\\\n\t}\\n\\\n# Anonymous Function\\n\\\nregex /((=)\\\\s*|(:)\\\\s*|(\\\\()|\\\\b)/f/(\\\\))?/\\n\\\nsnippet f\\n\\\n\tfunction${M1?: ${1:functionName}}($2) {\\n\\\n\t\t${0:$TM_SELECTED_TEXT}\\n\\\n\t}${M2?;}${M3?,}${M4?)}\\n\\\n# Immediate function\\n\\\ntrigger \\\\(?f\\\\(\\n\\\nendTrigger \\\\)?\\n\\\nsnippet f(\\n\\\n\t(function(${1}) {\\n\\\n\t\t${0:${TM_SELECTED_TEXT:/* code */}}\\n\\\n\t}(${1}));\\n\\\n# if\\n\\\nsnippet if\\n\\\n\tif (${1:true}) {\\n\\\n\t\t${0}\\n\\\n\t}\\n\\\n# if ... else\\n\\\nsnippet ife\\n\\\n\tif (${1:true}) {\\n\\\n\t\t${2}\\n\\\n\t} else {\\n\\\n\t\t${0}\\n\\\n\t}\\n\\\n# tertiary conditional\\n\\\nsnippet ter\\n\\\n\t${1:/* condition */} ? ${2:a} : ${3:b}\\n\\\n# switch\\n\\\nsnippet switch\\n\\\n\tswitch (${1:expression}) {\\n\\\n\t\tcase '${3:case}':\\n\\\n\t\t\t${4:// code}\\n\\\n\t\t\tbreak;\\n\\\n\t\t${5}\\n\\\n\t\tdefault:\\n\\\n\t\t\t${2:// code}\\n\\\n\t}\\n\\\n# case\\n\\\nsnippet case\\n\\\n\tcase '${1:case}':\\n\\\n\t\t${2:// code}\\n\\\n\t\tbreak;\\n\\\n\t${3}\\n\\\n\\n\\\n# while (...) {...}\\n\\\nsnippet wh\\n\\\n\twhile (${1:/* condition */}) {\\n\\\n\t\t${0:/* code */}\\n\\\n\t}\\n\\\n# try\\n\\\nsnippet try\\n\\\n\ttry {\\n\\\n\t\t${0:/* code */}\\n\\\n\t} catch (e) {}\\n\\\n# do...while\\n\\\nsnippet do\\n\\\n\tdo {\\n\\\n\t\t${2:/* code */}\\n\\\n\t} while (${1:/* condition */});\\n\\\n# Object Method\\n\\\nsnippet :f\\n\\\nregex /([,{[])|^\\\\s*/:f/\\n\\\n\t${1:method_name}: function(${2:attribute}) {\\n\\\n\t\t${0}\\n\\\n\t}${3:,}\\n\\\n# setTimeout function\\n\\\nsnippet setTimeout\\n\\\nregex /\\\\b/st|timeout|setTimeo?u?t?/\\n\\\n\tsetTimeout(function() {${3:$TM_SELECTED_TEXT}}, ${1:10});\\n\\\n# Get Elements\\n\\\nsnippet gett\\n\\\n\tgetElementsBy${1:TagName}('${2}')${3}\\n\\\n# Get Element\\n\\\nsnippet get\\n\\\n\tgetElementBy${1:Id}('${2}')${3}\\n\\\n# console.log (Firebug)\\n\\\nsnippet cl\\n\\\n\tconsole.log(${1});\\n\\\n# return\\n\\\nsnippet ret\\n\\\n\treturn ${1:result}\\n\\\n# for (property in object ) { ... }\\n\\\nsnippet fori\\n\\\n\tfor (var ${1:prop} in ${2:Things}) {\\n\\\n\t\t${0:$2[$1]}\\n\\\n\t}\\n\\\n# hasOwnProperty\\n\\\nsnippet has\\n\\\n\thasOwnProperty(${1})\\n\\\n# docstring\\n\\\nsnippet /**\\n\\\n\t/**\\n\\\n\t * ${1:description}\\n\\\n\t *\\n\\\n\t */\\n\\\nsnippet @par\\n\\\nregex /^\\\\s*\\\\*\\\\s*/@(para?m?)?/\\n\\\n\t@param {${1:type}} ${2:name} ${3:description}\\n\\\nsnippet @ret\\n\\\n\t@return {${1:type}} ${2:description}\\n\\\n# JSON.parse\\n\\\nsnippet jsonp\\n\\\n\tJSON.parse(${1:jstr});\\n\\\n# JSON.stringify\\n\\\nsnippet jsons\\n\\\n\tJSON.stringify(${1:object});\\n\\\n# self-defining function\\n\\\nsnippet sdf\\n\\\n\tvar ${1:function_name} = function(${2:argument}) {\\n\\\n\t\t${3:// initial code ...}\\n\\\n\\n\\\n\t\t$1 = function($2) {\\n\\\n\t\t\t${4:// main code}\\n\\\n\t\t};\\n\\\n\t}\\n\\\n# singleton\\n\\\nsnippet sing\\n\\\n\tfunction ${1:Singleton} (${2:argument}) {\\n\\\n\t\t// the cached instance\\n\\\n\t\tvar instance;\\n\\\n\\n\\\n\t\t// rewrite the constructor\\n\\\n\t\t$1 = function $1($2) {\\n\\\n\t\t\treturn instance;\\n\\\n\t\t};\\n\\\n\t\t\\n\\\n\t\t// carry over the prototype properties\\n\\\n\t\t$1.prototype = this;\\n\\\n\\n\\\n\t\t// the instance\\n\\\n\t\tinstance = new $1();\\n\\\n\\n\\\n\t\t// reset the constructor pointer\\n\\\n\t\tinstance.constructor = $1;\\n\\\n\\n\\\n\t\t${3:// code ...}\\n\\\n\\n\\\n\t\treturn instance;\\n\\\n\t}\\n\\\n# class\\n\\\nsnippet class\\n\\\nregex /^\\\\s*/clas{0,2}/\\n\\\n\tvar ${1:class} = function(${20}) {\\n\\\n\t\t$40$0\\n\\\n\t};\\n\\\n\t\\n\\\n\t(function() {\\n\\\n\t\t${60:this.prop = \\\"\\\"}\\n\\\n\t}).call(${1:class}.prototype);\\n\\\n\t\\n\\\n\texports.${1:class} = ${1:class};\\n\\\n# \\n\\\nsnippet for-\\n\\\n\tfor (var ${1:i} = ${2:Things}.length; ${1:i}--; ) {\\n\\\n\t\t${0:${2:Things}[${1:i}];}\\n\\\n\t}\\n\\\n# for (...) {...}\\n\\\nsnippet for\\n\\\n\tfor (var ${1:i} = 0; $1 < ${2:Things}.length; $1++) {\\n\\\n\t\t${3:$2[$1]}$0\\n\\\n\t}\\n\\\n# for (...) {...} (Improved Native For-Loop)\\n\\\nsnippet forr\\n\\\n\tfor (var ${1:i} = ${2:Things}.length - 1; $1 >= 0; $1--) {\\n\\\n\t\t${3:$2[$1]}$0\\n\\\n\t}\\n\\\n\\n\\\n\\n\\\n#modules\\n\\\nsnippet def\\n\\\n\tdefine(function(require, exports, module) {\\n\\\n\t\\\"use strict\\\";\\n\\\n\tvar ${1/.*\\\\///} = require(\\\"${1}\\\");\\n\\\n\t\\n\\\n\t$TM_SELECTED_TEXT\\n\\\n\t});\\n\\\nsnippet req\\n\\\nguard ^\\\\s*\\n\\\n\tvar ${1/.*\\\\///} = require(\\\"${1}\\\");\\n\\\n\t$0\\n\\\nsnippet requ\\n\\\nguard ^\\\\s*\\n\\\n\tvar ${1/.*\\\\/(.)/\\\\u$1/} = require(\\\"${1}\\\").${1/.*\\\\/(.)/\\\\u$1/};\\n\\\n\t$0\\n\\\n\";\nexports.scope = \"javascript\";\n\n}); (function() {\n ace.require([\"ace/snippets/javascript\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file2x := &embedded.EmbeddedFile{ Filename: "42837f940cb1b7ef3aacf38a45916320.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/theme/vibrant_ink\",[\"require\",\"exports\",\"module\",\"ace/lib/dom\"], function(require, exports, module) {\n\nexports.isDark = true;\nexports.cssClass = \"ace-vibrant-ink\";\nexports.cssText = \".ace-vibrant-ink .ace_gutter {\\\nbackground: #1a1a1a;\\\ncolor: #BEBEBE\\\n}\\\n.ace-vibrant-ink .ace_print-margin {\\\nwidth: 1px;\\\nbackground: #1a1a1a\\\n}\\\n.ace-vibrant-ink {\\\nbackground-color: #0F0F0F;\\\ncolor: #FFFFFF\\\n}\\\n.ace-vibrant-ink .ace_cursor {\\\ncolor: #FFFFFF\\\n}\\\n.ace-vibrant-ink .ace_marker-layer .ace_selection {\\\nbackground: #6699CC\\\n}\\\n.ace-vibrant-ink.ace_multiselect .ace_selection.ace_start {\\\nbox-shadow: 0 0 3px 0px #0F0F0F;\\\n}\\\n.ace-vibrant-ink .ace_marker-layer .ace_step {\\\nbackground: rgb(102, 82, 0)\\\n}\\\n.ace-vibrant-ink .ace_marker-layer .ace_bracket {\\\nmargin: -1px 0 0 -1px;\\\nborder: 1px solid #404040\\\n}\\\n.ace-vibrant-ink .ace_marker-layer .ace_active-line {\\\nbackground: #333333\\\n}\\\n.ace-vibrant-ink .ace_gutter-active-line {\\\nbackground-color: #333333\\\n}\\\n.ace-vibrant-ink .ace_marker-layer .ace_selected-word {\\\nborder: 1px solid #6699CC\\\n}\\\n.ace-vibrant-ink .ace_invisible {\\\ncolor: #404040\\\n}\\\n.ace-vibrant-ink .ace_keyword,\\\n.ace-vibrant-ink .ace_meta {\\\ncolor: #FF6600\\\n}\\\n.ace-vibrant-ink .ace_constant,\\\n.ace-vibrant-ink .ace_constant.ace_character,\\\n.ace-vibrant-ink .ace_constant.ace_character.ace_escape,\\\n.ace-vibrant-ink .ace_constant.ace_other {\\\ncolor: #339999\\\n}\\\n.ace-vibrant-ink .ace_constant.ace_numeric {\\\ncolor: #99CC99\\\n}\\\n.ace-vibrant-ink .ace_invalid,\\\n.ace-vibrant-ink .ace_invalid.ace_deprecated {\\\ncolor: #CCFF33;\\\nbackground-color: #000000\\\n}\\\n.ace-vibrant-ink .ace_fold {\\\nbackground-color: #FFCC00;\\\nborder-color: #FFFFFF\\\n}\\\n.ace-vibrant-ink .ace_entity.ace_name.ace_function,\\\n.ace-vibrant-ink .ace_support.ace_function,\\\n.ace-vibrant-ink .ace_variable {\\\ncolor: #FFCC00\\\n}\\\n.ace-vibrant-ink .ace_variable.ace_parameter {\\\nfont-style: italic\\\n}\\\n.ace-vibrant-ink .ace_string {\\\ncolor: #66FF00\\\n}\\\n.ace-vibrant-ink .ace_string.ace_regexp {\\\ncolor: #44B4CC\\\n}\\\n.ace-vibrant-ink .ace_comment {\\\ncolor: #9933CC\\\n}\\\n.ace-vibrant-ink .ace_entity.ace_other.ace_attribute-name {\\\nfont-style: italic;\\\ncolor: #99CC99\\\n}\\\n.ace-vibrant-ink .ace_indent-guide {\\\nbackground: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWNgYGBgYNDTc/oPAALPAZ7hxlbYAAAAAElFTkSuQmCC) right repeat-y\\\n}\";\n\nvar dom = require(\"../lib/dom\");\ndom.importCssString(exports.cssText, exports.cssClass);\n}); (function() {\n ace.require([\"ace/theme/vibrant_ink\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file2y := &embedded.EmbeddedFile{ Filename: "42c6cec68f0df0c7e2cae3d652f87962.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/ext/menu_tools/overlay_page\",[\"require\",\"exports\",\"module\",\"ace/lib/dom\"], function(require, exports, module) {\n'use strict';\nvar dom = require(\"../../lib/dom\");\nvar cssText = \"#ace_settingsmenu, #kbshortcutmenu {\\\nbackground-color: #F7F7F7;\\\ncolor: black;\\\nbox-shadow: -5px 4px 5px rgba(126, 126, 126, 0.55);\\\npadding: 1em 0.5em 2em 1em;\\\noverflow: auto;\\\nposition: absolute;\\\nmargin: 0;\\\nbottom: 0;\\\nright: 0;\\\ntop: 0;\\\nz-index: 9991;\\\ncursor: default;\\\n}\\\n.ace_dark #ace_settingsmenu, .ace_dark #kbshortcutmenu {\\\nbox-shadow: -20px 10px 25px rgba(126, 126, 126, 0.25);\\\nbackground-color: rgba(255, 255, 255, 0.6);\\\ncolor: black;\\\n}\\\n.ace_optionsMenuEntry:hover {\\\nbackground-color: rgba(100, 100, 100, 0.1);\\\ntransition: all 0.3s\\\n}\\\n.ace_closeButton {\\\nbackground: rgba(245, 146, 146, 0.5);\\\nborder: 1px solid #F48A8A;\\\nborder-radius: 50%;\\\npadding: 7px;\\\nposition: absolute;\\\nright: -8px;\\\ntop: -8px;\\\nz-index: 100000;\\\n}\\\n.ace_closeButton{\\\nbackground: rgba(245, 146, 146, 0.9);\\\n}\\\n.ace_optionsMenuKey {\\\ncolor: darkslateblue;\\\nfont-weight: bold;\\\n}\\\n.ace_optionsMenuCommand {\\\ncolor: darkcyan;\\\nfont-weight: normal;\\\n}\\\n.ace_optionsMenuEntry input, .ace_optionsMenuEntry button {\\\nvertical-align: middle;\\\n}\\\n.ace_optionsMenuEntry button[ace_selected_button=true] {\\\nbackground: #e7e7e7;\\\nbox-shadow: 1px 0px 2px 0px #adadad inset;\\\nborder-color: #adadad;\\\n}\\\n.ace_optionsMenuEntry button {\\\nbackground: white;\\\nborder: 1px solid lightgray;\\\nmargin: 0px;\\\n}\\\n.ace_optionsMenuEntry button:hover{\\\nbackground: #f0f0f0;\\\n}\";\ndom.importCssString(cssText);\nmodule.exports.overlayPage = function overlayPage(editor, contentElement, top, right, bottom, left) {\n top = top ? 'top: ' + top + ';' : '';\n bottom = bottom ? 'bottom: ' + bottom + ';' : '';\n right = right ? 'right: ' + right + ';' : '';\n left = left ? 'left: ' + left + ';' : '';\n\n var closer = document.createElement('div');\n var contentContainer = document.createElement('div');\n\n function documentEscListener(e) {\n if (e.keyCode === 27) {\n closer.click();\n }\n }\n\n closer.style.cssText = 'margin: 0; padding: 0; ' +\n 'position: fixed; top:0; bottom:0; left:0; right:0;' +\n 'z-index: 9990; ' +\n 'background-color: rgba(0, 0, 0, 0.3);';\n closer.addEventListener('click', function() {\n document.removeEventListener('keydown', documentEscListener);\n closer.parentNode.removeChild(closer);\n editor.focus();\n closer = null;\n });\n document.addEventListener('keydown', documentEscListener);\n\n contentContainer.style.cssText = top + right + bottom + left;\n contentContainer.addEventListener('click', function(e) {\n e.stopPropagation();\n });\n\n var wrapper = dom.createElement(\"div\");\n wrapper.style.position = \"relative\";\n \n var closeButton = dom.createElement(\"div\");\n closeButton.className = \"ace_closeButton\";\n closeButton.addEventListener('click', function() {\n closer.click();\n });\n \n wrapper.appendChild(closeButton);\n contentContainer.appendChild(wrapper);\n \n contentContainer.appendChild(contentElement);\n closer.appendChild(contentContainer);\n document.body.appendChild(closer);\n editor.blur();\n};\n\n});\n\nace.define(\"ace/ext/modelist\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nvar modes = [];\nfunction getModeForPath(path) {\n var mode = modesByName.text;\n var fileName = path.split(/[\\/\\\\]/).pop();\n for (var i = 0; i < modes.length; i++) {\n if (modes[i].supportsFile(fileName)) {\n mode = modes[i];\n break;\n }\n }\n return mode;\n}\n\nvar Mode = function(name, caption, extensions) {\n this.name = name;\n this.caption = caption;\n this.mode = \"ace/mode/\" + name;\n this.extensions = extensions;\n var re;\n if (/\\^/.test(extensions)) {\n re = extensions.replace(/\\|(\\^)?/g, function(a, b){\n return \"$|\" + (b ? \"^\" : \"^.*\\\\.\");\n }) + \"$\";\n } else {\n re = \"^.*\\\\.(\" + extensions + \")$\";\n }\n\n this.extRe = new RegExp(re, \"gi\");\n};\n\nMode.prototype.supportsFile = function(filename) {\n return filename.match(this.extRe);\n};\nvar supportedModes = {\n ABAP: [\"abap\"],\n ABC: [\"abc\"],\n ActionScript:[\"as\"],\n ADA: [\"ada|adb\"],\n Apache_Conf: [\"^htaccess|^htgroups|^htpasswd|^conf|htaccess|htgroups|htpasswd\"],\n AsciiDoc: [\"asciidoc|adoc\"],\n ASL: [\"dsl|asl\"],\n Assembly_x86:[\"asm|a\"],\n AutoHotKey: [\"ahk\"],\n Apex: [\"apex|cls|trigger|tgr\"],\n BatchFile: [\"bat|cmd\"],\n Bro: [\"bro\"],\n C_Cpp: [\"cpp|c|cc|cxx|h|hh|hpp|ino\"],\n C9Search: [\"c9search_results\"],\n Cirru: [\"cirru|cr\"],\n Clojure: [\"clj|cljs\"],\n Cobol: [\"CBL|COB\"],\n coffee: [\"coffee|cf|cson|^Cakefile\"],\n ColdFusion: [\"cfm\"],\n CSharp: [\"cs\"],\n Csound_Document: [\"csd\"],\n Csound_Orchestra: [\"orc\"],\n Csound_Score: [\"sco\"],\n CSS: [\"css\"],\n Curly: [\"curly\"],\n D: [\"d|di\"],\n Dart: [\"dart\"],\n Diff: [\"diff|patch\"],\n Dockerfile: [\"^Dockerfile\"],\n Dot: [\"dot\"],\n Drools: [\"drl\"],\n Edifact: [\"edi\"],\n Eiffel: [\"e|ge\"],\n EJS: [\"ejs\"],\n Elixir: [\"ex|exs\"],\n Elm: [\"elm\"],\n Erlang: [\"erl|hrl\"],\n Forth: [\"frt|fs|ldr|fth|4th\"],\n Fortran: [\"f|f90\"],\n FSharp: [\"fsi|fs|ml|mli|fsx|fsscript\"],\n FSL: [\"fsl\"],\n FTL: [\"ftl\"],\n Gcode: [\"gcode\"],\n Gherkin: [\"feature\"],\n Gitignore: [\"^.gitignore\"],\n Glsl: [\"glsl|frag|vert\"],\n Gobstones: [\"gbs\"],\n golang: [\"go\"],\n GraphQLSchema: [\"gql\"],\n Groovy: [\"groovy\"],\n HAML: [\"haml\"],\n Handlebars: [\"hbs|handlebars|tpl|mustache\"],\n Haskell: [\"hs\"],\n Haskell_Cabal: [\"cabal\"],\n haXe: [\"hx\"],\n Hjson: [\"hjson\"],\n HTML: [\"html|htm|xhtml|vue|we|wpy\"],\n HTML_Elixir: [\"eex|html.eex\"],\n HTML_Ruby: [\"erb|rhtml|html.erb\"],\n INI: [\"ini|conf|cfg|prefs\"],\n Io: [\"io\"],\n Jack: [\"jack\"],\n Jade: [\"jade|pug\"],\n Java: [\"java\"],\n JavaScript: [\"js|jsm|jsx\"],\n JSON: [\"json\"],\n JSONiq: [\"jq\"],\n JSP: [\"jsp\"],\n JSSM: [\"jssm|jssm_state\"],\n JSX: [\"jsx\"],\n Julia: [\"jl\"],\n Kotlin: [\"kt|kts\"],\n LaTeX: [\"tex|latex|ltx|bib\"],\n LESS: [\"less\"],\n Liquid: [\"liquid\"],\n Lisp: [\"lisp\"],\n LiveScript: [\"ls\"],\n LogiQL: [\"logic|lql\"],\n LSL: [\"lsl\"],\n Lua: [\"lua\"],\n LuaPage: [\"lp\"],\n Lucene: [\"lucene\"],\n Makefile: [\"^Makefile|^GNUmakefile|^makefile|^OCamlMakefile|make\"],\n Markdown: [\"md|markdown\"],\n Mask: [\"mask\"],\n MATLAB: [\"matlab\"],\n Maze: [\"mz\"],\n MEL: [\"mel\"],\n MIXAL: [\"mixal\"],\n MUSHCode: [\"mc|mush\"],\n MySQL: [\"mysql\"],\n Nix: [\"nix\"],\n NSIS: [\"nsi|nsh\"],\n ObjectiveC: [\"m|mm\"],\n OCaml: [\"ml|mli\"],\n Pascal: [\"pas|p\"],\n Perl: [\"pl|pm\"],\n\tPerl6: [\"p6|pl6|pm6\"],\n pgSQL: [\"pgsql\"],\n PHP_Laravel_blade: [\"blade.php\"],\n PHP: [\"inc|php|phtml|shtml|php3|php4|php5|phps|phpt|aw|ctp|module\"],\n Puppet: [\"epp|pp\"],\n Pig: [\"pig\"],\n Powershell: [\"ps1\"],\n Praat: [\"praat|praatscript|psc|proc\"],\n Prolog: [\"plg|prolog\"],\n Properties: [\"properties\"],\n Protobuf: [\"proto\"],\n Python: [\"py\"],\n R: [\"r\"],\n Razor: [\"cshtml|asp\"],\n RDoc: [\"Rd\"],\n Red: [\"red|reds\"],\n RHTML: [\"Rhtml\"],\n RST: [\"rst\"],\n Ruby: [\"rb|ru|gemspec|rake|^Guardfile|^Rakefile|^Gemfile\"],\n Rust: [\"rs\"],\n SASS: [\"sass\"],\n SCAD: [\"scad\"],\n Scala: [\"scala\"],\n Scheme: [\"scm|sm|rkt|oak|scheme\"],\n SCSS: [\"scss\"],\n SH: [\"sh|bash|^.bashrc\"],\n SJS: [\"sjs\"],\n Slim: [\"slim|skim\"],\n Smarty: [\"smarty|tpl\"],\n snippets: [\"snippets\"],\n Soy_Template:[\"soy\"],\n Space: [\"space\"],\n SQL: [\"sql\"],\n SQLServer: [\"sqlserver\"],\n Stylus: [\"styl|stylus\"],\n SVG: [\"svg\"],\n Swift: [\"swift\"],\n Tcl: [\"tcl\"],\n Terraform: [\"tf\", \"tfvars\", \"terragrunt\"],\n Tex: [\"tex\"],\n Text: [\"txt\"],\n Textile: [\"textile\"],\n Toml: [\"toml\"],\n TSX: [\"tsx\"],\n Twig: [\"latte|twig|swig\"],\n Typescript: [\"ts|typescript|str\"],\n Vala: [\"vala\"],\n VBScript: [\"vbs|vb\"],\n Velocity: [\"vm\"],\n Verilog: [\"v|vh|sv|svh\"],\n VHDL: [\"vhd|vhdl\"],\n Visualforce: [\"vfp|component|page\"],\n Wollok: [\"wlk|wpgm|wtest\"],\n XML: [\"xml|rdf|rss|wsdl|xslt|atom|mathml|mml|xul|xbl|xaml\"],\n XQuery: [\"xq\"],\n YAML: [\"yaml|yml\"],\n Django: [\"html\"]\n};\n\nvar nameOverrides = {\n ObjectiveC: \"Objective-C\",\n CSharp: \"C#\",\n golang: \"Go\",\n C_Cpp: \"C and C++\",\n Csound_Document: \"Csound Document\",\n Csound_Orchestra: \"Csound\",\n Csound_Score: \"Csound Score\",\n coffee: \"CoffeeScript\",\n HTML_Ruby: \"HTML (Ruby)\",\n HTML_Elixir: \"HTML (Elixir)\",\n FTL: \"FreeMarker\",\n PHP_Laravel_blade: \"PHP (Blade Template)\",\n Perl6: \"Perl 6\"\n};\nvar modesByName = {};\nfor (var name in supportedModes) {\n var data = supportedModes[name];\n var displayName = (nameOverrides[name] || name).replace(/_/g, \" \");\n var filename = name.toLowerCase();\n var mode = new Mode(filename, displayName, data[0]);\n modesByName[filename] = mode;\n modes.push(mode);\n}\n\nmodule.exports = {\n getModeForPath: getModeForPath,\n modes: modes,\n modesByName: modesByName\n};\n\n});\n\nace.define(\"ace/ext/themelist\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nvar themeData = [\n [\"Chrome\" ],\n [\"Clouds\" ],\n [\"Crimson Editor\" ],\n [\"Dawn\" ],\n [\"Dreamweaver\" ],\n [\"Eclipse\" ],\n [\"GitHub\" ],\n [\"IPlastic\" ],\n [\"Solarized Light\"],\n [\"TextMate\" ],\n [\"Tomorrow\" ],\n [\"XCode\" ],\n [\"Kuroir\"],\n [\"KatzenMilch\"],\n [\"SQL Server\" ,\"sqlserver\" , \"light\"],\n [\"Ambiance\" ,\"ambiance\" , \"dark\"],\n [\"Chaos\" ,\"chaos\" , \"dark\"],\n [\"Clouds Midnight\" ,\"clouds_midnight\" , \"dark\"],\n [\"Dracula\" ,\"\" , \"dark\"],\n [\"Cobalt\" ,\"cobalt\" , \"dark\"],\n [\"Gruvbox\" ,\"gruvbox\" , \"dark\"],\n [\"Green on Black\" ,\"gob\" , \"dark\"],\n [\"idle Fingers\" ,\"idle_fingers\" , \"dark\"],\n [\"krTheme\" ,\"kr_theme\" , \"dark\"],\n [\"Merbivore\" ,\"merbivore\" , \"dark\"],\n [\"Merbivore Soft\" ,\"merbivore_soft\" , \"dark\"],\n [\"Mono Industrial\" ,\"mono_industrial\" , \"dark\"],\n [\"Monokai\" ,\"monokai\" , \"dark\"],\n [\"Pastel on dark\" ,\"pastel_on_dark\" , \"dark\"],\n [\"Solarized Dark\" ,\"solarized_dark\" , \"dark\"],\n [\"Terminal\" ,\"terminal\" , \"dark\"],\n [\"Tomorrow Night\" ,\"tomorrow_night\" , \"dark\"],\n [\"Tomorrow Night Blue\" ,\"tomorrow_night_blue\" , \"dark\"],\n [\"Tomorrow Night Bright\",\"tomorrow_night_bright\" , \"dark\"],\n [\"Tomorrow Night 80s\" ,\"tomorrow_night_eighties\" , \"dark\"],\n [\"Twilight\" ,\"twilight\" , \"dark\"],\n [\"Vibrant Ink\" ,\"vibrant_ink\" , \"dark\"]\n];\n\n\nexports.themesByName = {};\nexports.themes = themeData.map(function(data) {\n var name = data[1] || data[0].replace(/ /g, \"_\").toLowerCase();\n var theme = {\n caption: data[0],\n theme: \"ace/theme/\" + name,\n isDark: data[2] == \"dark\",\n name: name\n };\n exports.themesByName[name] = theme;\n return theme;\n});\n\n});\n\nace.define(\"ace/ext/options\",[\"require\",\"exports\",\"module\",\"ace/ext/menu_tools/overlay_page\",\"ace/lib/dom\",\"ace/lib/oop\",\"ace/lib/event_emitter\",\"ace/ext/modelist\",\"ace/ext/themelist\"], function(require, exports, module) {\n\"use strict\";\nvar overlayPage = require('./menu_tools/overlay_page').overlayPage;\n\n \nvar dom = require(\"../lib/dom\");\nvar oop = require(\"../lib/oop\");\nvar EventEmitter = require(\"../lib/event_emitter\").EventEmitter;\nvar buildDom = dom.buildDom;\n\nvar modelist = require(\"./modelist\");\nvar themelist = require(\"./themelist\");\n\nvar themes = { Bright: [], Dark: [] };\nthemelist.themes.forEach(function(x) {\n themes[x.isDark ? \"Dark\" : \"Bright\"].push({ caption: x.caption, value: x.theme });\n});\n\nvar modes = modelist.modes.map(function(x){ \n return { caption: x.caption, value: x.mode }; \n});\n\n\nvar optionGroups = {\n Main: {\n Mode: {\n path: \"mode\",\n type: \"select\",\n items: modes\n },\n Theme: {\n path: \"theme\",\n type: \"select\",\n items: themes\n },\n \"Keybinding\": {\n type: \"buttonBar\",\n path: \"keyboardHandler\",\n items: [\n { caption : \"Ace\", value : null },\n { caption : \"Vim\", value : \"ace/keyboard/vim\" },\n { caption : \"Emacs\", value : \"ace/keyboard/emacs\" }\n ]\n },\n \"Font Size\": {\n path: \"fontSize\",\n type: \"number\",\n defaultValue: 12,\n defaults: [\n {caption: \"12px\", value: 12},\n {caption: \"24px\", value: 24}\n ]\n },\n \"Soft Wrap\": {\n type: \"buttonBar\",\n path: \"wrap\",\n items: [\n { caption : \"Off\", value : \"off\" },\n { caption : \"View\", value : \"free\" },\n { caption : \"margin\", value : \"printMargin\" },\n { caption : \"40\", value : \"40\" }\n ]\n },\n \"Cursor Style\": {\n path: \"cursorStyle\",\n items: [\n { caption : \"Ace\", value : \"ace\" },\n { caption : \"Slim\", value : \"slim\" },\n { caption : \"Smooth\", value : \"smooth\" },\n { caption : \"Smooth And Slim\", value : \"smooth slim\" },\n { caption : \"Wide\", value : \"wide\" }\n ]\n },\n \"Folding\": {\n path: \"foldStyle\",\n items: [\n { caption : \"Manual\", value : \"manual\" },\n { caption : \"Mark begin\", value : \"markbegin\" },\n { caption : \"Mark begin and end\", value : \"markbeginend\" }\n ]\n },\n \"Soft Tabs\": [{\n path: \"useSoftTabs\"\n }, {\n path: \"tabSize\",\n type: \"number\",\n values: [2, 3, 4, 8, 16]\n }],\n \"Overscroll\": {\n type: \"buttonBar\",\n path: \"scrollPastEnd\",\n items: [\n { caption : \"None\", value : 0 },\n { caption : \"Half\", value : 0.5 },\n { caption : \"Full\", value : 1 }\n ]\n }\n },\n More: {\n \"Atomic soft tabs\": {\n path: \"navigateWithinSoftTabs\"\n },\n \"Enable Behaviours\": {\n path: \"behavioursEnabled\"\n },\n \"Full Line Selection\": {\n type: \"checkbox\",\n values: \"text|line\",\n path: \"selectionStyle\"\n },\n \"Highlight Active Line\": {\n path: \"highlightActiveLine\"\n },\n \"Show Invisibles\": {\n path: \"showInvisibles\"\n },\n \"Show Indent Guides\": {\n path: \"displayIndentGuides\"\n },\n \"Persistent Scrollbar\": [{\n path: \"hScrollBarAlwaysVisible\"\n }, {\n path: \"vScrollBarAlwaysVisible\"\n }],\n \"Animate scrolling\": {\n path: \"animatedScroll\"\n },\n \"Show Gutter\": {\n path: \"showGutter\"\n },\n \"Show Line Numbers\": {\n path: \"showLineNumbers\"\n },\n \"Relative Line Numbers\": {\n path: \"relativeLineNumbers\"\n },\n \"Fixed Gutter Width\": {\n path: \"fixedWidthGutter\"\n },\n \"Show Print Margin\": [{\n path: \"showPrintMargin\"\n }, {\n type: \"number\",\n path: \"printMarginColumn\"\n }],\n \"Indented Soft Wrap\": {\n path: \"indentedSoftWrap\"\n },\n \"Highlight selected word\": {\n path: \"highlightSelectedWord\"\n },\n \"Fade Fold Widgets\": {\n path: \"fadeFoldWidgets\"\n },\n \"Use textarea for IME\": {\n path: \"useTextareaForIME\"\n },\n \"Merge Undo Deltas\": {\n path: \"mergeUndoDeltas\",\n items: [\n { caption : \"Always\", value : \"always\" },\n { caption : \"Never\", value : \"false\" },\n { caption : \"Timed\", value : \"true\" }\n ]\n },\n \"Elastic Tabstops\": {\n path: \"useElasticTabstops\"\n },\n \"Incremental Search\": {\n path: \"useIncrementalSearch\"\n },\n \"Read-only\": {\n path: \"readOnly\"\n },\n \"Copy without selection\": {\n path: \"copyWithEmptySelection\"\n },\n \"Live Autocompletion\": {\n path: \"enableLiveAutocompletion\"\n }\n }\n};\n\n\nvar OptionPanel = function(editor, element) {\n this.editor = editor;\n this.container = element || document.createElement(\"div\");\n this.groups = [];\n this.options = {};\n};\n\n(function() {\n \n oop.implement(this, EventEmitter);\n \n this.add = function(config) {\n if (config.Main)\n oop.mixin(optionGroups.Main, config.Main);\n if (config.More)\n oop.mixin(optionGroups.More, config.More);\n };\n \n this.render = function() {\n this.container.innerHTML = \"\";\n buildDom([\"table\", {id: \"controls\"}, \n this.renderOptionGroup(optionGroups.Main),\n [\"tr\", null, [\"td\", {colspan: 2},\n [\"table\", {id: \"more-controls\"}, \n this.renderOptionGroup(optionGroups.More)\n ]\n ]]\n ], this.container);\n };\n \n this.renderOptionGroup = function(group) {\n return Object.keys(group).map(function(key, i) {\n var item = group[key];\n if (!item.position)\n item.position = i / 10000;\n if (!item.label)\n item.label = key;\n return item;\n }).sort(function(a, b) {\n return a.position - b.position;\n }).map(function(item) {\n return this.renderOption(item.label, item);\n }, this);\n };\n \n this.renderOptionControl = function(key, option) {\n var self = this;\n if (Array.isArray(option)) {\n return option.map(function(x) {\n return self.renderOptionControl(key, x);\n });\n }\n var control;\n \n var value = self.getOption(option);\n \n if (option.values && option.type != \"checkbox\") {\n if (typeof option.values == \"string\")\n option.values = option.values.split(\"|\");\n option.items = option.values.map(function(v) {\n return { value: v, name: v };\n });\n }\n \n if (option.type == \"buttonBar\") {\n control = [\"div\", option.items.map(function(item) {\n return [\"button\", { \n value: item.value, \n ace_selected_button: value == item.value, \n onclick: function() {\n self.setOption(option, item.value);\n var nodes = this.parentNode.querySelectorAll(\"[ace_selected_button]\");\n for (var i = 0; i < nodes.length; i++) {\n nodes[i].removeAttribute(\"ace_selected_button\");\n }\n this.setAttribute(\"ace_selected_button\", true);\n } \n }, item.desc || item.caption || item.name];\n })];\n } else if (option.type == \"number\") {\n control = [\"input\", {type: \"number\", value: value || option.defaultValue, style:\"width:3em\", oninput: function() {\n self.setOption(option, parseInt(this.value));\n }}];\n if (option.defaults) {\n control = [control, option.defaults.map(function(item) {\n return [\"button\", {onclick: function() {\n var input = this.parentNode.firstChild;\n input.value = item.value;\n input.oninput();\n }}, item.caption];\n })];\n }\n } else if (option.items) {\n var buildItems = function(items) {\n return items.map(function(item) {\n return [\"option\", { value: item.value || item.name }, item.desc || item.caption || item.name];\n });\n };\n \n var items = Array.isArray(option.items) \n ? buildItems(option.items)\n : Object.keys(option.items).map(function(key) {\n return [\"optgroup\", {\"label\": key}, buildItems(option.items[key])];\n });\n control = [\"select\", { id: key, value: value, onchange: function() {\n self.setOption(option, this.value);\n } }, items];\n } else {\n if (typeof option.values == \"string\")\n option.values = option.values.split(\"|\");\n if (option.values) value = value == option.values[1];\n control = [\"input\", { type: \"checkbox\", id: key, checked: value || null, onchange: function() {\n var value = this.checked;\n if (option.values) value = option.values[value ? 1 : 0];\n self.setOption(option, value);\n }}];\n if (option.type == \"checkedNumber\") {\n control = [control, []];\n }\n }\n return control;\n };\n \n this.renderOption = function(key, option) {\n if (option.path && !option.onchange && !this.editor.$options[option.path])\n return;\n this.options[option.path] = option;\n var safeKey = \"-\" + option.path;\n var control = this.renderOptionControl(safeKey, option);\n return [\"tr\", {class: \"ace_optionsMenuEntry\"}, [\"td\",\n [\"label\", {for: safeKey}, key]\n ], [\"td\", control]];\n };\n \n this.setOption = function(option, value) {\n if (typeof option == \"string\")\n option = this.options[option];\n if (value == \"false\") value = false;\n if (value == \"true\") value = true;\n if (value == \"null\") value = null;\n if (value == \"undefined\") value = undefined;\n if (typeof value == \"string\" && parseFloat(value).toString() == value)\n value = parseFloat(value);\n if (option.onchange)\n option.onchange(value);\n else if (option.path)\n this.editor.setOption(option.path, value);\n this._signal(\"setOption\", {name: option.path, value: value});\n };\n \n this.getOption = function(option) {\n if (option.getValue)\n return option.getValue();\n return this.editor.getOption(option.path);\n };\n \n}).call(OptionPanel.prototype);\n\nexports.OptionPanel = OptionPanel;\n\n}); (function() {\n ace.require([\"ace/ext/options\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file2z := &embedded.EmbeddedFile{ Filename: "431311199b46d30bf9f42094aa7fdc09.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/rust_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar stringEscape = /\\\\(?:[nrt0'\"\\\\]|x[\\da-fA-F]{2}|u\\{[\\da-fA-F]{6}\\})/.source;\nvar RustHighlightRules = function() {\n\n this.$rules = { start:\n [ { token: 'variable.other.source.rust',\n regex: '\\'[a-zA-Z_][a-zA-Z0-9_]*(?![\\\\\\'])' },\n { token: 'string.quoted.single.source.rust',\n regex: \"'(?:[^'\\\\\\\\]|\" + stringEscape + \")'\" },\n {\n stateName: \"bracketedComment\",\n onMatch : function(value, currentState, stack){\n stack.unshift(this.next, value.length - 1, currentState);\n return \"string.quoted.raw.source.rust\";\n },\n regex : /r#*\"/,\n next : [\n {\n onMatch : function(value, currentState, stack) {\n var token = \"string.quoted.raw.source.rust\";\n if (value.length >= stack[1]) {\n if (value.length > stack[1])\n token = \"invalid\";\n stack.shift();\n stack.shift();\n this.next = stack.shift();\n } else {\n this.next = \"\";\n }\n return token;\n },\n regex : /\"#*/,\n next : \"start\"\n }, {\n defaultToken : \"string.quoted.raw.source.rust\"\n }\n ]\n },\n { token: 'string.quoted.double.source.rust',\n regex: '\"',\n push: \n [ { token: 'string.quoted.double.source.rust',\n regex: '\"',\n next: 'pop' },\n { token: 'constant.character.escape.source.rust',\n regex: stringEscape },\n { defaultToken: 'string.quoted.double.source.rust' } ] },\n { token: [ 'keyword.source.rust', 'text', 'entity.name.function.source.rust' ],\n regex: '\\\\b(fn)(\\\\s+)([a-zA-Z_][a-zA-Z0-9_]*)' },\n { token: 'support.constant', regex: '\\\\b[a-zA-Z_][\\\\w\\\\d]*::' },\n { token: 'keyword.source.rust',\n regex: '\\\\b(?:abstract|alignof|as|become|box|break|catch|continue|const|crate|default|do|dyn|else|enum|extern|for|final|if|impl|in|let|loop|macro|match|mod|move|mut|offsetof|override|priv|proc|pub|pure|ref|return|self|sizeof|static|struct|super|trait|type|typeof|union|unsafe|unsized|use|virtual|where|while|yield)\\\\b' },\n { token: 'storage.type.source.rust',\n regex: '\\\\b(?:Self|isize|usize|char|bool|u8|u16|u32|u64|u128|f16|f32|f64|i8|i16|i32|i64|i128|str|option|either|c_float|c_double|c_void|FILE|fpos_t|DIR|dirent|c_char|c_schar|c_uchar|c_short|c_ushort|c_int|c_uint|c_long|c_ulong|size_t|ptrdiff_t|clock_t|time_t|c_longlong|c_ulonglong|intptr_t|uintptr_t|off_t|dev_t|ino_t|pid_t|mode_t|ssize_t)\\\\b' },\n { token: 'variable.language.source.rust', regex: '\\\\bself\\\\b' },\n \n { token: 'comment.line.doc.source.rust',\n regex: '//!.*$' },\n { token: 'comment.line.double-dash.source.rust',\n regex: '//.*$' },\n { token: 'comment.start.block.source.rust',\n regex: '/\\\\*',\n stateName: 'comment',\n push: \n [ { token: 'comment.start.block.source.rust',\n regex: '/\\\\*',\n push: 'comment' },\n { token: 'comment.end.block.source.rust',\n regex: '\\\\*/',\n next: 'pop' },\n { defaultToken: 'comment.block.source.rust' } ] },\n \n { token: 'keyword.operator',\n regex: /\\$|[-=]>|[-+%^=!&|<>]=?|[*/](?![*/])=?/ },\n { token : \"punctuation.operator\", regex : /[?:,;.]/ },\n { token : \"paren.lparen\", regex : /[\\[({]/ },\n { token : \"paren.rparen\", regex : /[\\])}]/ },\n { token: 'constant.language.source.rust',\n regex: '\\\\b(?:true|false|Some|None|Ok|Err)\\\\b' },\n { token: 'support.constant.source.rust',\n regex: '\\\\b(?:EXIT_FAILURE|EXIT_SUCCESS|RAND_MAX|EOF|SEEK_SET|SEEK_CUR|SEEK_END|_IOFBF|_IONBF|_IOLBF|BUFSIZ|FOPEN_MAX|FILENAME_MAX|L_tmpnam|TMP_MAX|O_RDONLY|O_WRONLY|O_RDWR|O_APPEND|O_CREAT|O_EXCL|O_TRUNC|S_IFIFO|S_IFCHR|S_IFBLK|S_IFDIR|S_IFREG|S_IFMT|S_IEXEC|S_IWRITE|S_IREAD|S_IRWXU|S_IXUSR|S_IWUSR|S_IRUSR|F_OK|R_OK|W_OK|X_OK|STDIN_FILENO|STDOUT_FILENO|STDERR_FILENO)\\\\b' },\n { token: 'meta.preprocessor.source.rust',\n regex: '\\\\b\\\\w\\\\(\\\\w\\\\)*!|#\\\\[[\\\\w=\\\\(\\\\)_]+\\\\]\\\\b' },\n { token: 'constant.numeric.source.rust',\n regex: /\\b(?:0x[a-fA-F0-9_]+|0o[0-7_]+|0b[01_]+|[0-9][0-9_]*(?!\\.))(?:[iu](?:size|8|16|32|64|128))?\\b/ },\n { token: 'constant.numeric.source.rust',\n regex: /\\b(?:[0-9][0-9_]*)(?:\\.[0-9][0-9_]*)?(?:[Ee][+-][0-9][0-9_]*)?(?:f32|f64)?\\b/ } ] };\n \n this.normalizeRules();\n};\n\nRustHighlightRules.metaData = { fileTypes: [ 'rs', 'rc' ],\n foldingStartMarker: '^.*\\\\bfn\\\\s*(\\\\w+\\\\s*)?\\\\([^\\\\)]*\\\\)(\\\\s*\\\\{[^\\\\}]*)?\\\\s*$',\n foldingStopMarker: '^\\\\s*\\\\}',\n name: 'Rust',\n scopeName: 'source.rust' };\n\n\noop.inherits(RustHighlightRules, TextHighlightRules);\n\nexports.RustHighlightRules = RustHighlightRules;\n});\n\nace.define(\"ace/mode/folding/cstyle\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/range\",\"ace/mode/folding/fold_mode\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Range = require(\"../../range\").Range;\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function(commentRegex) {\n if (commentRegex) {\n this.foldingStartMarker = new RegExp(\n this.foldingStartMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.start)\n );\n this.foldingStopMarker = new RegExp(\n this.foldingStopMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.end)\n );\n }\n};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n \n this.foldingStartMarker = /([\\{\\[\\(])[^\\}\\]\\)]*$|^\\s*(\\/\\*)/;\n this.foldingStopMarker = /^[^\\[\\{\\(]*([\\}\\]\\)])|^[\\s\\*]*(\\*\\/)/;\n this.singleLineBlockCommentRe= /^\\s*(\\/\\*).*\\*\\/\\s*$/;\n this.tripleStarBlockCommentRe = /^\\s*(\\/\\*\\*\\*).*\\*\\/\\s*$/;\n this.startRegionRe = /^\\s*(\\/\\*|\\/\\/)#?region\\b/;\n this._getFoldWidgetBase = this.getFoldWidget;\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n \n if (this.singleLineBlockCommentRe.test(line)) {\n if (!this.startRegionRe.test(line) && !this.tripleStarBlockCommentRe.test(line))\n return \"\";\n }\n \n var fw = this._getFoldWidgetBase(session, foldStyle, row);\n \n if (!fw && this.startRegionRe.test(line))\n return \"start\"; // lineCommentRegionStart\n \n return fw;\n };\n\n this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {\n var line = session.getLine(row);\n \n if (this.startRegionRe.test(line))\n return this.getCommentRegionBlock(session, line, row);\n \n var match = line.match(this.foldingStartMarker);\n if (match) {\n var i = match.index;\n\n if (match[1])\n return this.openingBracketBlock(session, match[1], row, i);\n \n var range = session.getCommentFoldRange(row, i + match[0].length, 1);\n \n if (range && !range.isMultiLine()) {\n if (forceMultiline) {\n range = this.getSectionRange(session, row);\n } else if (foldStyle != \"all\")\n range = null;\n }\n \n return range;\n }\n\n if (foldStyle === \"markbegin\")\n return;\n\n var match = line.match(this.foldingStopMarker);\n if (match) {\n var i = match.index + match[0].length;\n\n if (match[1])\n return this.closingBracketBlock(session, match[1], row, i);\n\n return session.getCommentFoldRange(row, i, -1);\n }\n };\n \n this.getSectionRange = function(session, row) {\n var line = session.getLine(row);\n var startIndent = line.search(/\\S/);\n var startRow = row;\n var startColumn = line.length;\n row = row + 1;\n var endRow = row;\n var maxRow = session.getLength();\n while (++row < maxRow) {\n line = session.getLine(row);\n var indent = line.search(/\\S/);\n if (indent === -1)\n continue;\n if (startIndent > indent)\n break;\n var subRange = this.getFoldWidgetRange(session, \"all\", row);\n \n if (subRange) {\n if (subRange.start.row <= startRow) {\n break;\n } else if (subRange.isMultiLine()) {\n row = subRange.end.row;\n } else if (startIndent == indent) {\n break;\n }\n }\n endRow = row;\n }\n \n return new Range(startRow, startColumn, endRow, session.getLine(endRow).length);\n };\n this.getCommentRegionBlock = function(session, line, row) {\n var startColumn = line.search(/\\s*$/);\n var maxRow = session.getLength();\n var startRow = row;\n \n var re = /^\\s*(?:\\/\\*|\\/\\/|--)#?(end)?region\\b/;\n var depth = 1;\n while (++row < maxRow) {\n line = session.getLine(row);\n var m = re.exec(line);\n if (!m) continue;\n if (m[1]) depth--;\n else depth++;\n\n if (!depth) break;\n }\n\n var endRow = row;\n if (endRow > startRow) {\n return new Range(startRow, startColumn, endRow, line.length);\n }\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/rust\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/rust_highlight_rules\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar RustHighlightRules = require(\"./rust_highlight_rules\").RustHighlightRules;\nvar FoldMode = require(\"./folding/cstyle\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = RustHighlightRules;\n this.foldingRules = new FoldMode();\n this.$behaviour = this.$defaultBehaviour;\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n this.lineCommentStart = \"//\";\n this.blockComment = {start: \"/*\", end: \"*/\", nestable: true};\n this.$quotes = { '\"': '\"' };\n this.$id = \"ace/mode/rust\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/rust\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file30 := &embedded.EmbeddedFile{ Filename: "43bd62d6b50d1253f782c9ae5be1593d.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/sh\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText = \"# Shebang. Executing bash via /usr/bin/env makes scripts more portable.\\n\\\nsnippet #!\\n\\\n\t#!/usr/bin/env bash\\n\\\n\t\\n\\\nsnippet if\\n\\\n\tif [[ ${1:condition} ]]; then\\n\\\n\t\t${2:#statements}\\n\\\n\tfi\\n\\\nsnippet elif\\n\\\n\telif [[ ${1:condition} ]]; then\\n\\\n\t\t${2:#statements}\\n\\\nsnippet for\\n\\\n\tfor (( ${2:i} = 0; $2 < ${1:count}; $2++ )); do\\n\\\n\t\t${3:#statements}\\n\\\n\tdone\\n\\\nsnippet fori\\n\\\n\tfor ${1:needle} in ${2:haystack} ; do\\n\\\n\t\t${3:#statements}\\n\\\n\tdone\\n\\\nsnippet wh\\n\\\n\twhile [[ ${1:condition} ]]; do\\n\\\n\t\t${2:#statements}\\n\\\n\tdone\\n\\\nsnippet until\\n\\\n\tuntil [[ ${1:condition} ]]; do\\n\\\n\t\t${2:#statements}\\n\\\n\tdone\\n\\\nsnippet case\\n\\\n\tcase ${1:word} in\\n\\\n\t\t${2:pattern})\\n\\\n\t\t\t${3};;\\n\\\n\tesac\\n\\\nsnippet go \\n\\\n\twhile getopts '${1:o}' ${2:opts} \\n\\\n\tdo \\n\\\n\t\tcase $$2 in\\n\\\n\t\t${3:o0})\\n\\\n\t\t\t${4:#staments};;\\n\\\n\t\tesac\\n\\\n\tdone\\n\\\n# Set SCRIPT_DIR variable to directory script is located.\\n\\\nsnippet sdir\\n\\\n\tSCRIPT_DIR=\\\"$( cd \\\"$( dirname \\\"${BASH_SOURCE[0]}\\\" )\\\" && pwd )\\\"\\n\\\n# getopt\\n\\\nsnippet getopt\\n\\\n\t__ScriptVersion=\\\"${1:version}\\\"\\n\\\n\\n\\\n\t#=== FUNCTION ================================================================\\n\\\n\t# NAME: usage\\n\\\n\t# DESCRIPTION: Display usage information.\\n\\\n\t#===============================================================================\\n\\\n\tfunction usage ()\\n\\\n\t{\\n\\\n\t\t\tcat <<- EOT\\n\\\n\\n\\\n\t Usage : $${0:0} [options] [--] \\n\\\n\\n\\\n\t Options: \\n\\\n\t -h|help Display this message\\n\\\n\t -v|version Display script version\\n\\\n\\n\\\n\tEOT\\n\\\n\t} # ---------- end of function usage ----------\\n\\\n\\n\\\n\t#-----------------------------------------------------------------------\\n\\\n\t# Handle command line arguments\\n\\\n\t#-----------------------------------------------------------------------\\n\\\n\\n\\\n\twhile getopts \\\":hv\\\" opt\\n\\\n\tdo\\n\\\n\t case $opt in\\n\\\n\\n\\\n\t\th|help ) usage; exit 0 ;;\\n\\\n\\n\\\n\t\tv|version ) echo \\\"$${0:0} -- Version $__ScriptVersion\\\"; exit 0 ;;\\n\\\n\\n\\\n\t\t\\\\? ) echo -e \\\"\\\\n Option does not exist : $OPTARG\\\\n\\\"\\n\\\n\t\t\t usage; exit 1 ;;\\n\\\n\\n\\\n\t esac # --- end of case ---\\n\\\n\tdone\\n\\\n\tshift $(($OPTIND-1))\\n\\\n\\n\\\n\";\nexports.scope = \"sh\";\n\n}); (function() {\n ace.require([\"ace/snippets/sh\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file31 := &embedded.EmbeddedFile{ Filename: "44325bf9620ca918548b1e519dabc8ff.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/ext/statusbar\",[\"require\",\"exports\",\"module\",\"ace/lib/dom\",\"ace/lib/lang\"], function(require, exports, module) {\n\"use strict\";\nvar dom = require(\"ace/lib/dom\");\nvar lang = require(\"ace/lib/lang\");\n\nvar StatusBar = function(editor, parentNode) {\n this.element = dom.createElement(\"div\");\n this.element.className = \"ace_status-indicator\";\n this.element.style.cssText = \"display: inline-block;\";\n parentNode.appendChild(this.element);\n\n var statusUpdate = lang.delayedCall(function(){\n this.updateStatus(editor);\n }.bind(this)).schedule.bind(null, 100);\n \n editor.on(\"changeStatus\", statusUpdate);\n editor.on(\"changeSelection\", statusUpdate);\n editor.on(\"keyboardActivity\", statusUpdate);\n};\n\n(function(){\n this.updateStatus = function(editor) {\n var status = [];\n function add(str, separator) {\n str && status.push(str, separator || \"|\");\n }\n\n add(editor.keyBinding.getStatusText(editor));\n if (editor.commands.recording)\n add(\"REC\");\n \n var sel = editor.selection;\n var c = sel.lead;\n \n if (!sel.isEmpty()) {\n var r = editor.getSelectionRange();\n add(\"(\" + (r.end.row - r.start.row) + \":\" +(r.end.column - r.start.column) + \")\", \" \");\n }\n add(c.row + \":\" + c.column, \" \"); \n if (sel.rangeCount)\n add(\"[\" + sel.rangeCount + \"]\", \" \");\n status.pop();\n this.element.textContent = status.join(\"\");\n };\n}).call(StatusBar.prototype);\n\nexports.StatusBar = StatusBar;\n\n}); (function() {\n ace.require([\"ace/ext/statusbar\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file32 := &embedded.EmbeddedFile{ Filename: "4474c9775d04684871043fae3501ec66.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/c_cpp\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText = \"## STL Collections\\n\\\n# std::array\\n\\\nsnippet array\\n\\\n\tstd::array<${1:T}, ${2:N}> ${3};${4}\\n\\\n# std::vector\\n\\\nsnippet vector\\n\\\n\tstd::vector<${1:T}> ${2};${3}\\n\\\n# std::deque\\n\\\nsnippet deque\\n\\\n\tstd::deque<${1:T}> ${2};${3}\\n\\\n# std::forward_list\\n\\\nsnippet flist\\n\\\n\tstd::forward_list<${1:T}> ${2};${3}\\n\\\n# std::list\\n\\\nsnippet list\\n\\\n\tstd::list<${1:T}> ${2};${3}\\n\\\n# std::set\\n\\\nsnippet set\\n\\\n\tstd::set<${1:T}> ${2};${3}\\n\\\n# std::map\\n\\\nsnippet map\\n\\\n\tstd::map<${1:Key}, ${2:T}> ${3};${4}\\n\\\n# std::multiset\\n\\\nsnippet mset\\n\\\n\tstd::multiset<${1:T}> ${2};${3}\\n\\\n# std::multimap\\n\\\nsnippet mmap\\n\\\n\tstd::multimap<${1:Key}, ${2:T}> ${3};${4}\\n\\\n# std::unordered_set\\n\\\nsnippet uset\\n\\\n\tstd::unordered_set<${1:T}> ${2};${3}\\n\\\n# std::unordered_map\\n\\\nsnippet umap\\n\\\n\tstd::unordered_map<${1:Key}, ${2:T}> ${3};${4}\\n\\\n# std::unordered_multiset\\n\\\nsnippet umset\\n\\\n\tstd::unordered_multiset<${1:T}> ${2};${3}\\n\\\n# std::unordered_multimap\\n\\\nsnippet ummap\\n\\\n\tstd::unordered_multimap<${1:Key}, ${2:T}> ${3};${4}\\n\\\n# std::stack\\n\\\nsnippet stack\\n\\\n\tstd::stack<${1:T}> ${2};${3}\\n\\\n# std::queue\\n\\\nsnippet queue\\n\\\n\tstd::queue<${1:T}> ${2};${3}\\n\\\n# std::priority_queue\\n\\\nsnippet pqueue\\n\\\n\tstd::priority_queue<${1:T}> ${2};${3}\\n\\\n##\\n\\\n## Access Modifiers\\n\\\n# private\\n\\\nsnippet pri\\n\\\n\tprivate\\n\\\n# protected\\n\\\nsnippet pro\\n\\\n\tprotected\\n\\\n# public\\n\\\nsnippet pub\\n\\\n\tpublic\\n\\\n# friend\\n\\\nsnippet fr\\n\\\n\tfriend\\n\\\n# mutable\\n\\\nsnippet mu\\n\\\n\tmutable\\n\\\n## \\n\\\n## Class\\n\\\n# class\\n\\\nsnippet cl\\n\\\n\tclass ${1:`Filename('$1', 'name')`} \\n\\\n\t{\\n\\\n\tpublic:\\n\\\n\t\t$1(${2});\\n\\\n\t\t~$1();\\n\\\n\\n\\\n\tprivate:\\n\\\n\t\t${3:/* data */}\\n\\\n\t};\\n\\\n# member function implementation\\n\\\nsnippet mfun\\n\\\n\t${4:void} ${1:`Filename('$1', 'ClassName')`}::${2:memberFunction}(${3}) {\\n\\\n\t\t${5:/* code */}\\n\\\n\t}\\n\\\n# namespace\\n\\\nsnippet ns\\n\\\n\tnamespace ${1:`Filename('', 'my')`} {\\n\\\n\t\t${2}\\n\\\n\t} /* namespace $1 */\\n\\\n##\\n\\\n## Input/Output\\n\\\n# std::cout\\n\\\nsnippet cout\\n\\\n\tstd::cout << ${1} << std::endl;${2}\\n\\\n# std::cin\\n\\\nsnippet cin\\n\\\n\tstd::cin >> ${1};${2}\\n\\\n##\\n\\\n## Iteration\\n\\\n# for i \\n\\\nsnippet fori\\n\\\n\tfor (int ${2:i} = 0; $2 < ${1:count}; $2${3:++}) {\\n\\\n\t\t${4:/* code */}\\n\\\n\t}${5}\\n\\\n\\n\\\n# foreach\\n\\\nsnippet fore\\n\\\n\tfor (${1:auto} ${2:i} : ${3:container}) {\\n\\\n\t\t${4:/* code */}\\n\\\n\t}${5}\\n\\\n# iterator\\n\\\nsnippet iter\\n\\\n\tfor (${1:std::vector}<${2:type}>::${3:const_iterator} ${4:i} = ${5:container}.begin(); $4 != $5.end(); ++$4) {\\n\\\n\t\t${6}\\n\\\n\t}${7}\\n\\\n\\n\\\n# auto iterator\\n\\\nsnippet itera\\n\\\n\tfor (auto ${1:i} = $1.begin(); $1 != $1.end(); ++$1) {\\n\\\n\t\t${2:std::cout << *$1 << std::endl;}\\n\\\n\t}${3}\\n\\\n##\\n\\\n## Lambdas\\n\\\n# lamda (one line)\\n\\\nsnippet ld\\n\\\n\t[${1}](${2}){${3:/* code */}}${4}\\n\\\n# lambda (multi-line)\\n\\\nsnippet lld\\n\\\n\t[${1}](${2}){\\n\\\n\t\t${3:/* code */}\\n\\\n\t}${4}\\n\\\n\";\nexports.scope = \"c_cpp\";\n\n}); (function() {\n ace.require([\"ace/snippets/c_cpp\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file33 := &embedded.EmbeddedFile{ Filename: "44b4462224957b51234691dacc5dd4c8.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/theme/terminal\",[\"require\",\"exports\",\"module\",\"ace/lib/dom\"], function(require, exports, module) {\n\nexports.isDark = true;\nexports.cssClass = \"ace-terminal-theme\";\nexports.cssText = \".ace-terminal-theme .ace_gutter {\\\nbackground: #1a0005;\\\ncolor: steelblue\\\n}\\\n.ace-terminal-theme .ace_print-margin {\\\nwidth: 1px;\\\nbackground: #1a1a1a\\\n}\\\n.ace-terminal-theme {\\\nbackground-color: black;\\\ncolor: #DEDEDE\\\n}\\\n.ace-terminal-theme .ace_cursor {\\\ncolor: #9F9F9F\\\n}\\\n.ace-terminal-theme .ace_marker-layer .ace_selection {\\\nbackground: #424242\\\n}\\\n.ace-terminal-theme.ace_multiselect .ace_selection.ace_start {\\\nbox-shadow: 0 0 3px 0px black;\\\n}\\\n.ace-terminal-theme .ace_marker-layer .ace_step {\\\nbackground: rgb(0, 0, 0)\\\n}\\\n.ace-terminal-theme .ace_marker-layer .ace_bracket {\\\nbackground: #090;\\\n}\\\n.ace-terminal-theme .ace_marker-layer .ace_bracket-start {\\\nbackground: #090;\\\n}\\\n.ace-terminal-theme .ace_marker-layer .ace_bracket-unmatched {\\\nmargin: -1px 0 0 -1px;\\\nborder: 1px solid #900\\\n}\\\n.ace-terminal-theme .ace_marker-layer .ace_active-line {\\\nbackground: #2A2A2A\\\n}\\\n.ace-terminal-theme .ace_gutter-active-line {\\\nbackground-color: #2A112A\\\n}\\\n.ace-terminal-theme .ace_marker-layer .ace_selected-word {\\\nborder: 1px solid #424242\\\n}\\\n.ace-terminal-theme .ace_invisible {\\\ncolor: #343434\\\n}\\\n.ace-terminal-theme .ace_keyword,\\\n.ace-terminal-theme .ace_meta,\\\n.ace-terminal-theme .ace_storage,\\\n.ace-terminal-theme .ace_storage.ace_type,\\\n.ace-terminal-theme .ace_support.ace_type {\\\ncolor: tomato\\\n}\\\n.ace-terminal-theme .ace_keyword.ace_operator {\\\ncolor: deeppink\\\n}\\\n.ace-terminal-theme .ace_constant.ace_character,\\\n.ace-terminal-theme .ace_constant.ace_language,\\\n.ace-terminal-theme .ace_constant.ace_numeric,\\\n.ace-terminal-theme .ace_keyword.ace_other.ace_unit,\\\n.ace-terminal-theme .ace_support.ace_constant,\\\n.ace-terminal-theme .ace_variable.ace_parameter {\\\ncolor: #E78C45\\\n}\\\n.ace-terminal-theme .ace_constant.ace_other {\\\ncolor: gold\\\n}\\\n.ace-terminal-theme .ace_invalid {\\\ncolor: yellow;\\\nbackground-color: red\\\n}\\\n.ace-terminal-theme .ace_invalid.ace_deprecated {\\\ncolor: #CED2CF;\\\nbackground-color: #B798BF\\\n}\\\n.ace-terminal-theme .ace_fold {\\\nbackground-color: #7AA6DA;\\\nborder-color: #DEDEDE\\\n}\\\n.ace-terminal-theme .ace_entity.ace_name.ace_function,\\\n.ace-terminal-theme .ace_support.ace_function,\\\n.ace-terminal-theme .ace_variable {\\\ncolor: #7AA6DA\\\n}\\\n.ace-terminal-theme .ace_support.ace_class,\\\n.ace-terminal-theme .ace_support.ace_type {\\\ncolor: #E7C547\\\n}\\\n.ace-terminal-theme .ace_heading,\\\n.ace-terminal-theme .ace_string {\\\ncolor: #B9CA4A\\\n}\\\n.ace-terminal-theme .ace_entity.ace_name.ace_tag,\\\n.ace-terminal-theme .ace_entity.ace_other.ace_attribute-name,\\\n.ace-terminal-theme .ace_meta.ace_tag,\\\n.ace-terminal-theme .ace_string.ace_regexp,\\\n.ace-terminal-theme .ace_variable {\\\ncolor: #D54E53\\\n}\\\n.ace-terminal-theme .ace_comment {\\\ncolor: orangered\\\n}\\\n.ace-terminal-theme .ace_indent-guide {\\\nbackground: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWNgYGBgYLBWV/8PAAK4AYnhiq+xAAAAAElFTkSuQmCC) right repeat-y;\\\n}\\\n\";\n\nvar dom = require(\"../lib/dom\");\ndom.importCssString(exports.cssText, exports.cssClass);\n}); (function() {\n ace.require([\"ace/theme/terminal\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file34 := &embedded.EmbeddedFile{ Filename: "451c3753fb6dfc1f2de25cb7524f4bb2.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/tex\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText = \"#PREAMBLE\\n\\\n#newcommand\\n\\\nsnippet nc\\n\\\n\t\\\\newcommand{\\\\${1:cmd}}[${2:opt}]{${3:realcmd}}${4}\\n\\\n#usepackage\\n\\\nsnippet up\\n\\\n\t\\\\usepackage[${1:[options}]{${2:package}}\\n\\\n#newunicodechar\\n\\\nsnippet nuc\\n\\\n\t\\\\newunicodechar{${1}}{${2:\\\\ensuremath}${3:tex-substitute}}}\\n\\\n#DeclareMathOperator\\n\\\nsnippet dmo\\n\\\n\t\\\\DeclareMathOperator{${1}}{${2}}\\n\\\n\\n\\\n#DOCUMENT\\n\\\n# \\\\begin{}...\\\\end{}\\n\\\nsnippet begin\\n\\\n\t\\\\begin{${1:env}}\\n\\\n\t\t${2}\\n\\\n\t\\\\end{$1}\\n\\\n# Tabular\\n\\\nsnippet tab\\n\\\n\t\\\\begin{${1:tabular}}{${2:c}}\\n\\\n\t${3}\\n\\\n\t\\\\end{$1}\\n\\\nsnippet thm\\n\\\n\t\\\\begin[${1:author}]{${2:thm}}\\n\\\n\t${3}\\n\\\n\t\\\\end{$1}\\n\\\nsnippet center\\n\\\n\t\\\\begin{center}\\n\\\n\t\t${1}\\n\\\n\t\\\\end{center}\\n\\\n# Align(ed)\\n\\\nsnippet ali\\n\\\n\t\\\\begin{align${1:ed}}\\n\\\n\t\t${2}\\n\\\n\t\\\\end{align$1}\\n\\\n# Gather(ed)\\n\\\nsnippet gat\\n\\\n\t\\\\begin{gather${1:ed}}\\n\\\n\t\t${2}\\n\\\n\t\\\\end{gather$1}\\n\\\n# Equation\\n\\\nsnippet eq\\n\\\n\t\\\\begin{equation}\\n\\\n\t\t${1}\\n\\\n\t\\\\end{equation}\\n\\\n# Equation\\n\\\nsnippet eq*\\n\\\n\t\\\\begin{equation*}\\n\\\n\t\t${1}\\n\\\n\t\\\\end{equation*}\\n\\\n# Unnumbered Equation\\n\\\nsnippet \\\\\\n\\\n\t\\\\[\\n\\\n\t\t${1}\\n\\\n\t\\\\]\\n\\\n# Enumerate\\n\\\nsnippet enum\\n\\\n\t\\\\begin{enumerate}\\n\\\n\t\t\\\\item ${1}\\n\\\n\t\\\\end{enumerate}\\n\\\n# Itemize\\n\\\nsnippet itemize\\n\\\n\t\\\\begin{itemize}\\n\\\n\t\t\\\\item ${1}\\n\\\n\t\\\\end{itemize}\\n\\\n# Description\\n\\\nsnippet desc\\n\\\n\t\\\\begin{description}\\n\\\n\t\t\\\\item[${1}] ${2}\\n\\\n\t\\\\end{description}\\n\\\n# Matrix\\n\\\nsnippet mat\\n\\\n\t\\\\begin{${1:p/b/v/V/B/small}matrix}\\n\\\n\t\t${2}\\n\\\n\t\\\\end{$1matrix}\\n\\\n# Cases\\n\\\nsnippet cas\\n\\\n\t\\\\begin{cases}\\n\\\n\t\t${1:equation}, &\\\\text{ if }${2:case}\\\\\\\\\\n\\\n\t\t${3}\\n\\\n\t\\\\end{cases}\\n\\\n# Split\\n\\\nsnippet spl\\n\\\n\t\\\\begin{split}\\n\\\n\t\t${1}\\n\\\n\t\\\\end{split}\\n\\\n# Part\\n\\\nsnippet part\\n\\\n\t\\\\part{${1:part name}} % (fold)\\n\\\n\t\\\\label{prt:${2:$1}}\\n\\\n\t${3}\\n\\\n\t% part $2 (end)\\n\\\n# Chapter\\n\\\nsnippet cha\\n\\\n\t\\\\chapter{${1:chapter name}}\\n\\\n\t\\\\label{cha:${2:$1}}\\n\\\n\t${3}\\n\\\n# Section\\n\\\nsnippet sec\\n\\\n\t\\\\section{${1:section name}}\\n\\\n\t\\\\label{sec:${2:$1}}\\n\\\n\t${3}\\n\\\n# Sub Section\\n\\\nsnippet sub\\n\\\n\t\\\\subsection{${1:subsection name}}\\n\\\n\t\\\\label{sub:${2:$1}}\\n\\\n\t${3}\\n\\\n# Sub Sub Section\\n\\\nsnippet subs\\n\\\n\t\\\\subsubsection{${1:subsubsection name}}\\n\\\n\t\\\\label{ssub:${2:$1}}\\n\\\n\t${3}\\n\\\n# Paragraph\\n\\\nsnippet par\\n\\\n\t\\\\paragraph{${1:paragraph name}}\\n\\\n\t\\\\label{par:${2:$1}}\\n\\\n\t${3}\\n\\\n# Sub Paragraph\\n\\\nsnippet subp\\n\\\n\t\\\\subparagraph{${1:subparagraph name}}\\n\\\n\t\\\\label{subp:${2:$1}}\\n\\\n\t${3}\\n\\\n#References\\n\\\nsnippet itd\\n\\\n\t\\\\item[${1:description}] ${2:item}\\n\\\nsnippet figure\\n\\\n\t${1:Figure}~\\\\ref{${2:fig:}}${3}\\n\\\nsnippet table\\n\\\n\t${1:Table}~\\\\ref{${2:tab:}}${3}\\n\\\nsnippet listing\\n\\\n\t${1:Listing}~\\\\ref{${2:list}}${3}\\n\\\nsnippet section\\n\\\n\t${1:Section}~\\\\ref{${2:sec:}}${3}\\n\\\nsnippet page\\n\\\n\t${1:page}~\\\\pageref{${2}}${3}\\n\\\nsnippet index\\n\\\n\t\\\\index{${1:index}}${2}\\n\\\n#Citations\\n\\\nsnippet cite\\n\\\n\t\\\\cite[${1}]{${2}}${3}\\n\\\nsnippet fcite\\n\\\n\t\\\\footcite[${1}]{${2}}${3}\\n\\\n#Formating text: italic, bold, underline, small capital, emphase ..\\n\\\nsnippet it\\n\\\n\t\\\\textit{${1:text}}\\n\\\nsnippet bf\\n\\\n\t\\\\textbf{${1:text}}\\n\\\nsnippet under\\n\\\n\t\\\\underline{${1:text}}\\n\\\nsnippet emp\\n\\\n\t\\\\emph{${1:text}}\\n\\\nsnippet sc\\n\\\n\t\\\\textsc{${1:text}}\\n\\\n#Choosing font\\n\\\nsnippet sf\\n\\\n\t\\\\textsf{${1:text}}\\n\\\nsnippet rm\\n\\\n\t\\\\textrm{${1:text}}\\n\\\nsnippet tt\\n\\\n\t\\\\texttt{${1:text}}\\n\\\n#misc\\n\\\nsnippet ft\\n\\\n\t\\\\footnote{${1:text}}\\n\\\nsnippet fig\\n\\\n\t\\\\begin{figure}\\n\\\n\t\\\\begin{center}\\n\\\n\t \\\\includegraphics[scale=${1}]{Figures/${2}}\\n\\\n\t\\\\end{center}\\n\\\n\t\\\\caption{${3}}\\n\\\n\t\\\\label{fig:${4}}\\n\\\n\t\\\\end{figure}\\n\\\nsnippet tikz\\n\\\n\t\\\\begin{figure}\\n\\\n\t\\\\begin{center}\\n\\\n\t\\\\begin{tikzpicture}[scale=${1:1}]\\n\\\n\t\t${2}\\n\\\n\t\\\\end{tikzpicture}\\n\\\n\t\\\\end{center}\\n\\\n\t\\\\caption{${3}}\\n\\\n\t\\\\label{fig:${4}}\\n\\\n\t\\\\end{figure}\\n\\\n#math\\n\\\nsnippet stackrel\\n\\\n\t\\\\stackrel{${1:above}}{${2:below}} ${3}\\n\\\nsnippet frac\\n\\\n\t\\\\frac{${1:num}}{${2:denom}}\\n\\\nsnippet sum\\n\\\n\t\\\\sum^{${1:n}}_{${2:i=1}}{${3}}\";\nexports.scope = \"tex\";\n\n}); (function() {\n ace.require([\"ace/snippets/tex\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file35 := &embedded.EmbeddedFile{ Filename: "45446feb988b7dd3ee26aadccd022c0a.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("\"no use strict\";\n!(function(window) {\nif (typeof window.window != \"undefined\" && window.document)\n return;\nif (window.require && window.define)\n return;\n\nif (!window.console) {\n window.console = function() {\n var msgs = Array.prototype.slice.call(arguments, 0);\n postMessage({type: \"log\", data: msgs});\n };\n window.console.error =\n window.console.warn = \n window.console.log =\n window.console.trace = window.console;\n}\nwindow.window = window;\nwindow.ace = window;\n\nwindow.onerror = function(message, file, line, col, err) {\n postMessage({type: \"error\", data: {\n message: message,\n data: err.data,\n file: file,\n line: line, \n col: col,\n stack: err.stack\n }});\n};\n\nwindow.normalizeModule = function(parentId, moduleName) {\n // normalize plugin requires\n if (moduleName.indexOf(\"!\") !== -1) {\n var chunks = moduleName.split(\"!\");\n return window.normalizeModule(parentId, chunks[0]) + \"!\" + window.normalizeModule(parentId, chunks[1]);\n }\n // normalize relative requires\n if (moduleName.charAt(0) == \".\") {\n var base = parentId.split(\"/\").slice(0, -1).join(\"/\");\n moduleName = (base ? base + \"/\" : \"\") + moduleName;\n \n while (moduleName.indexOf(\".\") !== -1 && previous != moduleName) {\n var previous = moduleName;\n moduleName = moduleName.replace(/^\\.\\//, \"\").replace(/\\/\\.\\//, \"/\").replace(/[^\\/]+\\/\\.\\.\\//, \"\");\n }\n }\n \n return moduleName;\n};\n\nwindow.require = function require(parentId, id) {\n if (!id) {\n id = parentId;\n parentId = null;\n }\n if (!id.charAt)\n throw new Error(\"worker.js require() accepts only (parentId, id) as arguments\");\n\n id = window.normalizeModule(parentId, id);\n\n var module = window.require.modules[id];\n if (module) {\n if (!module.initialized) {\n module.initialized = true;\n module.exports = module.factory().exports;\n }\n return module.exports;\n }\n \n if (!window.require.tlns)\n return console.log(\"unable to load \" + id);\n \n var path = resolveModuleId(id, window.require.tlns);\n if (path.slice(-3) != \".js\") path += \".js\";\n \n window.require.id = id;\n window.require.modules[id] = {}; // prevent infinite loop on broken modules\n importScripts(path);\n return window.require(parentId, id);\n};\nfunction resolveModuleId(id, paths) {\n var testPath = id, tail = \"\";\n while (testPath) {\n var alias = paths[testPath];\n if (typeof alias == \"string\") {\n return alias + tail;\n } else if (alias) {\n return alias.location.replace(/\\/*$/, \"/\") + (tail || alias.main || alias.name);\n } else if (alias === false) {\n return \"\";\n }\n var i = testPath.lastIndexOf(\"/\");\n if (i === -1) break;\n tail = testPath.substr(i) + tail;\n testPath = testPath.slice(0, i);\n }\n return id;\n}\nwindow.require.modules = {};\nwindow.require.tlns = {};\n\nwindow.define = function(id, deps, factory) {\n if (arguments.length == 2) {\n factory = deps;\n if (typeof id != \"string\") {\n deps = id;\n id = window.require.id;\n }\n } else if (arguments.length == 1) {\n factory = id;\n deps = [];\n id = window.require.id;\n }\n \n if (typeof factory != \"function\") {\n window.require.modules[id] = {\n exports: factory,\n initialized: true\n };\n return;\n }\n\n if (!deps.length)\n // If there is no dependencies, we inject \"require\", \"exports\" and\n // \"module\" as dependencies, to provide CommonJS compatibility.\n deps = [\"require\", \"exports\", \"module\"];\n\n var req = function(childId) {\n return window.require(id, childId);\n };\n\n window.require.modules[id] = {\n exports: {},\n factory: function() {\n var module = this;\n var returnExports = factory.apply(this, deps.slice(0, factory.length).map(function(dep) {\n switch (dep) {\n // Because \"require\", \"exports\" and \"module\" aren't actual\n // dependencies, we must handle them seperately.\n case \"require\": return req;\n case \"exports\": return module.exports;\n case \"module\": return module;\n // But for all other dependencies, we can just go ahead and\n // require them.\n default: return req(dep);\n }\n }));\n if (returnExports)\n module.exports = returnExports;\n return module;\n }\n };\n};\nwindow.define.amd = {};\nrequire.tlns = {};\nwindow.initBaseUrls = function initBaseUrls(topLevelNamespaces) {\n for (var i in topLevelNamespaces)\n require.tlns[i] = topLevelNamespaces[i];\n};\n\nwindow.initSender = function initSender() {\n\n var EventEmitter = window.require(\"ace/lib/event_emitter\").EventEmitter;\n var oop = window.require(\"ace/lib/oop\");\n \n var Sender = function() {};\n \n (function() {\n \n oop.implement(this, EventEmitter);\n \n this.callback = function(data, callbackId) {\n postMessage({\n type: \"call\",\n id: callbackId,\n data: data\n });\n };\n \n this.emit = function(name, data) {\n postMessage({\n type: \"event\",\n name: name,\n data: data\n });\n };\n \n }).call(Sender.prototype);\n \n return new Sender();\n};\n\nvar main = window.main = null;\nvar sender = window.sender = null;\n\nwindow.onmessage = function(e) {\n var msg = e.data;\n if (msg.event && sender) {\n sender._signal(msg.event, msg.data);\n }\n else if (msg.command) {\n if (main[msg.command])\n main[msg.command].apply(main, msg.args);\n else if (window[msg.command])\n window[msg.command].apply(window, msg.args);\n else\n throw new Error(\"Unknown command:\" + msg.command);\n }\n else if (msg.init) {\n window.initBaseUrls(msg.tlns);\n require(\"ace/lib/es5-shim\");\n sender = window.sender = window.initSender();\n var clazz = require(msg.module)[msg.classname];\n main = window.main = new clazz(sender);\n }\n};\n})(this);\n\nace.define(\"ace/lib/oop\",[], function(require, exports, module) {\n\"use strict\";\n\nexports.inherits = function(ctor, superCtor) {\n ctor.super_ = superCtor;\n ctor.prototype = Object.create(superCtor.prototype, {\n constructor: {\n value: ctor,\n enumerable: false,\n writable: true,\n configurable: true\n }\n });\n};\n\nexports.mixin = function(obj, mixin) {\n for (var key in mixin) {\n obj[key] = mixin[key];\n }\n return obj;\n};\n\nexports.implement = function(proto, mixin) {\n exports.mixin(proto, mixin);\n};\n\n});\n\nace.define(\"ace/range\",[], function(require, exports, module) {\n\"use strict\";\nvar comparePoints = function(p1, p2) {\n return p1.row - p2.row || p1.column - p2.column;\n};\nvar Range = function(startRow, startColumn, endRow, endColumn) {\n this.start = {\n row: startRow,\n column: startColumn\n };\n\n this.end = {\n row: endRow,\n column: endColumn\n };\n};\n\n(function() {\n this.isEqual = function(range) {\n return this.start.row === range.start.row &&\n this.end.row === range.end.row &&\n this.start.column === range.start.column &&\n this.end.column === range.end.column;\n };\n this.toString = function() {\n return (\"Range: [\" + this.start.row + \"/\" + this.start.column +\n \"] -> [\" + this.end.row + \"/\" + this.end.column + \"]\");\n };\n\n this.contains = function(row, column) {\n return this.compare(row, column) == 0;\n };\n this.compareRange = function(range) {\n var cmp,\n end = range.end,\n start = range.start;\n\n cmp = this.compare(end.row, end.column);\n if (cmp == 1) {\n cmp = this.compare(start.row, start.column);\n if (cmp == 1) {\n return 2;\n } else if (cmp == 0) {\n return 1;\n } else {\n return 0;\n }\n } else if (cmp == -1) {\n return -2;\n } else {\n cmp = this.compare(start.row, start.column);\n if (cmp == -1) {\n return -1;\n } else if (cmp == 1) {\n return 42;\n } else {\n return 0;\n }\n }\n };\n this.comparePoint = function(p) {\n return this.compare(p.row, p.column);\n };\n this.containsRange = function(range) {\n return this.comparePoint(range.start) == 0 && this.comparePoint(range.end) == 0;\n };\n this.intersects = function(range) {\n var cmp = this.compareRange(range);\n return (cmp == -1 || cmp == 0 || cmp == 1);\n };\n this.isEnd = function(row, column) {\n return this.end.row == row && this.end.column == column;\n };\n this.isStart = function(row, column) {\n return this.start.row == row && this.start.column == column;\n };\n this.setStart = function(row, column) {\n if (typeof row == \"object\") {\n this.start.column = row.column;\n this.start.row = row.row;\n } else {\n this.start.row = row;\n this.start.column = column;\n }\n };\n this.setEnd = function(row, column) {\n if (typeof row == \"object\") {\n this.end.column = row.column;\n this.end.row = row.row;\n } else {\n this.end.row = row;\n this.end.column = column;\n }\n };\n this.inside = function(row, column) {\n if (this.compare(row, column) == 0) {\n if (this.isEnd(row, column) || this.isStart(row, column)) {\n return false;\n } else {\n return true;\n }\n }\n return false;\n };\n this.insideStart = function(row, column) {\n if (this.compare(row, column) == 0) {\n if (this.isEnd(row, column)) {\n return false;\n } else {\n return true;\n }\n }\n return false;\n };\n this.insideEnd = function(row, column) {\n if (this.compare(row, column) == 0) {\n if (this.isStart(row, column)) {\n return false;\n } else {\n return true;\n }\n }\n return false;\n };\n this.compare = function(row, column) {\n if (!this.isMultiLine()) {\n if (row === this.start.row) {\n return column < this.start.column ? -1 : (column > this.end.column ? 1 : 0);\n }\n }\n\n if (row < this.start.row)\n return -1;\n\n if (row > this.end.row)\n return 1;\n\n if (this.start.row === row)\n return column >= this.start.column ? 0 : -1;\n\n if (this.end.row === row)\n return column <= this.end.column ? 0 : 1;\n\n return 0;\n };\n this.compareStart = function(row, column) {\n if (this.start.row == row && this.start.column == column) {\n return -1;\n } else {\n return this.compare(row, column);\n }\n };\n this.compareEnd = function(row, column) {\n if (this.end.row == row && this.end.column == column) {\n return 1;\n } else {\n return this.compare(row, column);\n }\n };\n this.compareInside = function(row, column) {\n if (this.end.row == row && this.end.column == column) {\n return 1;\n } else if (this.start.row == row && this.start.column == column) {\n return -1;\n } else {\n return this.compare(row, column);\n }\n };\n this.clipRows = function(firstRow, lastRow) {\n if (this.end.row > lastRow)\n var end = {row: lastRow + 1, column: 0};\n else if (this.end.row < firstRow)\n var end = {row: firstRow, column: 0};\n\n if (this.start.row > lastRow)\n var start = {row: lastRow + 1, column: 0};\n else if (this.start.row < firstRow)\n var start = {row: firstRow, column: 0};\n\n return Range.fromPoints(start || this.start, end || this.end);\n };\n this.extend = function(row, column) {\n var cmp = this.compare(row, column);\n\n if (cmp == 0)\n return this;\n else if (cmp == -1)\n var start = {row: row, column: column};\n else\n var end = {row: row, column: column};\n\n return Range.fromPoints(start || this.start, end || this.end);\n };\n\n this.isEmpty = function() {\n return (this.start.row === this.end.row && this.start.column === this.end.column);\n };\n this.isMultiLine = function() {\n return (this.start.row !== this.end.row);\n };\n this.clone = function() {\n return Range.fromPoints(this.start, this.end);\n };\n this.collapseRows = function() {\n if (this.end.column == 0)\n return new Range(this.start.row, 0, Math.max(this.start.row, this.end.row-1), 0);\n else\n return new Range(this.start.row, 0, this.end.row, 0);\n };\n this.toScreenRange = function(session) {\n var screenPosStart = session.documentToScreenPosition(this.start);\n var screenPosEnd = session.documentToScreenPosition(this.end);\n\n return new Range(\n screenPosStart.row, screenPosStart.column,\n screenPosEnd.row, screenPosEnd.column\n );\n };\n this.moveBy = function(row, column) {\n this.start.row += row;\n this.start.column += column;\n this.end.row += row;\n this.end.column += column;\n };\n\n}).call(Range.prototype);\nRange.fromPoints = function(start, end) {\n return new Range(start.row, start.column, end.row, end.column);\n};\nRange.comparePoints = comparePoints;\n\nRange.comparePoints = function(p1, p2) {\n return p1.row - p2.row || p1.column - p2.column;\n};\n\n\nexports.Range = Range;\n});\n\nace.define(\"ace/apply_delta\",[], function(require, exports, module) {\n\"use strict\";\n\nfunction throwDeltaError(delta, errorText){\n console.log(\"Invalid Delta:\", delta);\n throw \"Invalid Delta: \" + errorText;\n}\n\nfunction positionInDocument(docLines, position) {\n return position.row >= 0 && position.row < docLines.length &&\n position.column >= 0 && position.column <= docLines[position.row].length;\n}\n\nfunction validateDelta(docLines, delta) {\n if (delta.action != \"insert\" && delta.action != \"remove\")\n throwDeltaError(delta, \"delta.action must be 'insert' or 'remove'\");\n if (!(delta.lines instanceof Array))\n throwDeltaError(delta, \"delta.lines must be an Array\");\n if (!delta.start || !delta.end)\n throwDeltaError(delta, \"delta.start/end must be an present\");\n var start = delta.start;\n if (!positionInDocument(docLines, delta.start))\n throwDeltaError(delta, \"delta.start must be contained in document\");\n var end = delta.end;\n if (delta.action == \"remove\" && !positionInDocument(docLines, end))\n throwDeltaError(delta, \"delta.end must contained in document for 'remove' actions\");\n var numRangeRows = end.row - start.row;\n var numRangeLastLineChars = (end.column - (numRangeRows == 0 ? start.column : 0));\n if (numRangeRows != delta.lines.length - 1 || delta.lines[numRangeRows].length != numRangeLastLineChars)\n throwDeltaError(delta, \"delta.range must match delta lines\");\n}\n\nexports.applyDelta = function(docLines, delta, doNotValidate) {\n \n var row = delta.start.row;\n var startColumn = delta.start.column;\n var line = docLines[row] || \"\";\n switch (delta.action) {\n case \"insert\":\n var lines = delta.lines;\n if (lines.length === 1) {\n docLines[row] = line.substring(0, startColumn) + delta.lines[0] + line.substring(startColumn);\n } else {\n var args = [row, 1].concat(delta.lines);\n docLines.splice.apply(docLines, args);\n docLines[row] = line.substring(0, startColumn) + docLines[row];\n docLines[row + delta.lines.length - 1] += line.substring(startColumn);\n }\n break;\n case \"remove\":\n var endColumn = delta.end.column;\n var endRow = delta.end.row;\n if (row === endRow) {\n docLines[row] = line.substring(0, startColumn) + line.substring(endColumn);\n } else {\n docLines.splice(\n row, endRow - row + 1,\n line.substring(0, startColumn) + docLines[endRow].substring(endColumn)\n );\n }\n break;\n }\n};\n});\n\nace.define(\"ace/lib/event_emitter\",[], function(require, exports, module) {\n\"use strict\";\n\nvar EventEmitter = {};\nvar stopPropagation = function() { this.propagationStopped = true; };\nvar preventDefault = function() { this.defaultPrevented = true; };\n\nEventEmitter._emit =\nEventEmitter._dispatchEvent = function(eventName, e) {\n this._eventRegistry || (this._eventRegistry = {});\n this._defaultHandlers || (this._defaultHandlers = {});\n\n var listeners = this._eventRegistry[eventName] || [];\n var defaultHandler = this._defaultHandlers[eventName];\n if (!listeners.length && !defaultHandler)\n return;\n\n if (typeof e != \"object\" || !e)\n e = {};\n\n if (!e.type)\n e.type = eventName;\n if (!e.stopPropagation)\n e.stopPropagation = stopPropagation;\n if (!e.preventDefault)\n e.preventDefault = preventDefault;\n\n listeners = listeners.slice();\n for (var i=0; i this.row)\n return;\n \n var point = $getTransformedPoint(delta, {row: this.row, column: this.column}, this.$insertRight);\n this.setPosition(point.row, point.column, true);\n };\n \n function $pointsInOrder(point1, point2, equalPointsInOrder) {\n var bColIsAfter = equalPointsInOrder ? point1.column <= point2.column : point1.column < point2.column;\n return (point1.row < point2.row) || (point1.row == point2.row && bColIsAfter);\n }\n \n function $getTransformedPoint(delta, point, moveIfEqual) {\n var deltaIsInsert = delta.action == \"insert\";\n var deltaRowShift = (deltaIsInsert ? 1 : -1) * (delta.end.row - delta.start.row);\n var deltaColShift = (deltaIsInsert ? 1 : -1) * (delta.end.column - delta.start.column);\n var deltaStart = delta.start;\n var deltaEnd = deltaIsInsert ? deltaStart : delta.end; // Collapse insert range.\n if ($pointsInOrder(point, deltaStart, moveIfEqual)) {\n return {\n row: point.row,\n column: point.column\n };\n }\n if ($pointsInOrder(deltaEnd, point, !moveIfEqual)) {\n return {\n row: point.row + deltaRowShift,\n column: point.column + (point.row == deltaEnd.row ? deltaColShift : 0)\n };\n }\n \n return {\n row: deltaStart.row,\n column: deltaStart.column\n };\n }\n this.setPosition = function(row, column, noClip) {\n var pos;\n if (noClip) {\n pos = {\n row: row,\n column: column\n };\n } else {\n pos = this.$clipPositionToDocument(row, column);\n }\n\n if (this.row == pos.row && this.column == pos.column)\n return;\n\n var old = {\n row: this.row,\n column: this.column\n };\n\n this.row = pos.row;\n this.column = pos.column;\n this._signal(\"change\", {\n old: old,\n value: pos\n });\n };\n this.detach = function() {\n this.document.removeEventListener(\"change\", this.$onChange);\n };\n this.attach = function(doc) {\n this.document = doc || this.document;\n this.document.on(\"change\", this.$onChange);\n };\n this.$clipPositionToDocument = function(row, column) {\n var pos = {};\n\n if (row >= this.document.getLength()) {\n pos.row = Math.max(0, this.document.getLength() - 1);\n pos.column = this.document.getLine(pos.row).length;\n }\n else if (row < 0) {\n pos.row = 0;\n pos.column = 0;\n }\n else {\n pos.row = row;\n pos.column = Math.min(this.document.getLine(pos.row).length, Math.max(0, column));\n }\n\n if (column < 0)\n pos.column = 0;\n\n return pos;\n };\n\n}).call(Anchor.prototype);\n\n});\n\nace.define(\"ace/document\",[], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"./lib/oop\");\nvar applyDelta = require(\"./apply_delta\").applyDelta;\nvar EventEmitter = require(\"./lib/event_emitter\").EventEmitter;\nvar Range = require(\"./range\").Range;\nvar Anchor = require(\"./anchor\").Anchor;\n\nvar Document = function(textOrLines) {\n this.$lines = [\"\"];\n if (textOrLines.length === 0) {\n this.$lines = [\"\"];\n } else if (Array.isArray(textOrLines)) {\n this.insertMergedLines({row: 0, column: 0}, textOrLines);\n } else {\n this.insert({row: 0, column:0}, textOrLines);\n }\n};\n\n(function() {\n\n oop.implement(this, EventEmitter);\n this.setValue = function(text) {\n var len = this.getLength() - 1;\n this.remove(new Range(0, 0, len, this.getLine(len).length));\n this.insert({row: 0, column: 0}, text);\n };\n this.getValue = function() {\n return this.getAllLines().join(this.getNewLineCharacter());\n };\n this.createAnchor = function(row, column) {\n return new Anchor(this, row, column);\n };\n if (\"aaa\".split(/a/).length === 0) {\n this.$split = function(text) {\n return text.replace(/\\r\\n|\\r/g, \"\\n\").split(\"\\n\");\n };\n } else {\n this.$split = function(text) {\n return text.split(/\\r\\n|\\r|\\n/);\n };\n }\n\n\n this.$detectNewLine = function(text) {\n var match = text.match(/^.*?(\\r\\n|\\r|\\n)/m);\n this.$autoNewLine = match ? match[1] : \"\\n\";\n this._signal(\"changeNewLineMode\");\n };\n this.getNewLineCharacter = function() {\n switch (this.$newLineMode) {\n case \"windows\":\n return \"\\r\\n\";\n case \"unix\":\n return \"\\n\";\n default:\n return this.$autoNewLine || \"\\n\";\n }\n };\n\n this.$autoNewLine = \"\";\n this.$newLineMode = \"auto\";\n this.setNewLineMode = function(newLineMode) {\n if (this.$newLineMode === newLineMode)\n return;\n\n this.$newLineMode = newLineMode;\n this._signal(\"changeNewLineMode\");\n };\n this.getNewLineMode = function() {\n return this.$newLineMode;\n };\n this.isNewLine = function(text) {\n return (text == \"\\r\\n\" || text == \"\\r\" || text == \"\\n\");\n };\n this.getLine = function(row) {\n return this.$lines[row] || \"\";\n };\n this.getLines = function(firstRow, lastRow) {\n return this.$lines.slice(firstRow, lastRow + 1);\n };\n this.getAllLines = function() {\n return this.getLines(0, this.getLength());\n };\n this.getLength = function() {\n return this.$lines.length;\n };\n this.getTextRange = function(range) {\n return this.getLinesForRange(range).join(this.getNewLineCharacter());\n };\n this.getLinesForRange = function(range) {\n var lines;\n if (range.start.row === range.end.row) {\n lines = [this.getLine(range.start.row).substring(range.start.column, range.end.column)];\n } else {\n lines = this.getLines(range.start.row, range.end.row);\n lines[0] = (lines[0] || \"\").substring(range.start.column);\n var l = lines.length - 1;\n if (range.end.row - range.start.row == l)\n lines[l] = lines[l].substring(0, range.end.column);\n }\n return lines;\n };\n this.insertLines = function(row, lines) {\n console.warn(\"Use of document.insertLines is deprecated. Use the insertFullLines method instead.\");\n return this.insertFullLines(row, lines);\n };\n this.removeLines = function(firstRow, lastRow) {\n console.warn(\"Use of document.removeLines is deprecated. Use the removeFullLines method instead.\");\n return this.removeFullLines(firstRow, lastRow);\n };\n this.insertNewLine = function(position) {\n console.warn(\"Use of document.insertNewLine is deprecated. Use insertMergedLines(position, ['', '']) instead.\");\n return this.insertMergedLines(position, [\"\", \"\"]);\n };\n this.insert = function(position, text) {\n if (this.getLength() <= 1)\n this.$detectNewLine(text);\n \n return this.insertMergedLines(position, this.$split(text));\n };\n this.insertInLine = function(position, text) {\n var start = this.clippedPos(position.row, position.column);\n var end = this.pos(position.row, position.column + text.length);\n \n this.applyDelta({\n start: start,\n end: end,\n action: \"insert\",\n lines: [text]\n }, true);\n \n return this.clonePos(end);\n };\n \n this.clippedPos = function(row, column) {\n var length = this.getLength();\n if (row === undefined) {\n row = length;\n } else if (row < 0) {\n row = 0;\n } else if (row >= length) {\n row = length - 1;\n column = undefined;\n }\n var line = this.getLine(row);\n if (column == undefined)\n column = line.length;\n column = Math.min(Math.max(column, 0), line.length);\n return {row: row, column: column};\n };\n \n this.clonePos = function(pos) {\n return {row: pos.row, column: pos.column};\n };\n \n this.pos = function(row, column) {\n return {row: row, column: column};\n };\n \n this.$clipPosition = function(position) {\n var length = this.getLength();\n if (position.row >= length) {\n position.row = Math.max(0, length - 1);\n position.column = this.getLine(length - 1).length;\n } else {\n position.row = Math.max(0, position.row);\n position.column = Math.min(Math.max(position.column, 0), this.getLine(position.row).length);\n }\n return position;\n };\n this.insertFullLines = function(row, lines) {\n row = Math.min(Math.max(row, 0), this.getLength());\n var column = 0;\n if (row < this.getLength()) {\n lines = lines.concat([\"\"]);\n column = 0;\n } else {\n lines = [\"\"].concat(lines);\n row--;\n column = this.$lines[row].length;\n }\n this.insertMergedLines({row: row, column: column}, lines);\n }; \n this.insertMergedLines = function(position, lines) {\n var start = this.clippedPos(position.row, position.column);\n var end = {\n row: start.row + lines.length - 1,\n column: (lines.length == 1 ? start.column : 0) + lines[lines.length - 1].length\n };\n \n this.applyDelta({\n start: start,\n end: end,\n action: \"insert\",\n lines: lines\n });\n \n return this.clonePos(end);\n };\n this.remove = function(range) {\n var start = this.clippedPos(range.start.row, range.start.column);\n var end = this.clippedPos(range.end.row, range.end.column);\n this.applyDelta({\n start: start,\n end: end,\n action: \"remove\",\n lines: this.getLinesForRange({start: start, end: end})\n });\n return this.clonePos(start);\n };\n this.removeInLine = function(row, startColumn, endColumn) {\n var start = this.clippedPos(row, startColumn);\n var end = this.clippedPos(row, endColumn);\n \n this.applyDelta({\n start: start,\n end: end,\n action: \"remove\",\n lines: this.getLinesForRange({start: start, end: end})\n }, true);\n \n return this.clonePos(start);\n };\n this.removeFullLines = function(firstRow, lastRow) {\n firstRow = Math.min(Math.max(0, firstRow), this.getLength() - 1);\n lastRow = Math.min(Math.max(0, lastRow ), this.getLength() - 1);\n var deleteFirstNewLine = lastRow == this.getLength() - 1 && firstRow > 0;\n var deleteLastNewLine = lastRow < this.getLength() - 1;\n var startRow = ( deleteFirstNewLine ? firstRow - 1 : firstRow );\n var startCol = ( deleteFirstNewLine ? this.getLine(startRow).length : 0 );\n var endRow = ( deleteLastNewLine ? lastRow + 1 : lastRow );\n var endCol = ( deleteLastNewLine ? 0 : this.getLine(endRow).length ); \n var range = new Range(startRow, startCol, endRow, endCol);\n var deletedLines = this.$lines.slice(firstRow, lastRow + 1);\n \n this.applyDelta({\n start: range.start,\n end: range.end,\n action: \"remove\",\n lines: this.getLinesForRange(range)\n });\n return deletedLines;\n };\n this.removeNewLine = function(row) {\n if (row < this.getLength() - 1 && row >= 0) {\n this.applyDelta({\n start: this.pos(row, this.getLine(row).length),\n end: this.pos(row + 1, 0),\n action: \"remove\",\n lines: [\"\", \"\"]\n });\n }\n };\n this.replace = function(range, text) {\n if (!(range instanceof Range))\n range = Range.fromPoints(range.start, range.end);\n if (text.length === 0 && range.isEmpty())\n return range.start;\n if (text == this.getTextRange(range))\n return range.end;\n\n this.remove(range);\n var end;\n if (text) {\n end = this.insert(range.start, text);\n }\n else {\n end = range.start;\n }\n \n return end;\n };\n this.applyDeltas = function(deltas) {\n for (var i=0; i=0; i--) {\n this.revertDelta(deltas[i]);\n }\n };\n this.applyDelta = function(delta, doNotValidate) {\n var isInsert = delta.action == \"insert\";\n if (isInsert ? delta.lines.length <= 1 && !delta.lines[0]\n : !Range.comparePoints(delta.start, delta.end)) {\n return;\n }\n \n if (isInsert && delta.lines.length > 20000) {\n this.$splitAndapplyLargeDelta(delta, 20000);\n }\n else {\n applyDelta(this.$lines, delta, doNotValidate);\n this._signal(\"change\", delta);\n }\n };\n \n this.$splitAndapplyLargeDelta = function(delta, MAX) {\n var lines = delta.lines;\n var l = lines.length - MAX + 1;\n var row = delta.start.row; \n var column = delta.start.column;\n for (var from = 0, to = 0; from < l; from = to) {\n to += MAX - 1;\n var chunk = lines.slice(from, to);\n chunk.push(\"\");\n this.applyDelta({\n start: this.pos(row + from, column),\n end: this.pos(row + to, column = 0),\n action: delta.action,\n lines: chunk\n }, true);\n }\n delta.lines = lines.slice(from);\n delta.start.row = row + from;\n delta.start.column = column;\n this.applyDelta(delta, true);\n };\n this.revertDelta = function(delta) {\n this.applyDelta({\n start: this.clonePos(delta.start),\n end: this.clonePos(delta.end),\n action: (delta.action == \"insert\" ? \"remove\" : \"insert\"),\n lines: delta.lines.slice()\n });\n };\n this.indexToPosition = function(index, startRow) {\n var lines = this.$lines || this.getAllLines();\n var newlineLength = this.getNewLineCharacter().length;\n for (var i = startRow || 0, l = lines.length; i < l; i++) {\n index -= lines[i].length + newlineLength;\n if (index < 0)\n return {row: i, column: index + lines[i].length + newlineLength};\n }\n return {row: l-1, column: index + lines[l-1].length + newlineLength};\n };\n this.positionToIndex = function(pos, startRow) {\n var lines = this.$lines || this.getAllLines();\n var newlineLength = this.getNewLineCharacter().length;\n var index = 0;\n var row = Math.min(pos.row, lines.length);\n for (var i = startRow || 0; i < row; ++i)\n index += lines[i].length + newlineLength;\n\n return index + pos.column;\n };\n\n}).call(Document.prototype);\n\nexports.Document = Document;\n});\n\nace.define(\"ace/lib/lang\",[], function(require, exports, module) {\n\"use strict\";\n\nexports.last = function(a) {\n return a[a.length - 1];\n};\n\nexports.stringReverse = function(string) {\n return string.split(\"\").reverse().join(\"\");\n};\n\nexports.stringRepeat = function (string, count) {\n var result = '';\n while (count > 0) {\n if (count & 1)\n result += string;\n\n if (count >>= 1)\n string += string;\n }\n return result;\n};\n\nvar trimBeginRegexp = /^\\s\\s*/;\nvar trimEndRegexp = /\\s\\s*$/;\n\nexports.stringTrimLeft = function (string) {\n return string.replace(trimBeginRegexp, '');\n};\n\nexports.stringTrimRight = function (string) {\n return string.replace(trimEndRegexp, '');\n};\n\nexports.copyObject = function(obj) {\n var copy = {};\n for (var key in obj) {\n copy[key] = obj[key];\n }\n return copy;\n};\n\nexports.copyArray = function(array){\n var copy = [];\n for (var i=0, l=array.length; i= length) return {\n type : EOF\n , value: ''\n , line: line\n , lineStart: lineStart\n , range: [index, index]\n };\n\n var charCode = input.charCodeAt(index)\n , next = input.charCodeAt(index + 1);\n tokenStart = index;\n if (isIdentifierStart(charCode)) return scanIdentifierOrKeyword();\n\n switch (charCode) {\n case 39: case 34: // '\"\n return scanStringLiteral();\n case 48: case 49: case 50: case 51: case 52: case 53:\n case 54: case 55: case 56: case 57:\n return scanNumericLiteral();\n\n case 46: // .\n if (isDecDigit(next)) return scanNumericLiteral();\n if (46 === next) {\n if (46 === input.charCodeAt(index + 2)) return scanVarargLiteral();\n return scanPunctuator('..');\n }\n return scanPunctuator('.');\n\n case 61: // =\n if (61 === next) return scanPunctuator('==');\n return scanPunctuator('=');\n\n case 62: // >\n if (61 === next) return scanPunctuator('>=');\n return scanPunctuator('>');\n\n case 60: // <\n if (61 === next) return scanPunctuator('<=');\n return scanPunctuator('<');\n\n case 126: // ~\n if (61 === next) return scanPunctuator('~=');\n return scanPunctuator('~');\n\n case 58: // :\n if (58 === next) return scanPunctuator('::');\n return scanPunctuator(':');\n\n case 91: // [\n if (91 === next || 61 === next) return scanLongStringLiteral();\n return scanPunctuator('[');\n case 42: case 47: case 94: case 37: case 44: case 123: case 125:\n case 93: case 40: case 41: case 59: case 35: case 45: case 43: case 38: case 124:\n return scanPunctuator(input.charAt(index));\n }\n\n return unexpected(input.charAt(index));\n }\n\n function skipWhiteSpace() {\n while (index < length) {\n var charCode = input.charCodeAt(index);\n if (isWhiteSpace(charCode)) {\n index++;\n } else if (isLineTerminator(charCode)) {\n line++;\n lineStart = ++index;\n } else {\n break;\n }\n }\n }\n\n function scanIdentifierOrKeyword() {\n var value, type;\n while (isIdentifierPart(input.charCodeAt(++index)));\n value = input.slice(tokenStart, index);\n if (isKeyword(value)) {\n type = Keyword;\n } else if ('true' === value || 'false' === value) {\n type = BooleanLiteral;\n value = ('true' === value);\n } else if ('nil' === value) {\n type = NilLiteral;\n value = null;\n } else {\n type = Identifier;\n }\n\n return {\n type: type\n , value: value\n , line: line\n , lineStart: lineStart\n , range: [tokenStart, index]\n };\n }\n\n function scanPunctuator(value) {\n index += value.length;\n return {\n type: Punctuator\n , value: value\n , line: line\n , lineStart: lineStart\n , range: [tokenStart, index]\n };\n }\n\n function scanVarargLiteral() {\n index += 3;\n return {\n type: VarargLiteral\n , value: '...'\n , line: line\n , lineStart: lineStart\n , range: [tokenStart, index]\n };\n }\n\n function scanStringLiteral() {\n var delimiter = input.charCodeAt(index++)\n , stringStart = index\n , string = ''\n , charCode;\n\n while (index < length) {\n charCode = input.charCodeAt(index++);\n if (delimiter === charCode) break;\n if (92 === charCode) { // \\\n string += input.slice(stringStart, index - 1) + readEscapeSequence();\n stringStart = index;\n }\n else if (index >= length || isLineTerminator(charCode)) {\n string += input.slice(stringStart, index - 1);\n raise({}, errors.unfinishedString, string + String.fromCharCode(charCode));\n }\n }\n string += input.slice(stringStart, index - 1);\n\n return {\n type: StringLiteral\n , value: string\n , line: line\n , lineStart: lineStart\n , range: [tokenStart, index]\n };\n }\n\n function scanLongStringLiteral() {\n var string = readLongString();\n if (false === string) raise(token, errors.expected, '[', token.value);\n\n return {\n type: StringLiteral\n , value: string\n , line: line\n , lineStart: lineStart\n , range: [tokenStart, index]\n };\n }\n\n function scanNumericLiteral() {\n var character = input.charAt(index)\n , next = input.charAt(index + 1);\n\n var value = ('0' === character && 'xX'.indexOf(next || null) >= 0) ?\n readHexLiteral() : readDecLiteral();\n\n return {\n type: NumericLiteral\n , value: value\n , line: line\n , lineStart: lineStart\n , range: [tokenStart, index]\n };\n }\n\n function readHexLiteral() {\n var fraction = 0 // defaults to 0 as it gets summed\n , binaryExponent = 1 // defaults to 1 as it gets multiplied\n , binarySign = 1 // positive\n , digit, fractionStart, exponentStart, digitStart;\n\n digitStart = index += 2; // Skip 0x part\n if (!isHexDigit(input.charCodeAt(index)))\n raise({}, errors.malformedNumber, input.slice(tokenStart, index));\n\n while (isHexDigit(input.charCodeAt(index))) index++;\n digit = parseInt(input.slice(digitStart, index), 16);\n if ('.' === input.charAt(index)) {\n fractionStart = ++index;\n\n while (isHexDigit(input.charCodeAt(index))) index++;\n fraction = input.slice(fractionStart, index);\n fraction = (fractionStart === index) ? 0\n : parseInt(fraction, 16) / Math.pow(16, index - fractionStart);\n }\n if ('pP'.indexOf(input.charAt(index) || null) >= 0) {\n index++;\n if ('+-'.indexOf(input.charAt(index) || null) >= 0)\n binarySign = ('+' === input.charAt(index++)) ? 1 : -1;\n\n exponentStart = index;\n if (!isDecDigit(input.charCodeAt(index)))\n raise({}, errors.malformedNumber, input.slice(tokenStart, index));\n\n while (isDecDigit(input.charCodeAt(index))) index++;\n binaryExponent = input.slice(exponentStart, index);\n binaryExponent = Math.pow(2, binaryExponent * binarySign);\n }\n\n return (digit + fraction) * binaryExponent;\n }\n\n function readDecLiteral() {\n while (isDecDigit(input.charCodeAt(index))) index++;\n if ('.' === input.charAt(index)) {\n index++;\n while (isDecDigit(input.charCodeAt(index))) index++;\n }\n if ('eE'.indexOf(input.charAt(index) || null) >= 0) {\n index++;\n if ('+-'.indexOf(input.charAt(index) || null) >= 0) index++;\n if (!isDecDigit(input.charCodeAt(index)))\n raise({}, errors.malformedNumber, input.slice(tokenStart, index));\n\n while (isDecDigit(input.charCodeAt(index))) index++;\n }\n\n return parseFloat(input.slice(tokenStart, index));\n }\n\n function readEscapeSequence() {\n var sequenceStart = index;\n switch (input.charAt(index)) {\n case 'n': index++; return '\\n';\n case 'r': index++; return '\\r';\n case 't': index++; return '\\t';\n case 'v': index++; return '\\x0B';\n case 'b': index++; return '\\b';\n case 'f': index++; return '\\f';\n case 'z': index++; skipWhiteSpace(); return '';\n case 'x':\n if (isHexDigit(input.charCodeAt(index + 1)) &&\n isHexDigit(input.charCodeAt(index + 2))) {\n index += 3;\n return '\\\\' + input.slice(sequenceStart, index);\n }\n return '\\\\' + input.charAt(index++);\n default:\n if (isDecDigit(input.charCodeAt(index))) {\n while (isDecDigit(input.charCodeAt(++index)));\n return '\\\\' + input.slice(sequenceStart, index);\n }\n return input.charAt(index++);\n }\n }\n\n function scanComment() {\n tokenStart = index;\n index += 2; // --\n\n var character = input.charAt(index)\n , content = ''\n , isLong = false\n , commentStart = index\n , lineStartComment = lineStart\n , lineComment = line;\n\n if ('[' === character) {\n content = readLongString();\n if (false === content) content = character;\n else isLong = true;\n }\n if (!isLong) {\n while (index < length) {\n if (isLineTerminator(input.charCodeAt(index))) break;\n index++;\n }\n if (options.comments) content = input.slice(commentStart, index);\n }\n\n if (options.comments) {\n var node = ast.comment(content, input.slice(tokenStart, index));\n if (options.locations) {\n node.loc = {\n start: { line: lineComment, column: tokenStart - lineStartComment }\n , end: { line: line, column: index - lineStart }\n };\n }\n if (options.ranges) {\n node.range = [tokenStart, index];\n }\n comments.push(node);\n }\n }\n\n function readLongString() {\n var level = 0\n , content = ''\n , terminator = false\n , character, stringStart;\n\n index++; // [\n while ('=' === input.charAt(index + level)) level++;\n if ('[' !== input.charAt(index + level)) return false;\n\n index += level + 1;\n if (isLineTerminator(input.charCodeAt(index))) {\n line++;\n lineStart = index++;\n }\n\n stringStart = index;\n while (index < length) {\n character = input.charAt(index++);\n if (isLineTerminator(character.charCodeAt(0))) {\n line++;\n lineStart = index;\n }\n if (']' === character) {\n terminator = true;\n for (var i = 0; i < level; i++) {\n if ('=' !== input.charAt(index + i)) terminator = false;\n }\n if (']' !== input.charAt(index + level)) terminator = false;\n }\n if (terminator) break;\n }\n content += input.slice(stringStart, index - 1);\n index += level + 1;\n\n return content;\n }\n\n function next() {\n previousToken = token;\n token = lookahead;\n lookahead = lex();\n }\n\n function consume(value) {\n if (value === token.value) {\n next();\n return true;\n }\n return false;\n }\n\n function expect(value) {\n if (value === token.value) next();\n else raise(token, errors.expected, value, token.value);\n }\n\n function isWhiteSpace(charCode) {\n return 9 === charCode || 32 === charCode || 0xB === charCode || 0xC === charCode;\n }\n\n function isLineTerminator(charCode) {\n return 10 === charCode || 13 === charCode;\n }\n\n function isDecDigit(charCode) {\n return charCode >= 48 && charCode <= 57;\n }\n\n function isHexDigit(charCode) {\n return (charCode >= 48 && charCode <= 57) || (charCode >= 97 && charCode <= 102) || (charCode >= 65 && charCode <= 70);\n }\n\n function isIdentifierStart(charCode) {\n return (charCode >= 65 && charCode <= 90) || (charCode >= 97 && charCode <= 122) || 95 === charCode;\n }\n\n function isIdentifierPart(charCode) {\n return (charCode >= 65 && charCode <= 90) || (charCode >= 97 && charCode <= 122) || 95 === charCode || (charCode >= 48 && charCode <= 57);\n }\n\n function isKeyword(id) {\n switch (id.length) {\n case 2:\n return 'do' === id || 'if' === id || 'in' === id || 'or' === id;\n case 3:\n return 'and' === id || 'end' === id || 'for' === id || 'not' === id;\n case 4:\n return 'else' === id || 'goto' === id || 'then' === id;\n case 5:\n return 'break' === id || 'local' === id || 'until' === id || 'while' === id;\n case 6:\n return 'elseif' === id || 'repeat' === id || 'return' === id;\n case 8:\n return 'function' === id;\n }\n return false;\n }\n\n function isUnary(token) {\n if (Punctuator === token.type) return '#-~'.indexOf(token.value) >= 0;\n if (Keyword === token.type) return 'not' === token.value;\n return false;\n }\n function isCallExpression(expression) {\n switch (expression.type) {\n case 'CallExpression':\n case 'TableCallExpression':\n case 'StringCallExpression':\n return true;\n }\n return false;\n }\n\n function isBlockFollow(token) {\n if (EOF === token.type) return true;\n if (Keyword !== token.type) return false;\n switch (token.value) {\n case 'else': case 'elseif':\n case 'end': case 'until':\n return true;\n default:\n return false;\n }\n }\n var scopes\n , scopeDepth\n , globals;\n function createScope() {\n scopes.push(Array.apply(null, scopes[scopeDepth++]));\n }\n function exitScope() {\n scopes.pop();\n scopeDepth--;\n }\n function scopeIdentifierName(name) {\n if (-1 !== indexOf(scopes[scopeDepth], name)) return;\n scopes[scopeDepth].push(name);\n }\n function scopeIdentifier(node) {\n scopeIdentifierName(node.name);\n attachScope(node, true);\n }\n function attachScope(node, isLocal) {\n if (!isLocal && -1 === indexOfObject(globals, 'name', node.name))\n globals.push(node);\n\n node.isLocal = isLocal;\n }\n function scopeHasName(name) {\n return (-1 !== indexOf(scopes[scopeDepth], name));\n }\n\n var locations = []\n , trackLocations;\n\n function createLocationMarker() {\n return new Marker(token);\n }\n\n function Marker(token) {\n if (options.locations) {\n this.loc = {\n start: {\n line: token.line\n , column: token.range[0] - token.lineStart\n }\n , end: {\n line: 0\n , column: 0\n }\n };\n }\n if (options.ranges) this.range = [token.range[0], 0];\n }\n Marker.prototype.complete = function() {\n if (options.locations) {\n this.loc.end.line = previousToken.line;\n this.loc.end.column = previousToken.range[1] - previousToken.lineStart;\n }\n if (options.ranges) {\n this.range[1] = previousToken.range[1];\n }\n };\n function markLocation() {\n if (trackLocations) locations.push(createLocationMarker());\n }\n function pushLocation(marker) {\n if (trackLocations) locations.push(marker);\n }\n\n function parseChunk() {\n next();\n markLocation();\n var body = parseBlock();\n if (EOF !== token.type) unexpected(token);\n if (trackLocations && !body.length) previousToken = token;\n return finishNode(ast.chunk(body));\n }\n\n function parseBlock(terminator) {\n var block = []\n , statement;\n if (options.scope) createScope();\n\n while (!isBlockFollow(token)) {\n if ('return' === token.value) {\n block.push(parseStatement());\n break;\n }\n statement = parseStatement();\n if (statement) block.push(statement);\n }\n\n if (options.scope) exitScope();\n return block;\n }\n\n function parseStatement() {\n markLocation();\n if (Keyword === token.type) {\n switch (token.value) {\n case 'local': next(); return parseLocalStatement();\n case 'if': next(); return parseIfStatement();\n case 'return': next(); return parseReturnStatement();\n case 'function': next();\n var name = parseFunctionName();\n return parseFunctionDeclaration(name);\n case 'while': next(); return parseWhileStatement();\n case 'for': next(); return parseForStatement();\n case 'repeat': next(); return parseRepeatStatement();\n case 'break': next(); return parseBreakStatement();\n case 'do': next(); return parseDoStatement();\n case 'goto': next(); return parseGotoStatement();\n }\n }\n\n if (Punctuator === token.type) {\n if (consume('::')) return parseLabelStatement();\n }\n if (trackLocations) locations.pop();\n if (consume(';')) return;\n\n return parseAssignmentOrCallStatement();\n }\n\n function parseLabelStatement() {\n var name = token.value\n , label = parseIdentifier();\n\n if (options.scope) {\n scopeIdentifierName('::' + name + '::');\n attachScope(label, true);\n }\n\n expect('::');\n return finishNode(ast.labelStatement(label));\n }\n\n function parseBreakStatement() {\n return finishNode(ast.breakStatement());\n }\n\n function parseGotoStatement() {\n var name = token.value\n , label = parseIdentifier();\n\n if (options.scope) label.isLabel = scopeHasName('::' + name + '::');\n return finishNode(ast.gotoStatement(label));\n }\n\n function parseDoStatement() {\n var body = parseBlock();\n expect('end');\n return finishNode(ast.doStatement(body));\n }\n\n function parseWhileStatement() {\n var condition = parseExpectedExpression();\n expect('do');\n var body = parseBlock();\n expect('end');\n return finishNode(ast.whileStatement(condition, body));\n }\n\n function parseRepeatStatement() {\n var body = parseBlock();\n expect('until');\n var condition = parseExpectedExpression();\n return finishNode(ast.repeatStatement(condition, body));\n }\n\n function parseReturnStatement() {\n var expressions = [];\n\n if ('end' !== token.value) {\n var expression = parseExpression();\n if (null != expression) expressions.push(expression);\n while (consume(',')) {\n expression = parseExpectedExpression();\n expressions.push(expression);\n }\n consume(';'); // grammar tells us ; is optional here.\n }\n return finishNode(ast.returnStatement(expressions));\n }\n\n function parseIfStatement() {\n var clauses = []\n , condition\n , body\n , marker;\n if (trackLocations) {\n marker = locations[locations.length - 1];\n locations.push(marker);\n }\n condition = parseExpectedExpression();\n expect('then');\n body = parseBlock();\n clauses.push(finishNode(ast.ifClause(condition, body)));\n\n if (trackLocations) marker = createLocationMarker();\n while (consume('elseif')) {\n pushLocation(marker);\n condition = parseExpectedExpression();\n expect('then');\n body = parseBlock();\n clauses.push(finishNode(ast.elseifClause(condition, body)));\n if (trackLocations) marker = createLocationMarker();\n }\n\n if (consume('else')) {\n if (trackLocations) {\n marker = new Marker(previousToken);\n locations.push(marker);\n }\n body = parseBlock();\n clauses.push(finishNode(ast.elseClause(body)));\n }\n\n expect('end');\n return finishNode(ast.ifStatement(clauses));\n }\n\n function parseForStatement() {\n var variable = parseIdentifier()\n , body;\n if (options.scope) scopeIdentifier(variable);\n if (consume('=')) {\n var start = parseExpectedExpression();\n expect(',');\n var end = parseExpectedExpression();\n var step = consume(',') ? parseExpectedExpression() : null;\n\n expect('do');\n body = parseBlock();\n expect('end');\n\n return finishNode(ast.forNumericStatement(variable, start, end, step, body));\n }\n else {\n var variables = [variable];\n while (consume(',')) {\n variable = parseIdentifier();\n if (options.scope) scopeIdentifier(variable);\n variables.push(variable);\n }\n expect('in');\n var iterators = [];\n do {\n var expression = parseExpectedExpression();\n iterators.push(expression);\n } while (consume(','));\n\n expect('do');\n body = parseBlock();\n expect('end');\n\n return finishNode(ast.forGenericStatement(variables, iterators, body));\n }\n }\n\n function parseLocalStatement() {\n var name;\n\n if (Identifier === token.type) {\n var variables = []\n , init = [];\n\n do {\n name = parseIdentifier();\n\n variables.push(name);\n } while (consume(','));\n\n if (consume('=')) {\n do {\n var expression = parseExpectedExpression();\n init.push(expression);\n } while (consume(','));\n }\n if (options.scope) {\n for (var i = 0, l = variables.length; i < l; i++) {\n scopeIdentifier(variables[i]);\n }\n }\n\n return finishNode(ast.localStatement(variables, init));\n }\n if (consume('function')) {\n name = parseIdentifier();\n if (options.scope) scopeIdentifier(name);\n return parseFunctionDeclaration(name, true);\n } else {\n raiseUnexpectedToken('', token);\n }\n }\n\n function parseAssignmentOrCallStatement() {\n var previous = token\n , expression, marker;\n\n if (trackLocations) marker = createLocationMarker();\n expression = parsePrefixExpression();\n\n if (null == expression) return unexpected(token);\n if (',='.indexOf(token.value) >= 0) {\n var variables = [expression]\n , init = []\n , exp;\n\n while (consume(',')) {\n exp = parsePrefixExpression();\n if (null == exp) raiseUnexpectedToken('', token);\n variables.push(exp);\n }\n expect('=');\n do {\n exp = parseExpectedExpression();\n init.push(exp);\n } while (consume(','));\n\n pushLocation(marker);\n return finishNode(ast.assignmentStatement(variables, init));\n }\n if (isCallExpression(expression)) {\n pushLocation(marker);\n return finishNode(ast.callStatement(expression));\n }\n return unexpected(previous);\n }\n\n function parseIdentifier() {\n markLocation();\n var identifier = token.value;\n if (Identifier !== token.type) raiseUnexpectedToken('', token);\n next();\n return finishNode(ast.identifier(identifier));\n }\n\n function parseFunctionDeclaration(name, isLocal) {\n var parameters = [];\n expect('(');\n if (!consume(')')) {\n while (true) {\n if (Identifier === token.type) {\n var parameter = parseIdentifier();\n if (options.scope) scopeIdentifier(parameter);\n\n parameters.push(parameter);\n\n if (consume(',')) continue;\n else if (consume(')')) break;\n }\n else if (VarargLiteral === token.type) {\n parameters.push(parsePrimaryExpression());\n expect(')');\n break;\n } else {\n raiseUnexpectedToken(' or \\'...\\'', token);\n }\n }\n }\n\n var body = parseBlock();\n expect('end');\n\n isLocal = isLocal || false;\n return finishNode(ast.functionStatement(name, parameters, isLocal, body));\n }\n\n function parseFunctionName() {\n var base, name, marker;\n\n if (trackLocations) marker = createLocationMarker();\n base = parseIdentifier();\n\n if (options.scope) attachScope(base, false);\n\n while (consume('.')) {\n pushLocation(marker);\n name = parseIdentifier();\n if (options.scope) attachScope(name, false);\n base = finishNode(ast.memberExpression(base, '.', name));\n }\n\n if (consume(':')) {\n pushLocation(marker);\n name = parseIdentifier();\n if (options.scope) attachScope(name, false);\n base = finishNode(ast.memberExpression(base, ':', name));\n }\n\n return base;\n }\n\n function parseTableConstructor() {\n var fields = []\n , key, value;\n\n while (true) {\n markLocation();\n if (Punctuator === token.type && consume('[')) {\n key = parseExpectedExpression();\n expect(']');\n expect('=');\n value = parseExpectedExpression();\n fields.push(finishNode(ast.tableKey(key, value)));\n } else if (Identifier === token.type) {\n key = parseExpectedExpression();\n if (consume('=')) {\n value = parseExpectedExpression();\n fields.push(finishNode(ast.tableKeyString(key, value)));\n } else {\n fields.push(finishNode(ast.tableValue(key)));\n }\n } else {\n if (null == (value = parseExpression())) {\n locations.pop();\n break;\n }\n fields.push(finishNode(ast.tableValue(value)));\n }\n if (',;'.indexOf(token.value) >= 0) {\n next();\n continue;\n }\n if ('}' === token.value) break;\n }\n expect('}');\n return finishNode(ast.tableConstructorExpression(fields));\n }\n\n function parseExpression() {\n var expression = parseSubExpression(0);\n return expression;\n }\n\n function parseExpectedExpression() {\n var expression = parseExpression();\n if (null == expression) raiseUnexpectedToken('', token);\n else return expression;\n }\n\n function binaryPrecedence(operator) {\n var charCode = operator.charCodeAt(0)\n , length = operator.length;\n\n if (1 === length) {\n switch (charCode) {\n case 94: return 10; // ^\n case 42: case 47: case 37: return 7; // * / %\n case 43: case 45: return 6; // + -\n case 60: case 62: return 3; // < >\n case 38: case 124: return 7; // & |\n }\n } else if (2 === length) {\n switch (charCode) {\n case 46: return 5; // ..\n case 60: case 62: case 61: case 126: return 3; // <= >= == ~=\n case 111: return 1; // or\n }\n } else if (97 === charCode && 'and' === operator) return 2;\n return 0;\n }\n\n function parseSubExpression(minPrecedence) {\n var operator = token.value\n , expression, marker;\n\n if (trackLocations) marker = createLocationMarker();\n if (isUnary(token)) {\n markLocation();\n next();\n var argument = parseSubExpression(8);\n if (argument == null) raiseUnexpectedToken('', token);\n expression = finishNode(ast.unaryExpression(operator, argument));\n }\n if (null == expression) {\n expression = parsePrimaryExpression();\n if (null == expression) {\n expression = parsePrefixExpression();\n }\n }\n if (null == expression) return null;\n\n var precedence;\n while (true) {\n operator = token.value;\n\n precedence = (Punctuator === token.type || Keyword === token.type) ?\n binaryPrecedence(operator) : 0;\n\n if (precedence === 0 || precedence <= minPrecedence) break;\n if ('^' === operator || '..' === operator) precedence--;\n next();\n var right = parseSubExpression(precedence);\n if (null == right) raiseUnexpectedToken('', token);\n if (trackLocations) locations.push(marker);\n expression = finishNode(ast.binaryExpression(operator, expression, right));\n\n }\n return expression;\n }\n\n function parsePrefixExpression() {\n var base, name, marker\n , isLocal;\n\n if (trackLocations) marker = createLocationMarker();\n if (Identifier === token.type) {\n name = token.value;\n base = parseIdentifier();\n if (options.scope) attachScope(base, isLocal = scopeHasName(name));\n } else if (consume('(')) {\n base = parseExpectedExpression();\n expect(')');\n if (options.scope) isLocal = base.isLocal;\n } else {\n return null;\n }\n var expression, identifier;\n while (true) {\n if (Punctuator === token.type) {\n switch (token.value) {\n case '[':\n pushLocation(marker);\n next();\n expression = parseExpectedExpression();\n base = finishNode(ast.indexExpression(base, expression));\n expect(']');\n break;\n case '.':\n pushLocation(marker);\n next();\n identifier = parseIdentifier();\n if (options.scope) attachScope(identifier, isLocal);\n base = finishNode(ast.memberExpression(base, '.', identifier));\n break;\n case ':':\n pushLocation(marker);\n next();\n identifier = parseIdentifier();\n if (options.scope) attachScope(identifier, isLocal);\n base = finishNode(ast.memberExpression(base, ':', identifier));\n pushLocation(marker);\n base = parseCallExpression(base);\n break;\n case '(': case '{': // args\n pushLocation(marker);\n base = parseCallExpression(base);\n break;\n default:\n return base;\n }\n } else if (StringLiteral === token.type) {\n pushLocation(marker);\n base = parseCallExpression(base);\n } else {\n break;\n }\n }\n\n return base;\n }\n\n function parseCallExpression(base) {\n if (Punctuator === token.type) {\n switch (token.value) {\n case '(':\n next();\n var expressions = [];\n var expression = parseExpression();\n if (null != expression) expressions.push(expression);\n while (consume(',')) {\n expression = parseExpectedExpression();\n expressions.push(expression);\n }\n\n expect(')');\n return finishNode(ast.callExpression(base, expressions));\n\n case '{':\n markLocation();\n next();\n var table = parseTableConstructor();\n return finishNode(ast.tableCallExpression(base, table));\n }\n } else if (StringLiteral === token.type) {\n return finishNode(ast.stringCallExpression(base, parsePrimaryExpression()));\n }\n\n raiseUnexpectedToken('function arguments', token);\n }\n\n function parsePrimaryExpression() {\n var literals = StringLiteral | NumericLiteral | BooleanLiteral | NilLiteral | VarargLiteral\n , value = token.value\n , type = token.type\n , marker;\n\n if (trackLocations) marker = createLocationMarker();\n\n if (type & literals) {\n pushLocation(marker);\n var raw = input.slice(token.range[0], token.range[1]);\n next();\n return finishNode(ast.literal(type, value, raw));\n } else if (Keyword === type && 'function' === value) {\n pushLocation(marker);\n next();\n return parseFunctionDeclaration(null);\n } else if (consume('{')) {\n pushLocation(marker);\n return parseTableConstructor();\n }\n }\n\n exports.parse = parse;\n\n function parse(_input, _options) {\n if ('undefined' === typeof _options && 'object' === typeof _input) {\n _options = _input;\n _input = undefined;\n }\n if (!_options) _options = {};\n\n input = _input || '';\n options = extend(defaultOptions, _options);\n index = 0;\n line = 1;\n lineStart = 0;\n length = input.length;\n scopes = [[]];\n scopeDepth = 0;\n globals = [];\n locations = [];\n\n if (options.comments) comments = [];\n if (!options.wait) return end();\n return exports;\n }\n exports.write = write;\n\n function write(_input) {\n input += String(_input);\n length = input.length;\n return exports;\n }\n exports.end = end;\n\n function end(_input) {\n if ('undefined' !== typeof _input) write(_input);\n\n length = input.length;\n trackLocations = options.locations || options.ranges;\n lookahead = lex();\n\n var chunk = parseChunk();\n if (options.comments) chunk.comments = comments;\n if (options.scope) chunk.globals = globals;\n\n if (locations.length > 0)\n throw new Error('Location tracking failed. This is most likely a bug in luaparse');\n\n return chunk;\n }\n\n}));\n\n});\n\nace.define(\"ace/mode/lua_worker\",[], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar Mirror = require(\"../worker/mirror\").Mirror;\nvar luaparse = require(\"../mode/lua/luaparse\");\n\nvar Worker = exports.Worker = function(sender) {\n Mirror.call(this, sender);\n this.setTimeout(500);\n};\n\noop.inherits(Worker, Mirror);\n\n(function() {\n\n this.onUpdate = function() {\n var value = this.doc.getValue();\n var errors = [];\n try {\n luaparse.parse(value);\n } catch(e) {\n if (e instanceof SyntaxError) {\n errors.push({\n row: e.line - 1,\n column: e.column,\n text: e.message,\n type: \"error\"\n });\n }\n }\n this.sender.emit(\"annotate\", errors);\n };\n\n}).call(Worker.prototype);\n\n});\n\nace.define(\"ace/lib/es5-shim\",[], function(require, exports, module) {\n\nfunction Empty() {}\n\nif (!Function.prototype.bind) {\n Function.prototype.bind = function bind(that) { // .length is 1\n var target = this;\n if (typeof target != \"function\") {\n throw new TypeError(\"Function.prototype.bind called on incompatible \" + target);\n }\n var args = slice.call(arguments, 1); // for normal call\n var bound = function () {\n\n if (this instanceof bound) {\n\n var result = target.apply(\n this,\n args.concat(slice.call(arguments))\n );\n if (Object(result) === result) {\n return result;\n }\n return this;\n\n } else {\n return target.apply(\n that,\n args.concat(slice.call(arguments))\n );\n\n }\n\n };\n if(target.prototype) {\n Empty.prototype = target.prototype;\n bound.prototype = new Empty();\n Empty.prototype = null;\n }\n return bound;\n };\n}\nvar call = Function.prototype.call;\nvar prototypeOfArray = Array.prototype;\nvar prototypeOfObject = Object.prototype;\nvar slice = prototypeOfArray.slice;\nvar _toString = call.bind(prototypeOfObject.toString);\nvar owns = call.bind(prototypeOfObject.hasOwnProperty);\nvar defineGetter;\nvar defineSetter;\nvar lookupGetter;\nvar lookupSetter;\nvar supportsAccessors;\nif ((supportsAccessors = owns(prototypeOfObject, \"__defineGetter__\"))) {\n defineGetter = call.bind(prototypeOfObject.__defineGetter__);\n defineSetter = call.bind(prototypeOfObject.__defineSetter__);\n lookupGetter = call.bind(prototypeOfObject.__lookupGetter__);\n lookupSetter = call.bind(prototypeOfObject.__lookupSetter__);\n}\nif ([1,2].splice(0).length != 2) {\n if(function() { // test IE < 9 to splice bug - see issue #138\n function makeArray(l) {\n var a = new Array(l+2);\n a[0] = a[1] = 0;\n return a;\n }\n var array = [], lengthBefore;\n \n array.splice.apply(array, makeArray(20));\n array.splice.apply(array, makeArray(26));\n\n lengthBefore = array.length; //46\n array.splice(5, 0, \"XXX\"); // add one element\n\n lengthBefore + 1 == array.length\n\n if (lengthBefore + 1 == array.length) {\n return true;// has right splice implementation without bugs\n }\n }()) {//IE 6/7\n var array_splice = Array.prototype.splice;\n Array.prototype.splice = function(start, deleteCount) {\n if (!arguments.length) {\n return [];\n } else {\n return array_splice.apply(this, [\n start === void 0 ? 0 : start,\n deleteCount === void 0 ? (this.length - start) : deleteCount\n ].concat(slice.call(arguments, 2)))\n }\n };\n } else {//IE8\n Array.prototype.splice = function(pos, removeCount){\n var length = this.length;\n if (pos > 0) {\n if (pos > length)\n pos = length;\n } else if (pos == void 0) {\n pos = 0;\n } else if (pos < 0) {\n pos = Math.max(length + pos, 0);\n }\n\n if (!(pos+removeCount < length))\n removeCount = length - pos;\n\n var removed = this.slice(pos, pos+removeCount);\n var insert = slice.call(arguments, 2);\n var add = insert.length; \n if (pos === length) {\n if (add) {\n this.push.apply(this, insert);\n }\n } else {\n var remove = Math.min(removeCount, length - pos);\n var tailOldPos = pos + remove;\n var tailNewPos = tailOldPos + add - remove;\n var tailCount = length - tailOldPos;\n var lengthAfterRemove = length - remove;\n\n if (tailNewPos < tailOldPos) { // case A\n for (var i = 0; i < tailCount; ++i) {\n this[tailNewPos+i] = this[tailOldPos+i];\n }\n } else if (tailNewPos > tailOldPos) { // case B\n for (i = tailCount; i--; ) {\n this[tailNewPos+i] = this[tailOldPos+i];\n }\n } // else, add == remove (nothing to do)\n\n if (add && pos === lengthAfterRemove) {\n this.length = lengthAfterRemove; // truncate array\n this.push.apply(this, insert);\n } else {\n this.length = lengthAfterRemove + add; // reserves space\n for (i = 0; i < add; ++i) {\n this[pos+i] = insert[i];\n }\n }\n }\n return removed;\n };\n }\n}\nif (!Array.isArray) {\n Array.isArray = function isArray(obj) {\n return _toString(obj) == \"[object Array]\";\n };\n}\nvar boxedString = Object(\"a\"),\n splitString = boxedString[0] != \"a\" || !(0 in boxedString);\n\nif (!Array.prototype.forEach) {\n Array.prototype.forEach = function forEach(fun /*, thisp*/) {\n var object = toObject(this),\n self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n object,\n thisp = arguments[1],\n i = -1,\n length = self.length >>> 0;\n if (_toString(fun) != \"[object Function]\") {\n throw new TypeError(); // TODO message\n }\n\n while (++i < length) {\n if (i in self) {\n fun.call(thisp, self[i], i, object);\n }\n }\n };\n}\nif (!Array.prototype.map) {\n Array.prototype.map = function map(fun /*, thisp*/) {\n var object = toObject(this),\n self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n object,\n length = self.length >>> 0,\n result = Array(length),\n thisp = arguments[1];\n if (_toString(fun) != \"[object Function]\") {\n throw new TypeError(fun + \" is not a function\");\n }\n\n for (var i = 0; i < length; i++) {\n if (i in self)\n result[i] = fun.call(thisp, self[i], i, object);\n }\n return result;\n };\n}\nif (!Array.prototype.filter) {\n Array.prototype.filter = function filter(fun /*, thisp */) {\n var object = toObject(this),\n self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n object,\n length = self.length >>> 0,\n result = [],\n value,\n thisp = arguments[1];\n if (_toString(fun) != \"[object Function]\") {\n throw new TypeError(fun + \" is not a function\");\n }\n\n for (var i = 0; i < length; i++) {\n if (i in self) {\n value = self[i];\n if (fun.call(thisp, value, i, object)) {\n result.push(value);\n }\n }\n }\n return result;\n };\n}\nif (!Array.prototype.every) {\n Array.prototype.every = function every(fun /*, thisp */) {\n var object = toObject(this),\n self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n object,\n length = self.length >>> 0,\n thisp = arguments[1];\n if (_toString(fun) != \"[object Function]\") {\n throw new TypeError(fun + \" is not a function\");\n }\n\n for (var i = 0; i < length; i++) {\n if (i in self && !fun.call(thisp, self[i], i, object)) {\n return false;\n }\n }\n return true;\n };\n}\nif (!Array.prototype.some) {\n Array.prototype.some = function some(fun /*, thisp */) {\n var object = toObject(this),\n self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n object,\n length = self.length >>> 0,\n thisp = arguments[1];\n if (_toString(fun) != \"[object Function]\") {\n throw new TypeError(fun + \" is not a function\");\n }\n\n for (var i = 0; i < length; i++) {\n if (i in self && fun.call(thisp, self[i], i, object)) {\n return true;\n }\n }\n return false;\n };\n}\nif (!Array.prototype.reduce) {\n Array.prototype.reduce = function reduce(fun /*, initial*/) {\n var object = toObject(this),\n self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n object,\n length = self.length >>> 0;\n if (_toString(fun) != \"[object Function]\") {\n throw new TypeError(fun + \" is not a function\");\n }\n if (!length && arguments.length == 1) {\n throw new TypeError(\"reduce of empty array with no initial value\");\n }\n\n var i = 0;\n var result;\n if (arguments.length >= 2) {\n result = arguments[1];\n } else {\n do {\n if (i in self) {\n result = self[i++];\n break;\n }\n if (++i >= length) {\n throw new TypeError(\"reduce of empty array with no initial value\");\n }\n } while (true);\n }\n\n for (; i < length; i++) {\n if (i in self) {\n result = fun.call(void 0, result, self[i], i, object);\n }\n }\n\n return result;\n };\n}\nif (!Array.prototype.reduceRight) {\n Array.prototype.reduceRight = function reduceRight(fun /*, initial*/) {\n var object = toObject(this),\n self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n object,\n length = self.length >>> 0;\n if (_toString(fun) != \"[object Function]\") {\n throw new TypeError(fun + \" is not a function\");\n }\n if (!length && arguments.length == 1) {\n throw new TypeError(\"reduceRight of empty array with no initial value\");\n }\n\n var result, i = length - 1;\n if (arguments.length >= 2) {\n result = arguments[1];\n } else {\n do {\n if (i in self) {\n result = self[i--];\n break;\n }\n if (--i < 0) {\n throw new TypeError(\"reduceRight of empty array with no initial value\");\n }\n } while (true);\n }\n\n do {\n if (i in this) {\n result = fun.call(void 0, result, self[i], i, object);\n }\n } while (i--);\n\n return result;\n };\n}\nif (!Array.prototype.indexOf || ([0, 1].indexOf(1, 2) != -1)) {\n Array.prototype.indexOf = function indexOf(sought /*, fromIndex */ ) {\n var self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n toObject(this),\n length = self.length >>> 0;\n\n if (!length) {\n return -1;\n }\n\n var i = 0;\n if (arguments.length > 1) {\n i = toInteger(arguments[1]);\n }\n i = i >= 0 ? i : Math.max(0, length + i);\n for (; i < length; i++) {\n if (i in self && self[i] === sought) {\n return i;\n }\n }\n return -1;\n };\n}\nif (!Array.prototype.lastIndexOf || ([0, 1].lastIndexOf(0, -3) != -1)) {\n Array.prototype.lastIndexOf = function lastIndexOf(sought /*, fromIndex */) {\n var self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n toObject(this),\n length = self.length >>> 0;\n\n if (!length) {\n return -1;\n }\n var i = length - 1;\n if (arguments.length > 1) {\n i = Math.min(i, toInteger(arguments[1]));\n }\n i = i >= 0 ? i : length - Math.abs(i);\n for (; i >= 0; i--) {\n if (i in self && sought === self[i]) {\n return i;\n }\n }\n return -1;\n };\n}\nif (!Object.getPrototypeOf) {\n Object.getPrototypeOf = function getPrototypeOf(object) {\n return object.__proto__ || (\n object.constructor ?\n object.constructor.prototype :\n prototypeOfObject\n );\n };\n}\nif (!Object.getOwnPropertyDescriptor) {\n var ERR_NON_OBJECT = \"Object.getOwnPropertyDescriptor called on a \" +\n \"non-object: \";\n Object.getOwnPropertyDescriptor = function getOwnPropertyDescriptor(object, property) {\n if ((typeof object != \"object\" && typeof object != \"function\") || object === null)\n throw new TypeError(ERR_NON_OBJECT + object);\n if (!owns(object, property))\n return;\n\n var descriptor, getter, setter;\n descriptor = { enumerable: true, configurable: true };\n if (supportsAccessors) {\n var prototype = object.__proto__;\n object.__proto__ = prototypeOfObject;\n\n var getter = lookupGetter(object, property);\n var setter = lookupSetter(object, property);\n object.__proto__ = prototype;\n\n if (getter || setter) {\n if (getter) descriptor.get = getter;\n if (setter) descriptor.set = setter;\n return descriptor;\n }\n }\n descriptor.value = object[property];\n return descriptor;\n };\n}\nif (!Object.getOwnPropertyNames) {\n Object.getOwnPropertyNames = function getOwnPropertyNames(object) {\n return Object.keys(object);\n };\n}\nif (!Object.create) {\n var createEmpty;\n if (Object.prototype.__proto__ === null) {\n createEmpty = function () {\n return { \"__proto__\": null };\n };\n } else {\n createEmpty = function () {\n var empty = {};\n for (var i in empty)\n empty[i] = null;\n empty.constructor =\n empty.hasOwnProperty =\n empty.propertyIsEnumerable =\n empty.isPrototypeOf =\n empty.toLocaleString =\n empty.toString =\n empty.valueOf =\n empty.__proto__ = null;\n return empty;\n }\n }\n\n Object.create = function create(prototype, properties) {\n var object;\n if (prototype === null) {\n object = createEmpty();\n } else {\n if (typeof prototype != \"object\")\n throw new TypeError(\"typeof prototype[\"+(typeof prototype)+\"] != 'object'\");\n var Type = function () {};\n Type.prototype = prototype;\n object = new Type();\n object.__proto__ = prototype;\n }\n if (properties !== void 0)\n Object.defineProperties(object, properties);\n return object;\n };\n}\n\nfunction doesDefinePropertyWork(object) {\n try {\n Object.defineProperty(object, \"sentinel\", {});\n return \"sentinel\" in object;\n } catch (exception) {\n }\n}\nif (Object.defineProperty) {\n var definePropertyWorksOnObject = doesDefinePropertyWork({});\n var definePropertyWorksOnDom = typeof document == \"undefined\" ||\n doesDefinePropertyWork(document.createElement(\"div\"));\n if (!definePropertyWorksOnObject || !definePropertyWorksOnDom) {\n var definePropertyFallback = Object.defineProperty;\n }\n}\n\nif (!Object.defineProperty || definePropertyFallback) {\n var ERR_NON_OBJECT_DESCRIPTOR = \"Property description must be an object: \";\n var ERR_NON_OBJECT_TARGET = \"Object.defineProperty called on non-object: \"\n var ERR_ACCESSORS_NOT_SUPPORTED = \"getters & setters can not be defined \" +\n \"on this javascript engine\";\n\n Object.defineProperty = function defineProperty(object, property, descriptor) {\n if ((typeof object != \"object\" && typeof object != \"function\") || object === null)\n throw new TypeError(ERR_NON_OBJECT_TARGET + object);\n if ((typeof descriptor != \"object\" && typeof descriptor != \"function\") || descriptor === null)\n throw new TypeError(ERR_NON_OBJECT_DESCRIPTOR + descriptor);\n if (definePropertyFallback) {\n try {\n return definePropertyFallback.call(Object, object, property, descriptor);\n } catch (exception) {\n }\n }\n if (owns(descriptor, \"value\")) {\n\n if (supportsAccessors && (lookupGetter(object, property) ||\n lookupSetter(object, property)))\n {\n var prototype = object.__proto__;\n object.__proto__ = prototypeOfObject;\n delete object[property];\n object[property] = descriptor.value;\n object.__proto__ = prototype;\n } else {\n object[property] = descriptor.value;\n }\n } else {\n if (!supportsAccessors)\n throw new TypeError(ERR_ACCESSORS_NOT_SUPPORTED);\n if (owns(descriptor, \"get\"))\n defineGetter(object, property, descriptor.get);\n if (owns(descriptor, \"set\"))\n defineSetter(object, property, descriptor.set);\n }\n\n return object;\n };\n}\nif (!Object.defineProperties) {\n Object.defineProperties = function defineProperties(object, properties) {\n for (var property in properties) {\n if (owns(properties, property))\n Object.defineProperty(object, property, properties[property]);\n }\n return object;\n };\n}\nif (!Object.seal) {\n Object.seal = function seal(object) {\n return object;\n };\n}\nif (!Object.freeze) {\n Object.freeze = function freeze(object) {\n return object;\n };\n}\ntry {\n Object.freeze(function () {});\n} catch (exception) {\n Object.freeze = (function freeze(freezeObject) {\n return function freeze(object) {\n if (typeof object == \"function\") {\n return object;\n } else {\n return freezeObject(object);\n }\n };\n })(Object.freeze);\n}\nif (!Object.preventExtensions) {\n Object.preventExtensions = function preventExtensions(object) {\n return object;\n };\n}\nif (!Object.isSealed) {\n Object.isSealed = function isSealed(object) {\n return false;\n };\n}\nif (!Object.isFrozen) {\n Object.isFrozen = function isFrozen(object) {\n return false;\n };\n}\nif (!Object.isExtensible) {\n Object.isExtensible = function isExtensible(object) {\n if (Object(object) === object) {\n throw new TypeError(); // TODO message\n }\n var name = '';\n while (owns(object, name)) {\n name += '?';\n }\n object[name] = true;\n var returnValue = owns(object, name);\n delete object[name];\n return returnValue;\n };\n}\nif (!Object.keys) {\n var hasDontEnumBug = true,\n dontEnums = [\n \"toString\",\n \"toLocaleString\",\n \"valueOf\",\n \"hasOwnProperty\",\n \"isPrototypeOf\",\n \"propertyIsEnumerable\",\n \"constructor\"\n ],\n dontEnumsLength = dontEnums.length;\n\n for (var key in {\"toString\": null}) {\n hasDontEnumBug = false;\n }\n\n Object.keys = function keys(object) {\n\n if (\n (typeof object != \"object\" && typeof object != \"function\") ||\n object === null\n ) {\n throw new TypeError(\"Object.keys called on a non-object\");\n }\n\n var keys = [];\n for (var name in object) {\n if (owns(object, name)) {\n keys.push(name);\n }\n }\n\n if (hasDontEnumBug) {\n for (var i = 0, ii = dontEnumsLength; i < ii; i++) {\n var dontEnum = dontEnums[i];\n if (owns(object, dontEnum)) {\n keys.push(dontEnum);\n }\n }\n }\n return keys;\n };\n\n}\nif (!Date.now) {\n Date.now = function now() {\n return new Date().getTime();\n };\n}\nvar ws = \"\\x09\\x0A\\x0B\\x0C\\x0D\\x20\\xA0\\u1680\\u180E\\u2000\\u2001\\u2002\\u2003\" +\n \"\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200A\\u202F\\u205F\\u3000\\u2028\" +\n \"\\u2029\\uFEFF\";\nif (!String.prototype.trim || ws.trim()) {\n ws = \"[\" + ws + \"]\";\n var trimBeginRegexp = new RegExp(\"^\" + ws + ws + \"*\"),\n trimEndRegexp = new RegExp(ws + ws + \"*$\");\n String.prototype.trim = function trim() {\n return String(this).replace(trimBeginRegexp, \"\").replace(trimEndRegexp, \"\");\n };\n}\n\nfunction toInteger(n) {\n n = +n;\n if (n !== n) { // isNaN\n n = 0;\n } else if (n !== 0 && n !== (1/0) && n !== -(1/0)) {\n n = (n > 0 || -1) * Math.floor(Math.abs(n));\n }\n return n;\n}\n\nfunction isPrimitive(input) {\n var type = typeof input;\n return (\n input === null ||\n type === \"undefined\" ||\n type === \"boolean\" ||\n type === \"number\" ||\n type === \"string\"\n );\n}\n\nfunction toPrimitive(input) {\n var val, valueOf, toString;\n if (isPrimitive(input)) {\n return input;\n }\n valueOf = input.valueOf;\n if (typeof valueOf === \"function\") {\n val = valueOf.call(input);\n if (isPrimitive(val)) {\n return val;\n }\n }\n toString = input.toString;\n if (typeof toString === \"function\") {\n val = toString.call(input);\n if (isPrimitive(val)) {\n return val;\n }\n }\n throw new TypeError();\n}\nvar toObject = function (o) {\n if (o == null) { // this matches both null and undefined\n throw new TypeError(\"can't convert \"+o+\" to object\");\n }\n return Object(o);\n};\n\n});\n"), } file36 := &embedded.EmbeddedFile{ Filename: "4705b919138245a5b454d25f8e418435.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/rst\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText = \"# rst\\n\\\n\\n\\\nsnippet :\\n\\\n\t:${1:field name}: ${2:field body}\\n\\\nsnippet *\\n\\\n\t*${1:Emphasis}*\\n\\\nsnippet **\\n\\\n\t**${1:Strong emphasis}**\\n\\\nsnippet _\\n\\\n\t\\\\`${1:hyperlink-name}\\\\`_\\n\\\n\t.. _\\\\`$1\\\\`: ${2:link-block}\\n\\\nsnippet =\\n\\\n\t${1:Title}\\n\\\n\t=====${2:=}\\n\\\n\t${3}\\n\\\nsnippet -\\n\\\n\t${1:Title}\\n\\\n\t-----${2:-}\\n\\\n\t${3}\\n\\\nsnippet cont:\\n\\\n\t.. contents::\\n\\\n\t\\n\\\n\";\nexports.scope = \"rst\";\n\n}); (function() {\n ace.require([\"ace/snippets/rst\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file37 := &embedded.EmbeddedFile{ Filename: "4750f0ff62cbd59f35aac31b996194e6.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/markdown\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText = \"# Markdown\\n\\\n\\n\\\n# Includes octopress (http://octopress.org/) snippets\\n\\\n\\n\\\nsnippet [\\n\\\n\t[${1:text}](http://${2:address} \\\"${3:title}\\\")\\n\\\nsnippet [*\\n\\\n\t[${1:link}](${2:`@*`} \\\"${3:title}\\\")${4}\\n\\\n\\n\\\nsnippet [:\\n\\\n\t[${1:id}]: http://${2:url} \\\"${3:title}\\\"\\n\\\nsnippet [:*\\n\\\n\t[${1:id}]: ${2:`@*`} \\\"${3:title}\\\"\\n\\\n\\n\\\nsnippet ![\\n\\\n\t![${1:alttext}](${2:/images/image.jpg} \\\"${3:title}\\\")\\n\\\nsnippet ![*\\n\\\n\t![${1:alt}](${2:`@*`} \\\"${3:title}\\\")${4}\\n\\\n\\n\\\nsnippet ![:\\n\\\n\t![${1:id}]: ${2:url} \\\"${3:title}\\\"\\n\\\nsnippet ![:*\\n\\\n\t![${1:id}]: ${2:`@*`} \\\"${3:title}\\\"\\n\\\n\\n\\\nsnippet ===\\n\\\nregex /^/=+/=*//\\n\\\n\t${PREV_LINE/./=/g}\\n\\\n\t\\n\\\n\t${0}\\n\\\nsnippet ---\\n\\\nregex /^/-+/-*//\\n\\\n\t${PREV_LINE/./-/g}\\n\\\n\t\\n\\\n\t${0}\\n\\\nsnippet blockquote\\n\\\n\t{% blockquote %}\\n\\\n\t${1:quote}\\n\\\n\t{% endblockquote %}\\n\\\n\\n\\\nsnippet blockquote-author\\n\\\n\t{% blockquote ${1:author}, ${2:title} %}\\n\\\n\t${3:quote}\\n\\\n\t{% endblockquote %}\\n\\\n\\n\\\nsnippet blockquote-link\\n\\\n\t{% blockquote ${1:author} ${2:URL} ${3:link_text} %}\\n\\\n\t${4:quote}\\n\\\n\t{% endblockquote %}\\n\\\n\\n\\\nsnippet bt-codeblock-short\\n\\\n\t```\\n\\\n\t${1:code_snippet}\\n\\\n\t```\\n\\\n\\n\\\nsnippet bt-codeblock-full\\n\\\n\t``` ${1:language} ${2:title} ${3:URL} ${4:link_text}\\n\\\n\t${5:code_snippet}\\n\\\n\t```\\n\\\n\\n\\\nsnippet codeblock-short\\n\\\n\t{% codeblock %}\\n\\\n\t${1:code_snippet}\\n\\\n\t{% endcodeblock %}\\n\\\n\\n\\\nsnippet codeblock-full\\n\\\n\t{% codeblock ${1:title} lang:${2:language} ${3:URL} ${4:link_text} %}\\n\\\n\t${5:code_snippet}\\n\\\n\t{% endcodeblock %}\\n\\\n\\n\\\nsnippet gist-full\\n\\\n\t{% gist ${1:gist_id} ${2:filename} %}\\n\\\n\\n\\\nsnippet gist-short\\n\\\n\t{% gist ${1:gist_id} %}\\n\\\n\\n\\\nsnippet img\\n\\\n\t{% img ${1:class} ${2:URL} ${3:width} ${4:height} ${5:title_text} ${6:alt_text} %}\\n\\\n\\n\\\nsnippet youtube\\n\\\n\t{% youtube ${1:video_id} %}\\n\\\n\\n\\\n# The quote should appear only once in the text. It is inherently part of it.\\n\\\n# See http://octopress.org/docs/plugins/pullquote/ for more info.\\n\\\n\\n\\\nsnippet pullquote\\n\\\n\t{% pullquote %}\\n\\\n\t${1:text} {\\\" ${2:quote} \\\"} ${3:text}\\n\\\n\t{% endpullquote %}\\n\\\n\";\nexports.scope = \"markdown\";\n\n}); (function() {\n ace.require([\"ace/snippets/markdown\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file38 := &embedded.EmbeddedFile{ Filename: "47ecd829f86e48857a05b2189ee9c097.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/gcode_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n \"use strict\";\n\n var oop = require(\"../lib/oop\");\n var TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\n var GcodeHighlightRules = function() {\n\n var keywords = (\n \"IF|DO|WHILE|ENDWHILE|CALL|ENDIF|SUB|ENDSUB|GOTO|REPEAT|ENDREPEAT|CALL\"\n );\n\n var builtinConstants = (\n \"PI\"\n );\n\n var builtinFunctions = (\n \"ATAN|ABS|ACOS|ASIN|SIN|COS|EXP|FIX|FUP|ROUND|LN|TAN\"\n );\n var keywordMapper = this.createKeywordMapper({\n \"support.function\": builtinFunctions,\n \"keyword\": keywords,\n \"constant.language\": builtinConstants\n }, \"identifier\", true);\n\n this.$rules = {\n \"start\" : [ {\n token : \"comment\",\n regex : \"\\\\(.*\\\\)\"\n }, {\n token : \"comment\", // block number\n regex : \"([N])([0-9]+)\"\n }, {\n token : \"string\", // \" string\n regex : \"([G])([0-9]+\\\\.?[0-9]?)\"\n }, {\n token : \"string\", // ' string\n regex : \"([M])([0-9]+\\\\.?[0-9]?)\"\n }, {\n token : \"constant.numeric\", // float\n regex : \"([-+]?([0-9]*\\\\.?[0-9]+\\\\.?))|(\\\\b0[xX][a-fA-F0-9]+|(\\\\b\\\\d+(\\\\.\\\\d*)?|\\\\.\\\\d+)([eE][-+]?\\\\d+)?)\"\n }, {\n token : keywordMapper,\n regex : \"[A-Z]\"\n }, {\n token : \"keyword.operator\",\n regex : \"EQ|LT|GT|NE|GE|LE|OR|XOR\"\n }, {\n token : \"paren.lparen\",\n regex : \"[\\\\[]\"\n }, {\n token : \"paren.rparen\",\n regex : \"[\\\\]]\"\n }, {\n token : \"text\",\n regex : \"\\\\s+\"\n } ]\n };\n };\n\n oop.inherits(GcodeHighlightRules, TextHighlightRules);\n\n exports.GcodeHighlightRules = GcodeHighlightRules;\n});\n\nace.define(\"ace/mode/gcode\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/gcode_highlight_rules\",\"ace/range\"], function(require, exports, module) {\n \"use strict\";\n\n var oop = require(\"../lib/oop\");\n var TextMode = require(\"./text\").Mode;\n var GcodeHighlightRules = require(\"./gcode_highlight_rules\").GcodeHighlightRules;\n var Range = require(\"../range\").Range;\n\n var Mode = function() {\n this.HighlightRules = GcodeHighlightRules;\n this.$behaviour = this.$defaultBehaviour;\n };\n oop.inherits(Mode, TextMode);\n\n (function() {\n this.$id = \"ace/mode/gcode\";\n }).call(Mode.prototype);\n\n exports.Mode = Mode;\n\n}); (function() {\n ace.require([\"ace/mode/gcode\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file39 := &embedded.EmbeddedFile{ Filename: "48f2efaa42dd02a72894359ca3528060.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/sh_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar reservedKeywords = exports.reservedKeywords = (\n '!|{|}|case|do|done|elif|else|'+\n 'esac|fi|for|if|in|then|until|while|'+\n '&|;|export|local|read|typeset|unset|'+\n 'elif|select|set|function|declare|readonly'\n );\n\nvar languageConstructs = exports.languageConstructs = (\n '[|]|alias|bg|bind|break|builtin|'+\n 'cd|command|compgen|complete|continue|'+\n 'dirs|disown|echo|enable|eval|exec|'+\n 'exit|fc|fg|getopts|hash|help|history|'+\n 'jobs|kill|let|logout|popd|printf|pushd|'+\n 'pwd|return|set|shift|shopt|source|'+\n 'suspend|test|times|trap|type|ulimit|'+\n 'umask|unalias|wait'\n);\n\nvar ShHighlightRules = function() {\n var keywordMapper = this.createKeywordMapper({\n \"keyword\": reservedKeywords,\n \"support.function.builtin\": languageConstructs,\n \"invalid.deprecated\": \"debugger\"\n }, \"identifier\");\n\n var integer = \"(?:(?:[1-9]\\\\d*)|(?:0))\";\n\n var fraction = \"(?:\\\\.\\\\d+)\";\n var intPart = \"(?:\\\\d+)\";\n var pointFloat = \"(?:(?:\" + intPart + \"?\" + fraction + \")|(?:\" + intPart + \"\\\\.))\";\n var exponentFloat = \"(?:(?:\" + pointFloat + \"|\" + intPart + \")\" + \")\";\n var floatNumber = \"(?:\" + exponentFloat + \"|\" + pointFloat + \")\";\n var fileDescriptor = \"(?:&\" + intPart + \")\";\n\n var variableName = \"[a-zA-Z_][a-zA-Z0-9_]*\";\n var variable = \"(?:\" + variableName + \"(?==))\";\n\n var builtinVariable = \"(?:\\\\$(?:SHLVL|\\\\$|\\\\!|\\\\?))\";\n\n var func = \"(?:\" + variableName + \"\\\\s*\\\\(\\\\))\";\n\n this.$rules = {\n \"start\" : [{\n token : \"constant\",\n regex : /\\\\./\n }, {\n token : [\"text\", \"comment\"],\n regex : /(^|\\s)(#.*)$/\n }, {\n token : \"string.start\",\n regex : '\"',\n push : [{\n token : \"constant.language.escape\",\n regex : /\\\\(?:[$`\"\\\\]|$)/\n }, {\n include : \"variables\"\n }, {\n token : \"keyword.operator\",\n regex : /`/ // TODO highlight `\n }, {\n token : \"string.end\",\n regex : '\"',\n next: \"pop\"\n }, {\n defaultToken: \"string\"\n }]\n }, {\n token : \"string\",\n regex : \"\\\\$'\",\n push : [{\n token : \"constant.language.escape\",\n regex : /\\\\(?:[abeEfnrtv\\\\'\"]|x[a-fA-F\\d]{1,2}|u[a-fA-F\\d]{4}([a-fA-F\\d]{4})?|c.|\\d{1,3})/\n }, {\n token : \"string\",\n regex : \"'\",\n next: \"pop\"\n }, {\n defaultToken: \"string\"\n }]\n }, {\n regex : \"<<<\",\n token : \"keyword.operator\"\n }, {\n stateName: \"heredoc\",\n regex : \"(<<-?)(\\\\s*)(['\\\"`]?)([\\\\w\\\\-]+)(['\\\"`]?)\",\n onMatch : function(value, currentState, stack) {\n var next = value[2] == '-' ? \"indentedHeredoc\" : \"heredoc\";\n var tokens = value.split(this.splitRegex);\n stack.push(next, tokens[4]);\n return [\n {type:\"constant\", value: tokens[1]},\n {type:\"text\", value: tokens[2]},\n {type:\"string\", value: tokens[3]},\n {type:\"support.class\", value: tokens[4]},\n {type:\"string\", value: tokens[5]}\n ];\n },\n rules: {\n heredoc: [{\n onMatch: function(value, currentState, stack) {\n if (value === stack[1]) {\n stack.shift();\n stack.shift();\n this.next = stack[0] || \"start\";\n return \"support.class\";\n }\n this.next = \"\";\n return \"string\";\n },\n regex: \".*$\",\n next: \"start\"\n }],\n indentedHeredoc: [{\n token: \"string\",\n regex: \"^\\t+\"\n }, {\n onMatch: function(value, currentState, stack) {\n if (value === stack[1]) {\n stack.shift();\n stack.shift();\n this.next = stack[0] || \"start\";\n return \"support.class\";\n }\n this.next = \"\";\n return \"string\";\n },\n regex: \".*$\",\n next: \"start\"\n }]\n }\n }, {\n regex : \"$\",\n token : \"empty\",\n next : function(currentState, stack) {\n if (stack[0] === \"heredoc\" || stack[0] === \"indentedHeredoc\")\n return stack[0];\n return currentState;\n }\n }, {\n token : [\"keyword\", \"text\", \"text\", \"text\", \"variable\"],\n regex : /(declare|local|readonly)(\\s+)(?:(-[fixar]+)(\\s+))?([a-zA-Z_][a-zA-Z0-9_]*\\b)/\n }, {\n token : \"variable.language\",\n regex : builtinVariable\n }, {\n token : \"variable\",\n regex : variable\n }, {\n include : \"variables\"\n }, {\n token : \"support.function\",\n regex : func\n }, {\n token : \"support.function\",\n regex : fileDescriptor\n }, {\n token : \"string\", // ' string\n start : \"'\", end : \"'\"\n }, {\n token : \"constant.numeric\", // float\n regex : floatNumber\n }, {\n token : \"constant.numeric\", // integer\n regex : integer + \"\\\\b\"\n }, {\n token : keywordMapper,\n regex : \"[a-zA-Z_][a-zA-Z0-9_]*\\\\b\"\n }, {\n token : \"keyword.operator\",\n regex : \"\\\\+|\\\\-|\\\\*|\\\\*\\\\*|\\\\/|\\\\/\\\\/|~|<|>|<=|=>|=|!=|[%&|`]\"\n }, {\n token : \"punctuation.operator\",\n regex : \";\"\n }, {\n token : \"paren.lparen\",\n regex : \"[\\\\[\\\\(\\\\{]\"\n }, {\n token : \"paren.rparen\",\n regex : \"[\\\\]]\"\n }, {\n token : \"paren.rparen\",\n regex : \"[\\\\)\\\\}]\",\n next : \"pop\"\n }],\n variables: [{\n token : \"variable\",\n regex : /(\\$)(\\w+)/\n }, {\n token : [\"variable\", \"paren.lparen\"],\n regex : /(\\$)(\\()/,\n push : \"start\"\n }, {\n token : [\"variable\", \"paren.lparen\", \"keyword.operator\", \"variable\", \"keyword.operator\"],\n regex : /(\\$)(\\{)([#!]?)(\\w+|[*@#?\\-$!0_])(:[?+\\-=]?|##?|%%?|,,?\\/|\\^\\^?)?/,\n push : \"start\"\n }, {\n token : \"variable\",\n regex : /\\$[*@#?\\-$!0_]/\n }, {\n token : [\"variable\", \"paren.lparen\"],\n regex : /(\\$)(\\{)/,\n push : \"start\"\n }]\n };\n \n this.normalizeRules();\n};\n\noop.inherits(ShHighlightRules, TextHighlightRules);\n\nexports.ShHighlightRules = ShHighlightRules;\n});\n\nace.define(\"ace/mode/folding/cstyle\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/range\",\"ace/mode/folding/fold_mode\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Range = require(\"../../range\").Range;\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function(commentRegex) {\n if (commentRegex) {\n this.foldingStartMarker = new RegExp(\n this.foldingStartMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.start)\n );\n this.foldingStopMarker = new RegExp(\n this.foldingStopMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.end)\n );\n }\n};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n \n this.foldingStartMarker = /([\\{\\[\\(])[^\\}\\]\\)]*$|^\\s*(\\/\\*)/;\n this.foldingStopMarker = /^[^\\[\\{\\(]*([\\}\\]\\)])|^[\\s\\*]*(\\*\\/)/;\n this.singleLineBlockCommentRe= /^\\s*(\\/\\*).*\\*\\/\\s*$/;\n this.tripleStarBlockCommentRe = /^\\s*(\\/\\*\\*\\*).*\\*\\/\\s*$/;\n this.startRegionRe = /^\\s*(\\/\\*|\\/\\/)#?region\\b/;\n this._getFoldWidgetBase = this.getFoldWidget;\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n \n if (this.singleLineBlockCommentRe.test(line)) {\n if (!this.startRegionRe.test(line) && !this.tripleStarBlockCommentRe.test(line))\n return \"\";\n }\n \n var fw = this._getFoldWidgetBase(session, foldStyle, row);\n \n if (!fw && this.startRegionRe.test(line))\n return \"start\"; // lineCommentRegionStart\n \n return fw;\n };\n\n this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {\n var line = session.getLine(row);\n \n if (this.startRegionRe.test(line))\n return this.getCommentRegionBlock(session, line, row);\n \n var match = line.match(this.foldingStartMarker);\n if (match) {\n var i = match.index;\n\n if (match[1])\n return this.openingBracketBlock(session, match[1], row, i);\n \n var range = session.getCommentFoldRange(row, i + match[0].length, 1);\n \n if (range && !range.isMultiLine()) {\n if (forceMultiline) {\n range = this.getSectionRange(session, row);\n } else if (foldStyle != \"all\")\n range = null;\n }\n \n return range;\n }\n\n if (foldStyle === \"markbegin\")\n return;\n\n var match = line.match(this.foldingStopMarker);\n if (match) {\n var i = match.index + match[0].length;\n\n if (match[1])\n return this.closingBracketBlock(session, match[1], row, i);\n\n return session.getCommentFoldRange(row, i, -1);\n }\n };\n \n this.getSectionRange = function(session, row) {\n var line = session.getLine(row);\n var startIndent = line.search(/\\S/);\n var startRow = row;\n var startColumn = line.length;\n row = row + 1;\n var endRow = row;\n var maxRow = session.getLength();\n while (++row < maxRow) {\n line = session.getLine(row);\n var indent = line.search(/\\S/);\n if (indent === -1)\n continue;\n if (startIndent > indent)\n break;\n var subRange = this.getFoldWidgetRange(session, \"all\", row);\n \n if (subRange) {\n if (subRange.start.row <= startRow) {\n break;\n } else if (subRange.isMultiLine()) {\n row = subRange.end.row;\n } else if (startIndent == indent) {\n break;\n }\n }\n endRow = row;\n }\n \n return new Range(startRow, startColumn, endRow, session.getLine(endRow).length);\n };\n this.getCommentRegionBlock = function(session, line, row) {\n var startColumn = line.search(/\\s*$/);\n var maxRow = session.getLength();\n var startRow = row;\n \n var re = /^\\s*(?:\\/\\*|\\/\\/|--)#?(end)?region\\b/;\n var depth = 1;\n while (++row < maxRow) {\n line = session.getLine(row);\n var m = re.exec(line);\n if (!m) continue;\n if (m[1]) depth--;\n else depth++;\n\n if (!depth) break;\n }\n\n var endRow = row;\n if (endRow > startRow) {\n return new Range(startRow, startColumn, endRow, line.length);\n }\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/sh\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/sh_highlight_rules\",\"ace/range\",\"ace/mode/folding/cstyle\",\"ace/mode/behaviour/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar ShHighlightRules = require(\"./sh_highlight_rules\").ShHighlightRules;\nvar Range = require(\"../range\").Range;\nvar CStyleFoldMode = require(\"./folding/cstyle\").FoldMode;\nvar CstyleBehaviour = require(\"./behaviour/cstyle\").CstyleBehaviour;\n\nvar Mode = function() {\n this.HighlightRules = ShHighlightRules;\n this.foldingRules = new CStyleFoldMode();\n this.$behaviour = new CstyleBehaviour();\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n \n this.lineCommentStart = \"#\";\n\n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n\n var tokenizedLine = this.getTokenizer().getLineTokens(line, state);\n var tokens = tokenizedLine.tokens;\n\n if (tokens.length && tokens[tokens.length-1].type == \"comment\") {\n return indent;\n }\n\n if (state == \"start\") {\n var match = line.match(/^.*[\\{\\(\\[:]\\s*$/);\n if (match) {\n indent += tab;\n }\n }\n\n return indent;\n };\n\n var outdents = {\n \"pass\": 1,\n \"return\": 1,\n \"raise\": 1,\n \"break\": 1,\n \"continue\": 1\n };\n\n this.checkOutdent = function(state, line, input) {\n if (input !== \"\\r\\n\" && input !== \"\\r\" && input !== \"\\n\")\n return false;\n\n var tokens = this.getTokenizer().getLineTokens(line.trim(), state).tokens;\n\n if (!tokens)\n return false;\n do {\n var last = tokens.pop();\n } while (last && (last.type == \"comment\" || (last.type == \"text\" && last.value.match(/^\\s+$/))));\n\n if (!last)\n return false;\n\n return (last.type == \"keyword\" && outdents[last.value]);\n };\n\n this.autoOutdent = function(state, doc, row) {\n\n row += 1;\n var indent = this.$getIndent(doc.getLine(row));\n var tab = doc.getTabString();\n if (indent.slice(-tab.length) == tab)\n doc.remove(new Range(row, indent.length-tab.length, row, indent.length));\n };\n\n this.$id = \"ace/mode/sh\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n});\n\nace.define(\"ace/mode/dockerfile_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/sh_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar ShHighlightRules = require(\"./sh_highlight_rules\").ShHighlightRules;\n\nvar DockerfileHighlightRules = function() {\n ShHighlightRules.call(this);\n\n var startRules = this.$rules.start;\n for (var i = 0; i < startRules.length; i++) {\n if (startRules[i].token == \"variable.language\") {\n startRules.splice(i, 0, {\n token: \"constant.language\",\n regex: \"(?:^(?:FROM|MAINTAINER|RUN|CMD|EXPOSE|ENV|ADD|ENTRYPOINT|VOLUME|USER|WORKDIR|ONBUILD|COPY|LABEL)\\\\b)\",\n caseInsensitive: true\n });\n break;\n }\n }\n \n};\n\noop.inherits(DockerfileHighlightRules, ShHighlightRules);\n\nexports.DockerfileHighlightRules = DockerfileHighlightRules;\n});\n\nace.define(\"ace/mode/dockerfile\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/sh\",\"ace/mode/dockerfile_highlight_rules\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar ShMode = require(\"./sh\").Mode;\nvar DockerfileHighlightRules = require(\"./dockerfile_highlight_rules\").DockerfileHighlightRules;\nvar CStyleFoldMode = require(\"./folding/cstyle\").FoldMode;\n\nvar Mode = function() {\n ShMode.call(this);\n \n this.HighlightRules = DockerfileHighlightRules;\n this.foldingRules = new CStyleFoldMode();\n};\noop.inherits(Mode, ShMode);\n\n(function() {\n this.$id = \"ace/mode/dockerfile\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/dockerfile\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file3a := &embedded.EmbeddedFile{ Filename: "4a4234685007dd9236a440750c1d320e.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/jade\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText =undefined;\nexports.scope = \"jade\";\n\n}); (function() {\n ace.require([\"ace/snippets/jade\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file3b := &embedded.EmbeddedFile{ Filename: "4a5221411f26f95ac1712b172c9e65c5.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/latex\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText =undefined;\nexports.scope = \"latex\";\n\n}); (function() {\n ace.require([\"ace/snippets/latex\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file3c := &embedded.EmbeddedFile{ Filename: "4b730063831e789913041026d226797f.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/doc_comment_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar DocCommentHighlightRules = function() {\n this.$rules = {\n \"start\" : [ {\n token : \"comment.doc.tag\",\n regex : \"@[\\\\w\\\\d_]+\" // TODO: fix email addresses\n }, \n DocCommentHighlightRules.getTagRule(),\n {\n defaultToken : \"comment.doc\",\n caseInsensitive: true\n }]\n };\n};\n\noop.inherits(DocCommentHighlightRules, TextHighlightRules);\n\nDocCommentHighlightRules.getTagRule = function(start) {\n return {\n token : \"comment.doc.tag.storage.type\",\n regex : \"\\\\b(?:TODO|FIXME|XXX|HACK)\\\\b\"\n };\n};\n\nDocCommentHighlightRules.getStartRule = function(start) {\n return {\n token : \"comment.doc\", // doc comment\n regex : \"\\\\/\\\\*(?=\\\\*)\",\n next : start\n };\n};\n\nDocCommentHighlightRules.getEndRule = function (start) {\n return {\n token : \"comment.doc\", // closing comment\n regex : \"\\\\*\\\\/\",\n next : start\n };\n};\n\n\nexports.DocCommentHighlightRules = DocCommentHighlightRules;\n\n});\n\nace.define(\"ace/mode/sqlserver_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/doc_comment_highlight_rules\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar DocCommentHighlightRules = require(\"./doc_comment_highlight_rules\").DocCommentHighlightRules;\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar SqlServerHighlightRules = function() {\n var logicalOperators = \"ALL|AND|ANY|BETWEEN|EXISTS|IN|LIKE|NOT|OR|SOME\";\n logicalOperators += \"|NULL|IS|APPLY|INNER|OUTER|LEFT|RIGHT|JOIN|CROSS\"; //SSMS colors these gray too\n \n\n var builtinFunctions = (\n \"OPENDATASOURCE|OPENQUERY|OPENROWSET|OPENXML|\" +\n \"AVG|CHECKSUM_AGG|COUNT|COUNT_BIG|GROUPING|GROUPING_ID|MAX|MIN|STDEV|STDEVP|SUM|VAR|VARP|\" +\n \"DENSE_RANK|NTILE|RANK|ROW_NUMBER\" +\n \"@@DATEFIRST|@@DBTS|@@LANGID|@@LANGUAGE|@@LOCK_TIMEOUT|@@MAX_CONNECTIONS|@@MAX_PRECISION|@@NESTLEVEL|@@OPTIONS|@@REMSERVER|@@SERVERNAME|@@SERVICENAME|@@SPID|@@TEXTSIZE|@@VERSION|\" +\n \"CAST|CONVERT|PARSE|TRY_CAST|TRY_CONVERT|TRY_PARSE\" +\n \"@@CURSOR_ROWS|@@FETCH_STATUS|CURSOR_STATUS|\" +\n \"@@DATEFIRST|@@LANGUAGE|CURRENT_TIMESTAMP|DATEADD|DATEDIFF|DATEFROMPARTS|DATENAME|DATEPART|DATETIME2FROMPARTS|DATETIMEFROMPARTS|DATETIMEOFFSETFROMPARTS|DAY|EOMONTH|GETDATE|GETUTCDATE|ISDATE|MONTH|SET DATEFIRST|SET DATEFORMAT|SET LANGUAGE|SMALLDATETIMEFROMPARTS|SP_HELPLANGUAGE|SWITCHOFFSET|SYSDATETIME|SYSDATETIMEOFFSET|SYSUTCDATETIME|TIMEFROMPARTS|TODATETIMEOFFSET|YEAR|\" +\n \"CHOOSE|IIF|\" +\n \"ABS|ACOS|ASIN|ATAN|ATN2|CEILING|COS|COT|DEGREES|EXP|FLOOR|LOG|LOG10|PI|POWER|RADIANS|RAND|ROUND|SIGN|SIN|SQRT|SQUARE|TAN|\" +\n \"@@PROCID|APPLOCK_MODE|APPLOCK_TEST|APP_NAME|ASSEMBLYPROPERTY|COLUMNPROPERTY|COL_LENGTH|COL_NAME|DATABASEPROPERTYEX|DATABASE_PRINCIPAL_ID|DB_ID|DB_NAME|FILEGROUPPROPERTY|FILEGROUP_ID|FILEGROUP_NAME|FILEPROPERTY|FILE_ID|FILE_IDEX|FILE_NAME|FULLTEXTCATALOGPROPERTY|FULLTEXTSERVICEPROPERTY|INDEXKEY_PROPERTY|INDEXPROPERTY|INDEX_COL|OBJECTPROPERTY|OBJECTPROPERTYEX|OBJECT_DEFINITION|OBJECT_ID|OBJECT_NAME|OBJECT_SCHEMA_NAME|ORIGINAL_DB_NAME|PARSENAME|SCHEMA_ID|SCHEMA_NAME|SCOPE_IDENTITY|SERVERPROPERTY|STATS_DATE|TYPEPROPERTY|TYPE_ID|TYPE_NAME|\" +\n \"CERTENCODED|CERTPRIVATEKEY|CURRENT_USER|DATABASE_PRINCIPAL_ID|HAS_PERMS_BY_NAME|IS_MEMBER|IS_ROLEMEMBER|IS_SRVROLEMEMBER|ORIGINAL_LOGIN|PERMISSIONS|PWDCOMPARE|PWDENCRYPT|SCHEMA_ID|SCHEMA_NAME|SESSION_USER|SUSER_ID|SUSER_NAME|SUSER_SID|SUSER_SNAME|SYS.FN_BUILTIN_PERMISSIONS|SYS.FN_GET_AUDIT_FILE|SYS.FN_MY_PERMISSIONS|SYSTEM_USER|USER_ID|USER_NAME|\" +\n \"ASCII|CHAR|CHARINDEX|CONCAT|DIFFERENCE|FORMAT|LEN|LOWER|LTRIM|NCHAR|PATINDEX|QUOTENAME|REPLACE|REPLICATE|REVERSE|RTRIM|SOUNDEX|SPACE|STR|STUFF|SUBSTRING|UNICODE|UPPER|\" +\n \"$PARTITION|@@ERROR|@@IDENTITY|@@PACK_RECEIVED|@@ROWCOUNT|@@TRANCOUNT|BINARY_CHECKSUM|CHECKSUM|CONNECTIONPROPERTY|CONTEXT_INFO|CURRENT_REQUEST_ID|ERROR_LINE|ERROR_MESSAGE|ERROR_NUMBER|ERROR_PROCEDURE|ERROR_SEVERITY|ERROR_STATE|FORMATMESSAGE|GETANSINULL|GET_FILESTREAM_TRANSACTION_CONTEXT|HOST_ID|HOST_NAME|ISNULL|ISNUMERIC|MIN_ACTIVE_ROWVERSION|NEWID|NEWSEQUENTIALID|ROWCOUNT_BIG|XACT_STATE|\" +\n \"@@CONNECTIONS|@@CPU_BUSY|@@IDLE|@@IO_BUSY|@@PACKET_ERRORS|@@PACK_RECEIVED|@@PACK_SENT|@@TIMETICKS|@@TOTAL_ERRORS|@@TOTAL_READ|@@TOTAL_WRITE|FN_VIRTUALFILESTATS|\" +\n \"PATINDEX|TEXTPTR|TEXTVALID|\" +\n \"COALESCE|NULLIF\"\n );\n var dataTypes = (\"BIGINT|BINARY|BIT|CHAR|CURSOR|DATE|DATETIME|DATETIME2|DATETIMEOFFSET|DECIMAL|FLOAT|HIERARCHYID|IMAGE|INTEGER|INT|MONEY|NCHAR|NTEXT|NUMERIC|NVARCHAR|REAL|SMALLDATETIME|SMALLINT|SMALLMONEY|SQL_VARIANT|TABLE|TEXT|TIME|TIMESTAMP|TINYINT|UNIQUEIDENTIFIER|VARBINARY|VARCHAR|XML\");\n var builtInStoredProcedures = \"sp_addextendedproc|sp_addextendedproperty|sp_addmessage|sp_addtype|sp_addumpdevice|sp_add_data_file_recover_suspect_db|sp_add_log_file_recover_suspect_db|sp_altermessage|sp_attach_db|sp_attach_single_file_db|sp_autostats|sp_bindefault|sp_bindrule|sp_bindsession|sp_certify_removable|sp_clean_db_file_free_space|sp_clean_db_free_space|sp_configure|sp_control_plan_guide|sp_createstats|sp_create_plan_guide|sp_create_plan_guide_from_handle|sp_create_removable|sp_cycle_errorlog|sp_datatype_info|sp_dbcmptlevel|sp_dbmmonitoraddmonitoring|sp_dbmmonitorchangealert|sp_dbmmonitorchangemonitoring|sp_dbmmonitordropalert|sp_dbmmonitordropmonitoring|sp_dbmmonitorhelpalert|sp_dbmmonitorhelpmonitoring|sp_dbmmonitorresults|sp_db_increased_partitions|sp_delete_backuphistory|sp_depends|sp_describe_first_result_set|sp_describe_undeclared_parameters|sp_detach_db|sp_dropdevice|sp_dropextendedproc|sp_dropextendedproperty|sp_dropmessage|sp_droptype|sp_execute|sp_executesql|sp_getapplock|sp_getbindtoken|sp_help|sp_helpconstraint|sp_helpdb|sp_helpdevice|sp_helpextendedproc|sp_helpfile|sp_helpfilegroup|sp_helpindex|sp_helplanguage|sp_helpserver|sp_helpsort|sp_helpstats|sp_helptext|sp_helptrigger|sp_indexoption|sp_invalidate_textptr|sp_lock|sp_monitor|sp_prepare|sp_prepexec|sp_prepexecrpc|sp_procoption|sp_recompile|sp_refreshview|sp_releaseapplock|sp_rename|sp_renamedb|sp_resetstatus|sp_sequence_get_range|sp_serveroption|sp_setnetname|sp_settriggerorder|sp_spaceused|sp_tableoption|sp_unbindefault|sp_unbindrule|sp_unprepare|sp_updateextendedproperty|sp_updatestats|sp_validname|sp_who|sys.sp_merge_xtp_checkpoint_files|sys.sp_xtp_bind_db_resource_pool|sys.sp_xtp_checkpoint_force_garbage_collection|sys.sp_xtp_control_proc_exec_stats|sys.sp_xtp_control_query_exec_stats|sys.sp_xtp_unbind_db_resource_pool\";\n var keywords = \"ABSOLUTE|ACTION|ADA|ADD|ADMIN|AFTER|AGGREGATE|ALIAS|ALL|ALLOCATE|ALTER|AND|ANY|ARE|ARRAY|AS|ASC|ASENSITIVE|ASSERTION|ASYMMETRIC|AT|ATOMIC|AUTHORIZATION|BACKUP|BEFORE|BEGIN|BETWEEN|BIT_LENGTH|BLOB|BOOLEAN|BOTH|BREADTH|BREAK|BROWSE|BULK|BY|CALL|CALLED|CARDINALITY|CASCADE|CASCADED|CASE|CATALOG|CHARACTER|CHARACTER_LENGTH|CHAR_LENGTH|CHECK|CHECKPOINT|CLASS|CLOB|CLOSE|CLUSTERED|COALESCE|COLLATE|COLLATION|COLLECT|COLUMN|COMMIT|COMPLETION|COMPUTE|CONDITION|CONNECT|CONNECTION|CONSTRAINT|CONSTRAINTS|CONSTRUCTOR|CONTAINS|CONTAINSTABLE|CONTINUE|CORR|CORRESPONDING|COVAR_POP|COVAR_SAMP|CREATE|CROSS|CUBE|CUME_DIST|CURRENT|CURRENT_CATALOG|CURRENT_DATE|CURRENT_DEFAULT_TRANSFORM_GROUP|CURRENT_PATH|CURRENT_ROLE|CURRENT_SCHEMA|CURRENT_TIME|CURRENT_TRANSFORM_GROUP_FOR_TYPE|CYCLE|DATA|DATABASE|DBCC|DEALLOCATE|DEC|DECLARE|DEFAULT|DEFERRABLE|DEFERRED|DELETE|DENY|DEPTH|DEREF|DESC|DESCRIBE|DESCRIPTOR|DESTROY|DESTRUCTOR|DETERMINISTIC|DIAGNOSTICS|DICTIONARY|DISCONNECT|DISK|DISTINCT|DISTRIBUTED|DOMAIN|DOUBLE|DROP|DUMP|DYNAMIC|EACH|ELEMENT|ELSE|END|END-EXEC|EQUALS|ERRLVL|ESCAPE|EVERY|EXCEPT|EXCEPTION|EXEC|EXECUTE|EXISTS|EXIT|EXTERNAL|EXTRACT|FETCH|FILE|FILLFACTOR|FILTER|FIRST|FOR|FOREIGN|FORTRAN|FOUND|FREE|FREETEXT|FREETEXTTABLE|FROM|FULL|FULLTEXTTABLE|FUNCTION|FUSION|GENERAL|GET|GLOBAL|GO|GOTO|GRANT|GROUP|HAVING|HOLD|HOLDLOCK|HOST|HOUR|IDENTITY|IDENTITYCOL|IDENTITY_INSERT|IF|IGNORE|IMMEDIATE|IN|INCLUDE|INDEX|INDICATOR|INITIALIZE|INITIALLY|INNER|INOUT|INPUT|INSENSITIVE|INSERT|INTEGER|INTERSECT|INTERSECTION|INTERVAL|INTO|IS|ISOLATION|ITERATE|JOIN|KEY|KILL|LANGUAGE|LARGE|LAST|LATERAL|LEADING|LESS|LEVEL|LIKE|LIKE_REGEX|LIMIT|LINENO|LN|LOAD|LOCAL|LOCALTIME|LOCALTIMESTAMP|LOCATOR|MAP|MATCH|MEMBER|MERGE|METHOD|MINUTE|MOD|MODIFIES|MODIFY|MODULE|MULTISET|NAMES|NATIONAL|NATURAL|NCLOB|NEW|NEXT|NO|NOCHECK|NONCLUSTERED|NONE|NORMALIZE|NOT|NULL|NULLIF|OBJECT|OCCURRENCES_REGEX|OCTET_LENGTH|OF|OFF|OFFSETS|OLD|ON|ONLY|OPEN|OPERATION|OPTION|OR|ORDER|ORDINALITY|OUT|OUTER|OUTPUT|OVER|OVERLAPS|OVERLAY|PAD|PARAMETER|PARAMETERS|PARTIAL|PARTITION|PASCAL|PATH|PERCENT|PERCENTILE_CONT|PERCENTILE_DISC|PERCENT_RANK|PIVOT|PLAN|POSITION|POSITION_REGEX|POSTFIX|PRECISION|PREFIX|PREORDER|PREPARE|PRESERVE|PRIMARY|PRINT|PRIOR|PRIVILEGES|PROC|PROCEDURE|PUBLIC|RAISERROR|RANGE|READ|READS|READTEXT|RECONFIGURE|RECURSIVE|REF|REFERENCES|REFERENCING|REGR_AVGX|REGR_AVGY|REGR_COUNT|REGR_INTERCEPT|REGR_R2|REGR_SLOPE|REGR_SXX|REGR_SXY|REGR_SYY|RELATIVE|RELEASE|REPLICATION|RESTORE|RESTRICT|RESULT|RETURN|RETURNS|REVERT|REVOKE|ROLE|ROLLBACK|ROLLUP|ROUTINE|ROW|ROWCOUNT|ROWGUIDCOL|ROWS|RULE|SAVE|SAVEPOINT|SCHEMA|SCOPE|SCROLL|SEARCH|SECOND|SECTION|SECURITYAUDIT|SELECT|SEMANTICKEYPHRASETABLE|SEMANTICSIMILARITYDETAILSTABLE|SEMANTICSIMILARITYTABLE|SENSITIVE|SEQUENCE|SESSION|SET|SETS|SETUSER|SHUTDOWN|SIMILAR|SIZE|SOME|SPECIFIC|SPECIFICTYPE|SQL|SQLCA|SQLCODE|SQLERROR|SQLEXCEPTION|SQLSTATE|SQLWARNING|START|STATE|STATEMENT|STATIC|STATISTICS|STDDEV_POP|STDDEV_SAMP|STRUCTURE|SUBMULTISET|SUBSTRING_REGEX|SYMMETRIC|SYSTEM|TABLESAMPLE|TEMPORARY|TERMINATE|TEXTSIZE|THAN|THEN|TIMEZONE_HOUR|TIMEZONE_MINUTE|TO|TOP|TRAILING|TRAN|TRANSACTION|TRANSLATE|TRANSLATE_REGEX|TRANSLATION|TREAT|TRIGGER|TRIM|TRUNCATE|TSEQUAL|UESCAPE|UNDER|UNION|UNIQUE|UNKNOWN|UNNEST|UNPIVOT|UPDATE|UPDATETEXT|USAGE|USE|USER|USING|VALUE|VALUES|VARIABLE|VARYING|VAR_POP|VAR_SAMP|VIEW|WAITFOR|WHEN|WHENEVER|WHERE|WHILE|WIDTH_BUCKET|WINDOW|WITH|WITHIN|WITHIN GROUP|WITHOUT|WORK|WRITE|WRITETEXT|XMLAGG|XMLATTRIBUTES|XMLBINARY|XMLCAST|XMLCOMMENT|XMLCONCAT|XMLDOCUMENT|XMLELEMENT|XMLEXISTS|XMLFOREST|XMLITERATE|XMLNAMESPACES|XMLPARSE|XMLPI|XMLQUERY|XMLSERIALIZE|XMLTABLE|XMLTEXT|XMLVALIDATE|ZONE\";\n keywords += \"|KEEPIDENTITY|KEEPDEFAULTS|IGNORE_CONSTRAINTS|IGNORE_TRIGGERS|XLOCK|FORCESCAN|FORCESEEK|HOLDLOCK|NOLOCK|NOWAIT|PAGLOCK|READCOMMITTED|READCOMMITTEDLOCK|READPAST|READUNCOMMITTED|REPEATABLEREAD|ROWLOCK|SERIALIZABLE|SNAPSHOT|SPATIAL_WINDOW_MAX_CELLS|TABLOCK|TABLOCKX|UPDLOCK|XLOCK|IGNORE_NONCLUSTERED_COLUMNSTORE_INDEX|EXPAND|VIEWS|FAST|FORCE|KEEP|KEEPFIXED|MAXDOP|MAXRECURSION|OPTIMIZE|PARAMETERIZATION|SIMPLE|FORCED|RECOMPILE|ROBUST|PLAN|SPATIAL_WINDOW_MAX_CELLS|NOEXPAND|HINT\";\n keywords += \"|LOOP|HASH|MERGE|REMOTE\";\n keywords += \"|TRY|CATCH|THROW\";\n keywords += \"|TYPE\";\n keywords = keywords.split('|');\n keywords = keywords.filter(function(value, index, self) {\n return logicalOperators.split('|').indexOf(value) === -1 && builtinFunctions.split('|').indexOf(value) === -1 && dataTypes.split('|').indexOf(value) === -1;\n });\n keywords = keywords.sort().join('|');\n \n \n var keywordMapper = this.createKeywordMapper({\n \"constant.language\": logicalOperators,\n \"storage.type\": dataTypes,\n \"support.function\": builtinFunctions,\n \"support.storedprocedure\": builtInStoredProcedures,\n \"keyword\": keywords\n }, \"identifier\", true);\n var setStatements = \"SET ANSI_DEFAULTS|SET ANSI_NULLS|SET ANSI_NULL_DFLT_OFF|SET ANSI_NULL_DFLT_ON|SET ANSI_PADDING|SET ANSI_WARNINGS|SET ARITHABORT|SET ARITHIGNORE|SET CONCAT_NULL_YIELDS_NULL|SET CURSOR_CLOSE_ON_COMMIT|SET DATEFIRST|SET DATEFORMAT|SET DEADLOCK_PRIORITY|SET FIPS_FLAGGER|SET FMTONLY|SET FORCEPLAN|SET IDENTITY_INSERT|SET IMPLICIT_TRANSACTIONS|SET LANGUAGE|SET LOCK_TIMEOUT|SET NOCOUNT|SET NOEXEC|SET NUMERIC_ROUNDABORT|SET OFFSETS|SET PARSEONLY|SET QUERY_GOVERNOR_COST_LIMIT|SET QUOTED_IDENTIFIER|SET REMOTE_PROC_TRANSACTIONS|SET ROWCOUNT|SET SHOWPLAN_ALL|SET SHOWPLAN_TEXT|SET SHOWPLAN_XML|SET STATISTICS IO|SET STATISTICS PROFILE|SET STATISTICS TIME|SET STATISTICS XML|SET TEXTSIZE|SET XACT_ABORT\".split('|');\n var isolationLevels = \"READ UNCOMMITTED|READ COMMITTED|REPEATABLE READ|SNAPSHOP|SERIALIZABLE\".split('|');\n for (var i = 0; i < isolationLevels.length; i++) {\n setStatements.push('SET TRANSACTION ISOLATION LEVEL ' + isolationLevels[i]);\n }\n \n \n this.$rules = {\n start: [{\n token: \"string.start\",\n regex: \"'\",\n next: [{\n token: \"constant.language.escape\",\n regex: /''/\n }, {\n token: \"string.end\",\n next: \"start\",\n regex: \"'\"\n }, {\n defaultToken: \"string\"\n }]\n },\n DocCommentHighlightRules.getStartRule(\"doc-start\"), {\n token: \"comment\",\n regex: \"--.*$\"\n }, {\n token: \"comment\",\n start: \"/\\\\*\",\n end: \"\\\\*/\"\n }, {\n token: \"constant.numeric\", // float\n regex: \"[+-]?\\\\d+(?:(?:\\\\.\\\\d*)?(?:[eE][+-]?\\\\d+)?)?\\\\b\"\n }, {\n token: keywordMapper,\n regex: \"@{0,2}[a-zA-Z_$][a-zA-Z0-9_$]*\\\\b(?!])\" //up to 2 @symbols for some built in functions\n }, {\n token: \"constant.class\",\n regex: \"@@?[a-zA-Z_$][a-zA-Z0-9_$]*\\\\b\"\n }, {\n token: \"keyword.operator\",\n regex: \"\\\\+|\\\\-|\\\\/|\\\\/\\\\/|%|<@>|@>|<@|&|\\\\^|~|<|>|<=|=>|==|!=|<>|=|\\\\*\"\n }, {\n token: \"paren.lparen\",\n regex: \"[\\\\(]\"\n }, {\n token: \"paren.rparen\",\n regex: \"[\\\\)]\"\n }, {\n token: \"punctuation\",\n regex: \",|;\"\n }, {\n token: \"text\",\n regex: \"\\\\s+\"\n }],\n comment: [\n DocCommentHighlightRules.getTagRule(), {\n token: \"comment\",\n regex: \"\\\\*\\\\/\",\n next: \"no_regex\"\n }, {\n defaultToken: \"comment\",\n caseInsensitive: true\n }]\n };\n for (var i = 0; i < setStatements.length; i++) {\n this.$rules.start.unshift({\n token: \"set.statement\",\n regex: setStatements[i]\n });\n }\n \n this.embedRules(DocCommentHighlightRules, \"doc-\", [DocCommentHighlightRules.getEndRule(\"start\")]);\n this.normalizeRules();\n var completions = [];\n var addCompletions = function(arr, meta) {\n arr.forEach(function(v) {\n completions.push({\n name: v,\n value: v,\n score: 0,\n meta: meta\n });\n });\n };\n addCompletions(builtInStoredProcedures.split('|'), 'procedure');\n addCompletions(logicalOperators.split('|'), 'operator');\n addCompletions(builtinFunctions.split('|'), 'function');\n addCompletions(dataTypes.split('|'), 'type');\n addCompletions(setStatements, 'statement');\n addCompletions(keywords.split('|'), 'keyword');\n \n this.completions = completions;\n};\n\noop.inherits(SqlServerHighlightRules, TextHighlightRules);\n\nexports.SqlHighlightRules = SqlServerHighlightRules;\n});\n\nace.define(\"ace/mode/folding/cstyle\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/range\",\"ace/mode/folding/fold_mode\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Range = require(\"../../range\").Range;\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function(commentRegex) {\n if (commentRegex) {\n this.foldingStartMarker = new RegExp(\n this.foldingStartMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.start)\n );\n this.foldingStopMarker = new RegExp(\n this.foldingStopMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.end)\n );\n }\n};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n \n this.foldingStartMarker = /([\\{\\[\\(])[^\\}\\]\\)]*$|^\\s*(\\/\\*)/;\n this.foldingStopMarker = /^[^\\[\\{\\(]*([\\}\\]\\)])|^[\\s\\*]*(\\*\\/)/;\n this.singleLineBlockCommentRe= /^\\s*(\\/\\*).*\\*\\/\\s*$/;\n this.tripleStarBlockCommentRe = /^\\s*(\\/\\*\\*\\*).*\\*\\/\\s*$/;\n this.startRegionRe = /^\\s*(\\/\\*|\\/\\/)#?region\\b/;\n this._getFoldWidgetBase = this.getFoldWidget;\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n \n if (this.singleLineBlockCommentRe.test(line)) {\n if (!this.startRegionRe.test(line) && !this.tripleStarBlockCommentRe.test(line))\n return \"\";\n }\n \n var fw = this._getFoldWidgetBase(session, foldStyle, row);\n \n if (!fw && this.startRegionRe.test(line))\n return \"start\"; // lineCommentRegionStart\n \n return fw;\n };\n\n this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {\n var line = session.getLine(row);\n \n if (this.startRegionRe.test(line))\n return this.getCommentRegionBlock(session, line, row);\n \n var match = line.match(this.foldingStartMarker);\n if (match) {\n var i = match.index;\n\n if (match[1])\n return this.openingBracketBlock(session, match[1], row, i);\n \n var range = session.getCommentFoldRange(row, i + match[0].length, 1);\n \n if (range && !range.isMultiLine()) {\n if (forceMultiline) {\n range = this.getSectionRange(session, row);\n } else if (foldStyle != \"all\")\n range = null;\n }\n \n return range;\n }\n\n if (foldStyle === \"markbegin\")\n return;\n\n var match = line.match(this.foldingStopMarker);\n if (match) {\n var i = match.index + match[0].length;\n\n if (match[1])\n return this.closingBracketBlock(session, match[1], row, i);\n\n return session.getCommentFoldRange(row, i, -1);\n }\n };\n \n this.getSectionRange = function(session, row) {\n var line = session.getLine(row);\n var startIndent = line.search(/\\S/);\n var startRow = row;\n var startColumn = line.length;\n row = row + 1;\n var endRow = row;\n var maxRow = session.getLength();\n while (++row < maxRow) {\n line = session.getLine(row);\n var indent = line.search(/\\S/);\n if (indent === -1)\n continue;\n if (startIndent > indent)\n break;\n var subRange = this.getFoldWidgetRange(session, \"all\", row);\n \n if (subRange) {\n if (subRange.start.row <= startRow) {\n break;\n } else if (subRange.isMultiLine()) {\n row = subRange.end.row;\n } else if (startIndent == indent) {\n break;\n }\n }\n endRow = row;\n }\n \n return new Range(startRow, startColumn, endRow, session.getLine(endRow).length);\n };\n this.getCommentRegionBlock = function(session, line, row) {\n var startColumn = line.search(/\\s*$/);\n var maxRow = session.getLength();\n var startRow = row;\n \n var re = /^\\s*(?:\\/\\*|\\/\\/|--)#?(end)?region\\b/;\n var depth = 1;\n while (++row < maxRow) {\n line = session.getLine(row);\n var m = re.exec(line);\n if (!m) continue;\n if (m[1]) depth--;\n else depth++;\n\n if (!depth) break;\n }\n\n var endRow = row;\n if (endRow > startRow) {\n return new Range(startRow, startColumn, endRow, line.length);\n }\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/folding/sqlserver\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/range\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Range = require(\"../../range\").Range;\nvar BaseFoldMode = require(\"./cstyle\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function() {};\n\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n \n this.foldingStartMarker = /(\\bCASE\\b|\\bBEGIN\\b)|^\\s*(\\/\\*)/i;\n this.startRegionRe = /^\\s*(\\/\\*|--)#?region\\b/;\n \n this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {\n var line = session.getLine(row);\n \n if (this.startRegionRe.test(line)) return this.getCommentRegionBlock(session, line, row);\n \n var match = line.match(this.foldingStartMarker);\n if (match) {\n var i = match.index;\n if (match[1]) return this.getBeginEndBlock(session, row, i, match[1]);\n \n var range = session.getCommentFoldRange(row, i + match[0].length, 1);\n if (range && !range.isMultiLine()) {\n if (forceMultiline) {\n range = this.getSectionRange(session, row);\n }\n else if (foldStyle != \"all\") range = null;\n }\n \n return range;\n }\n \n if (foldStyle === \"markbegin\") return;\n return;\n };\n this.getBeginEndBlock = function(session, row, column, matchSequence) {\n var start = {\n row: row,\n column: column + matchSequence.length\n };\n var maxRow = session.getLength();\n var line;\n \n var depth = 1;\n var re = /(\\bCASE\\b|\\bBEGIN\\b)|(\\bEND\\b)/i;\n while (++row < maxRow) {\n line = session.getLine(row);\n var m = re.exec(line);\n if (!m) continue;\n if (m[1]) depth++;\n else depth--;\n \n if (!depth) break;\n }\n var endRow = row;\n if (endRow > start.row) {\n return new Range(start.row, start.column, endRow, line.length);\n }\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/sqlserver\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/sqlserver_highlight_rules\",\"ace/mode/folding/sqlserver\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar SqlServerHighlightRules = require(\"./sqlserver_highlight_rules\").SqlHighlightRules;\nvar SqlServerFoldMode = require(\"./folding/sqlserver\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = SqlServerHighlightRules;\n this.foldingRules = new SqlServerFoldMode();\n this.$behaviour = this.$defaultBehaviour;\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n this.lineCommentStart = \"--\";\n this.blockComment = {start: \"/*\", end: \"*/\"};\n this.getCompletions = function(state, session, pos, prefix) {\n return session.$mode.$highlightRules.completions;\n };\n \n this.$id = \"ace/mode/sql\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n\n}); (function() {\n ace.require([\"ace/mode/sqlserver\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file3d := &embedded.EmbeddedFile{ Filename: "4bc334f8bbb887cb9b2436309d9e5772.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/doc_comment_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar DocCommentHighlightRules = function() {\n this.$rules = {\n \"start\" : [ {\n token : \"comment.doc.tag\",\n regex : \"@[\\\\w\\\\d_]+\" // TODO: fix email addresses\n }, \n DocCommentHighlightRules.getTagRule(),\n {\n defaultToken : \"comment.doc\",\n caseInsensitive: true\n }]\n };\n};\n\noop.inherits(DocCommentHighlightRules, TextHighlightRules);\n\nDocCommentHighlightRules.getTagRule = function(start) {\n return {\n token : \"comment.doc.tag.storage.type\",\n regex : \"\\\\b(?:TODO|FIXME|XXX|HACK)\\\\b\"\n };\n};\n\nDocCommentHighlightRules.getStartRule = function(start) {\n return {\n token : \"comment.doc\", // doc comment\n regex : \"\\\\/\\\\*(?=\\\\*)\",\n next : start\n };\n};\n\nDocCommentHighlightRules.getEndRule = function (start) {\n return {\n token : \"comment.doc\", // closing comment\n regex : \"\\\\*\\\\/\",\n next : start\n };\n};\n\n\nexports.DocCommentHighlightRules = DocCommentHighlightRules;\n\n});\n\nace.define(\"ace/mode/javascript_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/doc_comment_highlight_rules\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar DocCommentHighlightRules = require(\"./doc_comment_highlight_rules\").DocCommentHighlightRules;\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar identifierRe = \"[a-zA-Z\\\\$_\\u00a1-\\uffff][a-zA-Z\\\\d\\\\$_\\u00a1-\\uffff]*\";\n\nvar JavaScriptHighlightRules = function(options) {\n var keywordMapper = this.createKeywordMapper({\n \"variable.language\":\n \"Array|Boolean|Date|Function|Iterator|Number|Object|RegExp|String|Proxy|\" + // Constructors\n \"Namespace|QName|XML|XMLList|\" + // E4X\n \"ArrayBuffer|Float32Array|Float64Array|Int16Array|Int32Array|Int8Array|\" +\n \"Uint16Array|Uint32Array|Uint8Array|Uint8ClampedArray|\" +\n \"Error|EvalError|InternalError|RangeError|ReferenceError|StopIteration|\" + // Errors\n \"SyntaxError|TypeError|URIError|\" +\n \"decodeURI|decodeURIComponent|encodeURI|encodeURIComponent|eval|isFinite|\" + // Non-constructor functions\n \"isNaN|parseFloat|parseInt|\" +\n \"JSON|Math|\" + // Other\n \"this|arguments|prototype|window|document\" , // Pseudo\n \"keyword\":\n \"const|yield|import|get|set|async|await|\" +\n \"break|case|catch|continue|default|delete|do|else|finally|for|function|\" +\n \"if|in|of|instanceof|new|return|switch|throw|try|typeof|let|var|while|with|debugger|\" +\n \"__parent__|__count__|escape|unescape|with|__proto__|\" +\n \"class|enum|extends|super|export|implements|private|public|interface|package|protected|static\",\n \"storage.type\":\n \"const|let|var|function\",\n \"constant.language\":\n \"null|Infinity|NaN|undefined\",\n \"support.function\":\n \"alert\",\n \"constant.language.boolean\": \"true|false\"\n }, \"identifier\");\n var kwBeforeRe = \"case|do|else|finally|in|instanceof|return|throw|try|typeof|yield|void\";\n\n var escapedRe = \"\\\\\\\\(?:x[0-9a-fA-F]{2}|\" + // hex\n \"u[0-9a-fA-F]{4}|\" + // unicode\n \"u{[0-9a-fA-F]{1,6}}|\" + // es6 unicode\n \"[0-2][0-7]{0,2}|\" + // oct\n \"3[0-7][0-7]?|\" + // oct\n \"[4-7][0-7]?|\" + //oct\n \".)\";\n\n this.$rules = {\n \"no_regex\" : [\n DocCommentHighlightRules.getStartRule(\"doc-start\"),\n comments(\"no_regex\"),\n {\n token : \"string\",\n regex : \"'(?=.)\",\n next : \"qstring\"\n }, {\n token : \"string\",\n regex : '\"(?=.)',\n next : \"qqstring\"\n }, {\n token : \"constant.numeric\", // hexadecimal, octal and binary\n regex : /0(?:[xX][0-9a-fA-F]+|[oO][0-7]+|[bB][01]+)\\b/\n }, {\n token : \"constant.numeric\", // decimal integers and floats\n regex : /(?:\\d\\d*(?:\\.\\d*)?|\\.\\d+)(?:[eE][+-]?\\d+\\b)?/\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"support.function\",\n \"punctuation.operator\", \"entity.name.function\", \"text\",\"keyword.operator\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(prototype)(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"entity.name.function\", \"text\", \"keyword.operator\", \"text\", \"storage.type\",\n \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\",\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s+)(\\\\w+)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(function)(\\\\s+)(\" + identifierRe + \")(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"entity.name.function\", \"text\", \"punctuation.operator\",\n \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\s*)(:)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"text\", \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(:)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : \"keyword\",\n regex : \"from(?=\\\\s*('|\\\"))\"\n }, {\n token : \"keyword\",\n regex : \"(?:\" + kwBeforeRe + \")\\\\b\",\n next : \"start\"\n }, {\n token : [\"support.constant\"],\n regex : /that\\b/\n }, {\n token : [\"storage.type\", \"punctuation.operator\", \"support.function.firebug\"],\n regex : /(console)(\\.)(warn|info|log|error|time|trace|timeEnd|assert)\\b/\n }, {\n token : keywordMapper,\n regex : identifierRe\n }, {\n token : \"punctuation.operator\",\n regex : /[.](?![.])/,\n next : \"property\"\n }, {\n token : \"storage.type\",\n regex : /=>/,\n next : \"start\"\n }, {\n token : \"keyword.operator\",\n regex : /--|\\+\\+|\\.{3}|===|==|=|!=|!==|<+=?|>+=?|!|&&|\\|\\||\\?:|[!$%&*+\\-~\\/^]=?/,\n next : \"start\"\n }, {\n token : \"punctuation.operator\",\n regex : /[?:,;.]/,\n next : \"start\"\n }, {\n token : \"paren.lparen\",\n regex : /[\\[({]/,\n next : \"start\"\n }, {\n token : \"paren.rparen\",\n regex : /[\\])}]/\n }, {\n token: \"comment\",\n regex: /^#!.*$/\n }\n ],\n property: [{\n token : \"text\",\n regex : \"\\\\s+\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\",\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(?:(\\\\s+)(\\\\w+))?(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : \"punctuation.operator\",\n regex : /[.](?![.])/\n }, {\n token : \"support.function\",\n regex : /(s(?:h(?:ift|ow(?:Mod(?:elessDialog|alDialog)|Help))|croll(?:X|By(?:Pages|Lines)?|Y|To)?|t(?:op|rike)|i(?:n|zeToContent|debar|gnText)|ort|u(?:p|b(?:str(?:ing)?)?)|pli(?:ce|t)|e(?:nd|t(?:Re(?:sizable|questHeader)|M(?:i(?:nutes|lliseconds)|onth)|Seconds|Ho(?:tKeys|urs)|Year|Cursor|Time(?:out)?|Interval|ZOptions|Date|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Date|FullYear)|FullYear|Active)|arch)|qrt|lice|avePreferences|mall)|h(?:ome|andleEvent)|navigate|c(?:har(?:CodeAt|At)|o(?:s|n(?:cat|textual|firm)|mpile)|eil|lear(?:Timeout|Interval)?|a(?:ptureEvents|ll)|reate(?:StyleSheet|Popup|EventObject))|t(?:o(?:GMTString|S(?:tring|ource)|U(?:TCString|pperCase)|Lo(?:caleString|werCase))|est|a(?:n|int(?:Enabled)?))|i(?:s(?:NaN|Finite)|ndexOf|talics)|d(?:isableExternalCapture|ump|etachEvent)|u(?:n(?:shift|taint|escape|watch)|pdateCommands)|j(?:oin|avaEnabled)|p(?:o(?:p|w)|ush|lugins.refresh|a(?:ddings|rse(?:Int|Float)?)|r(?:int|ompt|eference))|e(?:scape|nableExternalCapture|val|lementFromPoint|x(?:p|ec(?:Script|Command)?))|valueOf|UTC|queryCommand(?:State|Indeterm|Enabled|Value)|f(?:i(?:nd|le(?:ModifiedDate|Size|CreatedDate|UpdatedDate)|xed)|o(?:nt(?:size|color)|rward)|loor|romCharCode)|watch|l(?:ink|o(?:ad|g)|astIndexOf)|a(?:sin|nchor|cos|t(?:tachEvent|ob|an(?:2)?)|pply|lert|b(?:s|ort))|r(?:ou(?:nd|teEvents)|e(?:size(?:By|To)|calc|turnValue|place|verse|l(?:oad|ease(?:Capture|Events)))|andom)|g(?:o|et(?:ResponseHeader|M(?:i(?:nutes|lliseconds)|onth)|Se(?:conds|lection)|Hours|Year|Time(?:zoneOffset)?|Da(?:y|te)|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Da(?:y|te)|FullYear)|FullYear|A(?:ttention|llResponseHeaders)))|m(?:in|ove(?:B(?:y|elow)|To(?:Absolute)?|Above)|ergeAttributes|a(?:tch|rgins|x))|b(?:toa|ig|o(?:ld|rderWidths)|link|ack))\\b(?=\\()/\n }, {\n token : \"support.function.dom\",\n regex : /(s(?:ub(?:stringData|mit)|plitText|e(?:t(?:NamedItem|Attribute(?:Node)?)|lect))|has(?:ChildNodes|Feature)|namedItem|c(?:l(?:ick|o(?:se|neNode))|reate(?:C(?:omment|DATASection|aption)|T(?:Head|extNode|Foot)|DocumentFragment|ProcessingInstruction|E(?:ntityReference|lement)|Attribute))|tabIndex|i(?:nsert(?:Row|Before|Cell|Data)|tem)|open|delete(?:Row|C(?:ell|aption)|T(?:Head|Foot)|Data)|focus|write(?:ln)?|a(?:dd|ppend(?:Child|Data))|re(?:set|place(?:Child|Data)|move(?:NamedItem|Child|Attribute(?:Node)?)?)|get(?:NamedItem|Element(?:sBy(?:Name|TagName|ClassName)|ById)|Attribute(?:Node)?)|blur)\\b(?=\\()/\n }, {\n token : \"support.constant\",\n regex : /(s(?:ystemLanguage|cr(?:ipts|ollbars|een(?:X|Y|Top|Left))|t(?:yle(?:Sheets)?|atus(?:Text|bar)?)|ibling(?:Below|Above)|ource|uffixes|e(?:curity(?:Policy)?|l(?:ection|f)))|h(?:istory|ost(?:name)?|as(?:h|Focus))|y|X(?:MLDocument|SLDocument)|n(?:ext|ame(?:space(?:s|URI)|Prop))|M(?:IN_VALUE|AX_VALUE)|c(?:haracterSet|o(?:n(?:structor|trollers)|okieEnabled|lorDepth|mp(?:onents|lete))|urrent|puClass|l(?:i(?:p(?:boardData)?|entInformation)|osed|asses)|alle(?:e|r)|rypto)|t(?:o(?:olbar|p)|ext(?:Transform|Indent|Decoration|Align)|ags)|SQRT(?:1_2|2)|i(?:n(?:ner(?:Height|Width)|put)|ds|gnoreCase)|zIndex|o(?:scpu|n(?:readystatechange|Line)|uter(?:Height|Width)|p(?:sProfile|ener)|ffscreenBuffering)|NEGATIVE_INFINITY|d(?:i(?:splay|alog(?:Height|Top|Width|Left|Arguments)|rectories)|e(?:scription|fault(?:Status|Ch(?:ecked|arset)|View)))|u(?:ser(?:Profile|Language|Agent)|n(?:iqueID|defined)|pdateInterval)|_content|p(?:ixelDepth|ort|ersonalbar|kcs11|l(?:ugins|atform)|a(?:thname|dding(?:Right|Bottom|Top|Left)|rent(?:Window|Layer)?|ge(?:X(?:Offset)?|Y(?:Offset)?))|r(?:o(?:to(?:col|type)|duct(?:Sub)?|mpter)|e(?:vious|fix)))|e(?:n(?:coding|abledPlugin)|x(?:ternal|pando)|mbeds)|v(?:isibility|endor(?:Sub)?|Linkcolor)|URLUnencoded|P(?:I|OSITIVE_INFINITY)|f(?:ilename|o(?:nt(?:Size|Family|Weight)|rmName)|rame(?:s|Element)|gColor)|E|whiteSpace|l(?:i(?:stStyleType|n(?:eHeight|kColor))|o(?:ca(?:tion(?:bar)?|lName)|wsrc)|e(?:ngth|ft(?:Context)?)|a(?:st(?:M(?:odified|atch)|Index|Paren)|yer(?:s|X)|nguage))|a(?:pp(?:MinorVersion|Name|Co(?:deName|re)|Version)|vail(?:Height|Top|Width|Left)|ll|r(?:ity|guments)|Linkcolor|bove)|r(?:ight(?:Context)?|e(?:sponse(?:XML|Text)|adyState))|global|x|m(?:imeTypes|ultiline|enubar|argin(?:Right|Bottom|Top|Left))|L(?:N(?:10|2)|OG(?:10E|2E))|b(?:o(?:ttom|rder(?:Width|RightWidth|BottomWidth|Style|Color|TopWidth|LeftWidth))|ufferDepth|elow|ackground(?:Color|Image)))\\b/\n }, {\n token : \"identifier\",\n regex : identifierRe\n }, {\n regex: \"\",\n token: \"empty\",\n next: \"no_regex\"\n }\n ],\n \"start\": [\n DocCommentHighlightRules.getStartRule(\"doc-start\"),\n comments(\"start\"),\n {\n token: \"string.regexp\",\n regex: \"\\\\/\",\n next: \"regex\"\n }, {\n token : \"text\",\n regex : \"\\\\s+|^$\",\n next : \"start\"\n }, {\n token: \"empty\",\n regex: \"\",\n next: \"no_regex\"\n }\n ],\n \"regex\": [\n {\n token: \"regexp.keyword.operator\",\n regex: \"\\\\\\\\(?:u[\\\\da-fA-F]{4}|x[\\\\da-fA-F]{2}|.)\"\n }, {\n token: \"string.regexp\",\n regex: \"/[sxngimy]*\",\n next: \"no_regex\"\n }, {\n token : \"invalid\",\n regex: /\\{\\d+\\b,?\\d*\\}[+*]|[+*$^?][+*]|[$^][?]|\\?{3,}/\n }, {\n token : \"constant.language.escape\",\n regex: /\\(\\?[:=!]|\\)|\\{\\d+\\b,?\\d*\\}|[+*]\\?|[()$^+*?.]/\n }, {\n token : \"constant.language.delimiter\",\n regex: /\\|/\n }, {\n token: \"constant.language.escape\",\n regex: /\\[\\^?/,\n next: \"regex_character_class\"\n }, {\n token: \"empty\",\n regex: \"$\",\n next: \"no_regex\"\n }, {\n defaultToken: \"string.regexp\"\n }\n ],\n \"regex_character_class\": [\n {\n token: \"regexp.charclass.keyword.operator\",\n regex: \"\\\\\\\\(?:u[\\\\da-fA-F]{4}|x[\\\\da-fA-F]{2}|.)\"\n }, {\n token: \"constant.language.escape\",\n regex: \"]\",\n next: \"regex\"\n }, {\n token: \"constant.language.escape\",\n regex: \"-\"\n }, {\n token: \"empty\",\n regex: \"$\",\n next: \"no_regex\"\n }, {\n defaultToken: \"string.regexp.charachterclass\"\n }\n ],\n \"function_arguments\": [\n {\n token: \"variable.parameter\",\n regex: identifierRe\n }, {\n token: \"punctuation.operator\",\n regex: \"[, ]+\"\n }, {\n token: \"punctuation.operator\",\n regex: \"$\"\n }, {\n token: \"empty\",\n regex: \"\",\n next: \"no_regex\"\n }\n ],\n \"qqstring\" : [\n {\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"string\",\n regex : \"\\\\\\\\$\",\n consumeLineEnd : true\n }, {\n token : \"string\",\n regex : '\"|$',\n next : \"no_regex\"\n }, {\n defaultToken: \"string\"\n }\n ],\n \"qstring\" : [\n {\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"string\",\n regex : \"\\\\\\\\$\",\n consumeLineEnd : true\n }, {\n token : \"string\",\n regex : \"'|$\",\n next : \"no_regex\"\n }, {\n defaultToken: \"string\"\n }\n ]\n };\n\n\n if (!options || !options.noES6) {\n this.$rules.no_regex.unshift({\n regex: \"[{}]\", onMatch: function(val, state, stack) {\n this.next = val == \"{\" ? this.nextState : \"\";\n if (val == \"{\" && stack.length) {\n stack.unshift(\"start\", state);\n }\n else if (val == \"}\" && stack.length) {\n stack.shift();\n this.next = stack.shift();\n if (this.next.indexOf(\"string\") != -1 || this.next.indexOf(\"jsx\") != -1)\n return \"paren.quasi.end\";\n }\n return val == \"{\" ? \"paren.lparen\" : \"paren.rparen\";\n },\n nextState: \"start\"\n }, {\n token : \"string.quasi.start\",\n regex : /`/,\n push : [{\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"paren.quasi.start\",\n regex : /\\${/,\n push : \"start\"\n }, {\n token : \"string.quasi.end\",\n regex : /`/,\n next : \"pop\"\n }, {\n defaultToken: \"string.quasi\"\n }]\n });\n\n if (!options || options.jsx != false)\n JSX.call(this);\n }\n\n this.embedRules(DocCommentHighlightRules, \"doc-\",\n [ DocCommentHighlightRules.getEndRule(\"no_regex\") ]);\n\n this.normalizeRules();\n};\n\noop.inherits(JavaScriptHighlightRules, TextHighlightRules);\n\nfunction JSX() {\n var tagRegex = identifierRe.replace(\"\\\\d\", \"\\\\d\\\\-\");\n var jsxTag = {\n onMatch : function(val, state, stack) {\n var offset = val.charAt(1) == \"/\" ? 2 : 1;\n if (offset == 1) {\n if (state != this.nextState)\n stack.unshift(this.next, this.nextState, 0);\n else\n stack.unshift(this.next);\n stack[2]++;\n } else if (offset == 2) {\n if (state == this.nextState) {\n stack[1]--;\n if (!stack[1] || stack[1] < 0) {\n stack.shift();\n stack.shift();\n }\n }\n }\n return [{\n type: \"meta.tag.punctuation.\" + (offset == 1 ? \"\" : \"end-\") + \"tag-open.xml\",\n value: val.slice(0, offset)\n }, {\n type: \"meta.tag.tag-name.xml\",\n value: val.substr(offset)\n }];\n },\n regex : \"\",\n onMatch : function(value, currentState, stack) {\n if (currentState == stack[0])\n stack.shift();\n if (value.length == 2) {\n if (stack[0] == this.nextState)\n stack[1]--;\n if (!stack[1] || stack[1] < 0) {\n stack.splice(0, 2);\n }\n }\n this.next = stack[0] || \"start\";\n return [{type: this.token, value: value}];\n },\n nextState: \"jsx\"\n },\n jsxJsRule,\n comments(\"jsxAttributes\"),\n {\n token : \"entity.other.attribute-name.xml\",\n regex : tagRegex\n }, {\n token : \"keyword.operator.attribute-equals.xml\",\n regex : \"=\"\n }, {\n token : \"text.tag-whitespace.xml\",\n regex : \"\\\\s+\"\n }, {\n token : \"string.attribute-value.xml\",\n regex : \"'\",\n stateName : \"jsx_attr_q\",\n push : [\n {token : \"string.attribute-value.xml\", regex: \"'\", next: \"pop\"},\n {include : \"reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n }, {\n token : \"string.attribute-value.xml\",\n regex : '\"',\n stateName : \"jsx_attr_qq\",\n push : [\n {token : \"string.attribute-value.xml\", regex: '\"', next: \"pop\"},\n {include : \"reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n },\n jsxTag\n ];\n this.$rules.reference = [{\n token : \"constant.language.escape.reference.xml\",\n regex : \"(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\\\.-]+;)\"\n }];\n}\n\nfunction comments(next) {\n return [\n {\n token : \"comment\", // multi line comment\n regex : /\\/\\*/,\n next: [\n DocCommentHighlightRules.getTagRule(),\n {token : \"comment\", regex : \"\\\\*\\\\/\", next : next || \"pop\"},\n {defaultToken : \"comment\", caseInsensitive: true}\n ]\n }, {\n token : \"comment\",\n regex : \"\\\\/\\\\/\",\n next: [\n DocCommentHighlightRules.getTagRule(),\n {token : \"comment\", regex : \"$|^\", next : next || \"pop\"},\n {defaultToken : \"comment\", caseInsensitive: true}\n ]\n }\n ];\n}\nexports.JavaScriptHighlightRules = JavaScriptHighlightRules;\n});\n\nace.define(\"ace/mode/matching_brace_outdent\",[\"require\",\"exports\",\"module\",\"ace/range\"], function(require, exports, module) {\n\"use strict\";\n\nvar Range = require(\"../range\").Range;\n\nvar MatchingBraceOutdent = function() {};\n\n(function() {\n\n this.checkOutdent = function(line, input) {\n if (! /^\\s+$/.test(line))\n return false;\n\n return /^\\s*\\}/.test(input);\n };\n\n this.autoOutdent = function(doc, row) {\n var line = doc.getLine(row);\n var match = line.match(/^(\\s*\\})/);\n\n if (!match) return 0;\n\n var column = match[1].length;\n var openBracePos = doc.findMatchingBracket({row: row, column: column});\n\n if (!openBracePos || openBracePos.row == row) return 0;\n\n var indent = this.$getIndent(doc.getLine(openBracePos.row));\n doc.replace(new Range(row, 0, row, column-1), indent);\n };\n\n this.$getIndent = function(line) {\n return line.match(/^\\s*/)[0];\n };\n\n}).call(MatchingBraceOutdent.prototype);\n\nexports.MatchingBraceOutdent = MatchingBraceOutdent;\n});\n\nace.define(\"ace/mode/folding/cstyle\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/range\",\"ace/mode/folding/fold_mode\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Range = require(\"../../range\").Range;\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function(commentRegex) {\n if (commentRegex) {\n this.foldingStartMarker = new RegExp(\n this.foldingStartMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.start)\n );\n this.foldingStopMarker = new RegExp(\n this.foldingStopMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.end)\n );\n }\n};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n \n this.foldingStartMarker = /([\\{\\[\\(])[^\\}\\]\\)]*$|^\\s*(\\/\\*)/;\n this.foldingStopMarker = /^[^\\[\\{\\(]*([\\}\\]\\)])|^[\\s\\*]*(\\*\\/)/;\n this.singleLineBlockCommentRe= /^\\s*(\\/\\*).*\\*\\/\\s*$/;\n this.tripleStarBlockCommentRe = /^\\s*(\\/\\*\\*\\*).*\\*\\/\\s*$/;\n this.startRegionRe = /^\\s*(\\/\\*|\\/\\/)#?region\\b/;\n this._getFoldWidgetBase = this.getFoldWidget;\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n \n if (this.singleLineBlockCommentRe.test(line)) {\n if (!this.startRegionRe.test(line) && !this.tripleStarBlockCommentRe.test(line))\n return \"\";\n }\n \n var fw = this._getFoldWidgetBase(session, foldStyle, row);\n \n if (!fw && this.startRegionRe.test(line))\n return \"start\"; // lineCommentRegionStart\n \n return fw;\n };\n\n this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {\n var line = session.getLine(row);\n \n if (this.startRegionRe.test(line))\n return this.getCommentRegionBlock(session, line, row);\n \n var match = line.match(this.foldingStartMarker);\n if (match) {\n var i = match.index;\n\n if (match[1])\n return this.openingBracketBlock(session, match[1], row, i);\n \n var range = session.getCommentFoldRange(row, i + match[0].length, 1);\n \n if (range && !range.isMultiLine()) {\n if (forceMultiline) {\n range = this.getSectionRange(session, row);\n } else if (foldStyle != \"all\")\n range = null;\n }\n \n return range;\n }\n\n if (foldStyle === \"markbegin\")\n return;\n\n var match = line.match(this.foldingStopMarker);\n if (match) {\n var i = match.index + match[0].length;\n\n if (match[1])\n return this.closingBracketBlock(session, match[1], row, i);\n\n return session.getCommentFoldRange(row, i, -1);\n }\n };\n \n this.getSectionRange = function(session, row) {\n var line = session.getLine(row);\n var startIndent = line.search(/\\S/);\n var startRow = row;\n var startColumn = line.length;\n row = row + 1;\n var endRow = row;\n var maxRow = session.getLength();\n while (++row < maxRow) {\n line = session.getLine(row);\n var indent = line.search(/\\S/);\n if (indent === -1)\n continue;\n if (startIndent > indent)\n break;\n var subRange = this.getFoldWidgetRange(session, \"all\", row);\n \n if (subRange) {\n if (subRange.start.row <= startRow) {\n break;\n } else if (subRange.isMultiLine()) {\n row = subRange.end.row;\n } else if (startIndent == indent) {\n break;\n }\n }\n endRow = row;\n }\n \n return new Range(startRow, startColumn, endRow, session.getLine(endRow).length);\n };\n this.getCommentRegionBlock = function(session, line, row) {\n var startColumn = line.search(/\\s*$/);\n var maxRow = session.getLength();\n var startRow = row;\n \n var re = /^\\s*(?:\\/\\*|\\/\\/|--)#?(end)?region\\b/;\n var depth = 1;\n while (++row < maxRow) {\n line = session.getLine(row);\n var m = re.exec(line);\n if (!m) continue;\n if (m[1]) depth--;\n else depth++;\n\n if (!depth) break;\n }\n\n var endRow = row;\n if (endRow > startRow) {\n return new Range(startRow, startColumn, endRow, line.length);\n }\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/javascript\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/javascript_highlight_rules\",\"ace/mode/matching_brace_outdent\",\"ace/worker/worker_client\",\"ace/mode/behaviour/cstyle\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar JavaScriptHighlightRules = require(\"./javascript_highlight_rules\").JavaScriptHighlightRules;\nvar MatchingBraceOutdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\nvar WorkerClient = require(\"../worker/worker_client\").WorkerClient;\nvar CstyleBehaviour = require(\"./behaviour/cstyle\").CstyleBehaviour;\nvar CStyleFoldMode = require(\"./folding/cstyle\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = JavaScriptHighlightRules;\n \n this.$outdent = new MatchingBraceOutdent();\n this.$behaviour = new CstyleBehaviour();\n this.foldingRules = new CStyleFoldMode();\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.lineCommentStart = \"//\";\n this.blockComment = {start: \"/*\", end: \"*/\"};\n this.$quotes = {'\"': '\"', \"'\": \"'\", \"`\": \"`\"};\n\n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n\n var tokenizedLine = this.getTokenizer().getLineTokens(line, state);\n var tokens = tokenizedLine.tokens;\n var endState = tokenizedLine.state;\n\n if (tokens.length && tokens[tokens.length-1].type == \"comment\") {\n return indent;\n }\n\n if (state == \"start\" || state == \"no_regex\") {\n var match = line.match(/^.*(?:\\bcase\\b.*:|[\\{\\(\\[])\\s*$/);\n if (match) {\n indent += tab;\n }\n } else if (state == \"doc-start\") {\n if (endState == \"start\" || endState == \"no_regex\") {\n return \"\";\n }\n var match = line.match(/^\\s*(\\/?)\\*/);\n if (match) {\n if (match[1]) {\n indent += \" \";\n }\n indent += \"* \";\n }\n }\n\n return indent;\n };\n\n this.checkOutdent = function(state, line, input) {\n return this.$outdent.checkOutdent(line, input);\n };\n\n this.autoOutdent = function(state, doc, row) {\n this.$outdent.autoOutdent(doc, row);\n };\n\n this.createWorker = function(session) {\n var worker = new WorkerClient([\"ace\"], \"ace/mode/javascript_worker\", \"JavaScriptWorker\");\n worker.attachToDocument(session.getDocument());\n\n worker.on(\"annotate\", function(results) {\n session.setAnnotations(results.data);\n });\n\n worker.on(\"terminate\", function() {\n session.clearAnnotations();\n });\n\n return worker;\n };\n\n this.$id = \"ace/mode/javascript\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n});\n\nace.define(\"ace/mode/sjs_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/javascript_highlight_rules\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar JavaScriptHighlightRules = require(\"./javascript_highlight_rules\").JavaScriptHighlightRules;\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar SJSHighlightRules = function() {\n var parent = new JavaScriptHighlightRules({noES6: true});\n var escapedRe = \"\\\\\\\\(?:x[0-9a-fA-F]{2}|\" + // hex\n \"u[0-9a-fA-F]{4}|\" + // unicode\n \"[0-2][0-7]{0,2}|\" + // oct\n \"3[0-6][0-7]?|\" + // oct\n \"37[0-7]?|\" + // oct\n \"[4-7][0-7]?|\" + //oct\n \".)\";\n\n var contextAware = function(f) {\n f.isContextAware = true;\n return f;\n };\n\n var ctxBegin = function(opts) {\n return {\n token: opts.token,\n regex: opts.regex,\n next: contextAware(function(currentState, stack) {\n if (stack.length === 0)\n stack.unshift(currentState);\n stack.unshift(opts.next);\n return opts.next;\n })\n };\n };\n\n var ctxEnd = function(opts) {\n return {\n token: opts.token,\n regex: opts.regex,\n next: contextAware(function(currentState, stack) {\n stack.shift();\n return stack[0] || \"start\";\n })\n };\n };\n\n this.$rules = parent.$rules;\n this.$rules.no_regex = [\n {\n token: \"keyword\",\n regex: \"(waitfor|or|and|collapse|spawn|retract)\\\\b\"\n },\n {\n token: \"keyword.operator\",\n regex: \"(->|=>|\\\\.\\\\.)\"\n },\n {\n token: \"variable.language\",\n regex: \"(hold|default)\\\\b\"\n },\n ctxBegin({\n token: \"string\",\n regex: \"`\",\n next: \"bstring\"\n }),\n ctxBegin({\n token: \"string\",\n regex: '\"',\n next: \"qqstring\"\n }),\n ctxBegin({\n token: \"string\",\n regex: '\"',\n next: \"qqstring\"\n }),\n {\n token: [\"paren.lparen\", \"text\", \"paren.rparen\"],\n regex: \"(\\\\{)(\\\\s*)(\\\\|)\",\n next: \"block_arguments\"\n }\n\n ].concat(this.$rules.no_regex);\n\n this.$rules.block_arguments = [\n {\n token: \"paren.rparen\",\n regex: \"\\\\|\",\n next: \"no_regex\"\n }\n ].concat(this.$rules.function_arguments);\n\n this.$rules.bstring = [\n {\n token : \"constant.language.escape\",\n regex : escapedRe\n },\n {\n token : \"string\",\n regex : \"\\\\\\\\$\",\n next: \"bstring\"\n },\n ctxBegin({\n token : \"paren.lparen\",\n regex : \"\\\\$\\\\{\",\n next: \"string_interp\"\n }),\n ctxBegin({\n token : \"paren.lparen\",\n regex : \"\\\\$\",\n next: \"bstring_interp_single\"\n }),\n ctxEnd({\n token : \"string\",\n regex : \"`\"\n }),\n {\n defaultToken: \"string\"\n }\n ];\n \n this.$rules.qqstring = [\n {\n token : \"constant.language.escape\",\n regex : escapedRe\n },\n {\n token : \"string\",\n regex : \"\\\\\\\\$\",\n next: \"qqstring\"\n },\n ctxBegin({\n token : \"paren.lparen\",\n regex : \"#\\\\{\",\n next: \"string_interp\"\n }),\n ctxEnd({\n token : \"string\",\n regex : '\"'\n }),\n {\n defaultToken: \"string\"\n }\n ];\n var embeddableRules = [];\n for (var i=0; i < this.$rules.no_regex.length; i++) {\n var rule = this.$rules.no_regex[i];\n var token = String(rule.token);\n if (token.indexOf('paren') == -1 && (!rule.next || rule.next.isContextAware)) {\n embeddableRules.push(rule);\n }\n }\n\n this.$rules.string_interp = [\n ctxEnd({\n token: \"paren.rparen\",\n regex: \"\\\\}\"\n }),\n ctxBegin({\n token: \"paren.lparen\",\n regex: '{',\n next: \"string_interp\"\n })\n ].concat(embeddableRules);\n this.$rules.bstring_interp_single = [\n {\n token: [\"identifier\", \"paren.lparen\"],\n regex: '(\\\\w+)(\\\\()',\n next: 'bstring_interp_single_call'\n },\n ctxEnd({\n token : \"identifier\",\n regex : \"\\\\w*\"\n })\n ];\n this.$rules.bstring_interp_single_call = [\n ctxBegin({\n token: \"paren.lparen\",\n regex: \"\\\\(\",\n next: \"bstring_interp_single_call\"\n }),\n ctxEnd({\n token: \"paren.rparen\",\n regex: \"\\\\)\"\n })\n ].concat(embeddableRules);\n};\noop.inherits(SJSHighlightRules, TextHighlightRules);\n\nexports.SJSHighlightRules = SJSHighlightRules;\n});\n\nace.define(\"ace/mode/sjs\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/javascript\",\"ace/mode/sjs_highlight_rules\",\"ace/mode/matching_brace_outdent\",\"ace/mode/behaviour/cstyle\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\nvar oop = require(\"../lib/oop\");\nvar JSMode = require(\"./javascript\").Mode;\nvar SJSHighlightRules = require(\"./sjs_highlight_rules\").SJSHighlightRules;\nvar MatchingBraceOutdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\nvar CstyleBehaviour = require(\"./behaviour/cstyle\").CstyleBehaviour;\nvar CStyleFoldMode = require(\"./folding/cstyle\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = SJSHighlightRules;\n this.$outdent = new MatchingBraceOutdent();\n this.$behaviour = new CstyleBehaviour();\n this.foldingRules = new CStyleFoldMode();\n};\noop.inherits(Mode, JSMode);\n(function() {\n this.createWorker = function(session) {\n return null;\n };\n this.$id = \"ace/mode/sjs\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/sjs\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file3e := &embedded.EmbeddedFile{ Filename: "4d29b950b93478eda8a5380fbce1ec1e.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/doc_comment_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar DocCommentHighlightRules = function() {\n this.$rules = {\n \"start\" : [ {\n token : \"comment.doc.tag\",\n regex : \"@[\\\\w\\\\d_]+\" // TODO: fix email addresses\n }, \n DocCommentHighlightRules.getTagRule(),\n {\n defaultToken : \"comment.doc\",\n caseInsensitive: true\n }]\n };\n};\n\noop.inherits(DocCommentHighlightRules, TextHighlightRules);\n\nDocCommentHighlightRules.getTagRule = function(start) {\n return {\n token : \"comment.doc.tag.storage.type\",\n regex : \"\\\\b(?:TODO|FIXME|XXX|HACK)\\\\b\"\n };\n};\n\nDocCommentHighlightRules.getStartRule = function(start) {\n return {\n token : \"comment.doc\", // doc comment\n regex : \"\\\\/\\\\*(?=\\\\*)\",\n next : start\n };\n};\n\nDocCommentHighlightRules.getEndRule = function (start) {\n return {\n token : \"comment.doc\", // closing comment\n regex : \"\\\\*\\\\/\",\n next : start\n };\n};\n\n\nexports.DocCommentHighlightRules = DocCommentHighlightRules;\n\n});\n\nace.define(\"ace/mode/javascript_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/doc_comment_highlight_rules\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar DocCommentHighlightRules = require(\"./doc_comment_highlight_rules\").DocCommentHighlightRules;\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar identifierRe = \"[a-zA-Z\\\\$_\\u00a1-\\uffff][a-zA-Z\\\\d\\\\$_\\u00a1-\\uffff]*\";\n\nvar JavaScriptHighlightRules = function(options) {\n var keywordMapper = this.createKeywordMapper({\n \"variable.language\":\n \"Array|Boolean|Date|Function|Iterator|Number|Object|RegExp|String|Proxy|\" + // Constructors\n \"Namespace|QName|XML|XMLList|\" + // E4X\n \"ArrayBuffer|Float32Array|Float64Array|Int16Array|Int32Array|Int8Array|\" +\n \"Uint16Array|Uint32Array|Uint8Array|Uint8ClampedArray|\" +\n \"Error|EvalError|InternalError|RangeError|ReferenceError|StopIteration|\" + // Errors\n \"SyntaxError|TypeError|URIError|\" +\n \"decodeURI|decodeURIComponent|encodeURI|encodeURIComponent|eval|isFinite|\" + // Non-constructor functions\n \"isNaN|parseFloat|parseInt|\" +\n \"JSON|Math|\" + // Other\n \"this|arguments|prototype|window|document\" , // Pseudo\n \"keyword\":\n \"const|yield|import|get|set|async|await|\" +\n \"break|case|catch|continue|default|delete|do|else|finally|for|function|\" +\n \"if|in|of|instanceof|new|return|switch|throw|try|typeof|let|var|while|with|debugger|\" +\n \"__parent__|__count__|escape|unescape|with|__proto__|\" +\n \"class|enum|extends|super|export|implements|private|public|interface|package|protected|static\",\n \"storage.type\":\n \"const|let|var|function\",\n \"constant.language\":\n \"null|Infinity|NaN|undefined\",\n \"support.function\":\n \"alert\",\n \"constant.language.boolean\": \"true|false\"\n }, \"identifier\");\n var kwBeforeRe = \"case|do|else|finally|in|instanceof|return|throw|try|typeof|yield|void\";\n\n var escapedRe = \"\\\\\\\\(?:x[0-9a-fA-F]{2}|\" + // hex\n \"u[0-9a-fA-F]{4}|\" + // unicode\n \"u{[0-9a-fA-F]{1,6}}|\" + // es6 unicode\n \"[0-2][0-7]{0,2}|\" + // oct\n \"3[0-7][0-7]?|\" + // oct\n \"[4-7][0-7]?|\" + //oct\n \".)\";\n\n this.$rules = {\n \"no_regex\" : [\n DocCommentHighlightRules.getStartRule(\"doc-start\"),\n comments(\"no_regex\"),\n {\n token : \"string\",\n regex : \"'(?=.)\",\n next : \"qstring\"\n }, {\n token : \"string\",\n regex : '\"(?=.)',\n next : \"qqstring\"\n }, {\n token : \"constant.numeric\", // hexadecimal, octal and binary\n regex : /0(?:[xX][0-9a-fA-F]+|[oO][0-7]+|[bB][01]+)\\b/\n }, {\n token : \"constant.numeric\", // decimal integers and floats\n regex : /(?:\\d\\d*(?:\\.\\d*)?|\\.\\d+)(?:[eE][+-]?\\d+\\b)?/\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"support.function\",\n \"punctuation.operator\", \"entity.name.function\", \"text\",\"keyword.operator\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(prototype)(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"entity.name.function\", \"text\", \"keyword.operator\", \"text\", \"storage.type\",\n \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\",\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s+)(\\\\w+)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(function)(\\\\s+)(\" + identifierRe + \")(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"entity.name.function\", \"text\", \"punctuation.operator\",\n \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\s*)(:)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"text\", \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(:)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : \"keyword\",\n regex : \"from(?=\\\\s*('|\\\"))\"\n }, {\n token : \"keyword\",\n regex : \"(?:\" + kwBeforeRe + \")\\\\b\",\n next : \"start\"\n }, {\n token : [\"support.constant\"],\n regex : /that\\b/\n }, {\n token : [\"storage.type\", \"punctuation.operator\", \"support.function.firebug\"],\n regex : /(console)(\\.)(warn|info|log|error|time|trace|timeEnd|assert)\\b/\n }, {\n token : keywordMapper,\n regex : identifierRe\n }, {\n token : \"punctuation.operator\",\n regex : /[.](?![.])/,\n next : \"property\"\n }, {\n token : \"storage.type\",\n regex : /=>/,\n next : \"start\"\n }, {\n token : \"keyword.operator\",\n regex : /--|\\+\\+|\\.{3}|===|==|=|!=|!==|<+=?|>+=?|!|&&|\\|\\||\\?:|[!$%&*+\\-~\\/^]=?/,\n next : \"start\"\n }, {\n token : \"punctuation.operator\",\n regex : /[?:,;.]/,\n next : \"start\"\n }, {\n token : \"paren.lparen\",\n regex : /[\\[({]/,\n next : \"start\"\n }, {\n token : \"paren.rparen\",\n regex : /[\\])}]/\n }, {\n token: \"comment\",\n regex: /^#!.*$/\n }\n ],\n property: [{\n token : \"text\",\n regex : \"\\\\s+\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\",\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(?:(\\\\s+)(\\\\w+))?(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : \"punctuation.operator\",\n regex : /[.](?![.])/\n }, {\n token : \"support.function\",\n regex : /(s(?:h(?:ift|ow(?:Mod(?:elessDialog|alDialog)|Help))|croll(?:X|By(?:Pages|Lines)?|Y|To)?|t(?:op|rike)|i(?:n|zeToContent|debar|gnText)|ort|u(?:p|b(?:str(?:ing)?)?)|pli(?:ce|t)|e(?:nd|t(?:Re(?:sizable|questHeader)|M(?:i(?:nutes|lliseconds)|onth)|Seconds|Ho(?:tKeys|urs)|Year|Cursor|Time(?:out)?|Interval|ZOptions|Date|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Date|FullYear)|FullYear|Active)|arch)|qrt|lice|avePreferences|mall)|h(?:ome|andleEvent)|navigate|c(?:har(?:CodeAt|At)|o(?:s|n(?:cat|textual|firm)|mpile)|eil|lear(?:Timeout|Interval)?|a(?:ptureEvents|ll)|reate(?:StyleSheet|Popup|EventObject))|t(?:o(?:GMTString|S(?:tring|ource)|U(?:TCString|pperCase)|Lo(?:caleString|werCase))|est|a(?:n|int(?:Enabled)?))|i(?:s(?:NaN|Finite)|ndexOf|talics)|d(?:isableExternalCapture|ump|etachEvent)|u(?:n(?:shift|taint|escape|watch)|pdateCommands)|j(?:oin|avaEnabled)|p(?:o(?:p|w)|ush|lugins.refresh|a(?:ddings|rse(?:Int|Float)?)|r(?:int|ompt|eference))|e(?:scape|nableExternalCapture|val|lementFromPoint|x(?:p|ec(?:Script|Command)?))|valueOf|UTC|queryCommand(?:State|Indeterm|Enabled|Value)|f(?:i(?:nd|le(?:ModifiedDate|Size|CreatedDate|UpdatedDate)|xed)|o(?:nt(?:size|color)|rward)|loor|romCharCode)|watch|l(?:ink|o(?:ad|g)|astIndexOf)|a(?:sin|nchor|cos|t(?:tachEvent|ob|an(?:2)?)|pply|lert|b(?:s|ort))|r(?:ou(?:nd|teEvents)|e(?:size(?:By|To)|calc|turnValue|place|verse|l(?:oad|ease(?:Capture|Events)))|andom)|g(?:o|et(?:ResponseHeader|M(?:i(?:nutes|lliseconds)|onth)|Se(?:conds|lection)|Hours|Year|Time(?:zoneOffset)?|Da(?:y|te)|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Da(?:y|te)|FullYear)|FullYear|A(?:ttention|llResponseHeaders)))|m(?:in|ove(?:B(?:y|elow)|To(?:Absolute)?|Above)|ergeAttributes|a(?:tch|rgins|x))|b(?:toa|ig|o(?:ld|rderWidths)|link|ack))\\b(?=\\()/\n }, {\n token : \"support.function.dom\",\n regex : /(s(?:ub(?:stringData|mit)|plitText|e(?:t(?:NamedItem|Attribute(?:Node)?)|lect))|has(?:ChildNodes|Feature)|namedItem|c(?:l(?:ick|o(?:se|neNode))|reate(?:C(?:omment|DATASection|aption)|T(?:Head|extNode|Foot)|DocumentFragment|ProcessingInstruction|E(?:ntityReference|lement)|Attribute))|tabIndex|i(?:nsert(?:Row|Before|Cell|Data)|tem)|open|delete(?:Row|C(?:ell|aption)|T(?:Head|Foot)|Data)|focus|write(?:ln)?|a(?:dd|ppend(?:Child|Data))|re(?:set|place(?:Child|Data)|move(?:NamedItem|Child|Attribute(?:Node)?)?)|get(?:NamedItem|Element(?:sBy(?:Name|TagName|ClassName)|ById)|Attribute(?:Node)?)|blur)\\b(?=\\()/\n }, {\n token : \"support.constant\",\n regex : /(s(?:ystemLanguage|cr(?:ipts|ollbars|een(?:X|Y|Top|Left))|t(?:yle(?:Sheets)?|atus(?:Text|bar)?)|ibling(?:Below|Above)|ource|uffixes|e(?:curity(?:Policy)?|l(?:ection|f)))|h(?:istory|ost(?:name)?|as(?:h|Focus))|y|X(?:MLDocument|SLDocument)|n(?:ext|ame(?:space(?:s|URI)|Prop))|M(?:IN_VALUE|AX_VALUE)|c(?:haracterSet|o(?:n(?:structor|trollers)|okieEnabled|lorDepth|mp(?:onents|lete))|urrent|puClass|l(?:i(?:p(?:boardData)?|entInformation)|osed|asses)|alle(?:e|r)|rypto)|t(?:o(?:olbar|p)|ext(?:Transform|Indent|Decoration|Align)|ags)|SQRT(?:1_2|2)|i(?:n(?:ner(?:Height|Width)|put)|ds|gnoreCase)|zIndex|o(?:scpu|n(?:readystatechange|Line)|uter(?:Height|Width)|p(?:sProfile|ener)|ffscreenBuffering)|NEGATIVE_INFINITY|d(?:i(?:splay|alog(?:Height|Top|Width|Left|Arguments)|rectories)|e(?:scription|fault(?:Status|Ch(?:ecked|arset)|View)))|u(?:ser(?:Profile|Language|Agent)|n(?:iqueID|defined)|pdateInterval)|_content|p(?:ixelDepth|ort|ersonalbar|kcs11|l(?:ugins|atform)|a(?:thname|dding(?:Right|Bottom|Top|Left)|rent(?:Window|Layer)?|ge(?:X(?:Offset)?|Y(?:Offset)?))|r(?:o(?:to(?:col|type)|duct(?:Sub)?|mpter)|e(?:vious|fix)))|e(?:n(?:coding|abledPlugin)|x(?:ternal|pando)|mbeds)|v(?:isibility|endor(?:Sub)?|Linkcolor)|URLUnencoded|P(?:I|OSITIVE_INFINITY)|f(?:ilename|o(?:nt(?:Size|Family|Weight)|rmName)|rame(?:s|Element)|gColor)|E|whiteSpace|l(?:i(?:stStyleType|n(?:eHeight|kColor))|o(?:ca(?:tion(?:bar)?|lName)|wsrc)|e(?:ngth|ft(?:Context)?)|a(?:st(?:M(?:odified|atch)|Index|Paren)|yer(?:s|X)|nguage))|a(?:pp(?:MinorVersion|Name|Co(?:deName|re)|Version)|vail(?:Height|Top|Width|Left)|ll|r(?:ity|guments)|Linkcolor|bove)|r(?:ight(?:Context)?|e(?:sponse(?:XML|Text)|adyState))|global|x|m(?:imeTypes|ultiline|enubar|argin(?:Right|Bottom|Top|Left))|L(?:N(?:10|2)|OG(?:10E|2E))|b(?:o(?:ttom|rder(?:Width|RightWidth|BottomWidth|Style|Color|TopWidth|LeftWidth))|ufferDepth|elow|ackground(?:Color|Image)))\\b/\n }, {\n token : \"identifier\",\n regex : identifierRe\n }, {\n regex: \"\",\n token: \"empty\",\n next: \"no_regex\"\n }\n ],\n \"start\": [\n DocCommentHighlightRules.getStartRule(\"doc-start\"),\n comments(\"start\"),\n {\n token: \"string.regexp\",\n regex: \"\\\\/\",\n next: \"regex\"\n }, {\n token : \"text\",\n regex : \"\\\\s+|^$\",\n next : \"start\"\n }, {\n token: \"empty\",\n regex: \"\",\n next: \"no_regex\"\n }\n ],\n \"regex\": [\n {\n token: \"regexp.keyword.operator\",\n regex: \"\\\\\\\\(?:u[\\\\da-fA-F]{4}|x[\\\\da-fA-F]{2}|.)\"\n }, {\n token: \"string.regexp\",\n regex: \"/[sxngimy]*\",\n next: \"no_regex\"\n }, {\n token : \"invalid\",\n regex: /\\{\\d+\\b,?\\d*\\}[+*]|[+*$^?][+*]|[$^][?]|\\?{3,}/\n }, {\n token : \"constant.language.escape\",\n regex: /\\(\\?[:=!]|\\)|\\{\\d+\\b,?\\d*\\}|[+*]\\?|[()$^+*?.]/\n }, {\n token : \"constant.language.delimiter\",\n regex: /\\|/\n }, {\n token: \"constant.language.escape\",\n regex: /\\[\\^?/,\n next: \"regex_character_class\"\n }, {\n token: \"empty\",\n regex: \"$\",\n next: \"no_regex\"\n }, {\n defaultToken: \"string.regexp\"\n }\n ],\n \"regex_character_class\": [\n {\n token: \"regexp.charclass.keyword.operator\",\n regex: \"\\\\\\\\(?:u[\\\\da-fA-F]{4}|x[\\\\da-fA-F]{2}|.)\"\n }, {\n token: \"constant.language.escape\",\n regex: \"]\",\n next: \"regex\"\n }, {\n token: \"constant.language.escape\",\n regex: \"-\"\n }, {\n token: \"empty\",\n regex: \"$\",\n next: \"no_regex\"\n }, {\n defaultToken: \"string.regexp.charachterclass\"\n }\n ],\n \"function_arguments\": [\n {\n token: \"variable.parameter\",\n regex: identifierRe\n }, {\n token: \"punctuation.operator\",\n regex: \"[, ]+\"\n }, {\n token: \"punctuation.operator\",\n regex: \"$\"\n }, {\n token: \"empty\",\n regex: \"\",\n next: \"no_regex\"\n }\n ],\n \"qqstring\" : [\n {\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"string\",\n regex : \"\\\\\\\\$\",\n consumeLineEnd : true\n }, {\n token : \"string\",\n regex : '\"|$',\n next : \"no_regex\"\n }, {\n defaultToken: \"string\"\n }\n ],\n \"qstring\" : [\n {\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"string\",\n regex : \"\\\\\\\\$\",\n consumeLineEnd : true\n }, {\n token : \"string\",\n regex : \"'|$\",\n next : \"no_regex\"\n }, {\n defaultToken: \"string\"\n }\n ]\n };\n\n\n if (!options || !options.noES6) {\n this.$rules.no_regex.unshift({\n regex: \"[{}]\", onMatch: function(val, state, stack) {\n this.next = val == \"{\" ? this.nextState : \"\";\n if (val == \"{\" && stack.length) {\n stack.unshift(\"start\", state);\n }\n else if (val == \"}\" && stack.length) {\n stack.shift();\n this.next = stack.shift();\n if (this.next.indexOf(\"string\") != -1 || this.next.indexOf(\"jsx\") != -1)\n return \"paren.quasi.end\";\n }\n return val == \"{\" ? \"paren.lparen\" : \"paren.rparen\";\n },\n nextState: \"start\"\n }, {\n token : \"string.quasi.start\",\n regex : /`/,\n push : [{\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"paren.quasi.start\",\n regex : /\\${/,\n push : \"start\"\n }, {\n token : \"string.quasi.end\",\n regex : /`/,\n next : \"pop\"\n }, {\n defaultToken: \"string.quasi\"\n }]\n });\n\n if (!options || options.jsx != false)\n JSX.call(this);\n }\n\n this.embedRules(DocCommentHighlightRules, \"doc-\",\n [ DocCommentHighlightRules.getEndRule(\"no_regex\") ]);\n\n this.normalizeRules();\n};\n\noop.inherits(JavaScriptHighlightRules, TextHighlightRules);\n\nfunction JSX() {\n var tagRegex = identifierRe.replace(\"\\\\d\", \"\\\\d\\\\-\");\n var jsxTag = {\n onMatch : function(val, state, stack) {\n var offset = val.charAt(1) == \"/\" ? 2 : 1;\n if (offset == 1) {\n if (state != this.nextState)\n stack.unshift(this.next, this.nextState, 0);\n else\n stack.unshift(this.next);\n stack[2]++;\n } else if (offset == 2) {\n if (state == this.nextState) {\n stack[1]--;\n if (!stack[1] || stack[1] < 0) {\n stack.shift();\n stack.shift();\n }\n }\n }\n return [{\n type: \"meta.tag.punctuation.\" + (offset == 1 ? \"\" : \"end-\") + \"tag-open.xml\",\n value: val.slice(0, offset)\n }, {\n type: \"meta.tag.tag-name.xml\",\n value: val.substr(offset)\n }];\n },\n regex : \"\",\n onMatch : function(value, currentState, stack) {\n if (currentState == stack[0])\n stack.shift();\n if (value.length == 2) {\n if (stack[0] == this.nextState)\n stack[1]--;\n if (!stack[1] || stack[1] < 0) {\n stack.splice(0, 2);\n }\n }\n this.next = stack[0] || \"start\";\n return [{type: this.token, value: value}];\n },\n nextState: \"jsx\"\n },\n jsxJsRule,\n comments(\"jsxAttributes\"),\n {\n token : \"entity.other.attribute-name.xml\",\n regex : tagRegex\n }, {\n token : \"keyword.operator.attribute-equals.xml\",\n regex : \"=\"\n }, {\n token : \"text.tag-whitespace.xml\",\n regex : \"\\\\s+\"\n }, {\n token : \"string.attribute-value.xml\",\n regex : \"'\",\n stateName : \"jsx_attr_q\",\n push : [\n {token : \"string.attribute-value.xml\", regex: \"'\", next: \"pop\"},\n {include : \"reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n }, {\n token : \"string.attribute-value.xml\",\n regex : '\"',\n stateName : \"jsx_attr_qq\",\n push : [\n {token : \"string.attribute-value.xml\", regex: '\"', next: \"pop\"},\n {include : \"reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n },\n jsxTag\n ];\n this.$rules.reference = [{\n token : \"constant.language.escape.reference.xml\",\n regex : \"(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\\\.-]+;)\"\n }];\n}\n\nfunction comments(next) {\n return [\n {\n token : \"comment\", // multi line comment\n regex : /\\/\\*/,\n next: [\n DocCommentHighlightRules.getTagRule(),\n {token : \"comment\", regex : \"\\\\*\\\\/\", next : next || \"pop\"},\n {defaultToken : \"comment\", caseInsensitive: true}\n ]\n }, {\n token : \"comment\",\n regex : \"\\\\/\\\\/\",\n next: [\n DocCommentHighlightRules.getTagRule(),\n {token : \"comment\", regex : \"$|^\", next : next || \"pop\"},\n {defaultToken : \"comment\", caseInsensitive: true}\n ]\n }\n ];\n}\nexports.JavaScriptHighlightRules = JavaScriptHighlightRules;\n});\n\nace.define(\"ace/mode/matching_brace_outdent\",[\"require\",\"exports\",\"module\",\"ace/range\"], function(require, exports, module) {\n\"use strict\";\n\nvar Range = require(\"../range\").Range;\n\nvar MatchingBraceOutdent = function() {};\n\n(function() {\n\n this.checkOutdent = function(line, input) {\n if (! /^\\s+$/.test(line))\n return false;\n\n return /^\\s*\\}/.test(input);\n };\n\n this.autoOutdent = function(doc, row) {\n var line = doc.getLine(row);\n var match = line.match(/^(\\s*\\})/);\n\n if (!match) return 0;\n\n var column = match[1].length;\n var openBracePos = doc.findMatchingBracket({row: row, column: column});\n\n if (!openBracePos || openBracePos.row == row) return 0;\n\n var indent = this.$getIndent(doc.getLine(openBracePos.row));\n doc.replace(new Range(row, 0, row, column-1), indent);\n };\n\n this.$getIndent = function(line) {\n return line.match(/^\\s*/)[0];\n };\n\n}).call(MatchingBraceOutdent.prototype);\n\nexports.MatchingBraceOutdent = MatchingBraceOutdent;\n});\n\nace.define(\"ace/mode/folding/cstyle\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/range\",\"ace/mode/folding/fold_mode\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Range = require(\"../../range\").Range;\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function(commentRegex) {\n if (commentRegex) {\n this.foldingStartMarker = new RegExp(\n this.foldingStartMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.start)\n );\n this.foldingStopMarker = new RegExp(\n this.foldingStopMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.end)\n );\n }\n};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n \n this.foldingStartMarker = /([\\{\\[\\(])[^\\}\\]\\)]*$|^\\s*(\\/\\*)/;\n this.foldingStopMarker = /^[^\\[\\{\\(]*([\\}\\]\\)])|^[\\s\\*]*(\\*\\/)/;\n this.singleLineBlockCommentRe= /^\\s*(\\/\\*).*\\*\\/\\s*$/;\n this.tripleStarBlockCommentRe = /^\\s*(\\/\\*\\*\\*).*\\*\\/\\s*$/;\n this.startRegionRe = /^\\s*(\\/\\*|\\/\\/)#?region\\b/;\n this._getFoldWidgetBase = this.getFoldWidget;\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n \n if (this.singleLineBlockCommentRe.test(line)) {\n if (!this.startRegionRe.test(line) && !this.tripleStarBlockCommentRe.test(line))\n return \"\";\n }\n \n var fw = this._getFoldWidgetBase(session, foldStyle, row);\n \n if (!fw && this.startRegionRe.test(line))\n return \"start\"; // lineCommentRegionStart\n \n return fw;\n };\n\n this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {\n var line = session.getLine(row);\n \n if (this.startRegionRe.test(line))\n return this.getCommentRegionBlock(session, line, row);\n \n var match = line.match(this.foldingStartMarker);\n if (match) {\n var i = match.index;\n\n if (match[1])\n return this.openingBracketBlock(session, match[1], row, i);\n \n var range = session.getCommentFoldRange(row, i + match[0].length, 1);\n \n if (range && !range.isMultiLine()) {\n if (forceMultiline) {\n range = this.getSectionRange(session, row);\n } else if (foldStyle != \"all\")\n range = null;\n }\n \n return range;\n }\n\n if (foldStyle === \"markbegin\")\n return;\n\n var match = line.match(this.foldingStopMarker);\n if (match) {\n var i = match.index + match[0].length;\n\n if (match[1])\n return this.closingBracketBlock(session, match[1], row, i);\n\n return session.getCommentFoldRange(row, i, -1);\n }\n };\n \n this.getSectionRange = function(session, row) {\n var line = session.getLine(row);\n var startIndent = line.search(/\\S/);\n var startRow = row;\n var startColumn = line.length;\n row = row + 1;\n var endRow = row;\n var maxRow = session.getLength();\n while (++row < maxRow) {\n line = session.getLine(row);\n var indent = line.search(/\\S/);\n if (indent === -1)\n continue;\n if (startIndent > indent)\n break;\n var subRange = this.getFoldWidgetRange(session, \"all\", row);\n \n if (subRange) {\n if (subRange.start.row <= startRow) {\n break;\n } else if (subRange.isMultiLine()) {\n row = subRange.end.row;\n } else if (startIndent == indent) {\n break;\n }\n }\n endRow = row;\n }\n \n return new Range(startRow, startColumn, endRow, session.getLine(endRow).length);\n };\n this.getCommentRegionBlock = function(session, line, row) {\n var startColumn = line.search(/\\s*$/);\n var maxRow = session.getLength();\n var startRow = row;\n \n var re = /^\\s*(?:\\/\\*|\\/\\/|--)#?(end)?region\\b/;\n var depth = 1;\n while (++row < maxRow) {\n line = session.getLine(row);\n var m = re.exec(line);\n if (!m) continue;\n if (m[1]) depth--;\n else depth++;\n\n if (!depth) break;\n }\n\n var endRow = row;\n if (endRow > startRow) {\n return new Range(startRow, startColumn, endRow, line.length);\n }\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/javascript\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/javascript_highlight_rules\",\"ace/mode/matching_brace_outdent\",\"ace/worker/worker_client\",\"ace/mode/behaviour/cstyle\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar JavaScriptHighlightRules = require(\"./javascript_highlight_rules\").JavaScriptHighlightRules;\nvar MatchingBraceOutdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\nvar WorkerClient = require(\"../worker/worker_client\").WorkerClient;\nvar CstyleBehaviour = require(\"./behaviour/cstyle\").CstyleBehaviour;\nvar CStyleFoldMode = require(\"./folding/cstyle\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = JavaScriptHighlightRules;\n \n this.$outdent = new MatchingBraceOutdent();\n this.$behaviour = new CstyleBehaviour();\n this.foldingRules = new CStyleFoldMode();\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.lineCommentStart = \"//\";\n this.blockComment = {start: \"/*\", end: \"*/\"};\n this.$quotes = {'\"': '\"', \"'\": \"'\", \"`\": \"`\"};\n\n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n\n var tokenizedLine = this.getTokenizer().getLineTokens(line, state);\n var tokens = tokenizedLine.tokens;\n var endState = tokenizedLine.state;\n\n if (tokens.length && tokens[tokens.length-1].type == \"comment\") {\n return indent;\n }\n\n if (state == \"start\" || state == \"no_regex\") {\n var match = line.match(/^.*(?:\\bcase\\b.*:|[\\{\\(\\[])\\s*$/);\n if (match) {\n indent += tab;\n }\n } else if (state == \"doc-start\") {\n if (endState == \"start\" || endState == \"no_regex\") {\n return \"\";\n }\n var match = line.match(/^\\s*(\\/?)\\*/);\n if (match) {\n if (match[1]) {\n indent += \" \";\n }\n indent += \"* \";\n }\n }\n\n return indent;\n };\n\n this.checkOutdent = function(state, line, input) {\n return this.$outdent.checkOutdent(line, input);\n };\n\n this.autoOutdent = function(state, doc, row) {\n this.$outdent.autoOutdent(doc, row);\n };\n\n this.createWorker = function(session) {\n var worker = new WorkerClient([\"ace\"], \"ace/mode/javascript_worker\", \"JavaScriptWorker\");\n worker.attachToDocument(session.getDocument());\n\n worker.on(\"annotate\", function(results) {\n session.setAnnotations(results.data);\n });\n\n worker.on(\"terminate\", function() {\n session.clearAnnotations();\n });\n\n return worker;\n };\n\n this.$id = \"ace/mode/javascript\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n});\n\nace.define(\"ace/mode/css_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar supportType = exports.supportType = \"align-content|align-items|align-self|all|animation|animation-delay|animation-direction|animation-duration|animation-fill-mode|animation-iteration-count|animation-name|animation-play-state|animation-timing-function|backface-visibility|background|background-attachment|background-blend-mode|background-clip|background-color|background-image|background-origin|background-position|background-repeat|background-size|border|border-bottom|border-bottom-color|border-bottom-left-radius|border-bottom-right-radius|border-bottom-style|border-bottom-width|border-collapse|border-color|border-image|border-image-outset|border-image-repeat|border-image-slice|border-image-source|border-image-width|border-left|border-left-color|border-left-style|border-left-width|border-radius|border-right|border-right-color|border-right-style|border-right-width|border-spacing|border-style|border-top|border-top-color|border-top-left-radius|border-top-right-radius|border-top-style|border-top-width|border-width|bottom|box-shadow|box-sizing|caption-side|clear|clip|color|column-count|column-fill|column-gap|column-rule|column-rule-color|column-rule-style|column-rule-width|column-span|column-width|columns|content|counter-increment|counter-reset|cursor|direction|display|empty-cells|filter|flex|flex-basis|flex-direction|flex-flow|flex-grow|flex-shrink|flex-wrap|float|font|font-family|font-size|font-size-adjust|font-stretch|font-style|font-variant|font-weight|hanging-punctuation|height|justify-content|left|letter-spacing|line-height|list-style|list-style-image|list-style-position|list-style-type|margin|margin-bottom|margin-left|margin-right|margin-top|max-height|max-width|max-zoom|min-height|min-width|min-zoom|nav-down|nav-index|nav-left|nav-right|nav-up|opacity|order|outline|outline-color|outline-offset|outline-style|outline-width|overflow|overflow-x|overflow-y|padding|padding-bottom|padding-left|padding-right|padding-top|page-break-after|page-break-before|page-break-inside|perspective|perspective-origin|position|quotes|resize|right|tab-size|table-layout|text-align|text-align-last|text-decoration|text-decoration-color|text-decoration-line|text-decoration-style|text-indent|text-justify|text-overflow|text-shadow|text-transform|top|transform|transform-origin|transform-style|transition|transition-delay|transition-duration|transition-property|transition-timing-function|unicode-bidi|user-select|user-zoom|vertical-align|visibility|white-space|width|word-break|word-spacing|word-wrap|z-index\";\nvar supportFunction = exports.supportFunction = \"rgb|rgba|url|attr|counter|counters\";\nvar supportConstant = exports.supportConstant = \"absolute|after-edge|after|all-scroll|all|alphabetic|always|antialiased|armenian|auto|avoid-column|avoid-page|avoid|balance|baseline|before-edge|before|below|bidi-override|block-line-height|block|bold|bolder|border-box|both|bottom|box|break-all|break-word|capitalize|caps-height|caption|center|central|char|circle|cjk-ideographic|clone|close-quote|col-resize|collapse|column|consider-shifts|contain|content-box|cover|crosshair|cubic-bezier|dashed|decimal-leading-zero|decimal|default|disabled|disc|disregard-shifts|distribute-all-lines|distribute-letter|distribute-space|distribute|dotted|double|e-resize|ease-in|ease-in-out|ease-out|ease|ellipsis|end|exclude-ruby|fill|fixed|georgian|glyphs|grid-height|groove|hand|hanging|hebrew|help|hidden|hiragana-iroha|hiragana|horizontal|icon|ideograph-alpha|ideograph-numeric|ideograph-parenthesis|ideograph-space|ideographic|inactive|include-ruby|inherit|initial|inline-block|inline-box|inline-line-height|inline-table|inline|inset|inside|inter-ideograph|inter-word|invert|italic|justify|katakana-iroha|katakana|keep-all|last|left|lighter|line-edge|line-through|line|linear|list-item|local|loose|lower-alpha|lower-greek|lower-latin|lower-roman|lowercase|lr-tb|ltr|mathematical|max-height|max-size|medium|menu|message-box|middle|move|n-resize|ne-resize|newspaper|no-change|no-close-quote|no-drop|no-open-quote|no-repeat|none|normal|not-allowed|nowrap|nw-resize|oblique|open-quote|outset|outside|overline|padding-box|page|pointer|pre-line|pre-wrap|pre|preserve-3d|progress|relative|repeat-x|repeat-y|repeat|replaced|reset-size|ridge|right|round|row-resize|rtl|s-resize|scroll|se-resize|separate|slice|small-caps|small-caption|solid|space|square|start|static|status-bar|step-end|step-start|steps|stretch|strict|sub|super|sw-resize|table-caption|table-cell|table-column-group|table-column|table-footer-group|table-header-group|table-row-group|table-row|table|tb-rl|text-after-edge|text-before-edge|text-bottom|text-size|text-top|text|thick|thin|transparent|underline|upper-alpha|upper-latin|upper-roman|uppercase|use-script|vertical-ideographic|vertical-text|visible|w-resize|wait|whitespace|z-index|zero|zoom\";\nvar supportConstantColor = exports.supportConstantColor = \"aliceblue|antiquewhite|aqua|aquamarine|azure|beige|bisque|black|blanchedalmond|blue|blueviolet|brown|burlywood|cadetblue|chartreuse|chocolate|coral|cornflowerblue|cornsilk|crimson|cyan|darkblue|darkcyan|darkgoldenrod|darkgray|darkgreen|darkgrey|darkkhaki|darkmagenta|darkolivegreen|darkorange|darkorchid|darkred|darksalmon|darkseagreen|darkslateblue|darkslategray|darkslategrey|darkturquoise|darkviolet|deeppink|deepskyblue|dimgray|dimgrey|dodgerblue|firebrick|floralwhite|forestgreen|fuchsia|gainsboro|ghostwhite|gold|goldenrod|gray|green|greenyellow|grey|honeydew|hotpink|indianred|indigo|ivory|khaki|lavender|lavenderblush|lawngreen|lemonchiffon|lightblue|lightcoral|lightcyan|lightgoldenrodyellow|lightgray|lightgreen|lightgrey|lightpink|lightsalmon|lightseagreen|lightskyblue|lightslategray|lightslategrey|lightsteelblue|lightyellow|lime|limegreen|linen|magenta|maroon|mediumaquamarine|mediumblue|mediumorchid|mediumpurple|mediumseagreen|mediumslateblue|mediumspringgreen|mediumturquoise|mediumvioletred|midnightblue|mintcream|mistyrose|moccasin|navajowhite|navy|oldlace|olive|olivedrab|orange|orangered|orchid|palegoldenrod|palegreen|paleturquoise|palevioletred|papayawhip|peachpuff|peru|pink|plum|powderblue|purple|rebeccapurple|red|rosybrown|royalblue|saddlebrown|salmon|sandybrown|seagreen|seashell|sienna|silver|skyblue|slateblue|slategray|slategrey|snow|springgreen|steelblue|tan|teal|thistle|tomato|turquoise|violet|wheat|white|whitesmoke|yellow|yellowgreen\";\nvar supportConstantFonts = exports.supportConstantFonts = \"arial|century|comic|courier|cursive|fantasy|garamond|georgia|helvetica|impact|lucida|symbol|system|tahoma|times|trebuchet|utopia|verdana|webdings|sans-serif|serif|monospace\";\n\nvar numRe = exports.numRe = \"\\\\-?(?:(?:[0-9]+(?:\\\\.[0-9]+)?)|(?:\\\\.[0-9]+))\";\nvar pseudoElements = exports.pseudoElements = \"(\\\\:+)\\\\b(after|before|first-letter|first-line|moz-selection|selection)\\\\b\";\nvar pseudoClasses = exports.pseudoClasses = \"(:)\\\\b(active|checked|disabled|empty|enabled|first-child|first-of-type|focus|hover|indeterminate|invalid|last-child|last-of-type|link|not|nth-child|nth-last-child|nth-last-of-type|nth-of-type|only-child|only-of-type|required|root|target|valid|visited)\\\\b\";\n\nvar CssHighlightRules = function() {\n\n var keywordMapper = this.createKeywordMapper({\n \"support.function\": supportFunction,\n \"support.constant\": supportConstant,\n \"support.type\": supportType,\n \"support.constant.color\": supportConstantColor,\n \"support.constant.fonts\": supportConstantFonts\n }, \"text\", true);\n\n this.$rules = {\n \"start\" : [{\n include : [\"strings\", \"url\", \"comments\"]\n }, {\n token: \"paren.lparen\",\n regex: \"\\\\{\",\n next: \"ruleset\"\n }, {\n token: \"paren.rparen\",\n regex: \"\\\\}\"\n }, {\n token: \"string\",\n regex: \"@(?!viewport)\",\n next: \"media\"\n }, {\n token: \"keyword\",\n regex: \"#[a-z0-9-_]+\"\n }, {\n token: \"keyword\",\n regex: \"%\"\n }, {\n token: \"variable\",\n regex: \"\\\\.[a-z0-9-_]+\"\n }, {\n token: \"string\",\n regex: \":[a-z0-9-_]+\"\n }, {\n token : \"constant.numeric\",\n regex : numRe\n }, {\n token: \"constant\",\n regex: \"[a-z0-9-_]+\"\n }, {\n caseInsensitive: true\n }],\n\n \"media\": [{\n include : [\"strings\", \"url\", \"comments\"]\n }, {\n token: \"paren.lparen\",\n regex: \"\\\\{\",\n next: \"start\"\n }, {\n token: \"paren.rparen\",\n regex: \"\\\\}\",\n next: \"start\"\n }, {\n token: \"string\",\n regex: \";\",\n next: \"start\"\n }, {\n token: \"keyword\",\n regex: \"(?:media|supports|document|charset|import|namespace|media|supports|document\"\n + \"|page|font|keyframes|viewport|counter-style|font-feature-values\"\n + \"|swash|ornaments|annotation|stylistic|styleset|character-variant)\"\n }],\n\n \"comments\" : [{\n token: \"comment\", // multi line comment\n regex: \"\\\\/\\\\*\",\n push: [{\n token : \"comment\",\n regex : \"\\\\*\\\\/\",\n next : \"pop\"\n }, {\n defaultToken : \"comment\"\n }]\n }],\n\n \"ruleset\" : [{\n regex : \"-(webkit|ms|moz|o)-\",\n token : \"text\"\n }, {\n token : \"punctuation.operator\",\n regex : \"[:;]\"\n }, {\n token : \"paren.rparen\",\n regex : \"\\\\}\",\n next : \"start\"\n }, {\n include : [\"strings\", \"url\", \"comments\"]\n }, {\n token : [\"constant.numeric\", \"keyword\"],\n regex : \"(\" + numRe + \")(ch|cm|deg|em|ex|fr|gd|grad|Hz|in|kHz|mm|ms|pc|pt|px|rad|rem|s|turn|vh|vmax|vmin|vm|vw|%)\"\n }, {\n token : \"constant.numeric\",\n regex : numRe\n }, {\n token : \"constant.numeric\", // hex6 color\n regex : \"#[a-f0-9]{6}\"\n }, {\n token : \"constant.numeric\", // hex3 color\n regex : \"#[a-f0-9]{3}\"\n }, {\n token : [\"punctuation\", \"entity.other.attribute-name.pseudo-element.css\"],\n regex : pseudoElements\n }, {\n token : [\"punctuation\", \"entity.other.attribute-name.pseudo-class.css\"],\n regex : pseudoClasses\n }, {\n include: \"url\"\n }, {\n token : keywordMapper,\n regex : \"\\\\-?[a-zA-Z_][a-zA-Z0-9_\\\\-]*\"\n }, {\n caseInsensitive: true\n }],\n\n url: [{\n token : \"support.function\",\n regex : \"(?:url(:?-prefix)?|domain|regexp)\\\\(\",\n push: [{\n token : \"support.function\",\n regex : \"\\\\)\",\n next : \"pop\"\n }, {\n defaultToken: \"string\"\n }]\n }],\n\n strings: [{\n token : \"string.start\",\n regex : \"'\",\n push : [{\n token : \"string.end\",\n regex : \"'|$\",\n next: \"pop\"\n }, {\n include : \"escapes\"\n }, {\n token : \"constant.language.escape\",\n regex : /\\\\$/,\n consumeLineEnd: true\n }, {\n defaultToken: \"string\"\n }]\n }, {\n token : \"string.start\",\n regex : '\"',\n push : [{\n token : \"string.end\",\n regex : '\"|$',\n next: \"pop\"\n }, {\n include : \"escapes\"\n }, {\n token : \"constant.language.escape\",\n regex : /\\\\$/,\n consumeLineEnd: true\n }, {\n defaultToken: \"string\"\n }]\n }],\n escapes: [{\n token : \"constant.language.escape\",\n regex : /\\\\([a-fA-F\\d]{1,6}|[^a-fA-F\\d])/\n }]\n\n };\n\n this.normalizeRules();\n};\n\noop.inherits(CssHighlightRules, TextHighlightRules);\n\nexports.CssHighlightRules = CssHighlightRules;\n\n});\n\nace.define(\"ace/mode/css_completions\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nvar propertyMap = {\n \"background\": {\"#$0\": 1},\n \"background-color\": {\"#$0\": 1, \"transparent\": 1, \"fixed\": 1},\n \"background-image\": {\"url('/$0')\": 1},\n \"background-repeat\": {\"repeat\": 1, \"repeat-x\": 1, \"repeat-y\": 1, \"no-repeat\": 1, \"inherit\": 1},\n \"background-position\": {\"bottom\":2, \"center\":2, \"left\":2, \"right\":2, \"top\":2, \"inherit\":2},\n \"background-attachment\": {\"scroll\": 1, \"fixed\": 1},\n \"background-size\": {\"cover\": 1, \"contain\": 1},\n \"background-clip\": {\"border-box\": 1, \"padding-box\": 1, \"content-box\": 1},\n \"background-origin\": {\"border-box\": 1, \"padding-box\": 1, \"content-box\": 1},\n \"border\": {\"solid $0\": 1, \"dashed $0\": 1, \"dotted $0\": 1, \"#$0\": 1},\n \"border-color\": {\"#$0\": 1},\n \"border-style\": {\"solid\":2, \"dashed\":2, \"dotted\":2, \"double\":2, \"groove\":2, \"hidden\":2, \"inherit\":2, \"inset\":2, \"none\":2, \"outset\":2, \"ridged\":2},\n \"border-collapse\": {\"collapse\": 1, \"separate\": 1},\n \"bottom\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"clear\": {\"left\": 1, \"right\": 1, \"both\": 1, \"none\": 1},\n \"color\": {\"#$0\": 1, \"rgb(#$00,0,0)\": 1},\n \"cursor\": {\"default\": 1, \"pointer\": 1, \"move\": 1, \"text\": 1, \"wait\": 1, \"help\": 1, \"progress\": 1, \"n-resize\": 1, \"ne-resize\": 1, \"e-resize\": 1, \"se-resize\": 1, \"s-resize\": 1, \"sw-resize\": 1, \"w-resize\": 1, \"nw-resize\": 1},\n \"display\": {\"none\": 1, \"block\": 1, \"inline\": 1, \"inline-block\": 1, \"table-cell\": 1},\n \"empty-cells\": {\"show\": 1, \"hide\": 1},\n \"float\": {\"left\": 1, \"right\": 1, \"none\": 1},\n \"font-family\": {\"Arial\":2,\"Comic Sans MS\":2,\"Consolas\":2,\"Courier New\":2,\"Courier\":2,\"Georgia\":2,\"Monospace\":2,\"Sans-Serif\":2, \"Segoe UI\":2,\"Tahoma\":2,\"Times New Roman\":2,\"Trebuchet MS\":2,\"Verdana\": 1},\n \"font-size\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"font-weight\": {\"bold\": 1, \"normal\": 1},\n \"font-style\": {\"italic\": 1, \"normal\": 1},\n \"font-variant\": {\"normal\": 1, \"small-caps\": 1},\n \"height\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"left\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"letter-spacing\": {\"normal\": 1},\n \"line-height\": {\"normal\": 1},\n \"list-style-type\": {\"none\": 1, \"disc\": 1, \"circle\": 1, \"square\": 1, \"decimal\": 1, \"decimal-leading-zero\": 1, \"lower-roman\": 1, \"upper-roman\": 1, \"lower-greek\": 1, \"lower-latin\": 1, \"upper-latin\": 1, \"georgian\": 1, \"lower-alpha\": 1, \"upper-alpha\": 1},\n \"margin\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"margin-right\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"margin-left\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"margin-top\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"margin-bottom\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"max-height\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"max-width\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"min-height\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"min-width\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"overflow\": {\"hidden\": 1, \"visible\": 1, \"auto\": 1, \"scroll\": 1},\n \"overflow-x\": {\"hidden\": 1, \"visible\": 1, \"auto\": 1, \"scroll\": 1},\n \"overflow-y\": {\"hidden\": 1, \"visible\": 1, \"auto\": 1, \"scroll\": 1},\n \"padding\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"padding-top\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"padding-right\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"padding-bottom\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"padding-left\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"page-break-after\": {\"auto\": 1, \"always\": 1, \"avoid\": 1, \"left\": 1, \"right\": 1},\n \"page-break-before\": {\"auto\": 1, \"always\": 1, \"avoid\": 1, \"left\": 1, \"right\": 1},\n \"position\": {\"absolute\": 1, \"relative\": 1, \"fixed\": 1, \"static\": 1},\n \"right\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"table-layout\": {\"fixed\": 1, \"auto\": 1},\n \"text-decoration\": {\"none\": 1, \"underline\": 1, \"line-through\": 1, \"blink\": 1},\n \"text-align\": {\"left\": 1, \"right\": 1, \"center\": 1, \"justify\": 1},\n \"text-transform\": {\"capitalize\": 1, \"uppercase\": 1, \"lowercase\": 1, \"none\": 1},\n \"top\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"vertical-align\": {\"top\": 1, \"bottom\": 1},\n \"visibility\": {\"hidden\": 1, \"visible\": 1},\n \"white-space\": {\"nowrap\": 1, \"normal\": 1, \"pre\": 1, \"pre-line\": 1, \"pre-wrap\": 1},\n \"width\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"word-spacing\": {\"normal\": 1},\n \"filter\": {\"alpha(opacity=$0100)\": 1},\n\n \"text-shadow\": {\"$02px 2px 2px #777\": 1},\n \"text-overflow\": {\"ellipsis-word\": 1, \"clip\": 1, \"ellipsis\": 1},\n \"-moz-border-radius\": 1,\n \"-moz-border-radius-topright\": 1,\n \"-moz-border-radius-bottomright\": 1,\n \"-moz-border-radius-topleft\": 1,\n \"-moz-border-radius-bottomleft\": 1,\n \"-webkit-border-radius\": 1,\n \"-webkit-border-top-right-radius\": 1,\n \"-webkit-border-top-left-radius\": 1,\n \"-webkit-border-bottom-right-radius\": 1,\n \"-webkit-border-bottom-left-radius\": 1,\n \"-moz-box-shadow\": 1,\n \"-webkit-box-shadow\": 1,\n \"transform\": {\"rotate($00deg)\": 1, \"skew($00deg)\": 1},\n \"-moz-transform\": {\"rotate($00deg)\": 1, \"skew($00deg)\": 1},\n \"-webkit-transform\": {\"rotate($00deg)\": 1, \"skew($00deg)\": 1 }\n};\n\nvar CssCompletions = function() {\n\n};\n\n(function() {\n\n this.completionsDefined = false;\n\n this.defineCompletions = function() {\n if (document) {\n var style = document.createElement('c').style;\n\n for (var i in style) {\n if (typeof style[i] !== 'string')\n continue;\n\n var name = i.replace(/[A-Z]/g, function(x) {\n return '-' + x.toLowerCase();\n });\n\n if (!propertyMap.hasOwnProperty(name))\n propertyMap[name] = 1;\n }\n }\n\n this.completionsDefined = true;\n };\n\n this.getCompletions = function(state, session, pos, prefix) {\n if (!this.completionsDefined) {\n this.defineCompletions();\n }\n\n var token = session.getTokenAt(pos.row, pos.column);\n\n if (!token)\n return [];\n if (state==='ruleset'){\n var line = session.getLine(pos.row).substr(0, pos.column);\n if (/:[^;]+$/.test(line)) {\n /([\\w\\-]+):[^:]*$/.test(line);\n\n return this.getPropertyValueCompletions(state, session, pos, prefix);\n } else {\n return this.getPropertyCompletions(state, session, pos, prefix);\n }\n }\n\n return [];\n };\n\n this.getPropertyCompletions = function(state, session, pos, prefix) {\n var properties = Object.keys(propertyMap);\n return properties.map(function(property){\n return {\n caption: property,\n snippet: property + ': $0;',\n meta: \"property\",\n score: 1000000\n };\n });\n };\n\n this.getPropertyValueCompletions = function(state, session, pos, prefix) {\n var line = session.getLine(pos.row).substr(0, pos.column);\n var property = (/([\\w\\-]+):[^:]*$/.exec(line) || {})[1];\n\n if (!property)\n return [];\n var values = [];\n if (property in propertyMap && typeof propertyMap[property] === \"object\") {\n values = Object.keys(propertyMap[property]);\n }\n return values.map(function(value){\n return {\n caption: value,\n snippet: value,\n meta: \"property value\",\n score: 1000000\n };\n });\n };\n\n}).call(CssCompletions.prototype);\n\nexports.CssCompletions = CssCompletions;\n});\n\nace.define(\"ace/mode/behaviour/css\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/behaviour\",\"ace/mode/behaviour/cstyle\",\"ace/token_iterator\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Behaviour = require(\"../behaviour\").Behaviour;\nvar CstyleBehaviour = require(\"./cstyle\").CstyleBehaviour;\nvar TokenIterator = require(\"../../token_iterator\").TokenIterator;\n\nvar CssBehaviour = function () {\n\n this.inherit(CstyleBehaviour);\n\n this.add(\"colon\", \"insertion\", function (state, action, editor, session, text) {\n if (text === ':' && editor.selection.isEmpty()) {\n var cursor = editor.getCursorPosition();\n var iterator = new TokenIterator(session, cursor.row, cursor.column);\n var token = iterator.getCurrentToken();\n if (token && token.value.match(/\\s+/)) {\n token = iterator.stepBackward();\n }\n if (token && token.type === 'support.type') {\n var line = session.doc.getLine(cursor.row);\n var rightChar = line.substring(cursor.column, cursor.column + 1);\n if (rightChar === ':') {\n return {\n text: '',\n selection: [1, 1]\n };\n }\n if (/^(\\s+[^;]|\\s*$)/.test(line.substring(cursor.column))) {\n return {\n text: ':;',\n selection: [1, 1]\n };\n }\n }\n }\n });\n\n this.add(\"colon\", \"deletion\", function (state, action, editor, session, range) {\n var selected = session.doc.getTextRange(range);\n if (!range.isMultiLine() && selected === ':') {\n var cursor = editor.getCursorPosition();\n var iterator = new TokenIterator(session, cursor.row, cursor.column);\n var token = iterator.getCurrentToken();\n if (token && token.value.match(/\\s+/)) {\n token = iterator.stepBackward();\n }\n if (token && token.type === 'support.type') {\n var line = session.doc.getLine(range.start.row);\n var rightChar = line.substring(range.end.column, range.end.column + 1);\n if (rightChar === ';') {\n range.end.column ++;\n return range;\n }\n }\n }\n });\n\n this.add(\"semicolon\", \"insertion\", function (state, action, editor, session, text) {\n if (text === ';' && editor.selection.isEmpty()) {\n var cursor = editor.getCursorPosition();\n var line = session.doc.getLine(cursor.row);\n var rightChar = line.substring(cursor.column, cursor.column + 1);\n if (rightChar === ';') {\n return {\n text: '',\n selection: [1, 1]\n };\n }\n }\n });\n\n this.add(\"!important\", \"insertion\", function (state, action, editor, session, text) {\n if (text === '!' && editor.selection.isEmpty()) {\n var cursor = editor.getCursorPosition();\n var line = session.doc.getLine(cursor.row);\n\n if (/^\\s*(;|}|$)/.test(line.substring(cursor.column))) {\n return {\n text: '!important',\n selection: [10, 10]\n };\n }\n }\n });\n\n};\noop.inherits(CssBehaviour, CstyleBehaviour);\n\nexports.CssBehaviour = CssBehaviour;\n});\n\nace.define(\"ace/mode/css\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/css_highlight_rules\",\"ace/mode/matching_brace_outdent\",\"ace/worker/worker_client\",\"ace/mode/css_completions\",\"ace/mode/behaviour/css\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar CssHighlightRules = require(\"./css_highlight_rules\").CssHighlightRules;\nvar MatchingBraceOutdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\nvar WorkerClient = require(\"../worker/worker_client\").WorkerClient;\nvar CssCompletions = require(\"./css_completions\").CssCompletions;\nvar CssBehaviour = require(\"./behaviour/css\").CssBehaviour;\nvar CStyleFoldMode = require(\"./folding/cstyle\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = CssHighlightRules;\n this.$outdent = new MatchingBraceOutdent();\n this.$behaviour = new CssBehaviour();\n this.$completer = new CssCompletions();\n this.foldingRules = new CStyleFoldMode();\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.foldingRules = \"cStyle\";\n this.blockComment = {start: \"/*\", end: \"*/\"};\n\n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n var tokens = this.getTokenizer().getLineTokens(line, state).tokens;\n if (tokens.length && tokens[tokens.length-1].type == \"comment\") {\n return indent;\n }\n\n var match = line.match(/^.*\\{\\s*$/);\n if (match) {\n indent += tab;\n }\n\n return indent;\n };\n\n this.checkOutdent = function(state, line, input) {\n return this.$outdent.checkOutdent(line, input);\n };\n\n this.autoOutdent = function(state, doc, row) {\n this.$outdent.autoOutdent(doc, row);\n };\n\n this.getCompletions = function(state, session, pos, prefix) {\n return this.$completer.getCompletions(state, session, pos, prefix);\n };\n\n this.createWorker = function(session) {\n var worker = new WorkerClient([\"ace\"], \"ace/mode/css_worker\", \"Worker\");\n worker.attachToDocument(session.getDocument());\n\n worker.on(\"annotate\", function(e) {\n session.setAnnotations(e.data);\n });\n\n worker.on(\"terminate\", function() {\n session.clearAnnotations();\n });\n\n return worker;\n };\n\n this.$id = \"ace/mode/css\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n\n});\n\nace.define(\"ace/mode/xml_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar XmlHighlightRules = function(normalize) {\n var tagRegex = \"[_:a-zA-Z\\xc0-\\uffff][-_:.a-zA-Z0-9\\xc0-\\uffff]*\";\n\n this.$rules = {\n start : [\n {token : \"string.cdata.xml\", regex : \"<\\\\!\\\\[CDATA\\\\[\", next : \"cdata\"},\n {\n token : [\"punctuation.instruction.xml\", \"keyword.instruction.xml\"],\n regex : \"(<\\\\?)(\" + tagRegex + \")\", next : \"processing_instruction\"\n },\n {token : \"comment.start.xml\", regex : \"<\\\\!--\", next : \"comment\"},\n {\n token : [\"xml-pe.doctype.xml\", \"xml-pe.doctype.xml\"],\n regex : \"(<\\\\!)(DOCTYPE)(?=[\\\\s])\", next : \"doctype\", caseInsensitive: true\n },\n {include : \"tag\"},\n {token : \"text.end-tag-open.xml\", regex: \"\",\n next : \"start\"\n }],\n\n doctype : [\n {include : \"whitespace\"},\n {include : \"string\"},\n {token : \"xml-pe.doctype.xml\", regex : \">\", next : \"start\"},\n {token : \"xml-pe.xml\", regex : \"[-_a-zA-Z0-9:]+\"},\n {token : \"punctuation.int-subset\", regex : \"\\\\[\", push : \"int_subset\"}\n ],\n\n int_subset : [{\n token : \"text.xml\",\n regex : \"\\\\s+\"\n }, {\n token: \"punctuation.int-subset.xml\",\n regex: \"]\",\n next: \"pop\"\n }, {\n token : [\"punctuation.markup-decl.xml\", \"keyword.markup-decl.xml\"],\n regex : \"(<\\\\!)(\" + tagRegex + \")\",\n push : [{\n token : \"text\",\n regex : \"\\\\s+\"\n },\n {\n token : \"punctuation.markup-decl.xml\",\n regex : \">\",\n next : \"pop\"\n },\n {include : \"string\"}]\n }],\n\n cdata : [\n {token : \"string.cdata.xml\", regex : \"\\\\]\\\\]>\", next : \"start\"},\n {token : \"text.xml\", regex : \"\\\\s+\"},\n {token : \"text.xml\", regex : \"(?:[^\\\\]]|\\\\](?!\\\\]>))+\"}\n ],\n\n comment : [\n {token : \"comment.end.xml\", regex : \"-->\", next : \"start\"},\n {defaultToken : \"comment.xml\"}\n ],\n\n reference : [{\n token : \"constant.language.escape.reference.xml\",\n regex : \"(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\\\.-]+;)\"\n }],\n\n attr_reference : [{\n token : \"constant.language.escape.reference.attribute-value.xml\",\n regex : \"(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\\\.-]+;)\"\n }],\n\n tag : [{\n token : [\"meta.tag.punctuation.tag-open.xml\", \"meta.tag.punctuation.end-tag-open.xml\", \"meta.tag.tag-name.xml\"],\n regex : \"(?:(<)|(\", next : \"start\"}\n ]\n }],\n\n tag_whitespace : [\n {token : \"text.tag-whitespace.xml\", regex : \"\\\\s+\"}\n ],\n whitespace : [\n {token : \"text.whitespace.xml\", regex : \"\\\\s+\"}\n ],\n string: [{\n token : \"string.xml\",\n regex : \"'\",\n push : [\n {token : \"string.xml\", regex: \"'\", next: \"pop\"},\n {defaultToken : \"string.xml\"}\n ]\n }, {\n token : \"string.xml\",\n regex : '\"',\n push : [\n {token : \"string.xml\", regex: '\"', next: \"pop\"},\n {defaultToken : \"string.xml\"}\n ]\n }],\n\n attributes: [{\n token : \"entity.other.attribute-name.xml\",\n regex : tagRegex\n }, {\n token : \"keyword.operator.attribute-equals.xml\",\n regex : \"=\"\n }, {\n include: \"tag_whitespace\"\n }, {\n include: \"attribute_value\"\n }],\n\n attribute_value: [{\n token : \"string.attribute-value.xml\",\n regex : \"'\",\n push : [\n {token : \"string.attribute-value.xml\", regex: \"'\", next: \"pop\"},\n {include : \"attr_reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n }, {\n token : \"string.attribute-value.xml\",\n regex : '\"',\n push : [\n {token : \"string.attribute-value.xml\", regex: '\"', next: \"pop\"},\n {include : \"attr_reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n }]\n };\n\n if (this.constructor === XmlHighlightRules)\n this.normalizeRules();\n};\n\n\n(function() {\n\n this.embedTagRules = function(HighlightRules, prefix, tag){\n this.$rules.tag.unshift({\n token : [\"meta.tag.punctuation.tag-open.xml\", \"meta.tag.\" + tag + \".tag-name.xml\"],\n regex : \"(<)(\" + tag + \"(?=\\\\s|>|$))\",\n next: [\n {include : \"attributes\"},\n {token : \"meta.tag.punctuation.tag-close.xml\", regex : \"/?>\", next : prefix + \"start\"}\n ]\n });\n\n this.$rules[tag + \"-end\"] = [\n {include : \"attributes\"},\n {token : \"meta.tag.punctuation.tag-close.xml\", regex : \"/?>\", next: \"start\",\n onMatch : function(value, currentState, stack) {\n stack.splice(0);\n return this.token;\n }}\n ];\n\n this.embedRules(HighlightRules, prefix, [{\n token: [\"meta.tag.punctuation.end-tag-open.xml\", \"meta.tag.\" + tag + \".tag-name.xml\"],\n regex : \"(|$))\",\n next: tag + \"-end\"\n }, {\n token: \"string.cdata.xml\",\n regex : \"<\\\\!\\\\[CDATA\\\\[\"\n }, {\n token: \"string.cdata.xml\",\n regex : \"\\\\]\\\\]>\"\n }]);\n };\n\n}).call(TextHighlightRules.prototype);\n\noop.inherits(XmlHighlightRules, TextHighlightRules);\n\nexports.XmlHighlightRules = XmlHighlightRules;\n});\n\nace.define(\"ace/mode/html_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/css_highlight_rules\",\"ace/mode/javascript_highlight_rules\",\"ace/mode/xml_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar CssHighlightRules = require(\"./css_highlight_rules\").CssHighlightRules;\nvar JavaScriptHighlightRules = require(\"./javascript_highlight_rules\").JavaScriptHighlightRules;\nvar XmlHighlightRules = require(\"./xml_highlight_rules\").XmlHighlightRules;\n\nvar tagMap = lang.createMap({\n a : 'anchor',\n button \t : 'form',\n form : 'form',\n img : 'image',\n input : 'form',\n label : 'form',\n option : 'form',\n script : 'script',\n select : 'form',\n textarea : 'form',\n style : 'style',\n table : 'table',\n tbody : 'table',\n td : 'table',\n tfoot : 'table',\n th : 'table',\n tr : 'table'\n});\n\nvar HtmlHighlightRules = function() {\n XmlHighlightRules.call(this);\n\n this.addRules({\n attributes: [{\n include : \"tag_whitespace\"\n }, {\n token : \"entity.other.attribute-name.xml\",\n regex : \"[-_a-zA-Z0-9:.]+\"\n }, {\n token : \"keyword.operator.attribute-equals.xml\",\n regex : \"=\",\n push : [{\n include: \"tag_whitespace\"\n }, {\n token : \"string.unquoted.attribute-value.html\",\n regex : \"[^<>='\\\"`\\\\s]+\",\n next : \"pop\"\n }, {\n token : \"empty\",\n regex : \"\",\n next : \"pop\"\n }]\n }, {\n include : \"attribute_value\"\n }],\n tag: [{\n token : function(start, tag) {\n var group = tagMap[tag];\n return [\"meta.tag.punctuation.\" + (start == \"<\" ? \"\" : \"end-\") + \"tag-open.xml\",\n \"meta.tag\" + (group ? \".\" + group : \"\") + \".tag-name.xml\"];\n },\n regex : \"(\", next : \"start\"}\n ]\n });\n\n this.embedTagRules(CssHighlightRules, \"css-\", \"style\");\n this.embedTagRules(new JavaScriptHighlightRules({jsx: false}).getRules(), \"js-\", \"script\");\n\n if (this.constructor === HtmlHighlightRules)\n this.normalizeRules();\n};\n\noop.inherits(HtmlHighlightRules, XmlHighlightRules);\n\nexports.HtmlHighlightRules = HtmlHighlightRules;\n});\n\nace.define(\"ace/mode/behaviour/xml\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/behaviour\",\"ace/token_iterator\",\"ace/lib/lang\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Behaviour = require(\"../behaviour\").Behaviour;\nvar TokenIterator = require(\"../../token_iterator\").TokenIterator;\nvar lang = require(\"../../lib/lang\");\n\nfunction is(token, type) {\n return token && token.type.lastIndexOf(type + \".xml\") > -1;\n}\n\nvar XmlBehaviour = function () {\n\n this.add(\"string_dquotes\", \"insertion\", function (state, action, editor, session, text) {\n if (text == '\"' || text == \"'\") {\n var quote = text;\n var selected = session.doc.getTextRange(editor.getSelectionRange());\n if (selected !== \"\" && selected !== \"'\" && selected != '\"' && editor.getWrapBehavioursEnabled()) {\n return {\n text: quote + selected + quote,\n selection: false\n };\n }\n\n var cursor = editor.getCursorPosition();\n var line = session.doc.getLine(cursor.row);\n var rightChar = line.substring(cursor.column, cursor.column + 1);\n var iterator = new TokenIterator(session, cursor.row, cursor.column);\n var token = iterator.getCurrentToken();\n\n if (rightChar == quote && (is(token, \"attribute-value\") || is(token, \"string\"))) {\n return {\n text: \"\",\n selection: [1, 1]\n };\n }\n\n if (!token)\n token = iterator.stepBackward();\n\n if (!token)\n return;\n\n while (is(token, \"tag-whitespace\") || is(token, \"whitespace\")) {\n token = iterator.stepBackward();\n }\n var rightSpace = !rightChar || rightChar.match(/\\s/);\n if (is(token, \"attribute-equals\") && (rightSpace || rightChar == '>') || (is(token, \"decl-attribute-equals\") && (rightSpace || rightChar == '?'))) {\n return {\n text: quote + quote,\n selection: [1, 1]\n };\n }\n }\n });\n\n this.add(\"string_dquotes\", \"deletion\", function(state, action, editor, session, range) {\n var selected = session.doc.getTextRange(range);\n if (!range.isMultiLine() && (selected == '\"' || selected == \"'\")) {\n var line = session.doc.getLine(range.start.row);\n var rightChar = line.substring(range.start.column + 1, range.start.column + 2);\n if (rightChar == selected) {\n range.end.column++;\n return range;\n }\n }\n });\n\n this.add(\"autoclosing\", \"insertion\", function (state, action, editor, session, text) {\n if (text == '>') {\n var position = editor.getSelectionRange().start;\n var iterator = new TokenIterator(session, position.row, position.column);\n var token = iterator.getCurrentToken() || iterator.stepBackward();\n if (!token || !(is(token, \"tag-name\") || is(token, \"tag-whitespace\") || is(token, \"attribute-name\") || is(token, \"attribute-equals\") || is(token, \"attribute-value\")))\n return;\n if (is(token, \"reference.attribute-value\"))\n return;\n if (is(token, \"attribute-value\")) {\n var tokenEndColumn = iterator.getCurrentTokenColumn() + token.value.length;\n if (position.column < tokenEndColumn)\n return;\n if (position.column == tokenEndColumn) {\n var nextToken = iterator.stepForward();\n if (nextToken && is(nextToken, \"attribute-value\"))\n return;\n iterator.stepBackward();\n }\n }\n \n if (/^\\s*>/.test(session.getLine(position.row).slice(position.column)))\n return;\n while (!is(token, \"tag-name\")) {\n token = iterator.stepBackward();\n if (token.value == \"<\") {\n token = iterator.stepForward();\n break;\n }\n }\n\n var tokenRow = iterator.getCurrentTokenRow();\n var tokenColumn = iterator.getCurrentTokenColumn();\n if (is(iterator.stepBackward(), \"end-tag-open\"))\n return;\n\n var element = token.value;\n if (tokenRow == position.row)\n element = element.substring(0, position.column - tokenColumn);\n\n if (this.voidElements.hasOwnProperty(element.toLowerCase()))\n return;\n\n return {\n text: \">\" + \"\",\n selection: [1, 1]\n };\n }\n });\n\n this.add(\"autoindent\", \"insertion\", function (state, action, editor, session, text) {\n if (text == \"\\n\") {\n var cursor = editor.getCursorPosition();\n var line = session.getLine(cursor.row);\n var iterator = new TokenIterator(session, cursor.row, cursor.column);\n var token = iterator.getCurrentToken();\n\n if (token && token.type.indexOf(\"tag-close\") !== -1) {\n if (token.value == \"/>\")\n return;\n while (token && token.type.indexOf(\"tag-name\") === -1) {\n token = iterator.stepBackward();\n }\n\n if (!token) {\n return;\n }\n\n var tag = token.value;\n var row = iterator.getCurrentTokenRow();\n token = iterator.stepBackward();\n if (!token || token.type.indexOf(\"end-tag\") !== -1) {\n return;\n }\n\n if (this.voidElements && !this.voidElements[tag]) {\n var nextToken = session.getTokenAt(cursor.row, cursor.column+1);\n var line = session.getLine(row);\n var nextIndent = this.$getIndent(line);\n var indent = nextIndent + session.getTabString();\n\n if (nextToken && nextToken.value === \" -1;\n}\n\n(function() {\n\n this.getFoldWidget = function(session, foldStyle, row) {\n var tag = this._getFirstTagInLine(session, row);\n\n if (!tag)\n return this.getCommentFoldWidget(session, row);\n\n if (tag.closing || (!tag.tagName && tag.selfClosing))\n return foldStyle == \"markbeginend\" ? \"end\" : \"\";\n\n if (!tag.tagName || tag.selfClosing || this.voidElements.hasOwnProperty(tag.tagName.toLowerCase()))\n return \"\";\n\n if (this._findEndTagInLine(session, row, tag.tagName, tag.end.column))\n return \"\";\n\n return \"start\";\n };\n \n this.getCommentFoldWidget = function(session, row) {\n if (/comment/.test(session.getState(row)) && /';\n break;\n }\n }\n return tag;\n } else if (is(token, \"tag-close\")) {\n tag.selfClosing = token.value == '/>';\n return tag;\n }\n tag.start.column += token.value.length;\n }\n\n return null;\n };\n\n this._findEndTagInLine = function(session, row, tagName, startColumn) {\n var tokens = session.getTokens(row);\n var column = 0;\n for (var i = 0; i < tokens.length; i++) {\n var token = tokens[i];\n column += token.value.length;\n if (column < startColumn)\n continue;\n if (is(token, \"end-tag-open\")) {\n token = tokens[i + 1];\n if (token && token.value == tagName)\n return true;\n }\n }\n return false;\n };\n this._readTagForward = function(iterator) {\n var token = iterator.getCurrentToken();\n if (!token)\n return null;\n\n var tag = new Tag();\n do {\n if (is(token, \"tag-open\")) {\n tag.closing = is(token, \"end-tag-open\");\n tag.start.row = iterator.getCurrentTokenRow();\n tag.start.column = iterator.getCurrentTokenColumn();\n } else if (is(token, \"tag-name\")) {\n tag.tagName = token.value;\n } else if (is(token, \"tag-close\")) {\n tag.selfClosing = token.value == \"/>\";\n tag.end.row = iterator.getCurrentTokenRow();\n tag.end.column = iterator.getCurrentTokenColumn() + token.value.length;\n iterator.stepForward();\n return tag;\n }\n } while(token = iterator.stepForward());\n\n return null;\n };\n \n this._readTagBackward = function(iterator) {\n var token = iterator.getCurrentToken();\n if (!token)\n return null;\n\n var tag = new Tag();\n do {\n if (is(token, \"tag-open\")) {\n tag.closing = is(token, \"end-tag-open\");\n tag.start.row = iterator.getCurrentTokenRow();\n tag.start.column = iterator.getCurrentTokenColumn();\n iterator.stepBackward();\n return tag;\n } else if (is(token, \"tag-name\")) {\n tag.tagName = token.value;\n } else if (is(token, \"tag-close\")) {\n tag.selfClosing = token.value == \"/>\";\n tag.end.row = iterator.getCurrentTokenRow();\n tag.end.column = iterator.getCurrentTokenColumn() + token.value.length;\n }\n } while(token = iterator.stepBackward());\n\n return null;\n };\n \n this._pop = function(stack, tag) {\n while (stack.length) {\n \n var top = stack[stack.length-1];\n if (!tag || top.tagName == tag.tagName) {\n return stack.pop();\n }\n else if (this.optionalEndTags.hasOwnProperty(top.tagName)) {\n stack.pop();\n continue;\n } else {\n return null;\n }\n }\n };\n \n this.getFoldWidgetRange = function(session, foldStyle, row) {\n var firstTag = this._getFirstTagInLine(session, row);\n \n if (!firstTag) {\n return this.getCommentFoldWidget(session, row)\n && session.getCommentFoldRange(row, session.getLine(row).length);\n }\n \n var isBackward = firstTag.closing || firstTag.selfClosing;\n var stack = [];\n var tag;\n \n if (!isBackward) {\n var iterator = new TokenIterator(session, row, firstTag.start.column);\n var start = {\n row: row,\n column: firstTag.start.column + firstTag.tagName.length + 2\n };\n if (firstTag.start.row == firstTag.end.row)\n start.column = firstTag.end.column;\n while (tag = this._readTagForward(iterator)) {\n if (tag.selfClosing) {\n if (!stack.length) {\n tag.start.column += tag.tagName.length + 2;\n tag.end.column -= 2;\n return Range.fromPoints(tag.start, tag.end);\n } else\n continue;\n }\n \n if (tag.closing) {\n this._pop(stack, tag);\n if (stack.length == 0)\n return Range.fromPoints(start, tag.start);\n }\n else {\n stack.push(tag);\n }\n }\n }\n else {\n var iterator = new TokenIterator(session, row, firstTag.end.column);\n var end = {\n row: row,\n column: firstTag.start.column\n };\n \n while (tag = this._readTagBackward(iterator)) {\n if (tag.selfClosing) {\n if (!stack.length) {\n tag.start.column += tag.tagName.length + 2;\n tag.end.column -= 2;\n return Range.fromPoints(tag.start, tag.end);\n } else\n continue;\n }\n \n if (!tag.closing) {\n this._pop(stack, tag);\n if (stack.length == 0) {\n tag.start.column += tag.tagName.length + 2;\n if (tag.start.row == tag.end.row && tag.start.column < tag.end.column)\n tag.start.column = tag.end.column;\n return Range.fromPoints(tag.start, end);\n }\n }\n else {\n stack.push(tag);\n }\n }\n }\n \n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/folding/html\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/folding/mixed\",\"ace/mode/folding/xml\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar MixedFoldMode = require(\"./mixed\").FoldMode;\nvar XmlFoldMode = require(\"./xml\").FoldMode;\nvar CStyleFoldMode = require(\"./cstyle\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function(voidElements, optionalTags) {\n MixedFoldMode.call(this, new XmlFoldMode(voidElements, optionalTags), {\n \"js-\": new CStyleFoldMode(),\n \"css-\": new CStyleFoldMode()\n });\n};\n\noop.inherits(FoldMode, MixedFoldMode);\n\n});\n\nace.define(\"ace/mode/html_completions\",[\"require\",\"exports\",\"module\",\"ace/token_iterator\"], function(require, exports, module) {\n\"use strict\";\n\nvar TokenIterator = require(\"../token_iterator\").TokenIterator;\n\nvar commonAttributes = [\n \"accesskey\",\n \"class\",\n \"contenteditable\",\n \"contextmenu\",\n \"dir\",\n \"draggable\",\n \"dropzone\",\n \"hidden\",\n \"id\",\n \"inert\",\n \"itemid\",\n \"itemprop\",\n \"itemref\",\n \"itemscope\",\n \"itemtype\",\n \"lang\",\n \"spellcheck\",\n \"style\",\n \"tabindex\",\n \"title\",\n \"translate\"\n];\n\nvar eventAttributes = [\n \"onabort\",\n \"onblur\",\n \"oncancel\",\n \"oncanplay\",\n \"oncanplaythrough\",\n \"onchange\",\n \"onclick\",\n \"onclose\",\n \"oncontextmenu\",\n \"oncuechange\",\n \"ondblclick\",\n \"ondrag\",\n \"ondragend\",\n \"ondragenter\",\n \"ondragleave\",\n \"ondragover\",\n \"ondragstart\",\n \"ondrop\",\n \"ondurationchange\",\n \"onemptied\",\n \"onended\",\n \"onerror\",\n \"onfocus\",\n \"oninput\",\n \"oninvalid\",\n \"onkeydown\",\n \"onkeypress\",\n \"onkeyup\",\n \"onload\",\n \"onloadeddata\",\n \"onloadedmetadata\",\n \"onloadstart\",\n \"onmousedown\",\n \"onmousemove\",\n \"onmouseout\",\n \"onmouseover\",\n \"onmouseup\",\n \"onmousewheel\",\n \"onpause\",\n \"onplay\",\n \"onplaying\",\n \"onprogress\",\n \"onratechange\",\n \"onreset\",\n \"onscroll\",\n \"onseeked\",\n \"onseeking\",\n \"onselect\",\n \"onshow\",\n \"onstalled\",\n \"onsubmit\",\n \"onsuspend\",\n \"ontimeupdate\",\n \"onvolumechange\",\n \"onwaiting\"\n];\n\nvar globalAttributes = commonAttributes.concat(eventAttributes);\n\nvar attributeMap = {\n \"a\": {\"href\": 1, \"target\": {\"_blank\": 1, \"top\": 1}, \"ping\": 1, \"rel\": {\"nofollow\": 1, \"alternate\": 1, \"author\": 1, \"bookmark\": 1, \"help\": 1, \"license\": 1, \"next\": 1, \"noreferrer\": 1, \"prefetch\": 1, \"prev\": 1, \"search\": 1, \"tag\": 1}, \"media\": 1, \"hreflang\": 1, \"type\": 1},\n \"abbr\": {},\n \"address\": {},\n \"area\": {\"shape\": 1, \"coords\": 1, \"href\": 1, \"hreflang\": 1, \"alt\": 1, \"target\": 1, \"media\": 1, \"rel\": 1, \"ping\": 1, \"type\": 1},\n \"article\": {\"pubdate\": 1},\n \"aside\": {},\n \"audio\": {\"src\": 1, \"autobuffer\": 1, \"autoplay\": {\"autoplay\": 1}, \"loop\": {\"loop\": 1}, \"controls\": {\"controls\": 1}, \"muted\": {\"muted\": 1}, \"preload\": {\"auto\": 1, \"metadata\": 1, \"none\": 1 }},\n \"b\": {},\n \"base\": {\"href\": 1, \"target\": 1},\n \"bdi\": {},\n \"bdo\": {},\n \"blockquote\": {\"cite\": 1},\n \"body\": {\"onafterprint\": 1, \"onbeforeprint\": 1, \"onbeforeunload\": 1, \"onhashchange\": 1, \"onmessage\": 1, \"onoffline\": 1, \"onpopstate\": 1, \"onredo\": 1, \"onresize\": 1, \"onstorage\": 1, \"onundo\": 1, \"onunload\": 1},\n \"br\": {},\n \"button\": {\"autofocus\": 1, \"disabled\": {\"disabled\": 1}, \"form\": 1, \"formaction\": 1, \"formenctype\": 1, \"formmethod\": 1, \"formnovalidate\": 1, \"formtarget\": 1, \"name\": 1, \"value\": 1, \"type\": {\"button\": 1, \"submit\": 1}},\n \"canvas\": {\"width\": 1, \"height\": 1},\n \"caption\": {},\n \"cite\": {},\n \"code\": {},\n \"col\": {\"span\": 1},\n \"colgroup\": {\"span\": 1},\n \"command\": {\"type\": 1, \"label\": 1, \"icon\": 1, \"disabled\": 1, \"checked\": 1, \"radiogroup\": 1, \"command\": 1},\n \"data\": {},\n \"datalist\": {},\n \"dd\": {},\n \"del\": {\"cite\": 1, \"datetime\": 1},\n \"details\": {\"open\": 1},\n \"dfn\": {},\n \"dialog\": {\"open\": 1},\n \"div\": {},\n \"dl\": {},\n \"dt\": {},\n \"em\": {},\n \"embed\": {\"src\": 1, \"height\": 1, \"width\": 1, \"type\": 1},\n \"fieldset\": {\"disabled\": 1, \"form\": 1, \"name\": 1},\n \"figcaption\": {},\n \"figure\": {},\n \"footer\": {},\n \"form\": {\"accept-charset\": 1, \"action\": 1, \"autocomplete\": 1, \"enctype\": {\"multipart/form-data\": 1, \"application/x-www-form-urlencoded\": 1}, \"method\": {\"get\": 1, \"post\": 1}, \"name\": 1, \"novalidate\": 1, \"target\": {\"_blank\": 1, \"top\": 1}},\n \"h1\": {},\n \"h2\": {},\n \"h3\": {},\n \"h4\": {},\n \"h5\": {},\n \"h6\": {},\n \"head\": {},\n \"header\": {},\n \"hr\": {},\n \"html\": {\"manifest\": 1},\n \"i\": {},\n \"iframe\": {\"name\": 1, \"src\": 1, \"height\": 1, \"width\": 1, \"sandbox\": {\"allow-same-origin\": 1, \"allow-top-navigation\": 1, \"allow-forms\": 1, \"allow-scripts\": 1}, \"seamless\": {\"seamless\": 1}},\n \"img\": {\"alt\": 1, \"src\": 1, \"height\": 1, \"width\": 1, \"usemap\": 1, \"ismap\": 1},\n \"input\": {\n \"type\": {\"text\": 1, \"password\": 1, \"hidden\": 1, \"checkbox\": 1, \"submit\": 1, \"radio\": 1, \"file\": 1, \"button\": 1, \"reset\": 1, \"image\": 31, \"color\": 1, \"date\": 1, \"datetime\": 1, \"datetime-local\": 1, \"email\": 1, \"month\": 1, \"number\": 1, \"range\": 1, \"search\": 1, \"tel\": 1, \"time\": 1, \"url\": 1, \"week\": 1},\n \"accept\": 1, \"alt\": 1, \"autocomplete\": {\"on\": 1, \"off\": 1}, \"autofocus\": {\"autofocus\": 1}, \"checked\": {\"checked\": 1}, \"disabled\": {\"disabled\": 1}, \"form\": 1, \"formaction\": 1, \"formenctype\": {\"application/x-www-form-urlencoded\": 1, \"multipart/form-data\": 1, \"text/plain\": 1}, \"formmethod\": {\"get\": 1, \"post\": 1}, \"formnovalidate\": {\"formnovalidate\": 1}, \"formtarget\": {\"_blank\": 1, \"_self\": 1, \"_parent\": 1, \"_top\": 1}, \"height\": 1, \"list\": 1, \"max\": 1, \"maxlength\": 1, \"min\": 1, \"multiple\": {\"multiple\": 1}, \"name\": 1, \"pattern\": 1, \"placeholder\": 1, \"readonly\": {\"readonly\": 1}, \"required\": {\"required\": 1}, \"size\": 1, \"src\": 1, \"step\": 1, \"width\": 1, \"files\": 1, \"value\": 1},\n \"ins\": {\"cite\": 1, \"datetime\": 1},\n \"kbd\": {},\n \"keygen\": {\"autofocus\": 1, \"challenge\": {\"challenge\": 1}, \"disabled\": {\"disabled\": 1}, \"form\": 1, \"keytype\": {\"rsa\": 1, \"dsa\": 1, \"ec\": 1}, \"name\": 1},\n \"label\": {\"form\": 1, \"for\": 1},\n \"legend\": {},\n \"li\": {\"value\": 1},\n \"link\": {\"href\": 1, \"hreflang\": 1, \"rel\": {\"stylesheet\": 1, \"icon\": 1}, \"media\": {\"all\": 1, \"screen\": 1, \"print\": 1}, \"type\": {\"text/css\": 1, \"image/png\": 1, \"image/jpeg\": 1, \"image/gif\": 1}, \"sizes\": 1},\n \"main\": {},\n \"map\": {\"name\": 1},\n \"mark\": {},\n \"math\": {},\n \"menu\": {\"type\": 1, \"label\": 1},\n \"meta\": {\"http-equiv\": {\"content-type\": 1}, \"name\": {\"description\": 1, \"keywords\": 1}, \"content\": {\"text/html; charset=UTF-8\": 1}, \"charset\": 1},\n \"meter\": {\"value\": 1, \"min\": 1, \"max\": 1, \"low\": 1, \"high\": 1, \"optimum\": 1},\n \"nav\": {},\n \"noscript\": {\"href\": 1},\n \"object\": {\"param\": 1, \"data\": 1, \"type\": 1, \"height\" : 1, \"width\": 1, \"usemap\": 1, \"name\": 1, \"form\": 1, \"classid\": 1},\n \"ol\": {\"start\": 1, \"reversed\": 1},\n \"optgroup\": {\"disabled\": 1, \"label\": 1},\n \"option\": {\"disabled\": 1, \"selected\": 1, \"label\": 1, \"value\": 1},\n \"output\": {\"for\": 1, \"form\": 1, \"name\": 1},\n \"p\": {},\n \"param\": {\"name\": 1, \"value\": 1},\n \"pre\": {},\n \"progress\": {\"value\": 1, \"max\": 1},\n \"q\": {\"cite\": 1},\n \"rp\": {},\n \"rt\": {},\n \"ruby\": {},\n \"s\": {},\n \"samp\": {},\n \"script\": {\"charset\": 1, \"type\": {\"text/javascript\": 1}, \"src\": 1, \"defer\": 1, \"async\": 1},\n \"select\": {\"autofocus\": 1, \"disabled\": 1, \"form\": 1, \"multiple\": {\"multiple\": 1}, \"name\": 1, \"size\": 1, \"readonly\":{\"readonly\": 1}},\n \"small\": {},\n \"source\": {\"src\": 1, \"type\": 1, \"media\": 1},\n \"span\": {},\n \"strong\": {},\n \"style\": {\"type\": 1, \"media\": {\"all\": 1, \"screen\": 1, \"print\": 1}, \"scoped\": 1},\n \"sub\": {},\n \"sup\": {},\n \"svg\": {},\n \"table\": {\"summary\": 1},\n \"tbody\": {},\n \"td\": {\"headers\": 1, \"rowspan\": 1, \"colspan\": 1},\n \"textarea\": {\"autofocus\": {\"autofocus\": 1}, \"disabled\": {\"disabled\": 1}, \"form\": 1, \"maxlength\": 1, \"name\": 1, \"placeholder\": 1, \"readonly\": {\"readonly\": 1}, \"required\": {\"required\": 1}, \"rows\": 1, \"cols\": 1, \"wrap\": {\"on\": 1, \"off\": 1, \"hard\": 1, \"soft\": 1}},\n \"tfoot\": {},\n \"th\": {\"headers\": 1, \"rowspan\": 1, \"colspan\": 1, \"scope\": 1},\n \"thead\": {},\n \"time\": {\"datetime\": 1},\n \"title\": {},\n \"tr\": {},\n \"track\": {\"kind\": 1, \"src\": 1, \"srclang\": 1, \"label\": 1, \"default\": 1},\n \"section\": {},\n \"summary\": {},\n \"u\": {},\n \"ul\": {},\n \"var\": {},\n \"video\": {\"src\": 1, \"autobuffer\": 1, \"autoplay\": {\"autoplay\": 1}, \"loop\": {\"loop\": 1}, \"controls\": {\"controls\": 1}, \"width\": 1, \"height\": 1, \"poster\": 1, \"muted\": {\"muted\": 1}, \"preload\": {\"auto\": 1, \"metadata\": 1, \"none\": 1}},\n \"wbr\": {}\n};\n\nvar elements = Object.keys(attributeMap);\n\nfunction is(token, type) {\n return token.type.lastIndexOf(type + \".xml\") > -1;\n}\n\nfunction findTagName(session, pos) {\n var iterator = new TokenIterator(session, pos.row, pos.column);\n var token = iterator.getCurrentToken();\n while (token && !is(token, \"tag-name\")){\n token = iterator.stepBackward();\n }\n if (token)\n return token.value;\n}\n\nfunction findAttributeName(session, pos) {\n var iterator = new TokenIterator(session, pos.row, pos.column);\n var token = iterator.getCurrentToken();\n while (token && !is(token, \"attribute-name\")){\n token = iterator.stepBackward();\n }\n if (token)\n return token.value;\n}\n\nvar HtmlCompletions = function() {\n\n};\n\n(function() {\n\n this.getCompletions = function(state, session, pos, prefix) {\n var token = session.getTokenAt(pos.row, pos.column);\n\n if (!token)\n return [];\n if (is(token, \"tag-name\") || is(token, \"tag-open\") || is(token, \"end-tag-open\"))\n return this.getTagCompletions(state, session, pos, prefix);\n if (is(token, \"tag-whitespace\") || is(token, \"attribute-name\"))\n return this.getAttributeCompletions(state, session, pos, prefix);\n if (is(token, \"attribute-value\"))\n return this.getAttributeValueCompletions(state, session, pos, prefix);\n var line = session.getLine(pos.row).substr(0, pos.column);\n if (/&[a-z]*$/i.test(line))\n return this.getHTMLEntityCompletions(state, session, pos, prefix);\n\n return [];\n };\n\n this.getTagCompletions = function(state, session, pos, prefix) {\n return elements.map(function(element){\n return {\n value: element,\n meta: \"tag\",\n score: 1000000\n };\n });\n };\n\n this.getAttributeCompletions = function(state, session, pos, prefix) {\n var tagName = findTagName(session, pos);\n if (!tagName)\n return [];\n var attributes = globalAttributes;\n if (tagName in attributeMap) {\n attributes = attributes.concat(Object.keys(attributeMap[tagName]));\n }\n return attributes.map(function(attribute){\n return {\n caption: attribute,\n snippet: attribute + '=\"$0\"',\n meta: \"attribute\",\n score: 1000000\n };\n });\n };\n\n this.getAttributeValueCompletions = function(state, session, pos, prefix) {\n var tagName = findTagName(session, pos);\n var attributeName = findAttributeName(session, pos);\n \n if (!tagName)\n return [];\n var values = [];\n if (tagName in attributeMap && attributeName in attributeMap[tagName] && typeof attributeMap[tagName][attributeName] === \"object\") {\n values = Object.keys(attributeMap[tagName][attributeName]);\n }\n return values.map(function(value){\n return {\n caption: value,\n snippet: value,\n meta: \"attribute value\",\n score: 1000000\n };\n });\n };\n\n this.getHTMLEntityCompletions = function(state, session, pos, prefix) {\n var values = ['Aacute;', 'aacute;', 'Acirc;', 'acirc;', 'acute;', 'AElig;', 'aelig;', 'Agrave;', 'agrave;', 'alefsym;', 'Alpha;', 'alpha;', 'amp;', 'and;', 'ang;', 'Aring;', 'aring;', 'asymp;', 'Atilde;', 'atilde;', 'Auml;', 'auml;', 'bdquo;', 'Beta;', 'beta;', 'brvbar;', 'bull;', 'cap;', 'Ccedil;', 'ccedil;', 'cedil;', 'cent;', 'Chi;', 'chi;', 'circ;', 'clubs;', 'cong;', 'copy;', 'crarr;', 'cup;', 'curren;', 'Dagger;', 'dagger;', 'dArr;', 'darr;', 'deg;', 'Delta;', 'delta;', 'diams;', 'divide;', 'Eacute;', 'eacute;', 'Ecirc;', 'ecirc;', 'Egrave;', 'egrave;', 'empty;', 'emsp;', 'ensp;', 'Epsilon;', 'epsilon;', 'equiv;', 'Eta;', 'eta;', 'ETH;', 'eth;', 'Euml;', 'euml;', 'euro;', 'exist;', 'fnof;', 'forall;', 'frac12;', 'frac14;', 'frac34;', 'frasl;', 'Gamma;', 'gamma;', 'ge;', 'gt;', 'hArr;', 'harr;', 'hearts;', 'hellip;', 'Iacute;', 'iacute;', 'Icirc;', 'icirc;', 'iexcl;', 'Igrave;', 'igrave;', 'image;', 'infin;', 'int;', 'Iota;', 'iota;', 'iquest;', 'isin;', 'Iuml;', 'iuml;', 'Kappa;', 'kappa;', 'Lambda;', 'lambda;', 'lang;', 'laquo;', 'lArr;', 'larr;', 'lceil;', 'ldquo;', 'le;', 'lfloor;', 'lowast;', 'loz;', 'lrm;', 'lsaquo;', 'lsquo;', 'lt;', 'macr;', 'mdash;', 'micro;', 'middot;', 'minus;', 'Mu;', 'mu;', 'nabla;', 'nbsp;', 'ndash;', 'ne;', 'ni;', 'not;', 'notin;', 'nsub;', 'Ntilde;', 'ntilde;', 'Nu;', 'nu;', 'Oacute;', 'oacute;', 'Ocirc;', 'ocirc;', 'OElig;', 'oelig;', 'Ograve;', 'ograve;', 'oline;', 'Omega;', 'omega;', 'Omicron;', 'omicron;', 'oplus;', 'or;', 'ordf;', 'ordm;', 'Oslash;', 'oslash;', 'Otilde;', 'otilde;', 'otimes;', 'Ouml;', 'ouml;', 'para;', 'part;', 'permil;', 'perp;', 'Phi;', 'phi;', 'Pi;', 'pi;', 'piv;', 'plusmn;', 'pound;', 'Prime;', 'prime;', 'prod;', 'prop;', 'Psi;', 'psi;', 'quot;', 'radic;', 'rang;', 'raquo;', 'rArr;', 'rarr;', 'rceil;', 'rdquo;', 'real;', 'reg;', 'rfloor;', 'Rho;', 'rho;', 'rlm;', 'rsaquo;', 'rsquo;', 'sbquo;', 'Scaron;', 'scaron;', 'sdot;', 'sect;', 'shy;', 'Sigma;', 'sigma;', 'sigmaf;', 'sim;', 'spades;', 'sub;', 'sube;', 'sum;', 'sup;', 'sup1;', 'sup2;', 'sup3;', 'supe;', 'szlig;', 'Tau;', 'tau;', 'there4;', 'Theta;', 'theta;', 'thetasym;', 'thinsp;', 'THORN;', 'thorn;', 'tilde;', 'times;', 'trade;', 'Uacute;', 'uacute;', 'uArr;', 'uarr;', 'Ucirc;', 'ucirc;', 'Ugrave;', 'ugrave;', 'uml;', 'upsih;', 'Upsilon;', 'upsilon;', 'Uuml;', 'uuml;', 'weierp;', 'Xi;', 'xi;', 'Yacute;', 'yacute;', 'yen;', 'Yuml;', 'yuml;', 'Zeta;', 'zeta;', 'zwj;', 'zwnj;'];\n\n return values.map(function(value){\n return {\n caption: value,\n snippet: value,\n meta: \"html entity\",\n score: 1000000\n };\n });\n };\n\n}).call(HtmlCompletions.prototype);\n\nexports.HtmlCompletions = HtmlCompletions;\n});\n\nace.define(\"ace/mode/html\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/text\",\"ace/mode/javascript\",\"ace/mode/css\",\"ace/mode/html_highlight_rules\",\"ace/mode/behaviour/xml\",\"ace/mode/folding/html\",\"ace/mode/html_completions\",\"ace/worker/worker_client\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar TextMode = require(\"./text\").Mode;\nvar JavaScriptMode = require(\"./javascript\").Mode;\nvar CssMode = require(\"./css\").Mode;\nvar HtmlHighlightRules = require(\"./html_highlight_rules\").HtmlHighlightRules;\nvar XmlBehaviour = require(\"./behaviour/xml\").XmlBehaviour;\nvar HtmlFoldMode = require(\"./folding/html\").FoldMode;\nvar HtmlCompletions = require(\"./html_completions\").HtmlCompletions;\nvar WorkerClient = require(\"../worker/worker_client\").WorkerClient;\nvar voidElements = [\"area\", \"base\", \"br\", \"col\", \"embed\", \"hr\", \"img\", \"input\", \"keygen\", \"link\", \"meta\", \"menuitem\", \"param\", \"source\", \"track\", \"wbr\"];\nvar optionalEndTags = [\"li\", \"dt\", \"dd\", \"p\", \"rt\", \"rp\", \"optgroup\", \"option\", \"colgroup\", \"td\", \"th\"];\n\nvar Mode = function(options) {\n this.fragmentContext = options && options.fragmentContext;\n this.HighlightRules = HtmlHighlightRules;\n this.$behaviour = new XmlBehaviour();\n this.$completer = new HtmlCompletions();\n \n this.createModeDelegates({\n \"js-\": JavaScriptMode,\n \"css-\": CssMode\n });\n \n this.foldingRules = new HtmlFoldMode(this.voidElements, lang.arrayToMap(optionalEndTags));\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.blockComment = {start: \"\"};\n\n this.voidElements = lang.arrayToMap(voidElements);\n\n this.getNextLineIndent = function(state, line, tab) {\n return this.$getIndent(line);\n };\n\n this.checkOutdent = function(state, line, input) {\n return false;\n };\n\n this.getCompletions = function(state, session, pos, prefix) {\n return this.$completer.getCompletions(state, session, pos, prefix);\n };\n\n this.createWorker = function(session) {\n if (this.constructor != Mode)\n return;\n var worker = new WorkerClient([\"ace\"], \"ace/mode/html_worker\", \"Worker\");\n worker.attachToDocument(session.getDocument());\n\n if (this.fragmentContext)\n worker.call(\"setOptions\", [{context: this.fragmentContext}]);\n\n worker.on(\"error\", function(e) {\n session.setAnnotations(e.data);\n });\n\n worker.on(\"terminate\", function() {\n session.clearAnnotations();\n });\n\n return worker;\n };\n\n this.$id = \"ace/mode/html\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n});\n\nace.define(\"ace/mode/behaviour/liquid\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/behaviour\",\"ace/mode/behaviour/xml\",\"ace/token_iterator\",\"ace/lib/lang\"], function(require, exports, module) {\n \"use strict\";\n \n var oop = require(\"../../lib/oop\");\n var Behaviour = require(\"../behaviour\").Behaviour;\n var XmlBehaviour = require(\"./xml\").XmlBehaviour;\n var TokenIterator = require(\"../../token_iterator\").TokenIterator;\n var lang = require(\"../../lib/lang\");\n \n function is(token, type) {\n return token && token.type.lastIndexOf(type + \".xml\") > -1;\n }\n \n var LiquidBehaviour = function () {\n XmlBehaviour.call(this);\n this.add(\"autoBraceTagClosing\",\"insertion\", function (state, action, editor, session, text) {\n if (text == '}') {\n var position = editor.getSelectionRange().start;\n var iterator = new TokenIterator(session, position.row, position.column);\n var token = iterator.getCurrentToken() || iterator.stepBackward();\n if (!token || !( token.value.trim() === '%' || is(token, \"tag-name\") || is(token, \"tag-whitespace\") || is(token, \"attribute-name\") || is(token, \"attribute-equals\") || is(token, \"attribute-value\")))\n return;\n if (is(token, \"reference.attribute-value\"))\n return;\n\n if (is(token, \"attribute-value\")) {\n var tokenEndColumn = iterator.getCurrentTokenColumn() + token.value.length;\n if (position.column < tokenEndColumn)\n return;\n if (position.column == tokenEndColumn) {\n var nextToken = iterator.stepForward();\n if (nextToken && is(nextToken, \"attribute-value\"))\n return;\n iterator.stepBackward();\n }\n }\n if (/{%\\s*%/.test(session.getLine(position.row))) return;\n if (/^\\s*}/.test(session.getLine(position.row).slice(position.column)))\n return;\n while (!token.type != 'keyword.block') {\n token = iterator.stepBackward();\n if (token.value == '{%') {\n while(true) {\n token = iterator.stepForward();\n\n if (token.type === 'keyword.block') {\n break;\n } else if (token.value.trim() == '%') {\n token = null;\n break;\n }\n }\n break; \n }\n }\n if (!token ) return ;\n var tokenRow = iterator.getCurrentTokenRow();\n var tokenColumn = iterator.getCurrentTokenColumn();\n if (is(iterator.stepBackward(), \"end-tag-open\"))\n return;\n \n var element = token.value;\n if (tokenRow == position.row)\n element = element.substring(0, position.column - tokenColumn);\n \n if (this.voidElements.hasOwnProperty(element.toLowerCase()))\n return;\n return {\n text: \"}\" + \"{% end\" + element + \" %}\",\n selection: [1, 1]\n };\n }\n });\n \n };\n\n oop.inherits(LiquidBehaviour, Behaviour);\n \n exports.LiquidBehaviour = LiquidBehaviour;\n });\n\nace.define(\"ace/mode/liquid_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\",\"ace/mode/html_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar HtmlHighlightRules = require(\"./html_highlight_rules\").HtmlHighlightRules;\n\nvar LiquidHighlightRules = function() {\n HtmlHighlightRules.call(this);\n var functions = (\n \"date|capitalize|downcase|upcase|first|last|join|sort|map|size|escape|\" +\n \"escape_once|strip_html|strip_newlines|newline_to_br|replace|replace_first|\" +\n \"truncate|truncatewords|prepend|append|minus|plus|times|divided_by|split\"\n );\n\n var keywords = (\n \"capture|endcapture|case|endcase|when|comment|endcomment|\" +\n \"cycle|for|endfor|in|reversed|if|endif|else|elsif|include|endinclude|unless|endunless|\" +\n \"style|text|image|widget|plugin|marker|endmarker|tablerow|endtablerow\"\n );\n var blocks = 'for|if|case|capture|unless|tablerow|marker|comment';\n\n var builtinVariables = 'forloop|tablerowloop';\n\n var definitions = (\"assign\");\n\n var keywordMapper = this.createKeywordMapper({\n \"variable.language\": builtinVariables,\n \"keyword\": keywords,\n \"keyword.block\": blocks,\n \"support.function\": functions,\n \"keyword.definition\": definitions\n }, \"identifier\");\n for (var rule in this.$rules) {\n this.$rules[rule].unshift({\n token : \"variable\",\n regex : \"{%\",\n push : \"liquid-start\"\n }, {\n token : \"variable\",\n regex : \"{{\",\n push : \"liquid-start\"\n });\n }\n\n this.addRules({\n \"liquid-start\" : [{\n token: \"variable\",\n regex: \"}}\",\n next: \"pop\"\n }, {\n token: \"variable\",\n regex: \"%}\",\n next: \"pop\"\n }, {\n token : \"string\", // single line\n regex : '[\"](?:(?:\\\\\\\\.)|(?:[^\"\\\\\\\\]))*?[\"]'\n }, {\n token : \"string\", // single line\n regex : \"['](?:(?:\\\\\\\\.)|(?:[^'\\\\\\\\]))*?[']\"\n }, {\n token : \"constant.numeric\", // hex\n regex : \"0[xX][0-9a-fA-F]+\\\\b\"\n }, {\n token : \"constant.numeric\", // float\n regex : \"[+-]?\\\\d+(?:(?:\\\\.\\\\d*)?(?:[eE][+-]?\\\\d+)?)?\\\\b\"\n }, {\n token : \"constant.language.boolean\",\n regex : \"(?:true|false)\\\\b\"\n }, {\n token : keywordMapper,\n regex : \"[a-zA-Z_$][a-zA-Z0-9_$]*\\\\b\"\n }, {\n token : \"keyword.operator\",\n regex : \"/|\\\\*|\\\\-|\\\\+|=|!=|\\\\?\\\\:\"\n }, {\n token : \"paren.lparen\",\n regex : /[\\[\\({]/\n }, {\n token : \"paren.rparen\",\n regex : /[\\])}]/\n }, {\n token : \"text\",\n regex : \"\\\\s+\"\n }]\n });\n\n this.normalizeRules();\n};\noop.inherits(LiquidHighlightRules, TextHighlightRules);\n\nexports.LiquidHighlightRules = LiquidHighlightRules;\n});\n\nace.define(\"ace/mode/liquid\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/html\",\"ace/mode/html_completions\",\"ace/mode/behaviour/liquid\",\"ace/mode/liquid_highlight_rules\",\"ace/mode/matching_brace_outdent\"], function(require, exports, module) {\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar HtmlMode = require(\"./html\").Mode;\nvar HtmlCompletions = require(\"./html_completions\").HtmlCompletions;\nvar LiquidBehaviour = require(\"./behaviour/liquid\").LiquidBehaviour;\nvar LiquidHighlightRules = require(\"./liquid_highlight_rules\").LiquidHighlightRules;\nvar MatchingBraceOutdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\n\nvar Mode = function() {\n this.HighlightRules = LiquidHighlightRules;\n this.$outdent = new MatchingBraceOutdent();\n this.$behaviour = new LiquidBehaviour();\n this.$completer = new HtmlCompletions();\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n this.blockComment = {start: \"\"};\n this.voidElements = new HtmlMode().voidElements;\n \n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n\n var tokenizedLine = this.getTokenizer().getLineTokens(line, state);\n var tokens = tokenizedLine.tokens;\n var endState = tokenizedLine.state;\n\n if (tokens.length && tokens[tokens.length-1].type == \"comment\") {\n return indent;\n }\n\n if (state == \"start\") {\n var match = line.match(/^.*[\\{\\(\\[]\\s*$/);\n if (match) {\n indent += tab;\n }\n }\n\n return indent;\n };\n\n this.checkOutdent = function(state, line, input) {\n return this.$outdent.checkOutdent(line, input);\n };\n\n this.autoOutdent = function(state, doc, row) {\n this.$outdent.autoOutdent(doc, row);\n };\n\n this.$id = \"ace/mode/liquid\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/liquid\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file3f := &embedded.EmbeddedFile{ Filename: "4e9e0e943cacfdf9d350ba0c59bfb53b.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/doc_comment_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar DocCommentHighlightRules = function() {\n this.$rules = {\n \"start\" : [ {\n token : \"comment.doc.tag\",\n regex : \"@[\\\\w\\\\d_]+\" // TODO: fix email addresses\n }, \n DocCommentHighlightRules.getTagRule(),\n {\n defaultToken : \"comment.doc\",\n caseInsensitive: true\n }]\n };\n};\n\noop.inherits(DocCommentHighlightRules, TextHighlightRules);\n\nDocCommentHighlightRules.getTagRule = function(start) {\n return {\n token : \"comment.doc.tag.storage.type\",\n regex : \"\\\\b(?:TODO|FIXME|XXX|HACK)\\\\b\"\n };\n};\n\nDocCommentHighlightRules.getStartRule = function(start) {\n return {\n token : \"comment.doc\", // doc comment\n regex : \"\\\\/\\\\*(?=\\\\*)\",\n next : start\n };\n};\n\nDocCommentHighlightRules.getEndRule = function (start) {\n return {\n token : \"comment.doc\", // closing comment\n regex : \"\\\\*\\\\/\",\n next : start\n };\n};\n\n\nexports.DocCommentHighlightRules = DocCommentHighlightRules;\n\n});\n\nace.define(\"ace/mode/scad_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/doc_comment_highlight_rules\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar DocCommentHighlightRules = require(\"./doc_comment_highlight_rules\").DocCommentHighlightRules;\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar scadHighlightRules = function() {\n var keywordMapper = this.createKeywordMapper({\n \"variable.language\": \"this\",\n \"keyword\": \"module|if|else|for\",\n \"constant.language\": \"NULL\"\n }, \"identifier\");\n\n this.$rules = {\n \"start\" : [\n {\n token : \"comment\",\n regex : \"\\\\/\\\\/.*$\"\n },\n DocCommentHighlightRules.getStartRule(\"start\"),\n {\n token : \"comment\", // multi line comment\n regex : \"\\\\/\\\\*\",\n next : \"comment\"\n }, {\n token : \"string\", // single line\n regex : '[\"](?:(?:\\\\\\\\.)|(?:[^\"\\\\\\\\]))*?[\"]'\n }, {\n token : \"string\", // multi line string start\n regex : '[\"].*\\\\\\\\$',\n next : \"qqstring\"\n }, {\n token : \"string\", // single line\n regex : \"['](?:(?:\\\\\\\\.)|(?:[^'\\\\\\\\]))*?[']\"\n }, {\n token : \"string\", // multi line string start\n regex : \"['].*\\\\\\\\$\",\n next : \"qstring\"\n }, {\n token : \"constant.numeric\", // hex\n regex : \"0[xX][0-9a-fA-F]+\\\\b\"\n }, {\n token : \"constant.numeric\", // float\n regex : \"[+-]?\\\\d+(?:(?:\\\\.\\\\d*)?(?:[eE][+-]?\\\\d+)?)?\\\\b\"\n }, {\n token : \"constant\", // \n regex : \"<[a-zA-Z0-9.]+>\"\n }, {\n token : \"keyword\", // pre-compiler directivs\n regex : \"(?:use|include)\"\n }, {\n token : keywordMapper,\n regex : \"[a-zA-Z_$][a-zA-Z0-9_$]*\\\\b\"\n }, {\n token : \"keyword.operator\",\n regex : \"!|\\\\$|%|&|\\\\*|\\\\-\\\\-|\\\\-|\\\\+\\\\+|\\\\+|~|==|=|!=|<=|>=|<<=|>>=|>>>=|<>|<|>|!|&&|\\\\|\\\\||\\\\?\\\\:|\\\\*=|%=|\\\\+=|\\\\-=|&=|\\\\^=|\\\\b(?:in|new|delete|typeof|void)\"\n }, {\n token : \"paren.lparen\",\n regex : \"[[({]\"\n }, {\n token : \"paren.rparen\",\n regex : \"[\\\\])}]\"\n }, {\n token : \"text\",\n regex : \"\\\\s+\"\n }\n ],\n \"comment\" : [\n {\n token : \"comment\", // closing comment\n regex : \"\\\\*\\\\/\",\n next : \"start\"\n }, {\n defaultToken : \"comment\"\n }\n ],\n \"qqstring\" : [\n {\n token : \"string\",\n regex : '(?:(?:\\\\\\\\.)|(?:[^\"\\\\\\\\]))*?\"',\n next : \"start\"\n }, {\n token : \"string\",\n regex : '.+'\n }\n ],\n \"qstring\" : [\n {\n token : \"string\",\n regex : \"(?:(?:\\\\\\\\.)|(?:[^'\\\\\\\\]))*?'\",\n next : \"start\"\n }, {\n token : \"string\",\n regex : '.+'\n }\n ]\n };\n \n this.embedRules(DocCommentHighlightRules, \"doc-\",\n [ DocCommentHighlightRules.getEndRule(\"start\") ]);\n};\n\noop.inherits(scadHighlightRules, TextHighlightRules);\n\nexports.scadHighlightRules = scadHighlightRules;\n});\n\nace.define(\"ace/mode/matching_brace_outdent\",[\"require\",\"exports\",\"module\",\"ace/range\"], function(require, exports, module) {\n\"use strict\";\n\nvar Range = require(\"../range\").Range;\n\nvar MatchingBraceOutdent = function() {};\n\n(function() {\n\n this.checkOutdent = function(line, input) {\n if (! /^\\s+$/.test(line))\n return false;\n\n return /^\\s*\\}/.test(input);\n };\n\n this.autoOutdent = function(doc, row) {\n var line = doc.getLine(row);\n var match = line.match(/^(\\s*\\})/);\n\n if (!match) return 0;\n\n var column = match[1].length;\n var openBracePos = doc.findMatchingBracket({row: row, column: column});\n\n if (!openBracePos || openBracePos.row == row) return 0;\n\n var indent = this.$getIndent(doc.getLine(openBracePos.row));\n doc.replace(new Range(row, 0, row, column-1), indent);\n };\n\n this.$getIndent = function(line) {\n return line.match(/^\\s*/)[0];\n };\n\n}).call(MatchingBraceOutdent.prototype);\n\nexports.MatchingBraceOutdent = MatchingBraceOutdent;\n});\n\nace.define(\"ace/mode/folding/cstyle\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/range\",\"ace/mode/folding/fold_mode\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Range = require(\"../../range\").Range;\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function(commentRegex) {\n if (commentRegex) {\n this.foldingStartMarker = new RegExp(\n this.foldingStartMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.start)\n );\n this.foldingStopMarker = new RegExp(\n this.foldingStopMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.end)\n );\n }\n};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n \n this.foldingStartMarker = /([\\{\\[\\(])[^\\}\\]\\)]*$|^\\s*(\\/\\*)/;\n this.foldingStopMarker = /^[^\\[\\{\\(]*([\\}\\]\\)])|^[\\s\\*]*(\\*\\/)/;\n this.singleLineBlockCommentRe= /^\\s*(\\/\\*).*\\*\\/\\s*$/;\n this.tripleStarBlockCommentRe = /^\\s*(\\/\\*\\*\\*).*\\*\\/\\s*$/;\n this.startRegionRe = /^\\s*(\\/\\*|\\/\\/)#?region\\b/;\n this._getFoldWidgetBase = this.getFoldWidget;\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n \n if (this.singleLineBlockCommentRe.test(line)) {\n if (!this.startRegionRe.test(line) && !this.tripleStarBlockCommentRe.test(line))\n return \"\";\n }\n \n var fw = this._getFoldWidgetBase(session, foldStyle, row);\n \n if (!fw && this.startRegionRe.test(line))\n return \"start\"; // lineCommentRegionStart\n \n return fw;\n };\n\n this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {\n var line = session.getLine(row);\n \n if (this.startRegionRe.test(line))\n return this.getCommentRegionBlock(session, line, row);\n \n var match = line.match(this.foldingStartMarker);\n if (match) {\n var i = match.index;\n\n if (match[1])\n return this.openingBracketBlock(session, match[1], row, i);\n \n var range = session.getCommentFoldRange(row, i + match[0].length, 1);\n \n if (range && !range.isMultiLine()) {\n if (forceMultiline) {\n range = this.getSectionRange(session, row);\n } else if (foldStyle != \"all\")\n range = null;\n }\n \n return range;\n }\n\n if (foldStyle === \"markbegin\")\n return;\n\n var match = line.match(this.foldingStopMarker);\n if (match) {\n var i = match.index + match[0].length;\n\n if (match[1])\n return this.closingBracketBlock(session, match[1], row, i);\n\n return session.getCommentFoldRange(row, i, -1);\n }\n };\n \n this.getSectionRange = function(session, row) {\n var line = session.getLine(row);\n var startIndent = line.search(/\\S/);\n var startRow = row;\n var startColumn = line.length;\n row = row + 1;\n var endRow = row;\n var maxRow = session.getLength();\n while (++row < maxRow) {\n line = session.getLine(row);\n var indent = line.search(/\\S/);\n if (indent === -1)\n continue;\n if (startIndent > indent)\n break;\n var subRange = this.getFoldWidgetRange(session, \"all\", row);\n \n if (subRange) {\n if (subRange.start.row <= startRow) {\n break;\n } else if (subRange.isMultiLine()) {\n row = subRange.end.row;\n } else if (startIndent == indent) {\n break;\n }\n }\n endRow = row;\n }\n \n return new Range(startRow, startColumn, endRow, session.getLine(endRow).length);\n };\n this.getCommentRegionBlock = function(session, line, row) {\n var startColumn = line.search(/\\s*$/);\n var maxRow = session.getLength();\n var startRow = row;\n \n var re = /^\\s*(?:\\/\\*|\\/\\/|--)#?(end)?region\\b/;\n var depth = 1;\n while (++row < maxRow) {\n line = session.getLine(row);\n var m = re.exec(line);\n if (!m) continue;\n if (m[1]) depth--;\n else depth++;\n\n if (!depth) break;\n }\n\n var endRow = row;\n if (endRow > startRow) {\n return new Range(startRow, startColumn, endRow, line.length);\n }\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/scad\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/scad_highlight_rules\",\"ace/mode/matching_brace_outdent\",\"ace/mode/behaviour/cstyle\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar scadHighlightRules = require(\"./scad_highlight_rules\").scadHighlightRules;\nvar MatchingBraceOutdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\nvar CstyleBehaviour = require(\"./behaviour/cstyle\").CstyleBehaviour;\nvar CStyleFoldMode = require(\"./folding/cstyle\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = scadHighlightRules;\n this.$outdent = new MatchingBraceOutdent();\n this.$behaviour = new CstyleBehaviour();\n this.foldingRules = new CStyleFoldMode();\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.lineCommentStart = \"//\";\n this.blockComment = {start: \"/*\", end: \"*/\"};\n\n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n\n var tokenizedLine = this.getTokenizer().getLineTokens(line, state);\n var tokens = tokenizedLine.tokens;\n var endState = tokenizedLine.state;\n\n if (tokens.length && tokens[tokens.length-1].type == \"comment\") {\n return indent;\n }\n\n if (state == \"start\") {\n var match = line.match(/^.*[\\{\\(\\[]\\s*$/);\n if (match) {\n indent += tab;\n }\n } else if (state == \"doc-start\") {\n if (endState == \"start\") {\n return \"\";\n }\n var match = line.match(/^\\s*(\\/?)\\*/);\n if (match) {\n if (match[1]) {\n indent += \" \";\n }\n indent += \"* \";\n }\n }\n\n return indent;\n };\n\n this.checkOutdent = function(state, line, input) {\n return this.$outdent.checkOutdent(line, input);\n };\n\n this.autoOutdent = function(state, doc, row) {\n this.$outdent.autoOutdent(doc, row);\n };\n\n this.$id = \"ace/mode/scad\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/scad\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file3g := &embedded.EmbeddedFile{ Filename: "4f0436f3850202d127036b38729c6861.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/theme/tomorrow_night\",[\"require\",\"exports\",\"module\",\"ace/lib/dom\"], function(require, exports, module) {\n\nexports.isDark = true;\nexports.cssClass = \"ace-tomorrow-night\";\nexports.cssText = \".ace-tomorrow-night .ace_gutter {\\\nbackground: #25282c;\\\ncolor: #C5C8C6\\\n}\\\n.ace-tomorrow-night .ace_print-margin {\\\nwidth: 1px;\\\nbackground: #25282c\\\n}\\\n.ace-tomorrow-night {\\\nbackground-color: #1D1F21;\\\ncolor: #C5C8C6\\\n}\\\n.ace-tomorrow-night .ace_cursor {\\\ncolor: #AEAFAD\\\n}\\\n.ace-tomorrow-night .ace_marker-layer .ace_selection {\\\nbackground: #373B41\\\n}\\\n.ace-tomorrow-night.ace_multiselect .ace_selection.ace_start {\\\nbox-shadow: 0 0 3px 0px #1D1F21;\\\n}\\\n.ace-tomorrow-night .ace_marker-layer .ace_step {\\\nbackground: rgb(102, 82, 0)\\\n}\\\n.ace-tomorrow-night .ace_marker-layer .ace_bracket {\\\nmargin: -1px 0 0 -1px;\\\nborder: 1px solid #4B4E55\\\n}\\\n.ace-tomorrow-night .ace_marker-layer .ace_active-line {\\\nbackground: #282A2E\\\n}\\\n.ace-tomorrow-night .ace_gutter-active-line {\\\nbackground-color: #282A2E\\\n}\\\n.ace-tomorrow-night .ace_marker-layer .ace_selected-word {\\\nborder: 1px solid #373B41\\\n}\\\n.ace-tomorrow-night .ace_invisible {\\\ncolor: #4B4E55\\\n}\\\n.ace-tomorrow-night .ace_keyword,\\\n.ace-tomorrow-night .ace_meta,\\\n.ace-tomorrow-night .ace_storage,\\\n.ace-tomorrow-night .ace_storage.ace_type,\\\n.ace-tomorrow-night .ace_support.ace_type {\\\ncolor: #B294BB\\\n}\\\n.ace-tomorrow-night .ace_keyword.ace_operator {\\\ncolor: #8ABEB7\\\n}\\\n.ace-tomorrow-night .ace_constant.ace_character,\\\n.ace-tomorrow-night .ace_constant.ace_language,\\\n.ace-tomorrow-night .ace_constant.ace_numeric,\\\n.ace-tomorrow-night .ace_keyword.ace_other.ace_unit,\\\n.ace-tomorrow-night .ace_support.ace_constant,\\\n.ace-tomorrow-night .ace_variable.ace_parameter {\\\ncolor: #DE935F\\\n}\\\n.ace-tomorrow-night .ace_constant.ace_other {\\\ncolor: #CED1CF\\\n}\\\n.ace-tomorrow-night .ace_invalid {\\\ncolor: #CED2CF;\\\nbackground-color: #DF5F5F\\\n}\\\n.ace-tomorrow-night .ace_invalid.ace_deprecated {\\\ncolor: #CED2CF;\\\nbackground-color: #B798BF\\\n}\\\n.ace-tomorrow-night .ace_fold {\\\nbackground-color: #81A2BE;\\\nborder-color: #C5C8C6\\\n}\\\n.ace-tomorrow-night .ace_entity.ace_name.ace_function,\\\n.ace-tomorrow-night .ace_support.ace_function,\\\n.ace-tomorrow-night .ace_variable {\\\ncolor: #81A2BE\\\n}\\\n.ace-tomorrow-night .ace_support.ace_class,\\\n.ace-tomorrow-night .ace_support.ace_type {\\\ncolor: #F0C674\\\n}\\\n.ace-tomorrow-night .ace_heading,\\\n.ace-tomorrow-night .ace_markup.ace_heading,\\\n.ace-tomorrow-night .ace_string {\\\ncolor: #B5BD68\\\n}\\\n.ace-tomorrow-night .ace_entity.ace_name.ace_tag,\\\n.ace-tomorrow-night .ace_entity.ace_other.ace_attribute-name,\\\n.ace-tomorrow-night .ace_meta.ace_tag,\\\n.ace-tomorrow-night .ace_string.ace_regexp,\\\n.ace-tomorrow-night .ace_variable {\\\ncolor: #CC6666\\\n}\\\n.ace-tomorrow-night .ace_comment {\\\ncolor: #969896\\\n}\\\n.ace-tomorrow-night .ace_indent-guide {\\\nbackground: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWNgYGBgYHB3d/8PAAOIAdULw8qMAAAAAElFTkSuQmCC) right repeat-y\\\n}\";\n\nvar dom = require(\"../lib/dom\");\ndom.importCssString(exports.cssText, exports.cssClass);\n}); (function() {\n ace.require([\"ace/theme/tomorrow_night\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file3h := &embedded.EmbeddedFile{ Filename: "509903d9380e0dd525a67a6dfaccd64d.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/tex_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar TexHighlightRules = function(textClass) {\n\n if (!textClass)\n textClass = \"text\";\n\n this.$rules = {\n \"start\" : [\n {\n token : \"comment\",\n regex : \"%.*$\"\n }, {\n token : textClass, // non-command\n regex : \"\\\\\\\\[$&%#\\\\{\\\\}]\"\n }, {\n token : \"keyword\", // command\n regex : \"\\\\\\\\(?:documentclass|usepackage|newcounter|setcounter|addtocounter|value|arabic|stepcounter|newenvironment|renewenvironment|ref|vref|eqref|pageref|label|cite[a-zA-Z]*|tag|begin|end|bibitem)\\\\b\",\n next : \"nospell\"\n }, {\n token : \"keyword\", // command\n regex : \"\\\\\\\\(?:[a-zA-Z0-9]+|[^a-zA-Z0-9])\"\n }, {\n token : \"paren.keyword.operator\",\n regex : \"[[({]\"\n }, {\n token : \"paren.keyword.operator\",\n regex : \"[\\\\])}]\"\n }, {\n token : textClass,\n regex : \"\\\\s+\"\n }\n ],\n \"nospell\" : [\n {\n token : \"comment\",\n regex : \"%.*$\",\n next : \"start\"\n }, {\n token : \"nospell.\" + textClass, // non-command\n regex : \"\\\\\\\\[$&%#\\\\{\\\\}]\"\n }, {\n token : \"keyword\", // command\n regex : \"\\\\\\\\(?:documentclass|usepackage|newcounter|setcounter|addtocounter|value|arabic|stepcounter|newenvironment|renewenvironment|ref|vref|eqref|pageref|label|cite[a-zA-Z]*|tag|begin|end|bibitem)\\\\b\"\n }, {\n token : \"keyword\", // command\n regex : \"\\\\\\\\(?:[a-zA-Z0-9]+|[^a-zA-Z0-9])\",\n next : \"start\"\n }, {\n token : \"paren.keyword.operator\",\n regex : \"[[({]\"\n }, {\n token : \"paren.keyword.operator\",\n regex : \"[\\\\])]\"\n }, {\n token : \"paren.keyword.operator\",\n regex : \"}\",\n next : \"start\"\n }, {\n token : \"nospell.\" + textClass,\n regex : \"\\\\s+\"\n }, {\n token : \"nospell.\" + textClass,\n regex : \"\\\\w+\"\n }\n ]\n };\n};\n\noop.inherits(TexHighlightRules, TextHighlightRules);\n\nexports.TexHighlightRules = TexHighlightRules;\n});\n\nace.define(\"ace/mode/r_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/text_highlight_rules\",\"ace/mode/tex_highlight_rules\"], function(require, exports, module)\n{\n\n var oop = require(\"../lib/oop\");\n var lang = require(\"../lib/lang\");\n var TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n var TexHighlightRules = require(\"./tex_highlight_rules\").TexHighlightRules;\n\n var RHighlightRules = function()\n {\n\n var keywords = lang.arrayToMap(\n (\"function|if|in|break|next|repeat|else|for|return|switch|while|try|tryCatch|stop|warning|require|library|attach|detach|source|setMethod|setGeneric|setGroupGeneric|setClass\")\n .split(\"|\")\n );\n\n var buildinConstants = lang.arrayToMap(\n (\"NULL|NA|TRUE|FALSE|T|F|Inf|NaN|NA_integer_|NA_real_|NA_character_|\" +\n \"NA_complex_\").split(\"|\")\n );\n\n this.$rules = {\n \"start\" : [\n {\n token : \"comment.sectionhead\",\n regex : \"#+(?!').*(?:----|====|####)\\\\s*$\"\n },\n {\n token : \"comment\",\n regex : \"#+'\",\n next : \"rd-start\"\n },\n {\n token : \"comment\",\n regex : \"#.*$\"\n },\n {\n token : \"string\", // multi line string start\n regex : '[\"]',\n next : \"qqstring\"\n },\n {\n token : \"string\", // multi line string start\n regex : \"[']\",\n next : \"qstring\"\n },\n {\n token : \"constant.numeric\", // hex\n regex : \"0[xX][0-9a-fA-F]+[Li]?\\\\b\"\n },\n {\n token : \"constant.numeric\", // explicit integer\n regex : \"\\\\d+L\\\\b\"\n },\n {\n token : \"constant.numeric\", // number\n regex : \"\\\\d+(?:\\\\.\\\\d*)?(?:[eE][+\\\\-]?\\\\d*)?i?\\\\b\"\n },\n {\n token : \"constant.numeric\", // number with leading decimal\n regex : \"\\\\.\\\\d+(?:[eE][+\\\\-]?\\\\d*)?i?\\\\b\"\n },\n {\n token : \"constant.language.boolean\",\n regex : \"(?:TRUE|FALSE|T|F)\\\\b\"\n },\n {\n token : \"identifier\",\n regex : \"`.*?`\"\n },\n {\n onMatch : function(value) {\n if (keywords[value])\n return \"keyword\";\n else if (buildinConstants[value])\n return \"constant.language\";\n else if (value == '...' || value.match(/^\\.\\.\\d+$/))\n return \"variable.language\";\n else\n return \"identifier\";\n },\n regex : \"[a-zA-Z.][a-zA-Z0-9._]*\\\\b\"\n },\n {\n token : \"keyword.operator\",\n regex : \"%%|>=|<=|==|!=|\\\\->|<\\\\-|\\\\|\\\\||&&|=|\\\\+|\\\\-|\\\\*|/|\\\\^|>|<|!|&|\\\\||~|\\\\$|:\"\n },\n {\n token : \"keyword.operator\", // infix operators\n regex : \"%.*?%\"\n },\n {\n token : \"paren.keyword.operator\",\n regex : \"[[({]\"\n },\n {\n token : \"paren.keyword.operator\",\n regex : \"[\\\\])}]\"\n },\n {\n token : \"text\",\n regex : \"\\\\s+\"\n }\n ],\n \"qqstring\" : [\n {\n token : \"string\",\n regex : '(?:(?:\\\\\\\\.)|(?:[^\"\\\\\\\\]))*?\"',\n next : \"start\"\n },\n {\n token : \"string\",\n regex : '.+'\n }\n ],\n \"qstring\" : [\n {\n token : \"string\",\n regex : \"(?:(?:\\\\\\\\.)|(?:[^'\\\\\\\\]))*?'\",\n next : \"start\"\n },\n {\n token : \"string\",\n regex : '.+'\n }\n ]\n };\n\n var rdRules = new TexHighlightRules(\"comment\").getRules();\n for (var i = 0; i < rdRules[\"start\"].length; i++) {\n rdRules[\"start\"][i].token += \".virtual-comment\";\n }\n\n this.addRules(rdRules, \"rd-\");\n this.$rules[\"rd-start\"].unshift({\n token: \"text\",\n regex: \"^\",\n next: \"start\"\n });\n this.$rules[\"rd-start\"].unshift({\n token : \"keyword\",\n regex : \"@(?!@)[^ ]*\"\n });\n this.$rules[\"rd-start\"].unshift({\n token : \"comment\",\n regex : \"@@\"\n });\n this.$rules[\"rd-start\"].push({\n token : \"comment\",\n regex : \"[^%\\\\\\\\[({\\\\])}]+\"\n });\n };\n\n oop.inherits(RHighlightRules, TextHighlightRules);\n\n exports.RHighlightRules = RHighlightRules;\n});\n\nace.define(\"ace/mode/matching_brace_outdent\",[\"require\",\"exports\",\"module\",\"ace/range\"], function(require, exports, module) {\n\"use strict\";\n\nvar Range = require(\"../range\").Range;\n\nvar MatchingBraceOutdent = function() {};\n\n(function() {\n\n this.checkOutdent = function(line, input) {\n if (! /^\\s+$/.test(line))\n return false;\n\n return /^\\s*\\}/.test(input);\n };\n\n this.autoOutdent = function(doc, row) {\n var line = doc.getLine(row);\n var match = line.match(/^(\\s*\\})/);\n\n if (!match) return 0;\n\n var column = match[1].length;\n var openBracePos = doc.findMatchingBracket({row: row, column: column});\n\n if (!openBracePos || openBracePos.row == row) return 0;\n\n var indent = this.$getIndent(doc.getLine(openBracePos.row));\n doc.replace(new Range(row, 0, row, column-1), indent);\n };\n\n this.$getIndent = function(line) {\n return line.match(/^\\s*/)[0];\n };\n\n}).call(MatchingBraceOutdent.prototype);\n\nexports.MatchingBraceOutdent = MatchingBraceOutdent;\n});\n\nace.define(\"ace/mode/r\",[\"require\",\"exports\",\"module\",\"ace/unicode\",\"ace/range\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/text_highlight_rules\",\"ace/mode/r_highlight_rules\",\"ace/mode/matching_brace_outdent\"], function(require, exports, module) {\n \"use strict\";\n\n var unicode = require(\"../unicode\");\n var Range = require(\"../range\").Range;\n var oop = require(\"../lib/oop\");\n var TextMode = require(\"./text\").Mode;\n var TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n var RHighlightRules = require(\"./r_highlight_rules\").RHighlightRules;\n var MatchingBraceOutdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\n\n var Mode = function(){\n this.HighlightRules = RHighlightRules;\n this.$outdent = new MatchingBraceOutdent();\n this.$behaviour = this.$defaultBehaviour;\n };\n oop.inherits(Mode, TextMode);\n\n (function() {\n this.lineCommentStart = \"#\";\n this.tokenRe = new RegExp(\"^[\" + unicode.wordChars + \"._]+\", \"g\");\n\n this.nonTokenRe = new RegExp(\"^(?:[^\" + unicode.wordChars + \"._]|\\s])+\", \"g\");\n this.$id = \"ace/mode/r\";\n }).call(Mode.prototype);\n exports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/r\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file3i := &embedded.EmbeddedFile{ Filename: "50c9c27033a8ed9876273bd72fddceb9.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/doc_comment_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar DocCommentHighlightRules = function() {\n this.$rules = {\n \"start\" : [ {\n token : \"comment.doc.tag\",\n regex : \"@[\\\\w\\\\d_]+\" // TODO: fix email addresses\n }, \n DocCommentHighlightRules.getTagRule(),\n {\n defaultToken : \"comment.doc\",\n caseInsensitive: true\n }]\n };\n};\n\noop.inherits(DocCommentHighlightRules, TextHighlightRules);\n\nDocCommentHighlightRules.getTagRule = function(start) {\n return {\n token : \"comment.doc.tag.storage.type\",\n regex : \"\\\\b(?:TODO|FIXME|XXX|HACK)\\\\b\"\n };\n};\n\nDocCommentHighlightRules.getStartRule = function(start) {\n return {\n token : \"comment.doc\", // doc comment\n regex : \"\\\\/\\\\*(?=\\\\*)\",\n next : start\n };\n};\n\nDocCommentHighlightRules.getEndRule = function (start) {\n return {\n token : \"comment.doc\", // closing comment\n regex : \"\\\\*\\\\/\",\n next : start\n };\n};\n\n\nexports.DocCommentHighlightRules = DocCommentHighlightRules;\n\n});\n\nace.define(\"ace/mode/css_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar supportType = exports.supportType = \"align-content|align-items|align-self|all|animation|animation-delay|animation-direction|animation-duration|animation-fill-mode|animation-iteration-count|animation-name|animation-play-state|animation-timing-function|backface-visibility|background|background-attachment|background-blend-mode|background-clip|background-color|background-image|background-origin|background-position|background-repeat|background-size|border|border-bottom|border-bottom-color|border-bottom-left-radius|border-bottom-right-radius|border-bottom-style|border-bottom-width|border-collapse|border-color|border-image|border-image-outset|border-image-repeat|border-image-slice|border-image-source|border-image-width|border-left|border-left-color|border-left-style|border-left-width|border-radius|border-right|border-right-color|border-right-style|border-right-width|border-spacing|border-style|border-top|border-top-color|border-top-left-radius|border-top-right-radius|border-top-style|border-top-width|border-width|bottom|box-shadow|box-sizing|caption-side|clear|clip|color|column-count|column-fill|column-gap|column-rule|column-rule-color|column-rule-style|column-rule-width|column-span|column-width|columns|content|counter-increment|counter-reset|cursor|direction|display|empty-cells|filter|flex|flex-basis|flex-direction|flex-flow|flex-grow|flex-shrink|flex-wrap|float|font|font-family|font-size|font-size-adjust|font-stretch|font-style|font-variant|font-weight|hanging-punctuation|height|justify-content|left|letter-spacing|line-height|list-style|list-style-image|list-style-position|list-style-type|margin|margin-bottom|margin-left|margin-right|margin-top|max-height|max-width|max-zoom|min-height|min-width|min-zoom|nav-down|nav-index|nav-left|nav-right|nav-up|opacity|order|outline|outline-color|outline-offset|outline-style|outline-width|overflow|overflow-x|overflow-y|padding|padding-bottom|padding-left|padding-right|padding-top|page-break-after|page-break-before|page-break-inside|perspective|perspective-origin|position|quotes|resize|right|tab-size|table-layout|text-align|text-align-last|text-decoration|text-decoration-color|text-decoration-line|text-decoration-style|text-indent|text-justify|text-overflow|text-shadow|text-transform|top|transform|transform-origin|transform-style|transition|transition-delay|transition-duration|transition-property|transition-timing-function|unicode-bidi|user-select|user-zoom|vertical-align|visibility|white-space|width|word-break|word-spacing|word-wrap|z-index\";\nvar supportFunction = exports.supportFunction = \"rgb|rgba|url|attr|counter|counters\";\nvar supportConstant = exports.supportConstant = \"absolute|after-edge|after|all-scroll|all|alphabetic|always|antialiased|armenian|auto|avoid-column|avoid-page|avoid|balance|baseline|before-edge|before|below|bidi-override|block-line-height|block|bold|bolder|border-box|both|bottom|box|break-all|break-word|capitalize|caps-height|caption|center|central|char|circle|cjk-ideographic|clone|close-quote|col-resize|collapse|column|consider-shifts|contain|content-box|cover|crosshair|cubic-bezier|dashed|decimal-leading-zero|decimal|default|disabled|disc|disregard-shifts|distribute-all-lines|distribute-letter|distribute-space|distribute|dotted|double|e-resize|ease-in|ease-in-out|ease-out|ease|ellipsis|end|exclude-ruby|fill|fixed|georgian|glyphs|grid-height|groove|hand|hanging|hebrew|help|hidden|hiragana-iroha|hiragana|horizontal|icon|ideograph-alpha|ideograph-numeric|ideograph-parenthesis|ideograph-space|ideographic|inactive|include-ruby|inherit|initial|inline-block|inline-box|inline-line-height|inline-table|inline|inset|inside|inter-ideograph|inter-word|invert|italic|justify|katakana-iroha|katakana|keep-all|last|left|lighter|line-edge|line-through|line|linear|list-item|local|loose|lower-alpha|lower-greek|lower-latin|lower-roman|lowercase|lr-tb|ltr|mathematical|max-height|max-size|medium|menu|message-box|middle|move|n-resize|ne-resize|newspaper|no-change|no-close-quote|no-drop|no-open-quote|no-repeat|none|normal|not-allowed|nowrap|nw-resize|oblique|open-quote|outset|outside|overline|padding-box|page|pointer|pre-line|pre-wrap|pre|preserve-3d|progress|relative|repeat-x|repeat-y|repeat|replaced|reset-size|ridge|right|round|row-resize|rtl|s-resize|scroll|se-resize|separate|slice|small-caps|small-caption|solid|space|square|start|static|status-bar|step-end|step-start|steps|stretch|strict|sub|super|sw-resize|table-caption|table-cell|table-column-group|table-column|table-footer-group|table-header-group|table-row-group|table-row|table|tb-rl|text-after-edge|text-before-edge|text-bottom|text-size|text-top|text|thick|thin|transparent|underline|upper-alpha|upper-latin|upper-roman|uppercase|use-script|vertical-ideographic|vertical-text|visible|w-resize|wait|whitespace|z-index|zero|zoom\";\nvar supportConstantColor = exports.supportConstantColor = \"aliceblue|antiquewhite|aqua|aquamarine|azure|beige|bisque|black|blanchedalmond|blue|blueviolet|brown|burlywood|cadetblue|chartreuse|chocolate|coral|cornflowerblue|cornsilk|crimson|cyan|darkblue|darkcyan|darkgoldenrod|darkgray|darkgreen|darkgrey|darkkhaki|darkmagenta|darkolivegreen|darkorange|darkorchid|darkred|darksalmon|darkseagreen|darkslateblue|darkslategray|darkslategrey|darkturquoise|darkviolet|deeppink|deepskyblue|dimgray|dimgrey|dodgerblue|firebrick|floralwhite|forestgreen|fuchsia|gainsboro|ghostwhite|gold|goldenrod|gray|green|greenyellow|grey|honeydew|hotpink|indianred|indigo|ivory|khaki|lavender|lavenderblush|lawngreen|lemonchiffon|lightblue|lightcoral|lightcyan|lightgoldenrodyellow|lightgray|lightgreen|lightgrey|lightpink|lightsalmon|lightseagreen|lightskyblue|lightslategray|lightslategrey|lightsteelblue|lightyellow|lime|limegreen|linen|magenta|maroon|mediumaquamarine|mediumblue|mediumorchid|mediumpurple|mediumseagreen|mediumslateblue|mediumspringgreen|mediumturquoise|mediumvioletred|midnightblue|mintcream|mistyrose|moccasin|navajowhite|navy|oldlace|olive|olivedrab|orange|orangered|orchid|palegoldenrod|palegreen|paleturquoise|palevioletred|papayawhip|peachpuff|peru|pink|plum|powderblue|purple|rebeccapurple|red|rosybrown|royalblue|saddlebrown|salmon|sandybrown|seagreen|seashell|sienna|silver|skyblue|slateblue|slategray|slategrey|snow|springgreen|steelblue|tan|teal|thistle|tomato|turquoise|violet|wheat|white|whitesmoke|yellow|yellowgreen\";\nvar supportConstantFonts = exports.supportConstantFonts = \"arial|century|comic|courier|cursive|fantasy|garamond|georgia|helvetica|impact|lucida|symbol|system|tahoma|times|trebuchet|utopia|verdana|webdings|sans-serif|serif|monospace\";\n\nvar numRe = exports.numRe = \"\\\\-?(?:(?:[0-9]+(?:\\\\.[0-9]+)?)|(?:\\\\.[0-9]+))\";\nvar pseudoElements = exports.pseudoElements = \"(\\\\:+)\\\\b(after|before|first-letter|first-line|moz-selection|selection)\\\\b\";\nvar pseudoClasses = exports.pseudoClasses = \"(:)\\\\b(active|checked|disabled|empty|enabled|first-child|first-of-type|focus|hover|indeterminate|invalid|last-child|last-of-type|link|not|nth-child|nth-last-child|nth-last-of-type|nth-of-type|only-child|only-of-type|required|root|target|valid|visited)\\\\b\";\n\nvar CssHighlightRules = function() {\n\n var keywordMapper = this.createKeywordMapper({\n \"support.function\": supportFunction,\n \"support.constant\": supportConstant,\n \"support.type\": supportType,\n \"support.constant.color\": supportConstantColor,\n \"support.constant.fonts\": supportConstantFonts\n }, \"text\", true);\n\n this.$rules = {\n \"start\" : [{\n include : [\"strings\", \"url\", \"comments\"]\n }, {\n token: \"paren.lparen\",\n regex: \"\\\\{\",\n next: \"ruleset\"\n }, {\n token: \"paren.rparen\",\n regex: \"\\\\}\"\n }, {\n token: \"string\",\n regex: \"@(?!viewport)\",\n next: \"media\"\n }, {\n token: \"keyword\",\n regex: \"#[a-z0-9-_]+\"\n }, {\n token: \"keyword\",\n regex: \"%\"\n }, {\n token: \"variable\",\n regex: \"\\\\.[a-z0-9-_]+\"\n }, {\n token: \"string\",\n regex: \":[a-z0-9-_]+\"\n }, {\n token : \"constant.numeric\",\n regex : numRe\n }, {\n token: \"constant\",\n regex: \"[a-z0-9-_]+\"\n }, {\n caseInsensitive: true\n }],\n\n \"media\": [{\n include : [\"strings\", \"url\", \"comments\"]\n }, {\n token: \"paren.lparen\",\n regex: \"\\\\{\",\n next: \"start\"\n }, {\n token: \"paren.rparen\",\n regex: \"\\\\}\",\n next: \"start\"\n }, {\n token: \"string\",\n regex: \";\",\n next: \"start\"\n }, {\n token: \"keyword\",\n regex: \"(?:media|supports|document|charset|import|namespace|media|supports|document\"\n + \"|page|font|keyframes|viewport|counter-style|font-feature-values\"\n + \"|swash|ornaments|annotation|stylistic|styleset|character-variant)\"\n }],\n\n \"comments\" : [{\n token: \"comment\", // multi line comment\n regex: \"\\\\/\\\\*\",\n push: [{\n token : \"comment\",\n regex : \"\\\\*\\\\/\",\n next : \"pop\"\n }, {\n defaultToken : \"comment\"\n }]\n }],\n\n \"ruleset\" : [{\n regex : \"-(webkit|ms|moz|o)-\",\n token : \"text\"\n }, {\n token : \"punctuation.operator\",\n regex : \"[:;]\"\n }, {\n token : \"paren.rparen\",\n regex : \"\\\\}\",\n next : \"start\"\n }, {\n include : [\"strings\", \"url\", \"comments\"]\n }, {\n token : [\"constant.numeric\", \"keyword\"],\n regex : \"(\" + numRe + \")(ch|cm|deg|em|ex|fr|gd|grad|Hz|in|kHz|mm|ms|pc|pt|px|rad|rem|s|turn|vh|vmax|vmin|vm|vw|%)\"\n }, {\n token : \"constant.numeric\",\n regex : numRe\n }, {\n token : \"constant.numeric\", // hex6 color\n regex : \"#[a-f0-9]{6}\"\n }, {\n token : \"constant.numeric\", // hex3 color\n regex : \"#[a-f0-9]{3}\"\n }, {\n token : [\"punctuation\", \"entity.other.attribute-name.pseudo-element.css\"],\n regex : pseudoElements\n }, {\n token : [\"punctuation\", \"entity.other.attribute-name.pseudo-class.css\"],\n regex : pseudoClasses\n }, {\n include: \"url\"\n }, {\n token : keywordMapper,\n regex : \"\\\\-?[a-zA-Z_][a-zA-Z0-9_\\\\-]*\"\n }, {\n caseInsensitive: true\n }],\n\n url: [{\n token : \"support.function\",\n regex : \"(?:url(:?-prefix)?|domain|regexp)\\\\(\",\n push: [{\n token : \"support.function\",\n regex : \"\\\\)\",\n next : \"pop\"\n }, {\n defaultToken: \"string\"\n }]\n }],\n\n strings: [{\n token : \"string.start\",\n regex : \"'\",\n push : [{\n token : \"string.end\",\n regex : \"'|$\",\n next: \"pop\"\n }, {\n include : \"escapes\"\n }, {\n token : \"constant.language.escape\",\n regex : /\\\\$/,\n consumeLineEnd: true\n }, {\n defaultToken: \"string\"\n }]\n }, {\n token : \"string.start\",\n regex : '\"',\n push : [{\n token : \"string.end\",\n regex : '\"|$',\n next: \"pop\"\n }, {\n include : \"escapes\"\n }, {\n token : \"constant.language.escape\",\n regex : /\\\\$/,\n consumeLineEnd: true\n }, {\n defaultToken: \"string\"\n }]\n }],\n escapes: [{\n token : \"constant.language.escape\",\n regex : /\\\\([a-fA-F\\d]{1,6}|[^a-fA-F\\d])/\n }]\n\n };\n\n this.normalizeRules();\n};\n\noop.inherits(CssHighlightRules, TextHighlightRules);\n\nexports.CssHighlightRules = CssHighlightRules;\n\n});\n\nace.define(\"ace/mode/javascript_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/doc_comment_highlight_rules\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar DocCommentHighlightRules = require(\"./doc_comment_highlight_rules\").DocCommentHighlightRules;\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar identifierRe = \"[a-zA-Z\\\\$_\\u00a1-\\uffff][a-zA-Z\\\\d\\\\$_\\u00a1-\\uffff]*\";\n\nvar JavaScriptHighlightRules = function(options) {\n var keywordMapper = this.createKeywordMapper({\n \"variable.language\":\n \"Array|Boolean|Date|Function|Iterator|Number|Object|RegExp|String|Proxy|\" + // Constructors\n \"Namespace|QName|XML|XMLList|\" + // E4X\n \"ArrayBuffer|Float32Array|Float64Array|Int16Array|Int32Array|Int8Array|\" +\n \"Uint16Array|Uint32Array|Uint8Array|Uint8ClampedArray|\" +\n \"Error|EvalError|InternalError|RangeError|ReferenceError|StopIteration|\" + // Errors\n \"SyntaxError|TypeError|URIError|\" +\n \"decodeURI|decodeURIComponent|encodeURI|encodeURIComponent|eval|isFinite|\" + // Non-constructor functions\n \"isNaN|parseFloat|parseInt|\" +\n \"JSON|Math|\" + // Other\n \"this|arguments|prototype|window|document\" , // Pseudo\n \"keyword\":\n \"const|yield|import|get|set|async|await|\" +\n \"break|case|catch|continue|default|delete|do|else|finally|for|function|\" +\n \"if|in|of|instanceof|new|return|switch|throw|try|typeof|let|var|while|with|debugger|\" +\n \"__parent__|__count__|escape|unescape|with|__proto__|\" +\n \"class|enum|extends|super|export|implements|private|public|interface|package|protected|static\",\n \"storage.type\":\n \"const|let|var|function\",\n \"constant.language\":\n \"null|Infinity|NaN|undefined\",\n \"support.function\":\n \"alert\",\n \"constant.language.boolean\": \"true|false\"\n }, \"identifier\");\n var kwBeforeRe = \"case|do|else|finally|in|instanceof|return|throw|try|typeof|yield|void\";\n\n var escapedRe = \"\\\\\\\\(?:x[0-9a-fA-F]{2}|\" + // hex\n \"u[0-9a-fA-F]{4}|\" + // unicode\n \"u{[0-9a-fA-F]{1,6}}|\" + // es6 unicode\n \"[0-2][0-7]{0,2}|\" + // oct\n \"3[0-7][0-7]?|\" + // oct\n \"[4-7][0-7]?|\" + //oct\n \".)\";\n\n this.$rules = {\n \"no_regex\" : [\n DocCommentHighlightRules.getStartRule(\"doc-start\"),\n comments(\"no_regex\"),\n {\n token : \"string\",\n regex : \"'(?=.)\",\n next : \"qstring\"\n }, {\n token : \"string\",\n regex : '\"(?=.)',\n next : \"qqstring\"\n }, {\n token : \"constant.numeric\", // hexadecimal, octal and binary\n regex : /0(?:[xX][0-9a-fA-F]+|[oO][0-7]+|[bB][01]+)\\b/\n }, {\n token : \"constant.numeric\", // decimal integers and floats\n regex : /(?:\\d\\d*(?:\\.\\d*)?|\\.\\d+)(?:[eE][+-]?\\d+\\b)?/\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"support.function\",\n \"punctuation.operator\", \"entity.name.function\", \"text\",\"keyword.operator\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(prototype)(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"entity.name.function\", \"text\", \"keyword.operator\", \"text\", \"storage.type\",\n \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\",\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s+)(\\\\w+)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(function)(\\\\s+)(\" + identifierRe + \")(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"entity.name.function\", \"text\", \"punctuation.operator\",\n \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\s*)(:)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"text\", \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(:)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : \"keyword\",\n regex : \"from(?=\\\\s*('|\\\"))\"\n }, {\n token : \"keyword\",\n regex : \"(?:\" + kwBeforeRe + \")\\\\b\",\n next : \"start\"\n }, {\n token : [\"support.constant\"],\n regex : /that\\b/\n }, {\n token : [\"storage.type\", \"punctuation.operator\", \"support.function.firebug\"],\n regex : /(console)(\\.)(warn|info|log|error|time|trace|timeEnd|assert)\\b/\n }, {\n token : keywordMapper,\n regex : identifierRe\n }, {\n token : \"punctuation.operator\",\n regex : /[.](?![.])/,\n next : \"property\"\n }, {\n token : \"storage.type\",\n regex : /=>/,\n next : \"start\"\n }, {\n token : \"keyword.operator\",\n regex : /--|\\+\\+|\\.{3}|===|==|=|!=|!==|<+=?|>+=?|!|&&|\\|\\||\\?:|[!$%&*+\\-~\\/^]=?/,\n next : \"start\"\n }, {\n token : \"punctuation.operator\",\n regex : /[?:,;.]/,\n next : \"start\"\n }, {\n token : \"paren.lparen\",\n regex : /[\\[({]/,\n next : \"start\"\n }, {\n token : \"paren.rparen\",\n regex : /[\\])}]/\n }, {\n token: \"comment\",\n regex: /^#!.*$/\n }\n ],\n property: [{\n token : \"text\",\n regex : \"\\\\s+\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\",\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(?:(\\\\s+)(\\\\w+))?(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : \"punctuation.operator\",\n regex : /[.](?![.])/\n }, {\n token : \"support.function\",\n regex : /(s(?:h(?:ift|ow(?:Mod(?:elessDialog|alDialog)|Help))|croll(?:X|By(?:Pages|Lines)?|Y|To)?|t(?:op|rike)|i(?:n|zeToContent|debar|gnText)|ort|u(?:p|b(?:str(?:ing)?)?)|pli(?:ce|t)|e(?:nd|t(?:Re(?:sizable|questHeader)|M(?:i(?:nutes|lliseconds)|onth)|Seconds|Ho(?:tKeys|urs)|Year|Cursor|Time(?:out)?|Interval|ZOptions|Date|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Date|FullYear)|FullYear|Active)|arch)|qrt|lice|avePreferences|mall)|h(?:ome|andleEvent)|navigate|c(?:har(?:CodeAt|At)|o(?:s|n(?:cat|textual|firm)|mpile)|eil|lear(?:Timeout|Interval)?|a(?:ptureEvents|ll)|reate(?:StyleSheet|Popup|EventObject))|t(?:o(?:GMTString|S(?:tring|ource)|U(?:TCString|pperCase)|Lo(?:caleString|werCase))|est|a(?:n|int(?:Enabled)?))|i(?:s(?:NaN|Finite)|ndexOf|talics)|d(?:isableExternalCapture|ump|etachEvent)|u(?:n(?:shift|taint|escape|watch)|pdateCommands)|j(?:oin|avaEnabled)|p(?:o(?:p|w)|ush|lugins.refresh|a(?:ddings|rse(?:Int|Float)?)|r(?:int|ompt|eference))|e(?:scape|nableExternalCapture|val|lementFromPoint|x(?:p|ec(?:Script|Command)?))|valueOf|UTC|queryCommand(?:State|Indeterm|Enabled|Value)|f(?:i(?:nd|le(?:ModifiedDate|Size|CreatedDate|UpdatedDate)|xed)|o(?:nt(?:size|color)|rward)|loor|romCharCode)|watch|l(?:ink|o(?:ad|g)|astIndexOf)|a(?:sin|nchor|cos|t(?:tachEvent|ob|an(?:2)?)|pply|lert|b(?:s|ort))|r(?:ou(?:nd|teEvents)|e(?:size(?:By|To)|calc|turnValue|place|verse|l(?:oad|ease(?:Capture|Events)))|andom)|g(?:o|et(?:ResponseHeader|M(?:i(?:nutes|lliseconds)|onth)|Se(?:conds|lection)|Hours|Year|Time(?:zoneOffset)?|Da(?:y|te)|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Da(?:y|te)|FullYear)|FullYear|A(?:ttention|llResponseHeaders)))|m(?:in|ove(?:B(?:y|elow)|To(?:Absolute)?|Above)|ergeAttributes|a(?:tch|rgins|x))|b(?:toa|ig|o(?:ld|rderWidths)|link|ack))\\b(?=\\()/\n }, {\n token : \"support.function.dom\",\n regex : /(s(?:ub(?:stringData|mit)|plitText|e(?:t(?:NamedItem|Attribute(?:Node)?)|lect))|has(?:ChildNodes|Feature)|namedItem|c(?:l(?:ick|o(?:se|neNode))|reate(?:C(?:omment|DATASection|aption)|T(?:Head|extNode|Foot)|DocumentFragment|ProcessingInstruction|E(?:ntityReference|lement)|Attribute))|tabIndex|i(?:nsert(?:Row|Before|Cell|Data)|tem)|open|delete(?:Row|C(?:ell|aption)|T(?:Head|Foot)|Data)|focus|write(?:ln)?|a(?:dd|ppend(?:Child|Data))|re(?:set|place(?:Child|Data)|move(?:NamedItem|Child|Attribute(?:Node)?)?)|get(?:NamedItem|Element(?:sBy(?:Name|TagName|ClassName)|ById)|Attribute(?:Node)?)|blur)\\b(?=\\()/\n }, {\n token : \"support.constant\",\n regex : /(s(?:ystemLanguage|cr(?:ipts|ollbars|een(?:X|Y|Top|Left))|t(?:yle(?:Sheets)?|atus(?:Text|bar)?)|ibling(?:Below|Above)|ource|uffixes|e(?:curity(?:Policy)?|l(?:ection|f)))|h(?:istory|ost(?:name)?|as(?:h|Focus))|y|X(?:MLDocument|SLDocument)|n(?:ext|ame(?:space(?:s|URI)|Prop))|M(?:IN_VALUE|AX_VALUE)|c(?:haracterSet|o(?:n(?:structor|trollers)|okieEnabled|lorDepth|mp(?:onents|lete))|urrent|puClass|l(?:i(?:p(?:boardData)?|entInformation)|osed|asses)|alle(?:e|r)|rypto)|t(?:o(?:olbar|p)|ext(?:Transform|Indent|Decoration|Align)|ags)|SQRT(?:1_2|2)|i(?:n(?:ner(?:Height|Width)|put)|ds|gnoreCase)|zIndex|o(?:scpu|n(?:readystatechange|Line)|uter(?:Height|Width)|p(?:sProfile|ener)|ffscreenBuffering)|NEGATIVE_INFINITY|d(?:i(?:splay|alog(?:Height|Top|Width|Left|Arguments)|rectories)|e(?:scription|fault(?:Status|Ch(?:ecked|arset)|View)))|u(?:ser(?:Profile|Language|Agent)|n(?:iqueID|defined)|pdateInterval)|_content|p(?:ixelDepth|ort|ersonalbar|kcs11|l(?:ugins|atform)|a(?:thname|dding(?:Right|Bottom|Top|Left)|rent(?:Window|Layer)?|ge(?:X(?:Offset)?|Y(?:Offset)?))|r(?:o(?:to(?:col|type)|duct(?:Sub)?|mpter)|e(?:vious|fix)))|e(?:n(?:coding|abledPlugin)|x(?:ternal|pando)|mbeds)|v(?:isibility|endor(?:Sub)?|Linkcolor)|URLUnencoded|P(?:I|OSITIVE_INFINITY)|f(?:ilename|o(?:nt(?:Size|Family|Weight)|rmName)|rame(?:s|Element)|gColor)|E|whiteSpace|l(?:i(?:stStyleType|n(?:eHeight|kColor))|o(?:ca(?:tion(?:bar)?|lName)|wsrc)|e(?:ngth|ft(?:Context)?)|a(?:st(?:M(?:odified|atch)|Index|Paren)|yer(?:s|X)|nguage))|a(?:pp(?:MinorVersion|Name|Co(?:deName|re)|Version)|vail(?:Height|Top|Width|Left)|ll|r(?:ity|guments)|Linkcolor|bove)|r(?:ight(?:Context)?|e(?:sponse(?:XML|Text)|adyState))|global|x|m(?:imeTypes|ultiline|enubar|argin(?:Right|Bottom|Top|Left))|L(?:N(?:10|2)|OG(?:10E|2E))|b(?:o(?:ttom|rder(?:Width|RightWidth|BottomWidth|Style|Color|TopWidth|LeftWidth))|ufferDepth|elow|ackground(?:Color|Image)))\\b/\n }, {\n token : \"identifier\",\n regex : identifierRe\n }, {\n regex: \"\",\n token: \"empty\",\n next: \"no_regex\"\n }\n ],\n \"start\": [\n DocCommentHighlightRules.getStartRule(\"doc-start\"),\n comments(\"start\"),\n {\n token: \"string.regexp\",\n regex: \"\\\\/\",\n next: \"regex\"\n }, {\n token : \"text\",\n regex : \"\\\\s+|^$\",\n next : \"start\"\n }, {\n token: \"empty\",\n regex: \"\",\n next: \"no_regex\"\n }\n ],\n \"regex\": [\n {\n token: \"regexp.keyword.operator\",\n regex: \"\\\\\\\\(?:u[\\\\da-fA-F]{4}|x[\\\\da-fA-F]{2}|.)\"\n }, {\n token: \"string.regexp\",\n regex: \"/[sxngimy]*\",\n next: \"no_regex\"\n }, {\n token : \"invalid\",\n regex: /\\{\\d+\\b,?\\d*\\}[+*]|[+*$^?][+*]|[$^][?]|\\?{3,}/\n }, {\n token : \"constant.language.escape\",\n regex: /\\(\\?[:=!]|\\)|\\{\\d+\\b,?\\d*\\}|[+*]\\?|[()$^+*?.]/\n }, {\n token : \"constant.language.delimiter\",\n regex: /\\|/\n }, {\n token: \"constant.language.escape\",\n regex: /\\[\\^?/,\n next: \"regex_character_class\"\n }, {\n token: \"empty\",\n regex: \"$\",\n next: \"no_regex\"\n }, {\n defaultToken: \"string.regexp\"\n }\n ],\n \"regex_character_class\": [\n {\n token: \"regexp.charclass.keyword.operator\",\n regex: \"\\\\\\\\(?:u[\\\\da-fA-F]{4}|x[\\\\da-fA-F]{2}|.)\"\n }, {\n token: \"constant.language.escape\",\n regex: \"]\",\n next: \"regex\"\n }, {\n token: \"constant.language.escape\",\n regex: \"-\"\n }, {\n token: \"empty\",\n regex: \"$\",\n next: \"no_regex\"\n }, {\n defaultToken: \"string.regexp.charachterclass\"\n }\n ],\n \"function_arguments\": [\n {\n token: \"variable.parameter\",\n regex: identifierRe\n }, {\n token: \"punctuation.operator\",\n regex: \"[, ]+\"\n }, {\n token: \"punctuation.operator\",\n regex: \"$\"\n }, {\n token: \"empty\",\n regex: \"\",\n next: \"no_regex\"\n }\n ],\n \"qqstring\" : [\n {\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"string\",\n regex : \"\\\\\\\\$\",\n consumeLineEnd : true\n }, {\n token : \"string\",\n regex : '\"|$',\n next : \"no_regex\"\n }, {\n defaultToken: \"string\"\n }\n ],\n \"qstring\" : [\n {\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"string\",\n regex : \"\\\\\\\\$\",\n consumeLineEnd : true\n }, {\n token : \"string\",\n regex : \"'|$\",\n next : \"no_regex\"\n }, {\n defaultToken: \"string\"\n }\n ]\n };\n\n\n if (!options || !options.noES6) {\n this.$rules.no_regex.unshift({\n regex: \"[{}]\", onMatch: function(val, state, stack) {\n this.next = val == \"{\" ? this.nextState : \"\";\n if (val == \"{\" && stack.length) {\n stack.unshift(\"start\", state);\n }\n else if (val == \"}\" && stack.length) {\n stack.shift();\n this.next = stack.shift();\n if (this.next.indexOf(\"string\") != -1 || this.next.indexOf(\"jsx\") != -1)\n return \"paren.quasi.end\";\n }\n return val == \"{\" ? \"paren.lparen\" : \"paren.rparen\";\n },\n nextState: \"start\"\n }, {\n token : \"string.quasi.start\",\n regex : /`/,\n push : [{\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"paren.quasi.start\",\n regex : /\\${/,\n push : \"start\"\n }, {\n token : \"string.quasi.end\",\n regex : /`/,\n next : \"pop\"\n }, {\n defaultToken: \"string.quasi\"\n }]\n });\n\n if (!options || options.jsx != false)\n JSX.call(this);\n }\n\n this.embedRules(DocCommentHighlightRules, \"doc-\",\n [ DocCommentHighlightRules.getEndRule(\"no_regex\") ]);\n\n this.normalizeRules();\n};\n\noop.inherits(JavaScriptHighlightRules, TextHighlightRules);\n\nfunction JSX() {\n var tagRegex = identifierRe.replace(\"\\\\d\", \"\\\\d\\\\-\");\n var jsxTag = {\n onMatch : function(val, state, stack) {\n var offset = val.charAt(1) == \"/\" ? 2 : 1;\n if (offset == 1) {\n if (state != this.nextState)\n stack.unshift(this.next, this.nextState, 0);\n else\n stack.unshift(this.next);\n stack[2]++;\n } else if (offset == 2) {\n if (state == this.nextState) {\n stack[1]--;\n if (!stack[1] || stack[1] < 0) {\n stack.shift();\n stack.shift();\n }\n }\n }\n return [{\n type: \"meta.tag.punctuation.\" + (offset == 1 ? \"\" : \"end-\") + \"tag-open.xml\",\n value: val.slice(0, offset)\n }, {\n type: \"meta.tag.tag-name.xml\",\n value: val.substr(offset)\n }];\n },\n regex : \"\",\n onMatch : function(value, currentState, stack) {\n if (currentState == stack[0])\n stack.shift();\n if (value.length == 2) {\n if (stack[0] == this.nextState)\n stack[1]--;\n if (!stack[1] || stack[1] < 0) {\n stack.splice(0, 2);\n }\n }\n this.next = stack[0] || \"start\";\n return [{type: this.token, value: value}];\n },\n nextState: \"jsx\"\n },\n jsxJsRule,\n comments(\"jsxAttributes\"),\n {\n token : \"entity.other.attribute-name.xml\",\n regex : tagRegex\n }, {\n token : \"keyword.operator.attribute-equals.xml\",\n regex : \"=\"\n }, {\n token : \"text.tag-whitespace.xml\",\n regex : \"\\\\s+\"\n }, {\n token : \"string.attribute-value.xml\",\n regex : \"'\",\n stateName : \"jsx_attr_q\",\n push : [\n {token : \"string.attribute-value.xml\", regex: \"'\", next: \"pop\"},\n {include : \"reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n }, {\n token : \"string.attribute-value.xml\",\n regex : '\"',\n stateName : \"jsx_attr_qq\",\n push : [\n {token : \"string.attribute-value.xml\", regex: '\"', next: \"pop\"},\n {include : \"reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n },\n jsxTag\n ];\n this.$rules.reference = [{\n token : \"constant.language.escape.reference.xml\",\n regex : \"(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\\\.-]+;)\"\n }];\n}\n\nfunction comments(next) {\n return [\n {\n token : \"comment\", // multi line comment\n regex : /\\/\\*/,\n next: [\n DocCommentHighlightRules.getTagRule(),\n {token : \"comment\", regex : \"\\\\*\\\\/\", next : next || \"pop\"},\n {defaultToken : \"comment\", caseInsensitive: true}\n ]\n }, {\n token : \"comment\",\n regex : \"\\\\/\\\\/\",\n next: [\n DocCommentHighlightRules.getTagRule(),\n {token : \"comment\", regex : \"$|^\", next : next || \"pop\"},\n {defaultToken : \"comment\", caseInsensitive: true}\n ]\n }\n ];\n}\nexports.JavaScriptHighlightRules = JavaScriptHighlightRules;\n});\n\nace.define(\"ace/mode/xml_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar XmlHighlightRules = function(normalize) {\n var tagRegex = \"[_:a-zA-Z\\xc0-\\uffff][-_:.a-zA-Z0-9\\xc0-\\uffff]*\";\n\n this.$rules = {\n start : [\n {token : \"string.cdata.xml\", regex : \"<\\\\!\\\\[CDATA\\\\[\", next : \"cdata\"},\n {\n token : [\"punctuation.instruction.xml\", \"keyword.instruction.xml\"],\n regex : \"(<\\\\?)(\" + tagRegex + \")\", next : \"processing_instruction\"\n },\n {token : \"comment.start.xml\", regex : \"<\\\\!--\", next : \"comment\"},\n {\n token : [\"xml-pe.doctype.xml\", \"xml-pe.doctype.xml\"],\n regex : \"(<\\\\!)(DOCTYPE)(?=[\\\\s])\", next : \"doctype\", caseInsensitive: true\n },\n {include : \"tag\"},\n {token : \"text.end-tag-open.xml\", regex: \"\",\n next : \"start\"\n }],\n\n doctype : [\n {include : \"whitespace\"},\n {include : \"string\"},\n {token : \"xml-pe.doctype.xml\", regex : \">\", next : \"start\"},\n {token : \"xml-pe.xml\", regex : \"[-_a-zA-Z0-9:]+\"},\n {token : \"punctuation.int-subset\", regex : \"\\\\[\", push : \"int_subset\"}\n ],\n\n int_subset : [{\n token : \"text.xml\",\n regex : \"\\\\s+\"\n }, {\n token: \"punctuation.int-subset.xml\",\n regex: \"]\",\n next: \"pop\"\n }, {\n token : [\"punctuation.markup-decl.xml\", \"keyword.markup-decl.xml\"],\n regex : \"(<\\\\!)(\" + tagRegex + \")\",\n push : [{\n token : \"text\",\n regex : \"\\\\s+\"\n },\n {\n token : \"punctuation.markup-decl.xml\",\n regex : \">\",\n next : \"pop\"\n },\n {include : \"string\"}]\n }],\n\n cdata : [\n {token : \"string.cdata.xml\", regex : \"\\\\]\\\\]>\", next : \"start\"},\n {token : \"text.xml\", regex : \"\\\\s+\"},\n {token : \"text.xml\", regex : \"(?:[^\\\\]]|\\\\](?!\\\\]>))+\"}\n ],\n\n comment : [\n {token : \"comment.end.xml\", regex : \"-->\", next : \"start\"},\n {defaultToken : \"comment.xml\"}\n ],\n\n reference : [{\n token : \"constant.language.escape.reference.xml\",\n regex : \"(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\\\.-]+;)\"\n }],\n\n attr_reference : [{\n token : \"constant.language.escape.reference.attribute-value.xml\",\n regex : \"(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\\\.-]+;)\"\n }],\n\n tag : [{\n token : [\"meta.tag.punctuation.tag-open.xml\", \"meta.tag.punctuation.end-tag-open.xml\", \"meta.tag.tag-name.xml\"],\n regex : \"(?:(<)|(\", next : \"start\"}\n ]\n }],\n\n tag_whitespace : [\n {token : \"text.tag-whitespace.xml\", regex : \"\\\\s+\"}\n ],\n whitespace : [\n {token : \"text.whitespace.xml\", regex : \"\\\\s+\"}\n ],\n string: [{\n token : \"string.xml\",\n regex : \"'\",\n push : [\n {token : \"string.xml\", regex: \"'\", next: \"pop\"},\n {defaultToken : \"string.xml\"}\n ]\n }, {\n token : \"string.xml\",\n regex : '\"',\n push : [\n {token : \"string.xml\", regex: '\"', next: \"pop\"},\n {defaultToken : \"string.xml\"}\n ]\n }],\n\n attributes: [{\n token : \"entity.other.attribute-name.xml\",\n regex : tagRegex\n }, {\n token : \"keyword.operator.attribute-equals.xml\",\n regex : \"=\"\n }, {\n include: \"tag_whitespace\"\n }, {\n include: \"attribute_value\"\n }],\n\n attribute_value: [{\n token : \"string.attribute-value.xml\",\n regex : \"'\",\n push : [\n {token : \"string.attribute-value.xml\", regex: \"'\", next: \"pop\"},\n {include : \"attr_reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n }, {\n token : \"string.attribute-value.xml\",\n regex : '\"',\n push : [\n {token : \"string.attribute-value.xml\", regex: '\"', next: \"pop\"},\n {include : \"attr_reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n }]\n };\n\n if (this.constructor === XmlHighlightRules)\n this.normalizeRules();\n};\n\n\n(function() {\n\n this.embedTagRules = function(HighlightRules, prefix, tag){\n this.$rules.tag.unshift({\n token : [\"meta.tag.punctuation.tag-open.xml\", \"meta.tag.\" + tag + \".tag-name.xml\"],\n regex : \"(<)(\" + tag + \"(?=\\\\s|>|$))\",\n next: [\n {include : \"attributes\"},\n {token : \"meta.tag.punctuation.tag-close.xml\", regex : \"/?>\", next : prefix + \"start\"}\n ]\n });\n\n this.$rules[tag + \"-end\"] = [\n {include : \"attributes\"},\n {token : \"meta.tag.punctuation.tag-close.xml\", regex : \"/?>\", next: \"start\",\n onMatch : function(value, currentState, stack) {\n stack.splice(0);\n return this.token;\n }}\n ];\n\n this.embedRules(HighlightRules, prefix, [{\n token: [\"meta.tag.punctuation.end-tag-open.xml\", \"meta.tag.\" + tag + \".tag-name.xml\"],\n regex : \"(|$))\",\n next: tag + \"-end\"\n }, {\n token: \"string.cdata.xml\",\n regex : \"<\\\\!\\\\[CDATA\\\\[\"\n }, {\n token: \"string.cdata.xml\",\n regex : \"\\\\]\\\\]>\"\n }]);\n };\n\n}).call(TextHighlightRules.prototype);\n\noop.inherits(XmlHighlightRules, TextHighlightRules);\n\nexports.XmlHighlightRules = XmlHighlightRules;\n});\n\nace.define(\"ace/mode/html_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/css_highlight_rules\",\"ace/mode/javascript_highlight_rules\",\"ace/mode/xml_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar CssHighlightRules = require(\"./css_highlight_rules\").CssHighlightRules;\nvar JavaScriptHighlightRules = require(\"./javascript_highlight_rules\").JavaScriptHighlightRules;\nvar XmlHighlightRules = require(\"./xml_highlight_rules\").XmlHighlightRules;\n\nvar tagMap = lang.createMap({\n a : 'anchor',\n button \t : 'form',\n form : 'form',\n img : 'image',\n input : 'form',\n label : 'form',\n option : 'form',\n script : 'script',\n select : 'form',\n textarea : 'form',\n style : 'style',\n table : 'table',\n tbody : 'table',\n td : 'table',\n tfoot : 'table',\n th : 'table',\n tr : 'table'\n});\n\nvar HtmlHighlightRules = function() {\n XmlHighlightRules.call(this);\n\n this.addRules({\n attributes: [{\n include : \"tag_whitespace\"\n }, {\n token : \"entity.other.attribute-name.xml\",\n regex : \"[-_a-zA-Z0-9:.]+\"\n }, {\n token : \"keyword.operator.attribute-equals.xml\",\n regex : \"=\",\n push : [{\n include: \"tag_whitespace\"\n }, {\n token : \"string.unquoted.attribute-value.html\",\n regex : \"[^<>='\\\"`\\\\s]+\",\n next : \"pop\"\n }, {\n token : \"empty\",\n regex : \"\",\n next : \"pop\"\n }]\n }, {\n include : \"attribute_value\"\n }],\n tag: [{\n token : function(start, tag) {\n var group = tagMap[tag];\n return [\"meta.tag.punctuation.\" + (start == \"<\" ? \"\" : \"end-\") + \"tag-open.xml\",\n \"meta.tag\" + (group ? \".\" + group : \"\") + \".tag-name.xml\"];\n },\n regex : \"(\", next : \"start\"}\n ]\n });\n\n this.embedTagRules(CssHighlightRules, \"css-\", \"style\");\n this.embedTagRules(new JavaScriptHighlightRules({jsx: false}).getRules(), \"js-\", \"script\");\n\n if (this.constructor === HtmlHighlightRules)\n this.normalizeRules();\n};\n\noop.inherits(HtmlHighlightRules, XmlHighlightRules);\n\nexports.HtmlHighlightRules = HtmlHighlightRules;\n});\n\nace.define(\"ace/mode/php_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/doc_comment_highlight_rules\",\"ace/mode/text_highlight_rules\",\"ace/mode/html_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar DocCommentHighlightRules = require(\"./doc_comment_highlight_rules\").DocCommentHighlightRules;\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar HtmlHighlightRules = require(\"./html_highlight_rules\").HtmlHighlightRules;\n\nvar PhpLangHighlightRules = function() {\n var docComment = DocCommentHighlightRules;\n var builtinFunctions = lang.arrayToMap(\n'abs|acos|acosh|addcslashes|addslashes|aggregate|aggregate_info|aggregate_methods|aggregate_methods_by_list|aggregate_methods_by_regexp|\\\naggregate_properties|aggregate_properties_by_list|aggregate_properties_by_regexp|aggregation_info|amqpconnection|amqpexchange|amqpqueue|\\\napache_child_terminate|apache_get_modules|apache_get_version|apache_getenv|apache_lookup_uri|apache_note|apache_request_headers|\\\napache_reset_timeout|apache_response_headers|apache_setenv|apc_add|apc_bin_dump|apc_bin_dumpfile|apc_bin_load|apc_bin_loadfile|\\\napc_cache_info|apc_cas|apc_clear_cache|apc_compile_file|apc_dec|apc_define_constants|apc_delete|apc_delete_file|apc_exists|apc_fetch|\\\napc_inc|apc_load_constants|apc_sma_info|apc_store|apciterator|apd_breakpoint|apd_callstack|apd_clunk|apd_continue|apd_croak|\\\napd_dump_function_table|apd_dump_persistent_resources|apd_dump_regular_resources|apd_echo|apd_get_active_symbols|apd_set_pprof_trace|\\\napd_set_session|apd_set_session_trace|apd_set_session_trace_socket|appenditerator|array|array_change_key_case|array_chunk|array_combine|\\\narray_count_values|array_diff|array_diff_assoc|array_diff_key|array_diff_uassoc|array_diff_ukey|array_fill|array_fill_keys|array_filter|\\\narray_flip|array_intersect|array_intersect_assoc|array_intersect_key|array_intersect_uassoc|array_intersect_ukey|array_key_exists|\\\narray_keys|array_map|array_merge|array_merge_recursive|array_multisort|array_pad|array_pop|array_product|array_push|array_rand|\\\narray_reduce|array_replace|array_replace_recursive|array_reverse|array_search|array_shift|array_slice|array_splice|array_sum|array_udiff|\\\narray_udiff_assoc|array_udiff_uassoc|array_uintersect|array_uintersect_assoc|array_uintersect_uassoc|array_unique|array_unshift|\\\narray_values|array_walk|array_walk_recursive|arrayaccess|arrayiterator|arrayobject|arsort|asin|asinh|asort|assert|assert_options|atan|\\\natan2|atanh|audioproperties|badfunctioncallexception|badmethodcallexception|base64_decode|base64_encode|base_convert|basename|\\\nbbcode_add_element|bbcode_add_smiley|bbcode_create|bbcode_destroy|bbcode_parse|bbcode_set_arg_parser|bbcode_set_flags|bcadd|bccomp|bcdiv|\\\nbcmod|bcmul|bcompiler_load|bcompiler_load_exe|bcompiler_parse_class|bcompiler_read|bcompiler_write_class|bcompiler_write_constant|\\\nbcompiler_write_exe_footer|bcompiler_write_file|bcompiler_write_footer|bcompiler_write_function|bcompiler_write_functions_from_file|\\\nbcompiler_write_header|bcompiler_write_included_filename|bcpow|bcpowmod|bcscale|bcsqrt|bcsub|bin2hex|bind_textdomain_codeset|bindec|\\\nbindtextdomain|bson_decode|bson_encode|bumpValue|bzclose|bzcompress|bzdecompress|bzerrno|bzerror|bzerrstr|bzflush|bzopen|bzread|bzwrite|\\\ncachingiterator|cairo|cairo_create|cairo_font_face_get_type|cairo_font_face_status|cairo_font_options_create|cairo_font_options_equal|\\\ncairo_font_options_get_antialias|cairo_font_options_get_hint_metrics|cairo_font_options_get_hint_style|\\\ncairo_font_options_get_subpixel_order|cairo_font_options_hash|cairo_font_options_merge|cairo_font_options_set_antialias|\\\ncairo_font_options_set_hint_metrics|cairo_font_options_set_hint_style|cairo_font_options_set_subpixel_order|cairo_font_options_status|\\\ncairo_format_stride_for_width|cairo_image_surface_create|cairo_image_surface_create_for_data|cairo_image_surface_create_from_png|\\\ncairo_image_surface_get_data|cairo_image_surface_get_format|cairo_image_surface_get_height|cairo_image_surface_get_stride|\\\ncairo_image_surface_get_width|cairo_matrix_create_scale|cairo_matrix_create_translate|cairo_matrix_invert|cairo_matrix_multiply|\\\ncairo_matrix_rotate|cairo_matrix_transform_distance|cairo_matrix_transform_point|cairo_matrix_translate|cairo_pattern_add_color_stop_rgb|\\\ncairo_pattern_add_color_stop_rgba|cairo_pattern_create_for_surface|cairo_pattern_create_linear|cairo_pattern_create_radial|\\\ncairo_pattern_create_rgb|cairo_pattern_create_rgba|cairo_pattern_get_color_stop_count|cairo_pattern_get_color_stop_rgba|\\\ncairo_pattern_get_extend|cairo_pattern_get_filter|cairo_pattern_get_linear_points|cairo_pattern_get_matrix|\\\ncairo_pattern_get_radial_circles|cairo_pattern_get_rgba|cairo_pattern_get_surface|cairo_pattern_get_type|cairo_pattern_set_extend|\\\ncairo_pattern_set_filter|cairo_pattern_set_matrix|cairo_pattern_status|cairo_pdf_surface_create|cairo_pdf_surface_set_size|\\\ncairo_ps_get_levels|cairo_ps_level_to_string|cairo_ps_surface_create|cairo_ps_surface_dsc_begin_page_setup|\\\ncairo_ps_surface_dsc_begin_setup|cairo_ps_surface_dsc_comment|cairo_ps_surface_get_eps|cairo_ps_surface_restrict_to_level|\\\ncairo_ps_surface_set_eps|cairo_ps_surface_set_size|cairo_scaled_font_create|cairo_scaled_font_extents|cairo_scaled_font_get_ctm|\\\ncairo_scaled_font_get_font_face|cairo_scaled_font_get_font_matrix|cairo_scaled_font_get_font_options|cairo_scaled_font_get_scale_matrix|\\\ncairo_scaled_font_get_type|cairo_scaled_font_glyph_extents|cairo_scaled_font_status|cairo_scaled_font_text_extents|\\\ncairo_surface_copy_page|cairo_surface_create_similar|cairo_surface_finish|cairo_surface_flush|cairo_surface_get_content|\\\ncairo_surface_get_device_offset|cairo_surface_get_font_options|cairo_surface_get_type|cairo_surface_mark_dirty|\\\ncairo_surface_mark_dirty_rectangle|cairo_surface_set_device_offset|cairo_surface_set_fallback_resolution|cairo_surface_show_page|\\\ncairo_surface_status|cairo_surface_write_to_png|cairo_svg_surface_create|cairo_svg_surface_restrict_to_version|\\\ncairo_svg_version_to_string|cairoantialias|cairocontent|cairocontext|cairoexception|cairoextend|cairofillrule|cairofilter|cairofontface|\\\ncairofontoptions|cairofontslant|cairofonttype|cairofontweight|cairoformat|cairogradientpattern|cairohintmetrics|cairohintstyle|\\\ncairoimagesurface|cairolineargradient|cairolinecap|cairolinejoin|cairomatrix|cairooperator|cairopath|cairopattern|cairopatterntype|\\\ncairopdfsurface|cairopslevel|cairopssurface|cairoradialgradient|cairoscaledfont|cairosolidpattern|cairostatus|cairosubpixelorder|\\\ncairosurface|cairosurfacepattern|cairosurfacetype|cairosvgsurface|cairosvgversion|cairotoyfontface|cal_days_in_month|cal_from_jd|cal_info|\\\ncal_to_jd|calcul_hmac|calculhmac|call_user_func|call_user_func_array|call_user_method|call_user_method_array|callbackfilteriterator|ceil|\\\nchdb|chdb_create|chdir|checkdate|checkdnsrr|chgrp|chmod|chop|chown|chr|chroot|chunk_split|class_alias|class_exists|class_implements|\\\nclass_parents|class_uses|classkit_import|classkit_method_add|classkit_method_copy|classkit_method_redefine|classkit_method_remove|\\\nclasskit_method_rename|clearstatcache|clone|closedir|closelog|collator|com|com_addref|com_create_guid|com_event_sink|com_get|\\\ncom_get_active_object|com_invoke|com_isenum|com_load|com_load_typelib|com_message_pump|com_print_typeinfo|com_propget|com_propput|\\\ncom_propset|com_release|com_set|compact|connection_aborted|connection_status|connection_timeout|constant|construct|construct|construct|\\\nconvert_cyr_string|convert_uudecode|convert_uuencode|copy|cos|cosh|count|count_chars|countable|counter_bump|counter_bump_value|\\\ncounter_create|counter_get|counter_get_meta|counter_get_named|counter_get_value|counter_reset|counter_reset_value|crack_check|\\\ncrack_closedict|crack_getlastmessage|crack_opendict|crc32|create_function|crypt|ctype_alnum|ctype_alpha|ctype_cntrl|ctype_digit|\\\nctype_graph|ctype_lower|ctype_print|ctype_punct|ctype_space|ctype_upper|ctype_xdigit|cubrid_affected_rows|cubrid_bind|\\\ncubrid_client_encoding|cubrid_close|cubrid_close_prepare|cubrid_close_request|cubrid_col_get|cubrid_col_size|cubrid_column_names|\\\ncubrid_column_types|cubrid_commit|cubrid_connect|cubrid_connect_with_url|cubrid_current_oid|cubrid_data_seek|cubrid_db_name|\\\ncubrid_disconnect|cubrid_drop|cubrid_errno|cubrid_error|cubrid_error_code|cubrid_error_code_facility|cubrid_error_msg|cubrid_execute|\\\ncubrid_fetch|cubrid_fetch_array|cubrid_fetch_assoc|cubrid_fetch_field|cubrid_fetch_lengths|cubrid_fetch_object|cubrid_fetch_row|\\\ncubrid_field_flags|cubrid_field_len|cubrid_field_name|cubrid_field_seek|cubrid_field_table|cubrid_field_type|cubrid_free_result|\\\ncubrid_get|cubrid_get_autocommit|cubrid_get_charset|cubrid_get_class_name|cubrid_get_client_info|cubrid_get_db_parameter|\\\ncubrid_get_server_info|cubrid_insert_id|cubrid_is_instance|cubrid_list_dbs|cubrid_load_from_glo|cubrid_lob_close|cubrid_lob_export|\\\ncubrid_lob_get|cubrid_lob_send|cubrid_lob_size|cubrid_lock_read|cubrid_lock_write|cubrid_move_cursor|cubrid_new_glo|cubrid_next_result|\\\ncubrid_num_cols|cubrid_num_fields|cubrid_num_rows|cubrid_ping|cubrid_prepare|cubrid_put|cubrid_query|cubrid_real_escape_string|\\\ncubrid_result|cubrid_rollback|cubrid_save_to_glo|cubrid_schema|cubrid_send_glo|cubrid_seq_drop|cubrid_seq_insert|cubrid_seq_put|\\\ncubrid_set_add|cubrid_set_autocommit|cubrid_set_db_parameter|cubrid_set_drop|cubrid_unbuffered_query|cubrid_version|curl_close|\\\ncurl_copy_handle|curl_errno|curl_error|curl_exec|curl_getinfo|curl_init|curl_multi_add_handle|curl_multi_close|curl_multi_exec|\\\ncurl_multi_getcontent|curl_multi_info_read|curl_multi_init|curl_multi_remove_handle|curl_multi_select|curl_setopt|curl_setopt_array|\\\ncurl_version|current|cyrus_authenticate|cyrus_bind|cyrus_close|cyrus_connect|cyrus_query|cyrus_unbind|date|date_add|date_create|\\\ndate_create_from_format|date_date_set|date_default_timezone_get|date_default_timezone_set|date_diff|date_format|date_get_last_errors|\\\ndate_interval_create_from_date_string|date_interval_format|date_isodate_set|date_modify|date_offset_get|date_parse|date_parse_from_format|\\\ndate_sub|date_sun_info|date_sunrise|date_sunset|date_time_set|date_timestamp_get|date_timestamp_set|date_timezone_get|date_timezone_set|\\\ndateinterval|dateperiod|datetime|datetimezone|db2_autocommit|db2_bind_param|db2_client_info|db2_close|db2_column_privileges|db2_columns|\\\ndb2_commit|db2_conn_error|db2_conn_errormsg|db2_connect|db2_cursor_type|db2_escape_string|db2_exec|db2_execute|db2_fetch_array|\\\ndb2_fetch_assoc|db2_fetch_both|db2_fetch_object|db2_fetch_row|db2_field_display_size|db2_field_name|db2_field_num|db2_field_precision|\\\ndb2_field_scale|db2_field_type|db2_field_width|db2_foreign_keys|db2_free_result|db2_free_stmt|db2_get_option|db2_last_insert_id|\\\ndb2_lob_read|db2_next_result|db2_num_fields|db2_num_rows|db2_pclose|db2_pconnect|db2_prepare|db2_primary_keys|db2_procedure_columns|\\\ndb2_procedures|db2_result|db2_rollback|db2_server_info|db2_set_option|db2_special_columns|db2_statistics|db2_stmt_error|db2_stmt_errormsg|\\\ndb2_table_privileges|db2_tables|dba_close|dba_delete|dba_exists|dba_fetch|dba_firstkey|dba_handlers|dba_insert|dba_key_split|dba_list|\\\ndba_nextkey|dba_open|dba_optimize|dba_popen|dba_replace|dba_sync|dbase_add_record|dbase_close|dbase_create|dbase_delete_record|\\\ndbase_get_header_info|dbase_get_record|dbase_get_record_with_names|dbase_numfields|dbase_numrecords|dbase_open|dbase_pack|\\\ndbase_replace_record|dbplus_add|dbplus_aql|dbplus_chdir|dbplus_close|dbplus_curr|dbplus_errcode|dbplus_errno|dbplus_find|dbplus_first|\\\ndbplus_flush|dbplus_freealllocks|dbplus_freelock|dbplus_freerlocks|dbplus_getlock|dbplus_getunique|dbplus_info|dbplus_last|dbplus_lockrel|\\\ndbplus_next|dbplus_open|dbplus_prev|dbplus_rchperm|dbplus_rcreate|dbplus_rcrtexact|dbplus_rcrtlike|dbplus_resolve|dbplus_restorepos|\\\ndbplus_rkeys|dbplus_ropen|dbplus_rquery|dbplus_rrename|dbplus_rsecindex|dbplus_runlink|dbplus_rzap|dbplus_savepos|dbplus_setindex|\\\ndbplus_setindexbynumber|dbplus_sql|dbplus_tcl|dbplus_tremove|dbplus_undo|dbplus_undoprepare|dbplus_unlockrel|dbplus_unselect|\\\ndbplus_update|dbplus_xlockrel|dbplus_xunlockrel|dbx_close|dbx_compare|dbx_connect|dbx_error|dbx_escape_string|dbx_fetch_row|dbx_query|\\\ndbx_sort|dcgettext|dcngettext|deaggregate|debug_backtrace|debug_print_backtrace|debug_zval_dump|decbin|dechex|decoct|define|\\\ndefine_syslog_variables|defined|deg2rad|delete|dgettext|die|dio_close|dio_fcntl|dio_open|dio_read|dio_seek|dio_stat|dio_tcsetattr|\\\ndio_truncate|dio_write|dir|directoryiterator|dirname|disk_free_space|disk_total_space|diskfreespace|dl|dngettext|dns_check_record|\\\ndns_get_mx|dns_get_record|dom_import_simplexml|domainexception|domattr|domattribute_name|domattribute_set_value|domattribute_specified|\\\ndomattribute_value|domcharacterdata|domcomment|domdocument|domdocument_add_root|domdocument_create_attribute|\\\ndomdocument_create_cdata_section|domdocument_create_comment|domdocument_create_element|domdocument_create_element_ns|\\\ndomdocument_create_entity_reference|domdocument_create_processing_instruction|domdocument_create_text_node|domdocument_doctype|\\\ndomdocument_document_element|domdocument_dump_file|domdocument_dump_mem|domdocument_get_element_by_id|domdocument_get_elements_by_tagname|\\\ndomdocument_html_dump_mem|domdocument_xinclude|domdocumentfragment|domdocumenttype|domdocumenttype_entities|\\\ndomdocumenttype_internal_subset|domdocumenttype_name|domdocumenttype_notations|domdocumenttype_public_id|domdocumenttype_system_id|\\\ndomelement|domelement_get_attribute|domelement_get_attribute_node|domelement_get_elements_by_tagname|domelement_has_attribute|\\\ndomelement_remove_attribute|domelement_set_attribute|domelement_set_attribute_node|domelement_tagname|domentity|domentityreference|\\\ndomexception|domimplementation|domnamednodemap|domnode|domnode_add_namespace|domnode_append_child|domnode_append_sibling|\\\ndomnode_attributes|domnode_child_nodes|domnode_clone_node|domnode_dump_node|domnode_first_child|domnode_get_content|\\\ndomnode_has_attributes|domnode_has_child_nodes|domnode_insert_before|domnode_is_blank_node|domnode_last_child|domnode_next_sibling|\\\ndomnode_node_name|domnode_node_type|domnode_node_value|domnode_owner_document|domnode_parent_node|domnode_prefix|domnode_previous_sibling|\\\ndomnode_remove_child|domnode_replace_child|domnode_replace_node|domnode_set_content|domnode_set_name|domnode_set_namespace|\\\ndomnode_unlink_node|domnodelist|domnotation|domprocessinginstruction|domprocessinginstruction_data|domprocessinginstruction_target|\\\ndomtext|domxml_new_doc|domxml_open_file|domxml_open_mem|domxml_version|domxml_xmltree|domxml_xslt_stylesheet|domxml_xslt_stylesheet_doc|\\\ndomxml_xslt_stylesheet_file|domxml_xslt_version|domxpath|domxsltstylesheet_process|domxsltstylesheet_result_dump_file|\\\ndomxsltstylesheet_result_dump_mem|dotnet|dotnet_load|doubleval|each|easter_date|easter_days|echo|empty|emptyiterator|\\\nenchant_broker_describe|enchant_broker_dict_exists|enchant_broker_free|enchant_broker_free_dict|enchant_broker_get_error|\\\nenchant_broker_init|enchant_broker_list_dicts|enchant_broker_request_dict|enchant_broker_request_pwl_dict|enchant_broker_set_ordering|\\\nenchant_dict_add_to_personal|enchant_dict_add_to_session|enchant_dict_check|enchant_dict_describe|enchant_dict_get_error|\\\nenchant_dict_is_in_session|enchant_dict_quick_check|enchant_dict_store_replacement|enchant_dict_suggest|end|ereg|ereg_replace|eregi|\\\neregi_replace|error_get_last|error_log|error_reporting|errorexception|escapeshellarg|escapeshellcmd|eval|event_add|event_base_free|\\\nevent_base_loop|event_base_loopbreak|event_base_loopexit|event_base_new|event_base_priority_init|event_base_set|event_buffer_base_set|\\\nevent_buffer_disable|event_buffer_enable|event_buffer_fd_set|event_buffer_free|event_buffer_new|event_buffer_priority_set|\\\nevent_buffer_read|event_buffer_set_callback|event_buffer_timeout_set|event_buffer_watermark_set|event_buffer_write|event_del|event_free|\\\nevent_new|event_set|exception|exec|exif_imagetype|exif_read_data|exif_tagname|exif_thumbnail|exit|exp|expect_expectl|expect_popen|explode|\\\nexpm1|export|export|extension_loaded|extract|ezmlm_hash|fam_cancel_monitor|fam_close|fam_monitor_collection|fam_monitor_directory|\\\nfam_monitor_file|fam_next_event|fam_open|fam_pending|fam_resume_monitor|fam_suspend_monitor|fbsql_affected_rows|fbsql_autocommit|\\\nfbsql_blob_size|fbsql_change_user|fbsql_clob_size|fbsql_close|fbsql_commit|fbsql_connect|fbsql_create_blob|fbsql_create_clob|\\\nfbsql_create_db|fbsql_data_seek|fbsql_database|fbsql_database_password|fbsql_db_query|fbsql_db_status|fbsql_drop_db|fbsql_errno|\\\nfbsql_error|fbsql_fetch_array|fbsql_fetch_assoc|fbsql_fetch_field|fbsql_fetch_lengths|fbsql_fetch_object|fbsql_fetch_row|\\\nfbsql_field_flags|fbsql_field_len|fbsql_field_name|fbsql_field_seek|fbsql_field_table|fbsql_field_type|fbsql_free_result|\\\nfbsql_get_autostart_info|fbsql_hostname|fbsql_insert_id|fbsql_list_dbs|fbsql_list_fields|fbsql_list_tables|fbsql_next_result|\\\nfbsql_num_fields|fbsql_num_rows|fbsql_password|fbsql_pconnect|fbsql_query|fbsql_read_blob|fbsql_read_clob|fbsql_result|fbsql_rollback|\\\nfbsql_rows_fetched|fbsql_select_db|fbsql_set_characterset|fbsql_set_lob_mode|fbsql_set_password|fbsql_set_transaction|fbsql_start_db|\\\nfbsql_stop_db|fbsql_table_name|fbsql_tablename|fbsql_username|fbsql_warnings|fclose|fdf_add_doc_javascript|fdf_add_template|fdf_close|\\\nfdf_create|fdf_enum_values|fdf_errno|fdf_error|fdf_get_ap|fdf_get_attachment|fdf_get_encoding|fdf_get_file|fdf_get_flags|fdf_get_opt|\\\nfdf_get_status|fdf_get_value|fdf_get_version|fdf_header|fdf_next_field_name|fdf_open|fdf_open_string|fdf_remove_item|fdf_save|\\\nfdf_save_string|fdf_set_ap|fdf_set_encoding|fdf_set_file|fdf_set_flags|fdf_set_javascript_action|fdf_set_on_import_javascript|fdf_set_opt|\\\nfdf_set_status|fdf_set_submit_form_action|fdf_set_target_frame|fdf_set_value|fdf_set_version|feof|fflush|fgetc|fgetcsv|fgets|fgetss|file|\\\nfile_exists|file_get_contents|file_put_contents|fileatime|filectime|filegroup|fileinode|filemtime|fileowner|fileperms|filepro|\\\nfilepro_fieldcount|filepro_fieldname|filepro_fieldtype|filepro_fieldwidth|filepro_retrieve|filepro_rowcount|filesize|filesystemiterator|\\\nfiletype|filter_has_var|filter_id|filter_input|filter_input_array|filter_list|filter_var|filter_var_array|filteriterator|finfo_buffer|\\\nfinfo_close|finfo_file|finfo_open|finfo_set_flags|floatval|flock|floor|flush|fmod|fnmatch|fopen|forward_static_call|\\\nforward_static_call_array|fpassthru|fprintf|fputcsv|fputs|fread|frenchtojd|fribidi_log2vis|fscanf|fseek|fsockopen|fstat|ftell|ftok|\\\nftp_alloc|ftp_cdup|ftp_chdir|ftp_chmod|ftp_close|ftp_connect|ftp_delete|ftp_exec|ftp_fget|ftp_fput|ftp_get|ftp_get_option|ftp_login|\\\nftp_mdtm|ftp_mkdir|ftp_nb_continue|ftp_nb_fget|ftp_nb_fput|ftp_nb_get|ftp_nb_put|ftp_nlist|ftp_pasv|ftp_put|ftp_pwd|ftp_quit|ftp_raw|\\\nftp_rawlist|ftp_rename|ftp_rmdir|ftp_set_option|ftp_site|ftp_size|ftp_ssl_connect|ftp_systype|ftruncate|func_get_arg|func_get_args|\\\nfunc_num_args|function_exists|fwrite|gc_collect_cycles|gc_disable|gc_enable|gc_enabled|gd_info|gearmanclient|gearmanjob|gearmantask|\\\ngearmanworker|geoip_continent_code_by_name|geoip_country_code3_by_name|geoip_country_code_by_name|geoip_country_name_by_name|\\\ngeoip_database_info|geoip_db_avail|geoip_db_filename|geoip_db_get_all_info|geoip_id_by_name|geoip_isp_by_name|geoip_org_by_name|\\\ngeoip_record_by_name|geoip_region_by_name|geoip_region_name_by_code|geoip_time_zone_by_country_and_region|getMeta|getNamed|getValue|\\\nget_browser|get_called_class|get_cfg_var|get_class|get_class_methods|get_class_vars|get_current_user|get_declared_classes|\\\nget_declared_interfaces|get_declared_traits|get_defined_constants|get_defined_functions|get_defined_vars|get_extension_funcs|get_headers|\\\nget_html_translation_table|get_include_path|get_included_files|get_loaded_extensions|get_magic_quotes_gpc|get_magic_quotes_runtime|\\\nget_meta_tags|get_object_vars|get_parent_class|get_required_files|get_resource_type|getallheaders|getconstant|getconstants|getconstructor|\\\ngetcwd|getdate|getdefaultproperties|getdoccomment|getendline|getenv|getextension|getextensionname|getfilename|gethostbyaddr|gethostbyname|\\\ngethostbynamel|gethostname|getimagesize|getinterfacenames|getinterfaces|getlastmod|getmethod|getmethods|getmodifiers|getmxrr|getmygid|\\\ngetmyinode|getmypid|getmyuid|getname|getnamespacename|getopt|getparentclass|getproperties|getproperty|getprotobyname|getprotobynumber|\\\ngetrandmax|getrusage|getservbyname|getservbyport|getshortname|getstartline|getstaticproperties|getstaticpropertyvalue|gettext|\\\ngettimeofday|gettype|glob|globiterator|gmagick|gmagickdraw|gmagickpixel|gmdate|gmmktime|gmp_abs|gmp_add|gmp_and|gmp_clrbit|gmp_cmp|\\\ngmp_com|gmp_div|gmp_div_q|gmp_div_qr|gmp_div_r|gmp_divexact|gmp_fact|gmp_gcd|gmp_gcdext|gmp_hamdist|gmp_init|gmp_intval|gmp_invert|\\\ngmp_jacobi|gmp_legendre|gmp_mod|gmp_mul|gmp_neg|gmp_nextprime|gmp_or|gmp_perfect_square|gmp_popcount|gmp_pow|gmp_powm|gmp_prob_prime|\\\ngmp_random|gmp_scan0|gmp_scan1|gmp_setbit|gmp_sign|gmp_sqrt|gmp_sqrtrem|gmp_strval|gmp_sub|gmp_testbit|gmp_xor|gmstrftime|\\\ngnupg_adddecryptkey|gnupg_addencryptkey|gnupg_addsignkey|gnupg_cleardecryptkeys|gnupg_clearencryptkeys|gnupg_clearsignkeys|gnupg_decrypt|\\\ngnupg_decryptverify|gnupg_encrypt|gnupg_encryptsign|gnupg_export|gnupg_geterror|gnupg_getprotocol|gnupg_import|gnupg_init|gnupg_keyinfo|\\\ngnupg_setarmor|gnupg_seterrormode|gnupg_setsignmode|gnupg_sign|gnupg_verify|gopher_parsedir|grapheme_extract|grapheme_stripos|\\\ngrapheme_stristr|grapheme_strlen|grapheme_strpos|grapheme_strripos|grapheme_strrpos|grapheme_strstr|grapheme_substr|gregoriantojd|\\\ngupnp_context_get_host_ip|gupnp_context_get_port|gupnp_context_get_subscription_timeout|gupnp_context_host_path|gupnp_context_new|\\\ngupnp_context_set_subscription_timeout|gupnp_context_timeout_add|gupnp_context_unhost_path|gupnp_control_point_browse_start|\\\ngupnp_control_point_browse_stop|gupnp_control_point_callback_set|gupnp_control_point_new|gupnp_device_action_callback_set|\\\ngupnp_device_info_get|gupnp_device_info_get_service|gupnp_root_device_get_available|gupnp_root_device_get_relative_location|\\\ngupnp_root_device_new|gupnp_root_device_set_available|gupnp_root_device_start|gupnp_root_device_stop|gupnp_service_action_get|\\\ngupnp_service_action_return|gupnp_service_action_return_error|gupnp_service_action_set|gupnp_service_freeze_notify|gupnp_service_info_get|\\\ngupnp_service_info_get_introspection|gupnp_service_introspection_get_state_variable|gupnp_service_notify|gupnp_service_proxy_action_get|\\\ngupnp_service_proxy_action_set|gupnp_service_proxy_add_notify|gupnp_service_proxy_callback_set|gupnp_service_proxy_get_subscribed|\\\ngupnp_service_proxy_remove_notify|gupnp_service_proxy_set_subscribed|gupnp_service_thaw_notify|gzclose|gzcompress|gzdecode|gzdeflate|\\\ngzencode|gzeof|gzfile|gzgetc|gzgets|gzgetss|gzinflate|gzopen|gzpassthru|gzputs|gzread|gzrewind|gzseek|gztell|gzuncompress|gzwrite|\\\nhalt_compiler|haruannotation|haruannotation_setborderstyle|haruannotation_sethighlightmode|haruannotation_seticon|\\\nharuannotation_setopened|harudestination|harudestination_setfit|harudestination_setfitb|harudestination_setfitbh|harudestination_setfitbv|\\\nharudestination_setfith|harudestination_setfitr|harudestination_setfitv|harudestination_setxyz|harudoc|harudoc_addpage|\\\nharudoc_addpagelabel|harudoc_construct|harudoc_createoutline|harudoc_getcurrentencoder|harudoc_getcurrentpage|harudoc_getencoder|\\\nharudoc_getfont|harudoc_getinfoattr|harudoc_getpagelayout|harudoc_getpagemode|harudoc_getstreamsize|harudoc_insertpage|harudoc_loadjpeg|\\\nharudoc_loadpng|harudoc_loadraw|harudoc_loadttc|harudoc_loadttf|harudoc_loadtype1|harudoc_output|harudoc_readfromstream|\\\nharudoc_reseterror|harudoc_resetstream|harudoc_save|harudoc_savetostream|harudoc_setcompressionmode|harudoc_setcurrentencoder|\\\nharudoc_setencryptionmode|harudoc_setinfoattr|harudoc_setinfodateattr|harudoc_setopenaction|harudoc_setpagelayout|harudoc_setpagemode|\\\nharudoc_setpagesconfiguration|harudoc_setpassword|harudoc_setpermission|harudoc_usecnsencodings|harudoc_usecnsfonts|\\\nharudoc_usecntencodings|harudoc_usecntfonts|harudoc_usejpencodings|harudoc_usejpfonts|harudoc_usekrencodings|harudoc_usekrfonts|\\\nharuencoder|haruencoder_getbytetype|haruencoder_gettype|haruencoder_getunicode|haruencoder_getwritingmode|haruexception|harufont|\\\nharufont_getascent|harufont_getcapheight|harufont_getdescent|harufont_getencodingname|harufont_getfontname|harufont_gettextwidth|\\\nharufont_getunicodewidth|harufont_getxheight|harufont_measuretext|haruimage|haruimage_getbitspercomponent|haruimage_getcolorspace|\\\nharuimage_getheight|haruimage_getsize|haruimage_getwidth|haruimage_setcolormask|haruimage_setmaskimage|haruoutline|\\\nharuoutline_setdestination|haruoutline_setopened|harupage|harupage_arc|harupage_begintext|harupage_circle|harupage_closepath|\\\nharupage_concat|harupage_createdestination|harupage_createlinkannotation|harupage_createtextannotation|harupage_createurlannotation|\\\nharupage_curveto|harupage_curveto2|harupage_curveto3|harupage_drawimage|harupage_ellipse|harupage_endpath|harupage_endtext|\\\nharupage_eofill|harupage_eofillstroke|harupage_fill|harupage_fillstroke|harupage_getcharspace|harupage_getcmykfill|harupage_getcmykstroke|\\\nharupage_getcurrentfont|harupage_getcurrentfontsize|harupage_getcurrentpos|harupage_getcurrenttextpos|harupage_getdash|\\\nharupage_getfillingcolorspace|harupage_getflatness|harupage_getgmode|harupage_getgrayfill|harupage_getgraystroke|harupage_getheight|\\\nharupage_gethorizontalscaling|harupage_getlinecap|harupage_getlinejoin|harupage_getlinewidth|harupage_getmiterlimit|harupage_getrgbfill|\\\nharupage_getrgbstroke|harupage_getstrokingcolorspace|harupage_gettextleading|harupage_gettextmatrix|harupage_gettextrenderingmode|\\\nharupage_gettextrise|harupage_gettextwidth|harupage_gettransmatrix|harupage_getwidth|harupage_getwordspace|harupage_lineto|\\\nharupage_measuretext|harupage_movetextpos|harupage_moveto|harupage_movetonextline|harupage_rectangle|harupage_setcharspace|\\\nharupage_setcmykfill|harupage_setcmykstroke|harupage_setdash|harupage_setflatness|harupage_setfontandsize|harupage_setgrayfill|\\\nharupage_setgraystroke|harupage_setheight|harupage_sethorizontalscaling|harupage_setlinecap|harupage_setlinejoin|harupage_setlinewidth|\\\nharupage_setmiterlimit|harupage_setrgbfill|harupage_setrgbstroke|harupage_setrotate|harupage_setsize|harupage_setslideshow|\\\nharupage_settextleading|harupage_settextmatrix|harupage_settextrenderingmode|harupage_settextrise|harupage_setwidth|harupage_setwordspace|\\\nharupage_showtext|harupage_showtextnextline|harupage_stroke|harupage_textout|harupage_textrect|hasconstant|hash|hash_algos|hash_copy|\\\nhash_file|hash_final|hash_hmac|hash_hmac_file|hash_init|hash_update|hash_update_file|hash_update_stream|hasmethod|hasproperty|header|\\\nheader_register_callback|header_remove|headers_list|headers_sent|hebrev|hebrevc|hex2bin|hexdec|highlight_file|highlight_string|\\\nhtml_entity_decode|htmlentities|htmlspecialchars|htmlspecialchars_decode|http_build_cookie|http_build_query|http_build_str|http_build_url|\\\nhttp_cache_etag|http_cache_last_modified|http_chunked_decode|http_date|http_deflate|http_get|http_get_request_body|\\\nhttp_get_request_body_stream|http_get_request_headers|http_head|http_inflate|http_match_etag|http_match_modified|\\\nhttp_match_request_header|http_negotiate_charset|http_negotiate_content_type|http_negotiate_language|http_parse_cookie|http_parse_headers|\\\nhttp_parse_message|http_parse_params|http_persistent_handles_clean|http_persistent_handles_count|http_persistent_handles_ident|\\\nhttp_post_data|http_post_fields|http_put_data|http_put_file|http_put_stream|http_redirect|http_request|http_request_body_encode|\\\nhttp_request_method_exists|http_request_method_name|http_request_method_register|http_request_method_unregister|http_response_code|\\\nhttp_send_content_disposition|http_send_content_type|http_send_data|http_send_file|http_send_last_modified|http_send_status|\\\nhttp_send_stream|http_support|http_throttle|httpdeflatestream|httpdeflatestream_construct|httpdeflatestream_factory|\\\nhttpdeflatestream_finish|httpdeflatestream_flush|httpdeflatestream_update|httpinflatestream|httpinflatestream_construct|\\\nhttpinflatestream_factory|httpinflatestream_finish|httpinflatestream_flush|httpinflatestream_update|httpmessage|httpmessage_addheaders|\\\nhttpmessage_construct|httpmessage_detach|httpmessage_factory|httpmessage_fromenv|httpmessage_fromstring|httpmessage_getbody|\\\nhttpmessage_getheader|httpmessage_getheaders|httpmessage_gethttpversion|httpmessage_getparentmessage|httpmessage_getrequestmethod|\\\nhttpmessage_getrequesturl|httpmessage_getresponsecode|httpmessage_getresponsestatus|httpmessage_gettype|httpmessage_guesscontenttype|\\\nhttpmessage_prepend|httpmessage_reverse|httpmessage_send|httpmessage_setbody|httpmessage_setheaders|httpmessage_sethttpversion|\\\nhttpmessage_setrequestmethod|httpmessage_setrequesturl|httpmessage_setresponsecode|httpmessage_setresponsestatus|httpmessage_settype|\\\nhttpmessage_tomessagetypeobject|httpmessage_tostring|httpquerystring|httpquerystring_construct|httpquerystring_get|httpquerystring_mod|\\\nhttpquerystring_set|httpquerystring_singleton|httpquerystring_toarray|httpquerystring_tostring|httpquerystring_xlate|httprequest|\\\nhttprequest_addcookies|httprequest_addheaders|httprequest_addpostfields|httprequest_addpostfile|httprequest_addputdata|\\\nhttprequest_addquerydata|httprequest_addrawpostdata|httprequest_addssloptions|httprequest_clearhistory|httprequest_construct|\\\nhttprequest_enablecookies|httprequest_getcontenttype|httprequest_getcookies|httprequest_getheaders|httprequest_gethistory|\\\nhttprequest_getmethod|httprequest_getoptions|httprequest_getpostfields|httprequest_getpostfiles|httprequest_getputdata|\\\nhttprequest_getputfile|httprequest_getquerydata|httprequest_getrawpostdata|httprequest_getrawrequestmessage|\\\nhttprequest_getrawresponsemessage|httprequest_getrequestmessage|httprequest_getresponsebody|httprequest_getresponsecode|\\\nhttprequest_getresponsecookies|httprequest_getresponsedata|httprequest_getresponseheader|httprequest_getresponseinfo|\\\nhttprequest_getresponsemessage|httprequest_getresponsestatus|httprequest_getssloptions|httprequest_geturl|httprequest_resetcookies|\\\nhttprequest_send|httprequest_setcontenttype|httprequest_setcookies|httprequest_setheaders|httprequest_setmethod|httprequest_setoptions|\\\nhttprequest_setpostfields|httprequest_setpostfiles|httprequest_setputdata|httprequest_setputfile|httprequest_setquerydata|\\\nhttprequest_setrawpostdata|httprequest_setssloptions|httprequest_seturl|httprequestpool|httprequestpool_attach|httprequestpool_construct|\\\nhttprequestpool_destruct|httprequestpool_detach|httprequestpool_getattachedrequests|httprequestpool_getfinishedrequests|\\\nhttprequestpool_reset|httprequestpool_send|httprequestpool_socketperform|httprequestpool_socketselect|httpresponse|httpresponse_capture|\\\nhttpresponse_getbuffersize|httpresponse_getcache|httpresponse_getcachecontrol|httpresponse_getcontentdisposition|\\\nhttpresponse_getcontenttype|httpresponse_getdata|httpresponse_getetag|httpresponse_getfile|httpresponse_getgzip|httpresponse_getheader|\\\nhttpresponse_getlastmodified|httpresponse_getrequestbody|httpresponse_getrequestbodystream|httpresponse_getrequestheaders|\\\nhttpresponse_getstream|httpresponse_getthrottledelay|httpresponse_guesscontenttype|httpresponse_redirect|httpresponse_send|\\\nhttpresponse_setbuffersize|httpresponse_setcache|httpresponse_setcachecontrol|httpresponse_setcontentdisposition|\\\nhttpresponse_setcontenttype|httpresponse_setdata|httpresponse_setetag|httpresponse_setfile|httpresponse_setgzip|httpresponse_setheader|\\\nhttpresponse_setlastmodified|httpresponse_setstream|httpresponse_setthrottledelay|httpresponse_status|hw_array2objrec|hw_changeobject|\\\nhw_children|hw_childrenobj|hw_close|hw_connect|hw_connection_info|hw_cp|hw_deleteobject|hw_docbyanchor|hw_docbyanchorobj|\\\nhw_document_attributes|hw_document_bodytag|hw_document_content|hw_document_setcontent|hw_document_size|hw_dummy|hw_edittext|hw_error|\\\nhw_errormsg|hw_free_document|hw_getanchors|hw_getanchorsobj|hw_getandlock|hw_getchildcoll|hw_getchildcollobj|hw_getchilddoccoll|\\\nhw_getchilddoccollobj|hw_getobject|hw_getobjectbyquery|hw_getobjectbyquerycoll|hw_getobjectbyquerycollobj|hw_getobjectbyqueryobj|\\\nhw_getparents|hw_getparentsobj|hw_getrellink|hw_getremote|hw_getremotechildren|hw_getsrcbydestobj|hw_gettext|hw_getusername|hw_identify|\\\nhw_incollections|hw_info|hw_inscoll|hw_insdoc|hw_insertanchors|hw_insertdocument|hw_insertobject|hw_mapid|hw_modifyobject|hw_mv|\\\nhw_new_document|hw_objrec2array|hw_output_document|hw_pconnect|hw_pipedocument|hw_root|hw_setlinkroot|hw_stat|hw_unlock|hw_who|\\\nhwapi_attribute|hwapi_attribute_key|hwapi_attribute_langdepvalue|hwapi_attribute_value|hwapi_attribute_values|hwapi_checkin|\\\nhwapi_checkout|hwapi_children|hwapi_content|hwapi_content_mimetype|hwapi_content_read|hwapi_copy|hwapi_dbstat|hwapi_dcstat|\\\nhwapi_dstanchors|hwapi_dstofsrcanchor|hwapi_error_count|hwapi_error_reason|hwapi_find|hwapi_ftstat|hwapi_hgcsp|hwapi_hwstat|\\\nhwapi_identify|hwapi_info|hwapi_insert|hwapi_insertanchor|hwapi_insertcollection|hwapi_insertdocument|hwapi_link|hwapi_lock|hwapi_move|\\\nhwapi_new_content|hwapi_object|hwapi_object_assign|hwapi_object_attreditable|hwapi_object_count|hwapi_object_insert|hwapi_object_new|\\\nhwapi_object_remove|hwapi_object_title|hwapi_object_value|hwapi_objectbyanchor|hwapi_parents|hwapi_reason_description|hwapi_reason_type|\\\nhwapi_remove|hwapi_replace|hwapi_setcommittedversion|hwapi_srcanchors|hwapi_srcsofdst|hwapi_unlock|hwapi_user|hwapi_userlist|hypot|\\\nibase_add_user|ibase_affected_rows|ibase_backup|ibase_blob_add|ibase_blob_cancel|ibase_blob_close|ibase_blob_create|ibase_blob_echo|\\\nibase_blob_get|ibase_blob_import|ibase_blob_info|ibase_blob_open|ibase_close|ibase_commit|ibase_commit_ret|ibase_connect|ibase_db_info|\\\nibase_delete_user|ibase_drop_db|ibase_errcode|ibase_errmsg|ibase_execute|ibase_fetch_assoc|ibase_fetch_object|ibase_fetch_row|\\\nibase_field_info|ibase_free_event_handler|ibase_free_query|ibase_free_result|ibase_gen_id|ibase_maintain_db|ibase_modify_user|\\\nibase_name_result|ibase_num_fields|ibase_num_params|ibase_param_info|ibase_pconnect|ibase_prepare|ibase_query|ibase_restore|\\\nibase_rollback|ibase_rollback_ret|ibase_server_info|ibase_service_attach|ibase_service_detach|ibase_set_event_handler|ibase_timefmt|\\\nibase_trans|ibase_wait_event|iconv|iconv_get_encoding|iconv_mime_decode|iconv_mime_decode_headers|iconv_mime_encode|iconv_set_encoding|\\\niconv_strlen|iconv_strpos|iconv_strrpos|iconv_substr|id3_get_frame_long_name|id3_get_frame_short_name|id3_get_genre_id|id3_get_genre_list|\\\nid3_get_genre_name|id3_get_tag|id3_get_version|id3_remove_tag|id3_set_tag|id3v2attachedpictureframe|id3v2frame|id3v2tag|idate|\\\nidn_to_ascii|idn_to_unicode|idn_to_utf8|ifx_affected_rows|ifx_blobinfile_mode|ifx_byteasvarchar|ifx_close|ifx_connect|ifx_copy_blob|\\\nifx_create_blob|ifx_create_char|ifx_do|ifx_error|ifx_errormsg|ifx_fetch_row|ifx_fieldproperties|ifx_fieldtypes|ifx_free_blob|\\\nifx_free_char|ifx_free_result|ifx_get_blob|ifx_get_char|ifx_getsqlca|ifx_htmltbl_result|ifx_nullformat|ifx_num_fields|ifx_num_rows|\\\nifx_pconnect|ifx_prepare|ifx_query|ifx_textasvarchar|ifx_update_blob|ifx_update_char|ifxus_close_slob|ifxus_create_slob|ifxus_free_slob|\\\nifxus_open_slob|ifxus_read_slob|ifxus_seek_slob|ifxus_tell_slob|ifxus_write_slob|ignore_user_abort|iis_add_server|iis_get_dir_security|\\\niis_get_script_map|iis_get_server_by_comment|iis_get_server_by_path|iis_get_server_rights|iis_get_service_state|iis_remove_server|\\\niis_set_app_settings|iis_set_dir_security|iis_set_script_map|iis_set_server_rights|iis_start_server|iis_start_service|iis_stop_server|\\\niis_stop_service|image2wbmp|image_type_to_extension|image_type_to_mime_type|imagealphablending|imageantialias|imagearc|imagechar|\\\nimagecharup|imagecolorallocate|imagecolorallocatealpha|imagecolorat|imagecolorclosest|imagecolorclosestalpha|imagecolorclosesthwb|\\\nimagecolordeallocate|imagecolorexact|imagecolorexactalpha|imagecolormatch|imagecolorresolve|imagecolorresolvealpha|imagecolorset|\\\nimagecolorsforindex|imagecolorstotal|imagecolortransparent|imageconvolution|imagecopy|imagecopymerge|imagecopymergegray|\\\nimagecopyresampled|imagecopyresized|imagecreate|imagecreatefromgd|imagecreatefromgd2|imagecreatefromgd2part|imagecreatefromgif|\\\nimagecreatefromjpeg|imagecreatefrompng|imagecreatefromstring|imagecreatefromwbmp|imagecreatefromxbm|imagecreatefromxpm|\\\nimagecreatetruecolor|imagedashedline|imagedestroy|imageellipse|imagefill|imagefilledarc|imagefilledellipse|imagefilledpolygon|\\\nimagefilledrectangle|imagefilltoborder|imagefilter|imagefontheight|imagefontwidth|imageftbbox|imagefttext|imagegammacorrect|imagegd|\\\nimagegd2|imagegif|imagegrabscreen|imagegrabwindow|imageinterlace|imageistruecolor|imagejpeg|imagelayereffect|imageline|imageloadfont|\\\nimagepalettecopy|imagepng|imagepolygon|imagepsbbox|imagepsencodefont|imagepsextendfont|imagepsfreefont|imagepsloadfont|imagepsslantfont|\\\nimagepstext|imagerectangle|imagerotate|imagesavealpha|imagesetbrush|imagesetpixel|imagesetstyle|imagesetthickness|imagesettile|\\\nimagestring|imagestringup|imagesx|imagesy|imagetruecolortopalette|imagettfbbox|imagettftext|imagetypes|imagewbmp|imagexbm|imagick|\\\nimagick_adaptiveblurimage|imagick_adaptiveresizeimage|imagick_adaptivesharpenimage|imagick_adaptivethresholdimage|imagick_addimage|\\\nimagick_addnoiseimage|imagick_affinetransformimage|imagick_animateimages|imagick_annotateimage|imagick_appendimages|imagick_averageimages|\\\nimagick_blackthresholdimage|imagick_blurimage|imagick_borderimage|imagick_charcoalimage|imagick_chopimage|imagick_clear|imagick_clipimage|\\\nimagick_clippathimage|imagick_clone|imagick_clutimage|imagick_coalesceimages|imagick_colorfloodfillimage|imagick_colorizeimage|\\\nimagick_combineimages|imagick_commentimage|imagick_compareimagechannels|imagick_compareimagelayers|imagick_compareimages|\\\nimagick_compositeimage|imagick_construct|imagick_contrastimage|imagick_contraststretchimage|imagick_convolveimage|imagick_cropimage|\\\nimagick_cropthumbnailimage|imagick_current|imagick_cyclecolormapimage|imagick_decipherimage|imagick_deconstructimages|\\\nimagick_deleteimageartifact|imagick_despeckleimage|imagick_destroy|imagick_displayimage|imagick_displayimages|imagick_distortimage|\\\nimagick_drawimage|imagick_edgeimage|imagick_embossimage|imagick_encipherimage|imagick_enhanceimage|imagick_equalizeimage|\\\nimagick_evaluateimage|imagick_extentimage|imagick_flattenimages|imagick_flipimage|imagick_floodfillpaintimage|imagick_flopimage|\\\nimagick_frameimage|imagick_fximage|imagick_gammaimage|imagick_gaussianblurimage|imagick_getcolorspace|imagick_getcompression|\\\nimagick_getcompressionquality|imagick_getcopyright|imagick_getfilename|imagick_getfont|imagick_getformat|imagick_getgravity|\\\nimagick_gethomeurl|imagick_getimage|imagick_getimagealphachannel|imagick_getimageartifact|imagick_getimagebackgroundcolor|\\\nimagick_getimageblob|imagick_getimageblueprimary|imagick_getimagebordercolor|imagick_getimagechanneldepth|\\\nimagick_getimagechanneldistortion|imagick_getimagechanneldistortions|imagick_getimagechannelextrema|imagick_getimagechannelmean|\\\nimagick_getimagechannelrange|imagick_getimagechannelstatistics|imagick_getimageclipmask|imagick_getimagecolormapcolor|\\\nimagick_getimagecolors|imagick_getimagecolorspace|imagick_getimagecompose|imagick_getimagecompression|imagick_getimagecompressionquality|\\\nimagick_getimagedelay|imagick_getimagedepth|imagick_getimagedispose|imagick_getimagedistortion|imagick_getimageextrema|\\\nimagick_getimagefilename|imagick_getimageformat|imagick_getimagegamma|imagick_getimagegeometry|imagick_getimagegravity|\\\nimagick_getimagegreenprimary|imagick_getimageheight|imagick_getimagehistogram|imagick_getimageindex|imagick_getimageinterlacescheme|\\\nimagick_getimageinterpolatemethod|imagick_getimageiterations|imagick_getimagelength|imagick_getimagemagicklicense|imagick_getimagematte|\\\nimagick_getimagemattecolor|imagick_getimageorientation|imagick_getimagepage|imagick_getimagepixelcolor|imagick_getimageprofile|\\\nimagick_getimageprofiles|imagick_getimageproperties|imagick_getimageproperty|imagick_getimageredprimary|imagick_getimageregion|\\\nimagick_getimagerenderingintent|imagick_getimageresolution|imagick_getimagesblob|imagick_getimagescene|imagick_getimagesignature|\\\nimagick_getimagesize|imagick_getimagetickspersecond|imagick_getimagetotalinkdensity|imagick_getimagetype|imagick_getimageunits|\\\nimagick_getimagevirtualpixelmethod|imagick_getimagewhitepoint|imagick_getimagewidth|imagick_getinterlacescheme|imagick_getiteratorindex|\\\nimagick_getnumberimages|imagick_getoption|imagick_getpackagename|imagick_getpage|imagick_getpixeliterator|imagick_getpixelregioniterator|\\\nimagick_getpointsize|imagick_getquantumdepth|imagick_getquantumrange|imagick_getreleasedate|imagick_getresource|imagick_getresourcelimit|\\\nimagick_getsamplingfactors|imagick_getsize|imagick_getsizeoffset|imagick_getversion|imagick_hasnextimage|imagick_haspreviousimage|\\\nimagick_identifyimage|imagick_implodeimage|imagick_labelimage|imagick_levelimage|imagick_linearstretchimage|imagick_liquidrescaleimage|\\\nimagick_magnifyimage|imagick_mapimage|imagick_mattefloodfillimage|imagick_medianfilterimage|imagick_mergeimagelayers|imagick_minifyimage|\\\nimagick_modulateimage|imagick_montageimage|imagick_morphimages|imagick_mosaicimages|imagick_motionblurimage|imagick_negateimage|\\\nimagick_newimage|imagick_newpseudoimage|imagick_nextimage|imagick_normalizeimage|imagick_oilpaintimage|imagick_opaquepaintimage|\\\nimagick_optimizeimagelayers|imagick_orderedposterizeimage|imagick_paintfloodfillimage|imagick_paintopaqueimage|\\\nimagick_painttransparentimage|imagick_pingimage|imagick_pingimageblob|imagick_pingimagefile|imagick_polaroidimage|imagick_posterizeimage|\\\nimagick_previewimages|imagick_previousimage|imagick_profileimage|imagick_quantizeimage|imagick_quantizeimages|imagick_queryfontmetrics|\\\nimagick_queryfonts|imagick_queryformats|imagick_radialblurimage|imagick_raiseimage|imagick_randomthresholdimage|imagick_readimage|\\\nimagick_readimageblob|imagick_readimagefile|imagick_recolorimage|imagick_reducenoiseimage|imagick_removeimage|imagick_removeimageprofile|\\\nimagick_render|imagick_resampleimage|imagick_resetimagepage|imagick_resizeimage|imagick_rollimage|imagick_rotateimage|\\\nimagick_roundcorners|imagick_sampleimage|imagick_scaleimage|imagick_separateimagechannel|imagick_sepiatoneimage|\\\nimagick_setbackgroundcolor|imagick_setcolorspace|imagick_setcompression|imagick_setcompressionquality|imagick_setfilename|\\\nimagick_setfirstiterator|imagick_setfont|imagick_setformat|imagick_setgravity|imagick_setimage|imagick_setimagealphachannel|\\\nimagick_setimageartifact|imagick_setimagebackgroundcolor|imagick_setimagebias|imagick_setimageblueprimary|imagick_setimagebordercolor|\\\nimagick_setimagechanneldepth|imagick_setimageclipmask|imagick_setimagecolormapcolor|imagick_setimagecolorspace|imagick_setimagecompose|\\\nimagick_setimagecompression|imagick_setimagecompressionquality|imagick_setimagedelay|imagick_setimagedepth|imagick_setimagedispose|\\\nimagick_setimageextent|imagick_setimagefilename|imagick_setimageformat|imagick_setimagegamma|imagick_setimagegravity|\\\nimagick_setimagegreenprimary|imagick_setimageindex|imagick_setimageinterlacescheme|imagick_setimageinterpolatemethod|\\\nimagick_setimageiterations|imagick_setimagematte|imagick_setimagemattecolor|imagick_setimageopacity|imagick_setimageorientation|\\\nimagick_setimagepage|imagick_setimageprofile|imagick_setimageproperty|imagick_setimageredprimary|imagick_setimagerenderingintent|\\\nimagick_setimageresolution|imagick_setimagescene|imagick_setimagetickspersecond|imagick_setimagetype|imagick_setimageunits|\\\nimagick_setimagevirtualpixelmethod|imagick_setimagewhitepoint|imagick_setinterlacescheme|imagick_setiteratorindex|imagick_setlastiterator|\\\nimagick_setoption|imagick_setpage|imagick_setpointsize|imagick_setresolution|imagick_setresourcelimit|imagick_setsamplingfactors|\\\nimagick_setsize|imagick_setsizeoffset|imagick_settype|imagick_shadeimage|imagick_shadowimage|imagick_sharpenimage|imagick_shaveimage|\\\nimagick_shearimage|imagick_sigmoidalcontrastimage|imagick_sketchimage|imagick_solarizeimage|imagick_spliceimage|imagick_spreadimage|\\\nimagick_steganoimage|imagick_stereoimage|imagick_stripimage|imagick_swirlimage|imagick_textureimage|imagick_thresholdimage|\\\nimagick_thumbnailimage|imagick_tintimage|imagick_transformimage|imagick_transparentpaintimage|imagick_transposeimage|\\\nimagick_transverseimage|imagick_trimimage|imagick_uniqueimagecolors|imagick_unsharpmaskimage|imagick_valid|imagick_vignetteimage|\\\nimagick_waveimage|imagick_whitethresholdimage|imagick_writeimage|imagick_writeimagefile|imagick_writeimages|imagick_writeimagesfile|\\\nimagickdraw|imagickdraw_affine|imagickdraw_annotation|imagickdraw_arc|imagickdraw_bezier|imagickdraw_circle|imagickdraw_clear|\\\nimagickdraw_clone|imagickdraw_color|imagickdraw_comment|imagickdraw_composite|imagickdraw_construct|imagickdraw_destroy|\\\nimagickdraw_ellipse|imagickdraw_getclippath|imagickdraw_getcliprule|imagickdraw_getclipunits|imagickdraw_getfillcolor|\\\nimagickdraw_getfillopacity|imagickdraw_getfillrule|imagickdraw_getfont|imagickdraw_getfontfamily|imagickdraw_getfontsize|\\\nimagickdraw_getfontstyle|imagickdraw_getfontweight|imagickdraw_getgravity|imagickdraw_getstrokeantialias|imagickdraw_getstrokecolor|\\\nimagickdraw_getstrokedasharray|imagickdraw_getstrokedashoffset|imagickdraw_getstrokelinecap|imagickdraw_getstrokelinejoin|\\\nimagickdraw_getstrokemiterlimit|imagickdraw_getstrokeopacity|imagickdraw_getstrokewidth|imagickdraw_gettextalignment|\\\nimagickdraw_gettextantialias|imagickdraw_gettextdecoration|imagickdraw_gettextencoding|imagickdraw_gettextundercolor|\\\nimagickdraw_getvectorgraphics|imagickdraw_line|imagickdraw_matte|imagickdraw_pathclose|imagickdraw_pathcurvetoabsolute|\\\nimagickdraw_pathcurvetoquadraticbezierabsolute|imagickdraw_pathcurvetoquadraticbezierrelative|\\\nimagickdraw_pathcurvetoquadraticbeziersmoothabsolute|imagickdraw_pathcurvetoquadraticbeziersmoothrelative|imagickdraw_pathcurvetorelative|\\\nimagickdraw_pathcurvetosmoothabsolute|imagickdraw_pathcurvetosmoothrelative|imagickdraw_pathellipticarcabsolute|\\\nimagickdraw_pathellipticarcrelative|imagickdraw_pathfinish|imagickdraw_pathlinetoabsolute|imagickdraw_pathlinetohorizontalabsolute|\\\nimagickdraw_pathlinetohorizontalrelative|imagickdraw_pathlinetorelative|imagickdraw_pathlinetoverticalabsolute|\\\nimagickdraw_pathlinetoverticalrelative|imagickdraw_pathmovetoabsolute|imagickdraw_pathmovetorelative|imagickdraw_pathstart|\\\nimagickdraw_point|imagickdraw_polygon|imagickdraw_polyline|imagickdraw_pop|imagickdraw_popclippath|imagickdraw_popdefs|\\\nimagickdraw_poppattern|imagickdraw_push|imagickdraw_pushclippath|imagickdraw_pushdefs|imagickdraw_pushpattern|imagickdraw_rectangle|\\\nimagickdraw_render|imagickdraw_rotate|imagickdraw_roundrectangle|imagickdraw_scale|imagickdraw_setclippath|imagickdraw_setcliprule|\\\nimagickdraw_setclipunits|imagickdraw_setfillalpha|imagickdraw_setfillcolor|imagickdraw_setfillopacity|imagickdraw_setfillpatternurl|\\\nimagickdraw_setfillrule|imagickdraw_setfont|imagickdraw_setfontfamily|imagickdraw_setfontsize|imagickdraw_setfontstretch|\\\nimagickdraw_setfontstyle|imagickdraw_setfontweight|imagickdraw_setgravity|imagickdraw_setstrokealpha|imagickdraw_setstrokeantialias|\\\nimagickdraw_setstrokecolor|imagickdraw_setstrokedasharray|imagickdraw_setstrokedashoffset|imagickdraw_setstrokelinecap|\\\nimagickdraw_setstrokelinejoin|imagickdraw_setstrokemiterlimit|imagickdraw_setstrokeopacity|imagickdraw_setstrokepatternurl|\\\nimagickdraw_setstrokewidth|imagickdraw_settextalignment|imagickdraw_settextantialias|imagickdraw_settextdecoration|\\\nimagickdraw_settextencoding|imagickdraw_settextundercolor|imagickdraw_setvectorgraphics|imagickdraw_setviewbox|imagickdraw_skewx|\\\nimagickdraw_skewy|imagickdraw_translate|imagickpixel|imagickpixel_clear|imagickpixel_construct|imagickpixel_destroy|imagickpixel_getcolor|\\\nimagickpixel_getcolorasstring|imagickpixel_getcolorcount|imagickpixel_getcolorvalue|imagickpixel_gethsl|imagickpixel_issimilar|\\\nimagickpixel_setcolor|imagickpixel_setcolorvalue|imagickpixel_sethsl|imagickpixeliterator|imagickpixeliterator_clear|\\\nimagickpixeliterator_construct|imagickpixeliterator_destroy|imagickpixeliterator_getcurrentiteratorrow|\\\nimagickpixeliterator_getiteratorrow|imagickpixeliterator_getnextiteratorrow|imagickpixeliterator_getpreviousiteratorrow|\\\nimagickpixeliterator_newpixeliterator|imagickpixeliterator_newpixelregioniterator|imagickpixeliterator_resetiterator|\\\nimagickpixeliterator_setiteratorfirstrow|imagickpixeliterator_setiteratorlastrow|imagickpixeliterator_setiteratorrow|\\\nimagickpixeliterator_synciterator|imap_8bit|imap_alerts|imap_append|imap_base64|imap_binary|imap_body|imap_bodystruct|imap_check|\\\nimap_clearflag_full|imap_close|imap_create|imap_createmailbox|imap_delete|imap_deletemailbox|imap_errors|imap_expunge|imap_fetch_overview|\\\nimap_fetchbody|imap_fetchheader|imap_fetchmime|imap_fetchstructure|imap_fetchtext|imap_gc|imap_get_quota|imap_get_quotaroot|imap_getacl|\\\nimap_getmailboxes|imap_getsubscribed|imap_header|imap_headerinfo|imap_headers|imap_last_error|imap_list|imap_listmailbox|imap_listscan|\\\nimap_listsubscribed|imap_lsub|imap_mail|imap_mail_compose|imap_mail_copy|imap_mail_move|imap_mailboxmsginfo|imap_mime_header_decode|\\\nimap_msgno|imap_num_msg|imap_num_recent|imap_open|imap_ping|imap_qprint|imap_rename|imap_renamemailbox|imap_reopen|\\\nimap_rfc822_parse_adrlist|imap_rfc822_parse_headers|imap_rfc822_write_address|imap_savebody|imap_scan|imap_scanmailbox|imap_search|\\\nimap_set_quota|imap_setacl|imap_setflag_full|imap_sort|imap_status|imap_subscribe|imap_thread|imap_timeout|imap_uid|imap_undelete|\\\nimap_unsubscribe|imap_utf7_decode|imap_utf7_encode|imap_utf8|implementsinterface|implode|import_request_variables|in_array|include|\\\ninclude_once|inclued_get_data|inet_ntop|inet_pton|infiniteiterator|ingres_autocommit|ingres_autocommit_state|ingres_charset|ingres_close|\\\ningres_commit|ingres_connect|ingres_cursor|ingres_errno|ingres_error|ingres_errsqlstate|ingres_escape_string|ingres_execute|\\\ningres_fetch_array|ingres_fetch_assoc|ingres_fetch_object|ingres_fetch_proc_return|ingres_fetch_row|ingres_field_length|ingres_field_name|\\\ningres_field_nullable|ingres_field_precision|ingres_field_scale|ingres_field_type|ingres_free_result|ingres_next_error|ingres_num_fields|\\\ningres_num_rows|ingres_pconnect|ingres_prepare|ingres_query|ingres_result_seek|ingres_rollback|ingres_set_environment|\\\ningres_unbuffered_query|ini_alter|ini_get|ini_get_all|ini_restore|ini_set|innamespace|inotify_add_watch|inotify_init|inotify_queue_len|\\\ninotify_read|inotify_rm_watch|interface_exists|intl_error_name|intl_get_error_code|intl_get_error_message|intl_is_failure|\\\nintldateformatter|intval|invalidargumentexception|invoke|invokeargs|ip2long|iptcembed|iptcparse|is_a|is_array|is_bool|is_callable|is_dir|\\\nis_double|is_executable|is_file|is_finite|is_float|is_infinite|is_int|is_integer|is_link|is_long|is_nan|is_null|is_numeric|is_object|\\\nis_readable|is_real|is_resource|is_scalar|is_soap_fault|is_string|is_subclass_of|is_uploaded_file|is_writable|is_writeable|isabstract|\\\niscloneable|isdisabled|isfinal|isinstance|isinstantiable|isinterface|isinternal|isiterateable|isset|issubclassof|isuserdefined|iterator|\\\niterator_apply|iterator_count|iterator_to_array|iteratoraggregate|iteratoriterator|java_last_exception_clear|java_last_exception_get|\\\njddayofweek|jdmonthname|jdtofrench|jdtogregorian|jdtojewish|jdtojulian|jdtounix|jewishtojd|join|jpeg2wbmp|json_decode|json_encode|\\\njson_last_error|jsonserializable|judy|judy_type|judy_version|juliantojd|kadm5_chpass_principal|kadm5_create_principal|\\\nkadm5_delete_principal|kadm5_destroy|kadm5_flush|kadm5_get_policies|kadm5_get_principal|kadm5_get_principals|kadm5_init_with_password|\\\nkadm5_modify_principal|key|krsort|ksort|lcfirst|lcg_value|lchgrp|lchown|ldap_8859_to_t61|ldap_add|ldap_bind|ldap_close|ldap_compare|\\\nldap_connect|ldap_count_entries|ldap_delete|ldap_dn2ufn|ldap_err2str|ldap_errno|ldap_error|ldap_explode_dn|ldap_first_attribute|\\\nldap_first_entry|ldap_first_reference|ldap_free_result|ldap_get_attributes|ldap_get_dn|ldap_get_entries|ldap_get_option|ldap_get_values|\\\nldap_get_values_len|ldap_list|ldap_mod_add|ldap_mod_del|ldap_mod_replace|ldap_modify|ldap_next_attribute|ldap_next_entry|\\\nldap_next_reference|ldap_parse_reference|ldap_parse_result|ldap_read|ldap_rename|ldap_sasl_bind|ldap_search|ldap_set_option|\\\nldap_set_rebind_proc|ldap_sort|ldap_start_tls|ldap_t61_to_8859|ldap_unbind|lengthexception|levenshtein|libxml_clear_errors|\\\nlibxml_disable_entity_loader|libxml_get_errors|libxml_get_last_error|libxml_set_streams_context|libxml_use_internal_errors|libxmlerror|\\\nlimititerator|link|linkinfo|list|locale|localeconv|localtime|log|log10|log1p|logicexception|long2ip|lstat|ltrim|lzf_compress|\\\nlzf_decompress|lzf_optimized_for|m_checkstatus|m_completeauthorizations|m_connect|m_connectionerror|m_deletetrans|m_destroyconn|\\\nm_destroyengine|m_getcell|m_getcellbynum|m_getcommadelimited|m_getheader|m_initconn|m_initengine|m_iscommadelimited|m_maxconntimeout|\\\nm_monitor|m_numcolumns|m_numrows|m_parsecommadelimited|m_responsekeys|m_responseparam|m_returnstatus|m_setblocking|m_setdropfile|m_setip|\\\nm_setssl|m_setssl_cafile|m_setssl_files|m_settimeout|m_sslcert_gen_hash|m_transactionssent|m_transinqueue|m_transkeyval|m_transnew|\\\nm_transsend|m_uwait|m_validateidentifier|m_verifyconnection|m_verifysslcert|magic_quotes_runtime|mail|\\\nmailparse_determine_best_xfer_encoding|mailparse_msg_create|mailparse_msg_extract_part|mailparse_msg_extract_part_file|\\\nmailparse_msg_extract_whole_part_file|mailparse_msg_free|mailparse_msg_get_part|mailparse_msg_get_part_data|mailparse_msg_get_structure|\\\nmailparse_msg_parse|mailparse_msg_parse_file|mailparse_rfc822_parse_addresses|mailparse_stream_encode|mailparse_uudecode_all|main|max|\\\nmaxdb_affected_rows|maxdb_autocommit|maxdb_bind_param|maxdb_bind_result|maxdb_change_user|maxdb_character_set_name|maxdb_client_encoding|\\\nmaxdb_close|maxdb_close_long_data|maxdb_commit|maxdb_connect|maxdb_connect_errno|maxdb_connect_error|maxdb_data_seek|maxdb_debug|\\\nmaxdb_disable_reads_from_master|maxdb_disable_rpl_parse|maxdb_dump_debug_info|maxdb_embedded_connect|maxdb_enable_reads_from_master|\\\nmaxdb_enable_rpl_parse|maxdb_errno|maxdb_error|maxdb_escape_string|maxdb_execute|maxdb_fetch|maxdb_fetch_array|maxdb_fetch_assoc|\\\nmaxdb_fetch_field|maxdb_fetch_field_direct|maxdb_fetch_fields|maxdb_fetch_lengths|maxdb_fetch_object|maxdb_fetch_row|maxdb_field_count|\\\nmaxdb_field_seek|maxdb_field_tell|maxdb_free_result|maxdb_get_client_info|maxdb_get_client_version|maxdb_get_host_info|maxdb_get_metadata|\\\nmaxdb_get_proto_info|maxdb_get_server_info|maxdb_get_server_version|maxdb_info|maxdb_init|maxdb_insert_id|maxdb_kill|maxdb_master_query|\\\nmaxdb_more_results|maxdb_multi_query|maxdb_next_result|maxdb_num_fields|maxdb_num_rows|maxdb_options|maxdb_param_count|maxdb_ping|\\\nmaxdb_prepare|maxdb_query|maxdb_real_connect|maxdb_real_escape_string|maxdb_real_query|maxdb_report|maxdb_rollback|\\\nmaxdb_rpl_parse_enabled|maxdb_rpl_probe|maxdb_rpl_query_type|maxdb_select_db|maxdb_send_long_data|maxdb_send_query|maxdb_server_end|\\\nmaxdb_server_init|maxdb_set_opt|maxdb_sqlstate|maxdb_ssl_set|maxdb_stat|maxdb_stmt_affected_rows|maxdb_stmt_bind_param|\\\nmaxdb_stmt_bind_result|maxdb_stmt_close|maxdb_stmt_close_long_data|maxdb_stmt_data_seek|maxdb_stmt_errno|maxdb_stmt_error|\\\nmaxdb_stmt_execute|maxdb_stmt_fetch|maxdb_stmt_free_result|maxdb_stmt_init|maxdb_stmt_num_rows|maxdb_stmt_param_count|maxdb_stmt_prepare|\\\nmaxdb_stmt_reset|maxdb_stmt_result_metadata|maxdb_stmt_send_long_data|maxdb_stmt_sqlstate|maxdb_stmt_store_result|maxdb_store_result|\\\nmaxdb_thread_id|maxdb_thread_safe|maxdb_use_result|maxdb_warning_count|mb_check_encoding|mb_convert_case|mb_convert_encoding|\\\nmb_convert_kana|mb_convert_variables|mb_decode_mimeheader|mb_decode_numericentity|mb_detect_encoding|mb_detect_order|mb_encode_mimeheader|\\\nmb_encode_numericentity|mb_encoding_aliases|mb_ereg|mb_ereg_match|mb_ereg_replace|mb_ereg_search|mb_ereg_search_getpos|\\\nmb_ereg_search_getregs|mb_ereg_search_init|mb_ereg_search_pos|mb_ereg_search_regs|mb_ereg_search_setpos|mb_eregi|mb_eregi_replace|\\\nmb_get_info|mb_http_input|mb_http_output|mb_internal_encoding|mb_language|mb_list_encodings|mb_output_handler|mb_parse_str|\\\nmb_preferred_mime_name|mb_regex_encoding|mb_regex_set_options|mb_send_mail|mb_split|mb_strcut|mb_strimwidth|mb_stripos|mb_stristr|\\\nmb_strlen|mb_strpos|mb_strrchr|mb_strrichr|mb_strripos|mb_strrpos|mb_strstr|mb_strtolower|mb_strtoupper|mb_strwidth|\\\nmb_substitute_character|mb_substr|mb_substr_count|mcrypt_cbc|mcrypt_cfb|mcrypt_create_iv|mcrypt_decrypt|mcrypt_ecb|\\\nmcrypt_enc_get_algorithms_name|mcrypt_enc_get_block_size|mcrypt_enc_get_iv_size|mcrypt_enc_get_key_size|mcrypt_enc_get_modes_name|\\\nmcrypt_enc_get_supported_key_sizes|mcrypt_enc_is_block_algorithm|mcrypt_enc_is_block_algorithm_mode|mcrypt_enc_is_block_mode|\\\nmcrypt_enc_self_test|mcrypt_encrypt|mcrypt_generic|mcrypt_generic_deinit|mcrypt_generic_end|mcrypt_generic_init|mcrypt_get_block_size|\\\nmcrypt_get_cipher_name|mcrypt_get_iv_size|mcrypt_get_key_size|mcrypt_list_algorithms|mcrypt_list_modes|mcrypt_module_close|\\\nmcrypt_module_get_algo_block_size|mcrypt_module_get_algo_key_size|mcrypt_module_get_supported_key_sizes|mcrypt_module_is_block_algorithm|\\\nmcrypt_module_is_block_algorithm_mode|mcrypt_module_is_block_mode|mcrypt_module_open|mcrypt_module_self_test|mcrypt_ofb|md5|md5_file|\\\nmdecrypt_generic|memcache|memcache_debug|memcached|memory_get_peak_usage|memory_get_usage|messageformatter|metaphone|method_exists|mhash|\\\nmhash_count|mhash_get_block_size|mhash_get_hash_name|mhash_keygen_s2k|microtime|mime_content_type|min|ming_keypress|\\\nming_setcubicthreshold|ming_setscale|ming_setswfcompression|ming_useconstants|ming_useswfversion|mkdir|mktime|money_format|mongo|\\\nmongobindata|mongocode|mongocollection|mongoconnectionexception|mongocursor|mongocursorexception|mongocursortimeoutexception|mongodate|\\\nmongodb|mongodbref|mongoexception|mongogridfs|mongogridfscursor|mongogridfsexception|mongogridfsfile|mongoid|mongoint32|mongoint64|\\\nmongomaxkey|mongominkey|mongoregex|mongotimestamp|move_uploaded_file|mpegfile|mqseries_back|mqseries_begin|mqseries_close|mqseries_cmit|\\\nmqseries_conn|mqseries_connx|mqseries_disc|mqseries_get|mqseries_inq|mqseries_open|mqseries_put|mqseries_put1|mqseries_set|\\\nmqseries_strerror|msession_connect|msession_count|msession_create|msession_destroy|msession_disconnect|msession_find|msession_get|\\\nmsession_get_array|msession_get_data|msession_inc|msession_list|msession_listvar|msession_lock|msession_plugin|msession_randstr|\\\nmsession_set|msession_set_array|msession_set_data|msession_timeout|msession_uniq|msession_unlock|msg_get_queue|msg_queue_exists|\\\nmsg_receive|msg_remove_queue|msg_send|msg_set_queue|msg_stat_queue|msql|msql_affected_rows|msql_close|msql_connect|msql_create_db|\\\nmsql_createdb|msql_data_seek|msql_db_query|msql_dbname|msql_drop_db|msql_error|msql_fetch_array|msql_fetch_field|msql_fetch_object|\\\nmsql_fetch_row|msql_field_flags|msql_field_len|msql_field_name|msql_field_seek|msql_field_table|msql_field_type|msql_fieldflags|\\\nmsql_fieldlen|msql_fieldname|msql_fieldtable|msql_fieldtype|msql_free_result|msql_list_dbs|msql_list_fields|msql_list_tables|\\\nmsql_num_fields|msql_num_rows|msql_numfields|msql_numrows|msql_pconnect|msql_query|msql_regcase|msql_result|msql_select_db|msql_tablename|\\\nmssql_bind|mssql_close|mssql_connect|mssql_data_seek|mssql_execute|mssql_fetch_array|mssql_fetch_assoc|mssql_fetch_batch|\\\nmssql_fetch_field|mssql_fetch_object|mssql_fetch_row|mssql_field_length|mssql_field_name|mssql_field_seek|mssql_field_type|\\\nmssql_free_result|mssql_free_statement|mssql_get_last_message|mssql_guid_string|mssql_init|mssql_min_error_severity|\\\nmssql_min_message_severity|mssql_next_result|mssql_num_fields|mssql_num_rows|mssql_pconnect|mssql_query|mssql_result|mssql_rows_affected|\\\nmssql_select_db|mt_getrandmax|mt_rand|mt_srand|multipleiterator|mysql_affected_rows|mysql_client_encoding|mysql_close|mysql_connect|\\\nmysql_create_db|mysql_data_seek|mysql_db_name|mysql_db_query|mysql_drop_db|mysql_errno|mysql_error|mysql_escape_string|mysql_fetch_array|\\\nmysql_fetch_assoc|mysql_fetch_field|mysql_fetch_lengths|mysql_fetch_object|mysql_fetch_row|mysql_field_flags|mysql_field_len|\\\nmysql_field_name|mysql_field_seek|mysql_field_table|mysql_field_type|mysql_free_result|mysql_get_client_info|mysql_get_host_info|\\\nmysql_get_proto_info|mysql_get_server_info|mysql_info|mysql_insert_id|mysql_list_dbs|mysql_list_fields|mysql_list_processes|\\\nmysql_list_tables|mysql_num_fields|mysql_num_rows|mysql_pconnect|mysql_ping|mysql_query|mysql_real_escape_string|mysql_result|\\\nmysql_select_db|mysql_set_charset|mysql_stat|mysql_tablename|mysql_thread_id|mysql_unbuffered_query|mysqli|mysqli_affected_rows|\\\nmysqli_autocommit|mysqli_bind_param|mysqli_bind_result|mysqli_cache_stats|mysqli_change_user|mysqli_character_set_name|\\\nmysqli_client_encoding|mysqli_close|mysqli_commit|mysqli_connect|mysqli_connect_errno|mysqli_connect_error|mysqli_data_seek|\\\nmysqli_debug|mysqli_disable_reads_from_master|mysqli_disable_rpl_parse|mysqli_driver|mysqli_dump_debug_info|mysqli_embedded_server_end|\\\nmysqli_embedded_server_start|mysqli_enable_reads_from_master|mysqli_enable_rpl_parse|mysqli_errno|mysqli_error|mysqli_escape_string|\\\nmysqli_execute|mysqli_fetch|mysqli_fetch_all|mysqli_fetch_array|mysqli_fetch_assoc|mysqli_fetch_field|mysqli_fetch_field_direct|\\\nmysqli_fetch_fields|mysqli_fetch_lengths|mysqli_fetch_object|mysqli_fetch_row|mysqli_field_count|mysqli_field_seek|mysqli_field_tell|\\\nmysqli_free_result|mysqli_get_charset|mysqli_get_client_info|mysqli_get_client_stats|mysqli_get_client_version|mysqli_get_connection_stats|\\\nmysqli_get_host_info|mysqli_get_metadata|mysqli_get_proto_info|mysqli_get_server_info|mysqli_get_server_version|mysqli_get_warnings|\\\nmysqli_info|mysqli_init|mysqli_insert_id|mysqli_kill|mysqli_link_construct|mysqli_master_query|mysqli_more_results|mysqli_multi_query|\\\nmysqli_next_result|mysqli_num_fields|mysqli_num_rows|mysqli_options|mysqli_param_count|mysqli_ping|mysqli_poll|mysqli_prepare|\\\nmysqli_query|mysqli_real_connect|mysqli_real_escape_string|mysqli_real_query|mysqli_reap_async_query|mysqli_refresh|mysqli_report|\\\nmysqli_result|mysqli_rollback|mysqli_rpl_parse_enabled|mysqli_rpl_probe|mysqli_rpl_query_type|mysqli_select_db|mysqli_send_long_data|\\\nmysqli_send_query|mysqli_set_charset|mysqli_set_local_infile_default|mysqli_set_local_infile_handler|mysqli_set_opt|mysqli_slave_query|\\\nmysqli_sqlstate|mysqli_ssl_set|mysqli_stat|mysqli_stmt|mysqli_stmt_affected_rows|mysqli_stmt_attr_get|mysqli_stmt_attr_set|\\\nmysqli_stmt_bind_param|mysqli_stmt_bind_result|mysqli_stmt_close|mysqli_stmt_data_seek|mysqli_stmt_errno|mysqli_stmt_error|\\\nmysqli_stmt_execute|mysqli_stmt_fetch|mysqli_stmt_field_count|mysqli_stmt_free_result|mysqli_stmt_get_result|mysqli_stmt_get_warnings|\\\nmysqli_stmt_init|mysqli_stmt_insert_id|mysqli_stmt_next_result|mysqli_stmt_num_rows|mysqli_stmt_param_count|mysqli_stmt_prepare|\\\nmysqli_stmt_reset|mysqli_stmt_result_metadata|mysqli_stmt_send_long_data|mysqli_stmt_sqlstate|mysqli_stmt_store_result|mysqli_store_result|\\\nmysqli_thread_id|mysqli_thread_safe|mysqli_use_result|mysqli_warning|mysqli_warning_count|mysqlnd_ms_get_stats|\\\nmysqlnd_ms_query_is_select|mysqlnd_ms_set_user_pick_server|mysqlnd_qc_change_handler|mysqlnd_qc_clear_cache|mysqlnd_qc_get_cache_info|\\\nmysqlnd_qc_get_core_stats|mysqlnd_qc_get_handler|mysqlnd_qc_get_query_trace_log|mysqlnd_qc_set_user_handlers|natcasesort|natsort|\\\nncurses_addch|ncurses_addchnstr|ncurses_addchstr|ncurses_addnstr|ncurses_addstr|ncurses_assume_default_colors|ncurses_attroff|\\\nncurses_attron|ncurses_attrset|ncurses_baudrate|ncurses_beep|ncurses_bkgd|ncurses_bkgdset|ncurses_border|ncurses_bottom_panel|\\\nncurses_can_change_color|ncurses_cbreak|ncurses_clear|ncurses_clrtobot|ncurses_clrtoeol|ncurses_color_content|ncurses_color_set|\\\nncurses_curs_set|ncurses_def_prog_mode|ncurses_def_shell_mode|ncurses_define_key|ncurses_del_panel|ncurses_delay_output|ncurses_delch|\\\nncurses_deleteln|ncurses_delwin|ncurses_doupdate|ncurses_echo|ncurses_echochar|ncurses_end|ncurses_erase|ncurses_erasechar|ncurses_filter|\\\nncurses_flash|ncurses_flushinp|ncurses_getch|ncurses_getmaxyx|ncurses_getmouse|ncurses_getyx|ncurses_halfdelay|ncurses_has_colors|\\\nncurses_has_ic|ncurses_has_il|ncurses_has_key|ncurses_hide_panel|ncurses_hline|ncurses_inch|ncurses_init|ncurses_init_color|\\\nncurses_init_pair|ncurses_insch|ncurses_insdelln|ncurses_insertln|ncurses_insstr|ncurses_instr|ncurses_isendwin|ncurses_keyok|\\\nncurses_keypad|ncurses_killchar|ncurses_longname|ncurses_meta|ncurses_mouse_trafo|ncurses_mouseinterval|ncurses_mousemask|ncurses_move|\\\nncurses_move_panel|ncurses_mvaddch|ncurses_mvaddchnstr|ncurses_mvaddchstr|ncurses_mvaddnstr|ncurses_mvaddstr|ncurses_mvcur|\\\nncurses_mvdelch|ncurses_mvgetch|ncurses_mvhline|ncurses_mvinch|ncurses_mvvline|ncurses_mvwaddstr|ncurses_napms|ncurses_new_panel|\\\nncurses_newpad|ncurses_newwin|ncurses_nl|ncurses_nocbreak|ncurses_noecho|ncurses_nonl|ncurses_noqiflush|ncurses_noraw|\\\nncurses_pair_content|ncurses_panel_above|ncurses_panel_below|ncurses_panel_window|ncurses_pnoutrefresh|ncurses_prefresh|ncurses_putp|\\\nncurses_qiflush|ncurses_raw|ncurses_refresh|ncurses_replace_panel|ncurses_reset_prog_mode|ncurses_reset_shell_mode|ncurses_resetty|\\\nncurses_savetty|ncurses_scr_dump|ncurses_scr_init|ncurses_scr_restore|ncurses_scr_set|ncurses_scrl|ncurses_show_panel|ncurses_slk_attr|\\\nncurses_slk_attroff|ncurses_slk_attron|ncurses_slk_attrset|ncurses_slk_clear|ncurses_slk_color|ncurses_slk_init|ncurses_slk_noutrefresh|\\\nncurses_slk_refresh|ncurses_slk_restore|ncurses_slk_set|ncurses_slk_touch|ncurses_standend|ncurses_standout|ncurses_start_color|\\\nncurses_termattrs|ncurses_termname|ncurses_timeout|ncurses_top_panel|ncurses_typeahead|ncurses_ungetch|ncurses_ungetmouse|\\\nncurses_update_panels|ncurses_use_default_colors|ncurses_use_env|ncurses_use_extended_names|ncurses_vidattr|ncurses_vline|ncurses_waddch|\\\nncurses_waddstr|ncurses_wattroff|ncurses_wattron|ncurses_wattrset|ncurses_wborder|ncurses_wclear|ncurses_wcolor_set|ncurses_werase|\\\nncurses_wgetch|ncurses_whline|ncurses_wmouse_trafo|ncurses_wmove|ncurses_wnoutrefresh|ncurses_wrefresh|ncurses_wstandend|\\\nncurses_wstandout|ncurses_wvline|newinstance|newinstanceargs|newt_bell|newt_button|newt_button_bar|newt_centered_window|newt_checkbox|\\\nnewt_checkbox_get_value|newt_checkbox_set_flags|newt_checkbox_set_value|newt_checkbox_tree|newt_checkbox_tree_add_item|\\\nnewt_checkbox_tree_find_item|newt_checkbox_tree_get_current|newt_checkbox_tree_get_entry_value|newt_checkbox_tree_get_multi_selection|\\\nnewt_checkbox_tree_get_selection|newt_checkbox_tree_multi|newt_checkbox_tree_set_current|newt_checkbox_tree_set_entry|\\\nnewt_checkbox_tree_set_entry_value|newt_checkbox_tree_set_width|newt_clear_key_buffer|newt_cls|newt_compact_button|\\\nnewt_component_add_callback|newt_component_takes_focus|newt_create_grid|newt_cursor_off|newt_cursor_on|newt_delay|newt_draw_form|\\\nnewt_draw_root_text|newt_entry|newt_entry_get_value|newt_entry_set|newt_entry_set_filter|newt_entry_set_flags|newt_finished|newt_form|\\\nnewt_form_add_component|newt_form_add_components|newt_form_add_hot_key|newt_form_destroy|newt_form_get_current|newt_form_run|\\\nnewt_form_set_background|newt_form_set_height|newt_form_set_size|newt_form_set_timer|newt_form_set_width|newt_form_watch_fd|\\\nnewt_get_screen_size|newt_grid_add_components_to_form|newt_grid_basic_window|newt_grid_free|newt_grid_get_size|newt_grid_h_close_stacked|\\\nnewt_grid_h_stacked|newt_grid_place|newt_grid_set_field|newt_grid_simple_window|newt_grid_v_close_stacked|newt_grid_v_stacked|\\\nnewt_grid_wrapped_window|newt_grid_wrapped_window_at|newt_init|newt_label|newt_label_set_text|newt_listbox|newt_listbox_append_entry|\\\nnewt_listbox_clear|newt_listbox_clear_selection|newt_listbox_delete_entry|newt_listbox_get_current|newt_listbox_get_selection|\\\nnewt_listbox_insert_entry|newt_listbox_item_count|newt_listbox_select_item|newt_listbox_set_current|newt_listbox_set_current_by_key|\\\nnewt_listbox_set_data|newt_listbox_set_entry|newt_listbox_set_width|newt_listitem|newt_listitem_get_data|newt_listitem_set|\\\nnewt_open_window|newt_pop_help_line|newt_pop_window|newt_push_help_line|newt_radio_get_current|newt_radiobutton|newt_redraw_help_line|\\\nnewt_reflow_text|newt_refresh|newt_resize_screen|newt_resume|newt_run_form|newt_scale|newt_scale_set|newt_scrollbar_set|\\\nnewt_set_help_callback|newt_set_suspend_callback|newt_suspend|newt_textbox|newt_textbox_get_num_lines|newt_textbox_reflowed|\\\nnewt_textbox_set_height|newt_textbox_set_text|newt_vertical_scrollbar|newt_wait_for_key|newt_win_choice|newt_win_entries|newt_win_menu|\\\nnewt_win_message|newt_win_messagev|newt_win_ternary|next|ngettext|nl2br|nl_langinfo|norewinditerator|normalizer|notes_body|notes_copy_db|\\\nnotes_create_db|notes_create_note|notes_drop_db|notes_find_note|notes_header_info|notes_list_msgs|notes_mark_read|notes_mark_unread|\\\nnotes_nav_create|notes_search|notes_unread|notes_version|nsapi_request_headers|nsapi_response_headers|nsapi_virtual|nthmac|number_format|\\\nnumberformatter|oauth|oauth_get_sbs|oauth_urlencode|oauthexception|oauthprovider|ob_clean|ob_deflatehandler|ob_end_clean|ob_end_flush|\\\nob_etaghandler|ob_flush|ob_get_clean|ob_get_contents|ob_get_flush|ob_get_length|ob_get_level|ob_get_status|ob_gzhandler|ob_iconv_handler|\\\nob_implicit_flush|ob_inflatehandler|ob_list_handlers|ob_start|ob_tidyhandler|oci_bind_array_by_name|oci_bind_by_name|oci_cancel|\\\noci_client_version|oci_close|oci_collection_append|oci_collection_assign|oci_collection_element_assign|oci_collection_element_get|\\\noci_collection_free|oci_collection_max|oci_collection_size|oci_collection_trim|oci_commit|oci_connect|oci_define_by_name|oci_error|\\\noci_execute|oci_fetch|oci_fetch_all|oci_fetch_array|oci_fetch_assoc|oci_fetch_object|oci_fetch_row|oci_field_is_null|oci_field_name|\\\noci_field_precision|oci_field_scale|oci_field_size|oci_field_type|oci_field_type_raw|oci_free_statement|oci_internal_debug|oci_lob_append|\\\noci_lob_close|oci_lob_copy|oci_lob_eof|oci_lob_erase|oci_lob_export|oci_lob_flush|oci_lob_free|oci_lob_getbuffering|oci_lob_import|\\\noci_lob_is_equal|oci_lob_load|oci_lob_read|oci_lob_rewind|oci_lob_save|oci_lob_savefile|oci_lob_seek|oci_lob_setbuffering|oci_lob_size|\\\noci_lob_tell|oci_lob_truncate|oci_lob_write|oci_lob_writetemporary|oci_lob_writetofile|oci_new_collection|oci_new_connect|oci_new_cursor|\\\noci_new_descriptor|oci_num_fields|oci_num_rows|oci_parse|oci_password_change|oci_pconnect|oci_result|oci_rollback|oci_server_version|\\\noci_set_action|oci_set_client_identifier|oci_set_client_info|oci_set_edition|oci_set_module_name|oci_set_prefetch|oci_statement_type|\\\nocibindbyname|ocicancel|ocicloselob|ocicollappend|ocicollassign|ocicollassignelem|ocicollgetelem|ocicollmax|ocicollsize|ocicolltrim|\\\nocicolumnisnull|ocicolumnname|ocicolumnprecision|ocicolumnscale|ocicolumnsize|ocicolumntype|ocicolumntyperaw|ocicommit|ocidefinebyname|\\\nocierror|ociexecute|ocifetch|ocifetchinto|ocifetchstatement|ocifreecollection|ocifreecursor|ocifreedesc|ocifreestatement|ociinternaldebug|\\\nociloadlob|ocilogoff|ocilogon|ocinewcollection|ocinewcursor|ocinewdescriptor|ocinlogon|ocinumcols|ociparse|ociplogon|ociresult|\\\nocirollback|ocirowcount|ocisavelob|ocisavelobfile|ociserverversion|ocisetprefetch|ocistatementtype|ociwritelobtofile|ociwritetemporarylob|\\\noctdec|odbc_autocommit|odbc_binmode|odbc_close|odbc_close_all|odbc_columnprivileges|odbc_columns|odbc_commit|odbc_connect|odbc_cursor|\\\nodbc_data_source|odbc_do|odbc_error|odbc_errormsg|odbc_exec|odbc_execute|odbc_fetch_array|odbc_fetch_into|odbc_fetch_object|\\\nodbc_fetch_row|odbc_field_len|odbc_field_name|odbc_field_num|odbc_field_precision|odbc_field_scale|odbc_field_type|odbc_foreignkeys|\\\nodbc_free_result|odbc_gettypeinfo|odbc_longreadlen|odbc_next_result|odbc_num_fields|odbc_num_rows|odbc_pconnect|odbc_prepare|\\\nodbc_primarykeys|odbc_procedurecolumns|odbc_procedures|odbc_result|odbc_result_all|odbc_rollback|odbc_setoption|odbc_specialcolumns|\\\nodbc_statistics|odbc_tableprivileges|odbc_tables|openal_buffer_create|openal_buffer_data|openal_buffer_destroy|openal_buffer_get|\\\nopenal_buffer_loadwav|openal_context_create|openal_context_current|openal_context_destroy|openal_context_process|openal_context_suspend|\\\nopenal_device_close|openal_device_open|openal_listener_get|openal_listener_set|openal_source_create|openal_source_destroy|\\\nopenal_source_get|openal_source_pause|openal_source_play|openal_source_rewind|openal_source_set|openal_source_stop|openal_stream|opendir|\\\nopenlog|openssl_cipher_iv_length|openssl_csr_export|openssl_csr_export_to_file|openssl_csr_get_public_key|openssl_csr_get_subject|\\\nopenssl_csr_new|openssl_csr_sign|openssl_decrypt|openssl_dh_compute_key|openssl_digest|openssl_encrypt|openssl_error_string|\\\nopenssl_free_key|openssl_get_cipher_methods|openssl_get_md_methods|openssl_get_privatekey|openssl_get_publickey|openssl_open|\\\nopenssl_pkcs12_export|openssl_pkcs12_export_to_file|openssl_pkcs12_read|openssl_pkcs7_decrypt|openssl_pkcs7_encrypt|openssl_pkcs7_sign|\\\nopenssl_pkcs7_verify|openssl_pkey_export|openssl_pkey_export_to_file|openssl_pkey_free|openssl_pkey_get_details|openssl_pkey_get_private|\\\nopenssl_pkey_get_public|openssl_pkey_new|openssl_private_decrypt|openssl_private_encrypt|openssl_public_decrypt|openssl_public_encrypt|\\\nopenssl_random_pseudo_bytes|openssl_seal|openssl_sign|openssl_verify|openssl_x509_check_private_key|openssl_x509_checkpurpose|\\\nopenssl_x509_export|openssl_x509_export_to_file|openssl_x509_free|openssl_x509_parse|openssl_x509_read|ord|outeriterator|\\\noutofboundsexception|outofrangeexception|output_add_rewrite_var|output_reset_rewrite_vars|overflowexception|overload|override_function|\\\novrimos_close|ovrimos_commit|ovrimos_connect|ovrimos_cursor|ovrimos_exec|ovrimos_execute|ovrimos_fetch_into|ovrimos_fetch_row|\\\novrimos_field_len|ovrimos_field_name|ovrimos_field_num|ovrimos_field_type|ovrimos_free_result|ovrimos_longreadlen|ovrimos_num_fields|\\\novrimos_num_rows|ovrimos_prepare|ovrimos_result|ovrimos_result_all|ovrimos_rollback|pack|parentiterator|parse_ini_file|parse_ini_string|\\\nparse_str|parse_url|parsekit_compile_file|parsekit_compile_string|parsekit_func_arginfo|passthru|pathinfo|pclose|pcntl_alarm|pcntl_exec|\\\npcntl_fork|pcntl_getpriority|pcntl_setpriority|pcntl_signal|pcntl_signal_dispatch|pcntl_sigprocmask|pcntl_sigtimedwait|pcntl_sigwaitinfo|\\\npcntl_wait|pcntl_waitpid|pcntl_wexitstatus|pcntl_wifexited|pcntl_wifsignaled|pcntl_wifstopped|pcntl_wstopsig|pcntl_wtermsig|\\\npdf_activate_item|pdf_add_annotation|pdf_add_bookmark|pdf_add_launchlink|pdf_add_locallink|pdf_add_nameddest|pdf_add_note|pdf_add_outline|\\\npdf_add_pdflink|pdf_add_table_cell|pdf_add_textflow|pdf_add_thumbnail|pdf_add_weblink|pdf_arc|pdf_arcn|pdf_attach_file|pdf_begin_document|\\\npdf_begin_font|pdf_begin_glyph|pdf_begin_item|pdf_begin_layer|pdf_begin_page|pdf_begin_page_ext|pdf_begin_pattern|pdf_begin_template|\\\npdf_begin_template_ext|pdf_circle|pdf_clip|pdf_close|pdf_close_image|pdf_close_pdi|pdf_close_pdi_page|pdf_closepath|\\\npdf_closepath_fill_stroke|pdf_closepath_stroke|pdf_concat|pdf_continue_text|pdf_create_3dview|pdf_create_action|pdf_create_annotation|\\\npdf_create_bookmark|pdf_create_field|pdf_create_fieldgroup|pdf_create_gstate|pdf_create_pvf|pdf_create_textflow|pdf_curveto|\\\npdf_define_layer|pdf_delete|pdf_delete_pvf|pdf_delete_table|pdf_delete_textflow|pdf_encoding_set_char|pdf_end_document|pdf_end_font|\\\npdf_end_glyph|pdf_end_item|pdf_end_layer|pdf_end_page|pdf_end_page_ext|pdf_end_pattern|pdf_end_template|pdf_endpath|pdf_fill|\\\npdf_fill_imageblock|pdf_fill_pdfblock|pdf_fill_stroke|pdf_fill_textblock|pdf_findfont|pdf_fit_image|pdf_fit_pdi_page|pdf_fit_table|\\\npdf_fit_textflow|pdf_fit_textline|pdf_get_apiname|pdf_get_buffer|pdf_get_errmsg|pdf_get_errnum|pdf_get_font|pdf_get_fontname|\\\npdf_get_fontsize|pdf_get_image_height|pdf_get_image_width|pdf_get_majorversion|pdf_get_minorversion|pdf_get_parameter|\\\npdf_get_pdi_parameter|pdf_get_pdi_value|pdf_get_value|pdf_info_font|pdf_info_matchbox|pdf_info_table|pdf_info_textflow|pdf_info_textline|\\\npdf_initgraphics|pdf_lineto|pdf_load_3ddata|pdf_load_font|pdf_load_iccprofile|pdf_load_image|pdf_makespotcolor|pdf_moveto|pdf_new|\\\npdf_open_ccitt|pdf_open_file|pdf_open_gif|pdf_open_image|pdf_open_image_file|pdf_open_jpeg|pdf_open_memory_image|pdf_open_pdi|\\\npdf_open_pdi_document|pdf_open_pdi_page|pdf_open_tiff|pdf_pcos_get_number|pdf_pcos_get_stream|pdf_pcos_get_string|pdf_place_image|\\\npdf_place_pdi_page|pdf_process_pdi|pdf_rect|pdf_restore|pdf_resume_page|pdf_rotate|pdf_save|pdf_scale|pdf_set_border_color|\\\npdf_set_border_dash|pdf_set_border_style|pdf_set_char_spacing|pdf_set_duration|pdf_set_gstate|pdf_set_horiz_scaling|pdf_set_info|\\\npdf_set_info_author|pdf_set_info_creator|pdf_set_info_keywords|pdf_set_info_subject|pdf_set_info_title|pdf_set_layer_dependency|\\\npdf_set_leading|pdf_set_parameter|pdf_set_text_matrix|pdf_set_text_pos|pdf_set_text_rendering|pdf_set_text_rise|pdf_set_value|\\\npdf_set_word_spacing|pdf_setcolor|pdf_setdash|pdf_setdashpattern|pdf_setflat|pdf_setfont|pdf_setgray|pdf_setgray_fill|pdf_setgray_stroke|\\\npdf_setlinecap|pdf_setlinejoin|pdf_setlinewidth|pdf_setmatrix|pdf_setmiterlimit|pdf_setpolydash|pdf_setrgbcolor|pdf_setrgbcolor_fill|\\\npdf_setrgbcolor_stroke|pdf_shading|pdf_shading_pattern|pdf_shfill|pdf_show|pdf_show_boxed|pdf_show_xy|pdf_skew|pdf_stringwidth|pdf_stroke|\\\npdf_suspend_page|pdf_translate|pdf_utf16_to_utf8|pdf_utf32_to_utf16|pdf_utf8_to_utf16|pdo|pdo_cubrid_schema|pdo_pgsqllobcreate|\\\npdo_pgsqllobopen|pdo_pgsqllobunlink|pdo_sqlitecreateaggregate|pdo_sqlitecreatefunction|pdoexception|pdostatement|pfsockopen|\\\npg_affected_rows|pg_cancel_query|pg_client_encoding|pg_close|pg_connect|pg_connection_busy|pg_connection_reset|pg_connection_status|\\\npg_convert|pg_copy_from|pg_copy_to|pg_dbname|pg_delete|pg_end_copy|pg_escape_bytea|pg_escape_string|pg_execute|pg_fetch_all|\\\npg_fetch_all_columns|pg_fetch_array|pg_fetch_assoc|pg_fetch_object|pg_fetch_result|pg_fetch_row|pg_field_is_null|pg_field_name|\\\npg_field_num|pg_field_prtlen|pg_field_size|pg_field_table|pg_field_type|pg_field_type_oid|pg_free_result|pg_get_notify|pg_get_pid|\\\npg_get_result|pg_host|pg_insert|pg_last_error|pg_last_notice|pg_last_oid|pg_lo_close|pg_lo_create|pg_lo_export|pg_lo_import|pg_lo_open|\\\npg_lo_read|pg_lo_read_all|pg_lo_seek|pg_lo_tell|pg_lo_unlink|pg_lo_write|pg_meta_data|pg_num_fields|pg_num_rows|pg_options|\\\npg_parameter_status|pg_pconnect|pg_ping|pg_port|pg_prepare|pg_put_line|pg_query|pg_query_params|pg_result_error|pg_result_error_field|\\\npg_result_seek|pg_result_status|pg_select|pg_send_execute|pg_send_prepare|pg_send_query|pg_send_query_params|pg_set_client_encoding|\\\npg_set_error_verbosity|pg_trace|pg_transaction_status|pg_tty|pg_unescape_bytea|pg_untrace|pg_update|pg_version|php_check_syntax|\\\nphp_ini_loaded_file|php_ini_scanned_files|php_logo_guid|php_sapi_name|php_strip_whitespace|php_uname|phpcredits|phpinfo|phpversion|pi|\\\npng2wbmp|popen|pos|posix_access|posix_ctermid|posix_errno|posix_get_last_error|posix_getcwd|posix_getegid|posix_geteuid|posix_getgid|\\\nposix_getgrgid|posix_getgrnam|posix_getgroups|posix_getlogin|posix_getpgid|posix_getpgrp|posix_getpid|posix_getppid|posix_getpwnam|\\\nposix_getpwuid|posix_getrlimit|posix_getsid|posix_getuid|posix_initgroups|posix_isatty|posix_kill|posix_mkfifo|posix_mknod|posix_setegid|\\\nposix_seteuid|posix_setgid|posix_setpgid|posix_setsid|posix_setuid|posix_strerror|posix_times|posix_ttyname|posix_uname|pow|preg_filter|\\\npreg_grep|preg_last_error|preg_match|preg_match_all|preg_quote|preg_replace|preg_replace_callback|preg_split|prev|print|print_r|\\\nprinter_abort|printer_close|printer_create_brush|printer_create_dc|printer_create_font|printer_create_pen|printer_delete_brush|\\\nprinter_delete_dc|printer_delete_font|printer_delete_pen|printer_draw_bmp|printer_draw_chord|printer_draw_elipse|printer_draw_line|\\\nprinter_draw_pie|printer_draw_rectangle|printer_draw_roundrect|printer_draw_text|printer_end_doc|printer_end_page|printer_get_option|\\\nprinter_list|printer_logical_fontheight|printer_open|printer_select_brush|printer_select_font|printer_select_pen|printer_set_option|\\\nprinter_start_doc|printer_start_page|printer_write|printf|proc_close|proc_get_status|proc_nice|proc_open|proc_terminate|property_exists|\\\nps_add_bookmark|ps_add_launchlink|ps_add_locallink|ps_add_note|ps_add_pdflink|ps_add_weblink|ps_arc|ps_arcn|ps_begin_page|\\\nps_begin_pattern|ps_begin_template|ps_circle|ps_clip|ps_close|ps_close_image|ps_closepath|ps_closepath_stroke|ps_continue_text|ps_curveto|\\\nps_delete|ps_end_page|ps_end_pattern|ps_end_template|ps_fill|ps_fill_stroke|ps_findfont|ps_get_buffer|ps_get_parameter|ps_get_value|\\\nps_hyphenate|ps_include_file|ps_lineto|ps_makespotcolor|ps_moveto|ps_new|ps_open_file|ps_open_image|ps_open_image_file|\\\nps_open_memory_image|ps_place_image|ps_rect|ps_restore|ps_rotate|ps_save|ps_scale|ps_set_border_color|ps_set_border_dash|\\\nps_set_border_style|ps_set_info|ps_set_parameter|ps_set_text_pos|ps_set_value|ps_setcolor|ps_setdash|ps_setflat|ps_setfont|ps_setgray|\\\nps_setlinecap|ps_setlinejoin|ps_setlinewidth|ps_setmiterlimit|ps_setoverprintmode|ps_setpolydash|ps_shading|ps_shading_pattern|ps_shfill|\\\nps_show|ps_show2|ps_show_boxed|ps_show_xy|ps_show_xy2|ps_string_geometry|ps_stringwidth|ps_stroke|ps_symbol|ps_symbol_name|\\\nps_symbol_width|ps_translate|pspell_add_to_personal|pspell_add_to_session|pspell_check|pspell_clear_session|pspell_config_create|\\\npspell_config_data_dir|pspell_config_dict_dir|pspell_config_ignore|pspell_config_mode|pspell_config_personal|pspell_config_repl|\\\npspell_config_runtogether|pspell_config_save_repl|pspell_new|pspell_new_config|pspell_new_personal|pspell_save_wordlist|\\\npspell_store_replacement|pspell_suggest|putenv|px_close|px_create_fp|px_date2string|px_delete|px_delete_record|px_get_field|px_get_info|\\\npx_get_parameter|px_get_record|px_get_schema|px_get_value|px_insert_record|px_new|px_numfields|px_numrecords|px_open_fp|px_put_record|\\\npx_retrieve_record|px_set_blob_file|px_set_parameter|px_set_tablename|px_set_targetencoding|px_set_value|px_timestamp2string|\\\npx_update_record|qdom_error|qdom_tree|quoted_printable_decode|quoted_printable_encode|quotemeta|rad2deg|radius_acct_open|\\\nradius_add_server|radius_auth_open|radius_close|radius_config|radius_create_request|radius_cvt_addr|radius_cvt_int|radius_cvt_string|\\\nradius_demangle|radius_demangle_mppe_key|radius_get_attr|radius_get_vendor_attr|radius_put_addr|radius_put_attr|radius_put_int|\\\nradius_put_string|radius_put_vendor_addr|radius_put_vendor_attr|radius_put_vendor_int|radius_put_vendor_string|\\\nradius_request_authenticator|radius_send_request|radius_server_secret|radius_strerror|rand|range|rangeexception|rar_wrapper_cache_stats|\\\nrararchive|rarentry|rarexception|rawurldecode|rawurlencode|read_exif_data|readdir|readfile|readgzfile|readline|readline_add_history|\\\nreadline_callback_handler_install|readline_callback_handler_remove|readline_callback_read_char|readline_clear_history|\\\nreadline_completion_function|readline_info|readline_list_history|readline_on_new_line|readline_read_history|readline_redisplay|\\\nreadline_write_history|readlink|realpath|realpath_cache_get|realpath_cache_size|recode|recode_file|recode_string|recursivearrayiterator|\\\nrecursivecachingiterator|recursivecallbackfilteriterator|recursivedirectoryiterator|recursivefilteriterator|recursiveiterator|\\\nrecursiveiteratoriterator|recursiveregexiterator|recursivetreeiterator|reflection|reflectionclass|reflectionexception|reflectionextension|\\\nreflectionfunction|reflectionfunctionabstract|reflectionmethod|reflectionobject|reflectionparameter|reflectionproperty|reflector|\\\nregexiterator|register_shutdown_function|register_tick_function|rename|rename_function|require|require_once|reset|resetValue|\\\nresourcebundle|restore_error_handler|restore_exception_handler|restore_include_path|return|rewind|rewinddir|rmdir|round|rpm_close|\\\nrpm_get_tag|rpm_is_valid|rpm_open|rpm_version|rrd_create|rrd_error|rrd_fetch|rrd_first|rrd_graph|rrd_info|rrd_last|rrd_lastupdate|\\\nrrd_restore|rrd_tune|rrd_update|rrd_xport|rrdcreator|rrdgraph|rrdupdater|rsort|rtrim|runkit_class_adopt|runkit_class_emancipate|\\\nrunkit_constant_add|runkit_constant_redefine|runkit_constant_remove|runkit_function_add|runkit_function_copy|runkit_function_redefine|\\\nrunkit_function_remove|runkit_function_rename|runkit_import|runkit_lint|runkit_lint_file|runkit_method_add|runkit_method_copy|\\\nrunkit_method_redefine|runkit_method_remove|runkit_method_rename|runkit_return_value_used|runkit_sandbox_output_handler|\\\nrunkit_superglobals|runtimeexception|samconnection_commit|samconnection_connect|samconnection_constructor|samconnection_disconnect|\\\nsamconnection_errno|samconnection_error|samconnection_isconnected|samconnection_peek|samconnection_peekall|samconnection_receive|\\\nsamconnection_remove|samconnection_rollback|samconnection_send|samconnection_setDebug|samconnection_subscribe|samconnection_unsubscribe|\\\nsammessage_body|sammessage_constructor|sammessage_header|sca_createdataobject|sca_getservice|sca_localproxy_createdataobject|\\\nsca_soapproxy_createdataobject|scandir|sdo_das_changesummary_beginlogging|sdo_das_changesummary_endlogging|\\\nsdo_das_changesummary_getchangeddataobjects|sdo_das_changesummary_getchangetype|sdo_das_changesummary_getoldcontainer|\\\nsdo_das_changesummary_getoldvalues|sdo_das_changesummary_islogging|sdo_das_datafactory_addpropertytotype|sdo_das_datafactory_addtype|\\\nsdo_das_datafactory_getdatafactory|sdo_das_dataobject_getchangesummary|sdo_das_relational_applychanges|sdo_das_relational_construct|\\\nsdo_das_relational_createrootdataobject|sdo_das_relational_executepreparedquery|sdo_das_relational_executequery|\\\nsdo_das_setting_getlistindex|sdo_das_setting_getpropertyindex|sdo_das_setting_getpropertyname|sdo_das_setting_getvalue|\\\nsdo_das_setting_isset|sdo_das_xml_addtypes|sdo_das_xml_create|sdo_das_xml_createdataobject|sdo_das_xml_createdocument|\\\nsdo_das_xml_document_getrootdataobject|sdo_das_xml_document_getrootelementname|sdo_das_xml_document_getrootelementuri|\\\nsdo_das_xml_document_setencoding|sdo_das_xml_document_setxmldeclaration|sdo_das_xml_document_setxmlversion|sdo_das_xml_loadfile|\\\nsdo_das_xml_loadstring|sdo_das_xml_savefile|sdo_das_xml_savestring|sdo_datafactory_create|sdo_dataobject_clear|\\\nsdo_dataobject_createdataobject|sdo_dataobject_getcontainer|sdo_dataobject_getsequence|sdo_dataobject_gettypename|\\\nsdo_dataobject_gettypenamespaceuri|sdo_exception_getcause|sdo_list_insert|sdo_model_property_getcontainingtype|\\\nsdo_model_property_getdefault|sdo_model_property_getname|sdo_model_property_gettype|sdo_model_property_iscontainment|\\\nsdo_model_property_ismany|sdo_model_reflectiondataobject_construct|sdo_model_reflectiondataobject_export|\\\nsdo_model_reflectiondataobject_getcontainmentproperty|sdo_model_reflectiondataobject_getinstanceproperties|\\\nsdo_model_reflectiondataobject_gettype|sdo_model_type_getbasetype|sdo_model_type_getname|sdo_model_type_getnamespaceuri|\\\nsdo_model_type_getproperties|sdo_model_type_getproperty|sdo_model_type_isabstracttype|sdo_model_type_isdatatype|sdo_model_type_isinstance|\\\nsdo_model_type_isopentype|sdo_model_type_issequencedtype|sdo_sequence_getproperty|sdo_sequence_insert|sdo_sequence_move|seekableiterator|\\\nsem_acquire|sem_get|sem_release|sem_remove|serializable|serialize|session_cache_expire|session_cache_limiter|session_commit|\\\nsession_decode|session_destroy|session_encode|session_get_cookie_params|session_id|session_is_registered|session_module_name|session_name|\\\nsession_pgsql_add_error|session_pgsql_get_error|session_pgsql_get_field|session_pgsql_reset|session_pgsql_set_field|session_pgsql_status|\\\nsession_regenerate_id|session_register|session_save_path|session_set_cookie_params|session_set_save_handler|session_start|\\\nsession_unregister|session_unset|session_write_close|setCounterClass|set_error_handler|set_exception_handler|set_file_buffer|\\\nset_include_path|set_magic_quotes_runtime|set_socket_blocking|set_time_limit|setcookie|setlocale|setproctitle|setrawcookie|\\\nsetstaticpropertyvalue|setthreadtitle|settype|sha1|sha1_file|shell_exec|shm_attach|shm_detach|shm_get_var|shm_has_var|shm_put_var|\\\nshm_remove|shm_remove_var|shmop_close|shmop_delete|shmop_open|shmop_read|shmop_size|shmop_write|show_source|shuffle|signeurlpaiement|\\\nsimilar_text|simplexml_import_dom|simplexml_load_file|simplexml_load_string|simplexmlelement|simplexmliterator|sin|sinh|sizeof|sleep|snmp|\\\nsnmp2_get|snmp2_getnext|snmp2_real_walk|snmp2_set|snmp2_walk|snmp3_get|snmp3_getnext|snmp3_real_walk|snmp3_set|snmp3_walk|\\\nsnmp_get_quick_print|snmp_get_valueretrieval|snmp_read_mib|snmp_set_enum_print|snmp_set_oid_numeric_print|snmp_set_oid_output_format|\\\nsnmp_set_quick_print|snmp_set_valueretrieval|snmpget|snmpgetnext|snmprealwalk|snmpset|snmpwalk|snmpwalkoid|soapclient|soapfault|\\\nsoapheader|soapparam|soapserver|soapvar|socket_accept|socket_bind|socket_clear_error|socket_close|socket_connect|socket_create|\\\nsocket_create_listen|socket_create_pair|socket_get_option|socket_get_status|socket_getpeername|socket_getsockname|socket_last_error|\\\nsocket_listen|socket_read|socket_recv|socket_recvfrom|socket_select|socket_send|socket_sendto|socket_set_block|socket_set_blocking|\\\nsocket_set_nonblock|socket_set_option|socket_set_timeout|socket_shutdown|socket_strerror|socket_write|solr_get_version|solrclient|\\\nsolrclientexception|solrdocument|solrdocumentfield|solrexception|solrgenericresponse|solrillegalargumentexception|\\\nsolrillegaloperationexception|solrinputdocument|solrmodifiableparams|solrobject|solrparams|solrpingresponse|solrquery|solrqueryresponse|\\\nsolrresponse|solrupdateresponse|solrutils|sort|soundex|sphinxclient|spl_autoload|spl_autoload_call|spl_autoload_extensions|\\\nspl_autoload_functions|spl_autoload_register|spl_autoload_unregister|spl_classes|spl_object_hash|splbool|spldoublylinkedlist|splenum|\\\nsplfileinfo|splfileobject|splfixedarray|splfloat|splheap|splint|split|spliti|splmaxheap|splminheap|splobjectstorage|splobserver|\\\nsplpriorityqueue|splqueue|splstack|splstring|splsubject|spltempfileobject|spoofchecker|sprintf|sql_regcase|sqlite3|sqlite3result|\\\nsqlite3stmt|sqlite_array_query|sqlite_busy_timeout|sqlite_changes|sqlite_close|sqlite_column|sqlite_create_aggregate|\\\nsqlite_create_function|sqlite_current|sqlite_error_string|sqlite_escape_string|sqlite_exec|sqlite_factory|sqlite_fetch_all|\\\nsqlite_fetch_array|sqlite_fetch_column_types|sqlite_fetch_object|sqlite_fetch_single|sqlite_fetch_string|sqlite_field_name|\\\nsqlite_has_more|sqlite_has_prev|sqlite_key|sqlite_last_error|sqlite_last_insert_rowid|sqlite_libencoding|sqlite_libversion|sqlite_next|\\\nsqlite_num_fields|sqlite_num_rows|sqlite_open|sqlite_popen|sqlite_prev|sqlite_query|sqlite_rewind|sqlite_seek|sqlite_single_query|\\\nsqlite_udf_decode_binary|sqlite_udf_encode_binary|sqlite_unbuffered_query|sqlite_valid|sqrt|srand|sscanf|ssdeep_fuzzy_compare|\\\nssdeep_fuzzy_hash|ssdeep_fuzzy_hash_filename|ssh2_auth_hostbased_file|ssh2_auth_none|ssh2_auth_password|ssh2_auth_pubkey_file|\\\nssh2_connect|ssh2_exec|ssh2_fetch_stream|ssh2_fingerprint|ssh2_methods_negotiated|ssh2_publickey_add|ssh2_publickey_init|\\\nssh2_publickey_list|ssh2_publickey_remove|ssh2_scp_recv|ssh2_scp_send|ssh2_sftp|ssh2_sftp_lstat|ssh2_sftp_mkdir|ssh2_sftp_readlink|\\\nssh2_sftp_realpath|ssh2_sftp_rename|ssh2_sftp_rmdir|ssh2_sftp_stat|ssh2_sftp_symlink|ssh2_sftp_unlink|ssh2_shell|ssh2_tunnel|stat|\\\nstats_absolute_deviation|stats_cdf_beta|stats_cdf_binomial|stats_cdf_cauchy|stats_cdf_chisquare|stats_cdf_exponential|stats_cdf_f|\\\nstats_cdf_gamma|stats_cdf_laplace|stats_cdf_logistic|stats_cdf_negative_binomial|stats_cdf_noncentral_chisquare|stats_cdf_noncentral_f|\\\nstats_cdf_poisson|stats_cdf_t|stats_cdf_uniform|stats_cdf_weibull|stats_covariance|stats_den_uniform|stats_dens_beta|stats_dens_cauchy|\\\nstats_dens_chisquare|stats_dens_exponential|stats_dens_f|stats_dens_gamma|stats_dens_laplace|stats_dens_logistic|\\\nstats_dens_negative_binomial|stats_dens_normal|stats_dens_pmf_binomial|stats_dens_pmf_hypergeometric|stats_dens_pmf_poisson|stats_dens_t|\\\nstats_dens_weibull|stats_harmonic_mean|stats_kurtosis|stats_rand_gen_beta|stats_rand_gen_chisquare|stats_rand_gen_exponential|\\\nstats_rand_gen_f|stats_rand_gen_funiform|stats_rand_gen_gamma|stats_rand_gen_ibinomial|stats_rand_gen_ibinomial_negative|\\\nstats_rand_gen_int|stats_rand_gen_ipoisson|stats_rand_gen_iuniform|stats_rand_gen_noncenral_chisquare|stats_rand_gen_noncentral_f|\\\nstats_rand_gen_noncentral_t|stats_rand_gen_normal|stats_rand_gen_t|stats_rand_get_seeds|stats_rand_phrase_to_seeds|stats_rand_ranf|\\\nstats_rand_setall|stats_skew|stats_standard_deviation|stats_stat_binomial_coef|stats_stat_correlation|stats_stat_gennch|\\\nstats_stat_independent_t|stats_stat_innerproduct|stats_stat_noncentral_t|stats_stat_paired_t|stats_stat_percentile|stats_stat_powersum|\\\nstats_variance|stomp|stomp_connect_error|stomp_version|stompexception|stompframe|str_getcsv|str_ireplace|str_pad|str_repeat|str_replace|\\\nstr_rot13|str_shuffle|str_split|str_word_count|strcasecmp|strchr|strcmp|strcoll|strcspn|stream_bucket_append|stream_bucket_make_writeable|\\\nstream_bucket_new|stream_bucket_prepend|stream_context_create|stream_context_get_default|stream_context_get_options|\\\nstream_context_get_params|stream_context_set_default|stream_context_set_option|stream_context_set_params|stream_copy_to_stream|\\\nstream_encoding|stream_filter_append|stream_filter_prepend|stream_filter_register|stream_filter_remove|stream_get_contents|\\\nstream_get_filters|stream_get_line|stream_get_meta_data|stream_get_transports|stream_get_wrappers|stream_is_local|\\\nstream_notification_callback|stream_register_wrapper|stream_resolve_include_path|stream_select|stream_set_blocking|stream_set_read_buffer|\\\nstream_set_timeout|stream_set_write_buffer|stream_socket_accept|stream_socket_client|stream_socket_enable_crypto|stream_socket_get_name|\\\nstream_socket_pair|stream_socket_recvfrom|stream_socket_sendto|stream_socket_server|stream_socket_shutdown|stream_supports_lock|\\\nstream_wrapper_register|stream_wrapper_restore|stream_wrapper_unregister|streamwrapper|strftime|strip_tags|stripcslashes|stripos|\\\nstripslashes|stristr|strlen|strnatcasecmp|strnatcmp|strncasecmp|strncmp|strpbrk|strpos|strptime|strrchr|strrev|strripos|strrpos|strspn|\\\nstrstr|strtok|strtolower|strtotime|strtoupper|strtr|strval|substr|substr_compare|substr_count|substr_replace|svm|svmmodel|svn_add|\\\nsvn_auth_get_parameter|svn_auth_set_parameter|svn_blame|svn_cat|svn_checkout|svn_cleanup|svn_client_version|svn_commit|svn_delete|\\\nsvn_diff|svn_export|svn_fs_abort_txn|svn_fs_apply_text|svn_fs_begin_txn2|svn_fs_change_node_prop|svn_fs_check_path|\\\nsvn_fs_contents_changed|svn_fs_copy|svn_fs_delete|svn_fs_dir_entries|svn_fs_file_contents|svn_fs_file_length|svn_fs_is_dir|svn_fs_is_file|\\\nsvn_fs_make_dir|svn_fs_make_file|svn_fs_node_created_rev|svn_fs_node_prop|svn_fs_props_changed|svn_fs_revision_prop|svn_fs_revision_root|\\\nsvn_fs_txn_root|svn_fs_youngest_rev|svn_import|svn_log|svn_ls|svn_mkdir|svn_repos_create|svn_repos_fs|svn_repos_fs_begin_txn_for_commit|\\\nsvn_repos_fs_commit_txn|svn_repos_hotcopy|svn_repos_open|svn_repos_recover|svn_revert|svn_status|svn_update|swf_actiongeturl|\\\nswf_actiongotoframe|swf_actiongotolabel|swf_actionnextframe|swf_actionplay|swf_actionprevframe|swf_actionsettarget|swf_actionstop|\\\nswf_actiontogglequality|swf_actionwaitforframe|swf_addbuttonrecord|swf_addcolor|swf_closefile|swf_definebitmap|swf_definefont|\\\nswf_defineline|swf_definepoly|swf_definerect|swf_definetext|swf_endbutton|swf_enddoaction|swf_endshape|swf_endsymbol|swf_fontsize|\\\nswf_fontslant|swf_fonttracking|swf_getbitmapinfo|swf_getfontinfo|swf_getframe|swf_labelframe|swf_lookat|swf_modifyobject|swf_mulcolor|\\\nswf_nextid|swf_oncondition|swf_openfile|swf_ortho|swf_ortho2|swf_perspective|swf_placeobject|swf_polarview|swf_popmatrix|swf_posround|\\\nswf_pushmatrix|swf_removeobject|swf_rotate|swf_scale|swf_setfont|swf_setframe|swf_shapearc|swf_shapecurveto|swf_shapecurveto3|\\\nswf_shapefillbitmapclip|swf_shapefillbitmaptile|swf_shapefilloff|swf_shapefillsolid|swf_shapelinesolid|swf_shapelineto|swf_shapemoveto|\\\nswf_showframe|swf_startbutton|swf_startdoaction|swf_startshape|swf_startsymbol|swf_textwidth|swf_translate|swf_viewport|swfaction|\\\nswfbitmap|swfbutton|swfdisplayitem|swffill|swffont|swffontchar|swfgradient|swfmorph|swfmovie|swfprebuiltclip|swfshape|swfsound|\\\nswfsoundinstance|swfsprite|swftext|swftextfield|swfvideostream|swish_construct|swish_getmetalist|swish_getpropertylist|swish_prepare|\\\nswish_query|swishresult_getmetalist|swishresult_stem|swishresults_getparsedwords|swishresults_getremovedstopwords|swishresults_nextresult|\\\nswishresults_seekresult|swishsearch_execute|swishsearch_resetlimit|swishsearch_setlimit|swishsearch_setphrasedelimiter|\\\nswishsearch_setsort|swishsearch_setstructure|sybase_affected_rows|sybase_close|sybase_connect|sybase_data_seek|\\\nsybase_deadlock_retry_count|sybase_fetch_array|sybase_fetch_assoc|sybase_fetch_field|sybase_fetch_object|sybase_fetch_row|\\\nsybase_field_seek|sybase_free_result|sybase_get_last_message|sybase_min_client_severity|sybase_min_error_severity|\\\nsybase_min_message_severity|sybase_min_server_severity|sybase_num_fields|sybase_num_rows|sybase_pconnect|sybase_query|sybase_result|\\\nsybase_select_db|sybase_set_message_handler|sybase_unbuffered_query|symlink|sys_get_temp_dir|sys_getloadavg|syslog|system|tag|tan|tanh|\\\ntcpwrap_check|tempnam|textdomain|tidy|tidy_access_count|tidy_config_count|tidy_diagnose|tidy_error_count|tidy_get_error_buffer|\\\ntidy_get_output|tidy_load_config|tidy_reset_config|tidy_save_config|tidy_set_encoding|tidy_setopt|tidy_warning_count|tidynode|time|\\\ntime_nanosleep|time_sleep_until|timezone_abbreviations_list|timezone_identifiers_list|timezone_location_get|timezone_name_from_abbr|\\\ntimezone_name_get|timezone_offset_get|timezone_open|timezone_transitions_get|timezone_version_get|tmpfile|token_get_all|token_name|\\\ntokyotyrant|tokyotyrantquery|tokyotyranttable|tostring|tostring|touch|trait_exists|transliterator|traversable|trigger_error|trim|uasort|ucfirst|\\\nucwords|udm_add_search_limit|udm_alloc_agent|udm_alloc_agent_array|udm_api_version|udm_cat_list|udm_cat_path|udm_check_charset|\\\nudm_check_stored|udm_clear_search_limits|udm_close_stored|udm_crc32|udm_errno|udm_error|udm_find|udm_free_agent|udm_free_ispell_data|\\\nudm_free_res|udm_get_doc_count|udm_get_res_field|udm_get_res_param|udm_hash32|udm_load_ispell_data|udm_open_stored|udm_set_agent_param|\\\nuksort|umask|underflowexception|unexpectedvalueexception|uniqid|unixtojd|unlink|unpack|unregister_tick_function|unserialize|unset|\\\nurldecode|urlencode|use_soap_error_handler|user_error|usleep|usort|utf8_decode|utf8_encode|v8js|v8jsexception|var_dump|var_export|variant|\\\nvariant_abs|variant_add|variant_and|variant_cast|variant_cat|variant_cmp|variant_date_from_timestamp|variant_date_to_timestamp|\\\nvariant_div|variant_eqv|variant_fix|variant_get_type|variant_idiv|variant_imp|variant_int|variant_mod|variant_mul|variant_neg|variant_not|\\\nvariant_or|variant_pow|variant_round|variant_set|variant_set_type|variant_sub|variant_xor|version_compare|vfprintf|virtual|\\\nvpopmail_add_alias_domain|vpopmail_add_alias_domain_ex|vpopmail_add_domain|vpopmail_add_domain_ex|vpopmail_add_user|vpopmail_alias_add|\\\nvpopmail_alias_del|vpopmail_alias_del_domain|vpopmail_alias_get|vpopmail_alias_get_all|vpopmail_auth_user|vpopmail_del_domain|\\\nvpopmail_del_domain_ex|vpopmail_del_user|vpopmail_error|vpopmail_passwd|vpopmail_set_user_quota|vprintf|vsprintf|w32api_deftype|\\\nw32api_init_dtype|w32api_invoke_function|w32api_register_function|w32api_set_call_method|wddx_add_vars|wddx_deserialize|wddx_packet_end|\\\nwddx_packet_start|wddx_serialize_value|wddx_serialize_vars|win32_continue_service|win32_create_service|win32_delete_service|\\\nwin32_get_last_control_message|win32_pause_service|win32_ps_list_procs|win32_ps_stat_mem|win32_ps_stat_proc|win32_query_service_status|\\\nwin32_set_service_status|win32_start_service|win32_start_service_ctrl_dispatcher|win32_stop_service|wincache_fcache_fileinfo|\\\nwincache_fcache_meminfo|wincache_lock|wincache_ocache_fileinfo|wincache_ocache_meminfo|wincache_refresh_if_changed|\\\nwincache_rplist_fileinfo|wincache_rplist_meminfo|wincache_scache_info|wincache_scache_meminfo|wincache_ucache_add|wincache_ucache_cas|\\\nwincache_ucache_clear|wincache_ucache_dec|wincache_ucache_delete|wincache_ucache_exists|wincache_ucache_get|wincache_ucache_inc|\\\nwincache_ucache_info|wincache_ucache_meminfo|wincache_ucache_set|wincache_unlock|wordwrap|xattr_get|xattr_list|xattr_remove|xattr_set|\\\nxattr_supported|xdiff_file_bdiff|xdiff_file_bdiff_size|xdiff_file_bpatch|xdiff_file_diff|xdiff_file_diff_binary|xdiff_file_merge3|\\\nxdiff_file_patch|xdiff_file_patch_binary|xdiff_file_rabdiff|xdiff_string_bdiff|xdiff_string_bdiff_size|xdiff_string_bpatch|\\\nxdiff_string_diff|xdiff_string_diff_binary|xdiff_string_merge3|xdiff_string_patch|xdiff_string_patch_binary|xdiff_string_rabdiff|\\\nxhprof_disable|xhprof_enable|xhprof_sample_disable|xhprof_sample_enable|xml_error_string|xml_get_current_byte_index|\\\nxml_get_current_column_number|xml_get_current_line_number|xml_get_error_code|xml_parse|xml_parse_into_struct|xml_parser_create|\\\nxml_parser_create_ns|xml_parser_free|xml_parser_get_option|xml_parser_set_option|xml_set_character_data_handler|xml_set_default_handler|\\\nxml_set_element_handler|xml_set_end_namespace_decl_handler|xml_set_external_entity_ref_handler|xml_set_notation_decl_handler|\\\nxml_set_object|xml_set_processing_instruction_handler|xml_set_start_namespace_decl_handler|xml_set_unparsed_entity_decl_handler|xmlreader|\\\nxmlrpc_decode|xmlrpc_decode_request|xmlrpc_encode|xmlrpc_encode_request|xmlrpc_get_type|xmlrpc_is_fault|xmlrpc_parse_method_descriptions|\\\nxmlrpc_server_add_introspection_data|xmlrpc_server_call_method|xmlrpc_server_create|xmlrpc_server_destroy|\\\nxmlrpc_server_register_introspection_callback|xmlrpc_server_register_method|xmlrpc_set_type|xmlwriter_end_attribute|xmlwriter_end_cdata|\\\nxmlwriter_end_comment|xmlwriter_end_document|xmlwriter_end_dtd|xmlwriter_end_dtd_attlist|xmlwriter_end_dtd_element|\\\nxmlwriter_end_dtd_entity|xmlwriter_end_element|xmlwriter_end_pi|xmlwriter_flush|xmlwriter_full_end_element|xmlwriter_open_memory|\\\nxmlwriter_open_uri|xmlwriter_output_memory|xmlwriter_set_indent|xmlwriter_set_indent_string|xmlwriter_start_attribute|\\\nxmlwriter_start_attribute_ns|xmlwriter_start_cdata|xmlwriter_start_comment|xmlwriter_start_document|xmlwriter_start_dtd|\\\nxmlwriter_start_dtd_attlist|xmlwriter_start_dtd_element|xmlwriter_start_dtd_entity|xmlwriter_start_element|xmlwriter_start_element_ns|\\\nxmlwriter_start_pi|xmlwriter_text|xmlwriter_write_attribute|xmlwriter_write_attribute_ns|xmlwriter_write_cdata|xmlwriter_write_comment|\\\nxmlwriter_write_dtd|xmlwriter_write_dtd_attlist|xmlwriter_write_dtd_element|xmlwriter_write_dtd_entity|xmlwriter_write_element|\\\nxmlwriter_write_element_ns|xmlwriter_write_pi|xmlwriter_write_raw|xpath_eval|xpath_eval_expression|xpath_new_context|xpath_register_ns|\\\nxpath_register_ns_auto|xptr_eval|xptr_new_context|xslt_backend_info|xslt_backend_name|xslt_backend_version|xslt_create|xslt_errno|\\\nxslt_error|xslt_free|xslt_getopt|xslt_process|xslt_set_base|xslt_set_encoding|xslt_set_error_handler|xslt_set_log|xslt_set_object|\\\nxslt_set_sax_handler|xslt_set_sax_handlers|xslt_set_scheme_handler|xslt_set_scheme_handlers|xslt_setopt|xsltprocessor|yaml_emit|\\\nyaml_emit_file|yaml_parse|yaml_parse_file|yaml_parse_url|yaz_addinfo|yaz_ccl_conf|yaz_ccl_parse|yaz_close|yaz_connect|yaz_database|\\\nyaz_element|yaz_errno|yaz_error|yaz_es|yaz_es_result|yaz_get_option|yaz_hits|yaz_itemorder|yaz_present|yaz_range|yaz_record|yaz_scan|\\\nyaz_scan_result|yaz_schema|yaz_search|yaz_set_option|yaz_sort|yaz_syntax|yaz_wait|yp_all|yp_cat|yp_err_string|yp_errno|yp_first|\\\nyp_get_default_domain|yp_master|yp_match|yp_next|yp_order|zend_logo_guid|zend_thread_id|zend_version|zip_close|zip_entry_close|\\\nzip_entry_compressedsize|zip_entry_compressionmethod|zip_entry_filesize|zip_entry_name|zip_entry_open|zip_entry_read|zip_open|zip_read|\\\nziparchive|ziparchive_addemptydir|ziparchive_addfile|ziparchive_addfromstring|ziparchive_close|ziparchive_deleteindex|\\\nziparchive_deletename|ziparchive_extractto|ziparchive_getarchivecomment|ziparchive_getcommentindex|ziparchive_getcommentname|\\\nziparchive_getfromindex|ziparchive_getfromname|ziparchive_getnameindex|ziparchive_getstatusstring|ziparchive_getstream|\\\nziparchive_locatename|ziparchive_open|ziparchive_renameindex|ziparchive_renamename|ziparchive_setCommentName|ziparchive_setarchivecomment|\\\nziparchive_setcommentindex|ziparchive_statindex|ziparchive_statname|ziparchive_unchangeall|ziparchive_unchangearchive|\\\nziparchive_unchangeindex|ziparchive_unchangename|zlib_get_coding_type'.split('|')\n );\n var keywords = lang.arrayToMap(\n'abstract|and|array|as|break|callable|case|catch|class|clone|const|continue|declare|default|do|else|elseif|enddeclare|endfor|endforeach|\\\nendif|endswitch|endwhile|extends|final|finally|for|foreach|function|global|goto|if|implements|instanceof|insteadof|interface|namespace|new|or|private|protected|\\\npublic|static|switch|throw|trait|try|use|var|while|xor|yield'.split('|')\n );\n var languageConstructs = lang.arrayToMap(\n ('__halt_compiler|die|echo|empty|exit|eval|include|include_once|isset|list|require|require_once|return|print|unset').split('|')\n );\n\n var builtinConstants = lang.arrayToMap(\n ('true|TRUE|false|FALSE|null|NULL|__CLASS__|__DIR__|__FILE__|__LINE__|__METHOD__|__FUNCTION__|__NAMESPACE__|__TRAIT__').split('|')\n );\n\n var builtinVariables = lang.arrayToMap(\n'$GLOBALS|$_SERVER|$_GET|$_POST|$_FILES|$_REQUEST|$_SESSION|$_ENV|$_COOKIE|$php_errormsg|$HTTP_RAW_POST_DATA|\\\n$http_response_header|$argc|$argv'.split('|')\n );\n var builtinFunctionsDeprecated = lang.arrayToMap(\n'key_exists|cairo_matrix_create_scale|cairo_matrix_create_translate|call_user_method|call_user_method_array|com_addref|com_get|\\\ncom_invoke|com_isenum|com_load|com_release|com_set|connection_timeout|cubrid_load_from_glo|cubrid_new_glo|cubrid_save_to_glo|\\\ncubrid_send_glo|define_syslog_variables|dl|ereg|ereg_replace|eregi|eregi_replace|hw_documentattributes|hw_documentbodytag|\\\nhw_documentsize|hw_outputdocument|imagedashedline|maxdb_bind_param|maxdb_bind_result|maxdb_client_encoding|maxdb_close_long_data|\\\nmaxdb_execute|maxdb_fetch|maxdb_get_metadata|maxdb_param_count|maxdb_send_long_data|mcrypt_ecb|mcrypt_generic_end|mime_content_type|\\\nmysql_createdb|mysql_dbname|mysql_db_query|mysql_drop_db|mysql_dropdb|mysql_escape_string|mysql_fieldflags|mysql_fieldflags|\\\nmysql_fieldname|mysql_fieldtable|mysql_fieldtype|mysql_freeresult|mysql_listdbs|mysql_list_fields|mysql_listfields|mysql_list_tables|\\\nmysql_listtables|mysql_numfields|mysql_numrows|mysql_selectdb|mysql_tablename|mysqli_bind_param|mysqli_bind_result|\\\nmysqli_disable_reads_from_master|mysqli_disable_rpl_parse|mysqli_enable_reads_from_master|mysqli_enable_rpl_parse|mysqli_execute|\\\nmysqli_fetch|mysqli_get_metadata|mysqli_master_query|mysqli_param_count|mysqli_rpl_parse_enabled|mysqli_rpl_probe|mysqli_rpl_query_type|\\\nmysqli_send_long_data|mysqli_send_query|mysqli_slave_query|ocibindbyname|ocicancel|ocicloselob|ocicollappend|ocicollassign|\\\nocicollassignelem|ocicollgetelem|ocicollmax|ocicollsize|ocicolltrim|ocicolumnisnull|ocicolumnname|ocicolumnprecision|ocicolumnscale|\\\nocicolumnsize|ocicolumntype|ocicolumntyperaw|ocicommit|ocidefinebyname|ocierror|ociexecute|ocifetch|ocifetchinto|ocifetchstatement|\\\nocifreecollection|ocifreecursor|ocifreedesc|ocifreestatement|ociinternaldebug|ociloadlob|ocilogoff|ocilogon|ocinewcollection|\\\nocinewcursor|ocinewdescriptor|ocinlogon|ocinumcols|ociparse|ociplogon|ociresult|ocirollback|ocirowcount|ocisavelob|ocisavelobfile|\\\nociserverversion|ocisetprefetch|ocistatementtype|ociwritelobtofile|ociwritetemporarylob|PDF_add_annotation|PDF_add_bookmark|\\\nPDF_add_launchlink|PDF_add_locallink|PDF_add_note|PDF_add_outline|PDF_add_pdflink|PDF_add_weblink|PDF_attach_file|PDF_begin_page|\\\nPDF_begin_template|PDF_close_pdi|PDF_close|PDF_findfont|PDF_get_font|PDF_get_fontname|PDF_get_fontsize|PDF_get_image_height|\\\nPDF_get_image_width|PDF_get_majorversion|PDF_get_minorversion|PDF_get_pdi_parameter|PDF_get_pdi_value|PDF_open_ccitt|PDF_open_file|\\\nPDF_open_gif|PDF_open_image_file|PDF_open_image|PDF_open_jpeg|PDF_open_pdi|PDF_open_tiff|PDF_place_image|PDF_place_pdi_page|\\\nPDF_set_border_color|PDF_set_border_dash|PDF_set_border_style|PDF_set_char_spacing|PDF_set_duration|PDF_set_horiz_scaling|\\\nPDF_set_info_author|PDF_set_info_creator|PDF_set_info_keywords|PDF_set_info_subject|PDF_set_info_title|PDF_set_leading|\\\nPDF_set_text_matrix|PDF_set_text_rendering|PDF_set_text_rise|PDF_set_word_spacing|PDF_setgray_fill|PDF_setgray_stroke|PDF_setgray|\\\nPDF_setpolydash|PDF_setrgbcolor_fill|PDF_setrgbcolor_stroke|PDF_setrgbcolor|PDF_show_boxed|php_check_syntax|px_set_tablename|\\\npx_set_targetencoding|runkit_sandbox_output_handler|session_is_registered|session_register|session_unregister\\\nset_magic_quotes_runtime|magic_quotes_runtime|set_socket_blocking|socket_set_blocking|set_socket_timeout|socket_set_timeout|split|spliti|\\\nsql_regcase'.split('|')\n );\n\n var keywordsDeprecated = lang.arrayToMap(\n ('cfunction|old_function').split('|')\n );\n\n var futureReserved = lang.arrayToMap([]);\n\n this.$rules = {\n \"start\" : [\n {\n token : \"comment\",\n regex : /(?:#|\\/\\/)(?:[^?]|\\?[^>])*/\n },\n docComment.getStartRule(\"doc-start\"),\n {\n token : \"comment\", // multi line comment\n regex : \"\\\\/\\\\*\",\n next : \"comment\"\n }, {\n token : \"string.regexp\",\n regex : \"[/](?:(?:\\\\[(?:\\\\\\\\]|[^\\\\]])+\\\\])|(?:\\\\\\\\/|[^\\\\]/]))*[/][gimy]*\\\\s*(?=[).,;]|$)\"\n }, {\n token : \"string\", // \" string start\n regex : '\"',\n next : \"qqstring\"\n }, {\n token : \"string\", // ' string start\n regex : \"'\",\n next : \"qstring\"\n }, {\n token : \"constant.numeric\", // hex\n regex : \"0[xX][0-9a-fA-F]+\\\\b\"\n }, {\n token : \"constant.numeric\", // float\n regex : \"[+-]?\\\\d+(?:(?:\\\\.\\\\d*)?(?:[eE][+-]?\\\\d+)?)?\\\\b\"\n }, {\n token : \"constant.language\", // constants\n regex : \"\\\\b(?:DEFAULT_INCLUDE_PATH|E_(?:ALL|CO(?:MPILE_(?:ERROR|WARNING)|RE_(?:ERROR|WARNING))|\" +\n \"ERROR|NOTICE|PARSE|STRICT|USER_(?:ERROR|NOTICE|WARNING)|WARNING)|P(?:EAR_(?:EXTENSION_DIR|INSTALL_DIR)|\" +\n \"HP_(?:BINDIR|CONFIG_FILE_(?:PATH|SCAN_DIR)|DATADIR|E(?:OL|XTENSION_DIR)|INT_(?:MAX|SIZE)|\" +\n \"L(?:IBDIR|OCALSTATEDIR)|O(?:S|UTPUT_HANDLER_(?:CONT|END|START))|PREFIX|S(?:API|HLIB_SUFFIX|YSCONFDIR)|\" +\n \"VERSION))|__COMPILER_HALT_OFFSET__)\\\\b\"\n }, {\n token : [\"keyword\", \"text\", \"support.class\"],\n regex : \"\\\\b(new)(\\\\s+)(\\\\w+)\"\n }, {\n token : [\"support.class\", \"keyword.operator\"],\n regex : \"\\\\b(\\\\w+)(::)\"\n }, {\n token : \"constant.language\", // constants\n regex : \"\\\\b(?:A(?:B(?:DAY_(?:1|2|3|4|5|6|7)|MON_(?:1(?:0|1|2|)|2|3|4|5|6|7|8|9))|LT_DIGITS|M_STR|\" +\n \"SSERT_(?:ACTIVE|BAIL|CALLBACK|QUIET_EVAL|WARNING))|C(?:ASE_(?:LOWER|UPPER)|HAR_MAX|\" +\n \"O(?:DESET|NNECTION_(?:ABORTED|NORMAL|TIMEOUT)|UNT_(?:NORMAL|RECURSIVE))|\" +\n \"R(?:EDITS_(?:ALL|DOCS|FULLPAGE|G(?:ENERAL|ROUP)|MODULES|QA|SAPI)|NCYSTR|\" +\n \"YPT_(?:BLOWFISH|EXT_DES|MD5|S(?:ALT_LENGTH|TD_DES)))|URRENCY_SYMBOL)|D(?:AY_(?:1|2|3|4|5|6|7)|\" +\n \"ECIMAL_POINT|IRECTORY_SEPARATOR|_(?:FMT|T_FMT))|E(?:NT_(?:COMPAT|NOQUOTES|QUOTES)|RA(?:_(?:D_(?:FMT|T_FMT)|\" +\n \"T_FMT|YEAR)|)|XTR_(?:IF_EXISTS|OVERWRITE|PREFIX_(?:ALL|I(?:F_EXISTS|NVALID)|SAME)|SKIP))|FRAC_DIGITS|GROUPING|\" +\n \"HTML_(?:ENTITIES|SPECIALCHARS)|IN(?:FO_(?:ALL|C(?:ONFIGURATION|REDITS)|ENVIRONMENT|GENERAL|LICENSE|MODULES|VARIABLES)|\" +\n \"I_(?:ALL|PERDIR|SYSTEM|USER)|T_(?:CURR_SYMBOL|FRAC_DIGITS))|L(?:C_(?:ALL|C(?:OLLATE|TYPE)|M(?:ESSAGES|ONETARY)|NUMERIC|TIME)|\" +\n \"O(?:CK_(?:EX|NB|SH|UN)|G_(?:A(?:LERT|UTH(?:PRIV|))|C(?:ONS|R(?:IT|ON))|D(?:AEMON|EBUG)|E(?:MERG|RR)|INFO|KERN|\" +\n \"L(?:OCAL(?:0|1|2|3|4|5|6|7)|PR)|MAIL|N(?:DELAY|EWS|O(?:TICE|WAIT))|ODELAY|P(?:ERROR|ID)|SYSLOG|U(?:SER|UCP)|WARNING)))|\" +\n \"M(?:ON_(?:1(?:0|1|2|)|2|3|4|5|6|7|8|9|DECIMAL_POINT|GROUPING|THOUSANDS_SEP)|_(?:1_PI|2_(?:PI|SQRTPI)|E|L(?:N(?:10|2)|\" +\n \"OG(?:10E|2E))|PI(?:_(?:2|4)|)|SQRT(?:1_2|2)))|N(?:EGATIVE_SIGN|O(?:EXPR|STR)|_(?:CS_PRECEDES|S(?:EP_BY_SPACE|IGN_POSN)))|\" +\n \"P(?:ATH(?:INFO_(?:BASENAME|DIRNAME|EXTENSION)|_SEPARATOR)|M_STR|OSITIVE_SIGN|_(?:CS_PRECEDES|S(?:EP_BY_SPACE|IGN_POSN)))|\" +\n \"RADIXCHAR|S(?:EEK_(?:CUR|END|SET)|ORT_(?:ASC|DESC|NUMERIC|REGULAR|STRING)|TR_PAD_(?:BOTH|LEFT|RIGHT))|\" +\n \"T(?:HOUS(?:ANDS_SEP|EP)|_FMT(?:_AMPM|))|YES(?:EXPR|STR)|STD(?:IN|OUT|ERR))\\\\b\"\n }, {\n token : function(value) {\n if (keywords.hasOwnProperty(value))\n return \"keyword\";\n else if (builtinConstants.hasOwnProperty(value))\n return \"constant.language\";\n else if (builtinVariables.hasOwnProperty(value))\n return \"variable.language\";\n else if (futureReserved.hasOwnProperty(value))\n return \"invalid.illegal\";\n else if (builtinFunctions.hasOwnProperty(value))\n return \"support.function\";\n else if (value == \"debugger\")\n return \"invalid.deprecated\";\n else\n if(value.match(/^(\\$[a-zA-Z_\\x7f-\\uffff][a-zA-Z0-9_\\x7f-\\uffff]*|self|parent)$/))\n return \"variable\";\n return \"identifier\";\n },\n regex : /[a-zA-Z_$\\x7f-\\uffff][a-zA-Z0-9_\\x7f-\\uffff]*/\n }, {\n onMatch : function(value, currentSate, state) {\n value = value.substr(3);\n if (value[0] == \"'\" || value[0] == '\"')\n value = value.slice(1, -1);\n state.unshift(this.next, value);\n return \"markup.list\";\n },\n regex : /<<<(?:\\w+|'\\w+'|\"\\w+\")$/,\n next: \"heredoc\"\n }, {\n token : \"keyword.operator\",\n regex : \"::|!|\\\\$|%|&|\\\\*|\\\\-\\\\-|\\\\-|\\\\+\\\\+|\\\\+|~|===|==|!=|!==|<=|>=|=>|<<=|>>=|>>>=|<>|<|>|\\\\.=|=|!|&&|\\\\|\\\\||\\\\?\\\\:|\\\\*=|/=|%=|\\\\+=|\\\\-=|&=|\\\\^=|\\\\b(?:in|instanceof|new|delete|typeof|void)\"\n }, {\n token : \"punctuation.operator\",\n regex : /[,;]/\n }, {\n token : \"paren.lparen\",\n regex : \"[[({]\"\n }, {\n token : \"paren.rparen\",\n regex : \"[\\\\])}]\"\n }, {\n token : \"text\",\n regex : \"\\\\s+\"\n }\n ],\n \"heredoc\" : [\n {\n onMatch : function(value, currentSate, stack) {\n if (stack[1] != value)\n return \"string\";\n stack.shift();\n stack.shift();\n return \"markup.list\";\n },\n regex : \"^\\\\w+(?=;?$)\",\n next: \"start\"\n }, {\n token: \"string\",\n regex : \".*\"\n }\n ],\n \"comment\" : [\n {\n token : \"comment\",\n regex : \"\\\\*\\\\/\",\n next : \"start\"\n }, {\n defaultToken : \"comment\"\n }\n ],\n \"qqstring\" : [\n {\n token : \"constant.language.escape\",\n regex : '\\\\\\\\(?:[nrtvef\\\\\\\\\"$]|[0-7]{1,3}|x[0-9A-Fa-f]{1,2})'\n }, {\n token : \"variable\",\n regex : /\\$[\\w]+(?:\\[[\\w\\]+]|[=\\-]>\\w+)?/\n }, {\n token : \"variable\",\n regex : /\\$\\{[^\"\\}]+\\}?/ // this is wrong but ok for now\n },\n {token : \"string\", regex : '\"', next : \"start\"},\n {defaultToken : \"string\"}\n ],\n \"qstring\" : [\n {token : \"constant.language.escape\", regex : /\\\\['\\\\]/},\n {token : \"string\", regex : \"'\", next : \"start\"},\n {defaultToken : \"string\"}\n ]\n };\n\n this.embedRules(DocCommentHighlightRules, \"doc-\",\n [ DocCommentHighlightRules.getEndRule(\"start\") ]);\n};\n\noop.inherits(PhpLangHighlightRules, TextHighlightRules);\n\n\nvar PhpHighlightRules = function() {\n HtmlHighlightRules.call(this);\n\n var startRules = [\n {\n token : \"support.php_tag\", // php open tag\n regex : \"<\\\\?(?:php|=)?\",\n push : \"php-start\"\n }\n ];\n\n var endRules = [\n {\n token : \"support.php_tag\", // php close tag\n regex : \"\\\\?>\",\n next : \"pop\"\n }\n ];\n\n for (var key in this.$rules)\n this.$rules[key].unshift.apply(this.$rules[key], startRules);\n\n this.embedRules(PhpLangHighlightRules, \"php-\", endRules, [\"start\"]);\n\n this.normalizeRules();\n};\n\noop.inherits(PhpHighlightRules, HtmlHighlightRules);\n\nexports.PhpHighlightRules = PhpHighlightRules;\nexports.PhpLangHighlightRules = PhpLangHighlightRules;\n});\n\nace.define(\"ace/mode/matching_brace_outdent\",[\"require\",\"exports\",\"module\",\"ace/range\"], function(require, exports, module) {\n\"use strict\";\n\nvar Range = require(\"../range\").Range;\n\nvar MatchingBraceOutdent = function() {};\n\n(function() {\n\n this.checkOutdent = function(line, input) {\n if (! /^\\s+$/.test(line))\n return false;\n\n return /^\\s*\\}/.test(input);\n };\n\n this.autoOutdent = function(doc, row) {\n var line = doc.getLine(row);\n var match = line.match(/^(\\s*\\})/);\n\n if (!match) return 0;\n\n var column = match[1].length;\n var openBracePos = doc.findMatchingBracket({row: row, column: column});\n\n if (!openBracePos || openBracePos.row == row) return 0;\n\n var indent = this.$getIndent(doc.getLine(openBracePos.row));\n doc.replace(new Range(row, 0, row, column-1), indent);\n };\n\n this.$getIndent = function(line) {\n return line.match(/^\\s*/)[0];\n };\n\n}).call(MatchingBraceOutdent.prototype);\n\nexports.MatchingBraceOutdent = MatchingBraceOutdent;\n});\n\nace.define(\"ace/mode/php_completions\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nvar functionMap = {\n \"abs\": [\n \"int abs(int number)\",\n \"Return the absolute value of the number\"\n ],\n \"acos\": [\n \"float acos(float number)\",\n \"Return the arc cosine of the number in radians\"\n ],\n \"acosh\": [\n \"float acosh(float number)\",\n \"Returns the inverse hyperbolic cosine of the number, i.e. the value whose hyperbolic cosine is number\"\n ],\n \"addGlob\": [\n \"bool addGlob(string pattern[,int flags [, array options]])\",\n \"Add files matching the glob pattern. See php's glob for the pattern syntax.\"\n ],\n \"addPattern\": [\n \"bool addPattern(string pattern[, string path [, array options]])\",\n \"Add files matching the pcre pattern. See php's pcre for the pattern syntax.\"\n ],\n \"addcslashes\": [\n \"string addcslashes(string str, string charlist)\",\n \"Escapes all chars mentioned in charlist with backslash. It creates octal representations if asked to backslash characters with 8th bit set or with ASCII<32 (except '\\\\n', '\\\\r', '\\\\t' etc...)\"\n ],\n \"addslashes\": [\n \"string addslashes(string str)\",\n \"Escapes single quote, double quotes and backslash characters in a string with backslashes\"\n ],\n \"apache_child_terminate\": [\n \"bool apache_child_terminate(void)\",\n \"Terminate apache process after this request\"\n ],\n \"apache_get_modules\": [\n \"array apache_get_modules(void)\",\n \"Get a list of loaded Apache modules\"\n ],\n \"apache_get_version\": [\n \"string apache_get_version(void)\",\n \"Fetch Apache version\"\n ],\n \"apache_getenv\": [\n \"bool apache_getenv(string variable [, bool walk_to_top])\",\n \"Get an Apache subprocess_env variable\"\n ],\n \"apache_lookup_uri\": [\n \"object apache_lookup_uri(string URI)\",\n \"Perform a partial request of the given URI to obtain information about it\"\n ],\n \"apache_note\": [\n \"string apache_note(string note_name [, string note_value])\",\n \"Get and set Apache request notes\"\n ],\n \"apache_request_auth_name\": [\n \"string apache_request_auth_name()\",\n \"\"\n ],\n \"apache_request_auth_type\": [\n \"string apache_request_auth_type()\",\n \"\"\n ],\n \"apache_request_discard_request_body\": [\n \"long apache_request_discard_request_body()\",\n \"\"\n ],\n \"apache_request_err_headers_out\": [\n \"array apache_request_err_headers_out([{string name|array list} [, string value [, bool replace = false]]])\",\n \"* fetch all headers that go out in case of an error or a subrequest\"\n ],\n \"apache_request_headers\": [\n \"array apache_request_headers(void)\",\n \"Fetch all HTTP request headers\"\n ],\n \"apache_request_headers_in\": [\n \"array apache_request_headers_in()\",\n \"* fetch all incoming request headers\"\n ],\n \"apache_request_headers_out\": [\n \"array apache_request_headers_out([{string name|array list} [, string value [, bool replace = false]]])\",\n \"* fetch all outgoing request headers\"\n ],\n \"apache_request_is_initial_req\": [\n \"bool apache_request_is_initial_req()\",\n \"\"\n ],\n \"apache_request_log_error\": [\n \"boolean apache_request_log_error(string message, [long facility])\",\n \"\"\n ],\n \"apache_request_meets_conditions\": [\n \"long apache_request_meets_conditions()\",\n \"\"\n ],\n \"apache_request_remote_host\": [\n \"int apache_request_remote_host([int type])\",\n \"\"\n ],\n \"apache_request_run\": [\n \"long apache_request_run()\",\n \"This is a wrapper for ap_sub_run_req and ap_destory_sub_req. It takes sub_request, runs it, destroys it, and returns it's status.\"\n ],\n \"apache_request_satisfies\": [\n \"long apache_request_satisfies()\",\n \"\"\n ],\n \"apache_request_server_port\": [\n \"int apache_request_server_port()\",\n \"\"\n ],\n \"apache_request_set_etag\": [\n \"void apache_request_set_etag()\",\n \"\"\n ],\n \"apache_request_set_last_modified\": [\n \"void apache_request_set_last_modified()\",\n \"\"\n ],\n \"apache_request_some_auth_required\": [\n \"bool apache_request_some_auth_required()\",\n \"\"\n ],\n \"apache_request_sub_req_lookup_file\": [\n \"object apache_request_sub_req_lookup_file(string file)\",\n \"Returns sub-request for the specified file. You would need to run it yourself with run().\"\n ],\n \"apache_request_sub_req_lookup_uri\": [\n \"object apache_request_sub_req_lookup_uri(string uri)\",\n \"Returns sub-request for the specified uri. You would need to run it yourself with run()\"\n ],\n \"apache_request_sub_req_method_uri\": [\n \"object apache_request_sub_req_method_uri(string method, string uri)\",\n \"Returns sub-request for the specified file. You would need to run it yourself with run().\"\n ],\n \"apache_request_update_mtime\": [\n \"long apache_request_update_mtime([int dependency_mtime])\",\n \"\"\n ],\n \"apache_reset_timeout\": [\n \"bool apache_reset_timeout(void)\",\n \"Reset the Apache write timer\"\n ],\n \"apache_response_headers\": [\n \"array apache_response_headers(void)\",\n \"Fetch all HTTP response headers\"\n ],\n \"apache_setenv\": [\n \"bool apache_setenv(string variable, string value [, bool walk_to_top])\",\n \"Set an Apache subprocess_env variable\"\n ],\n \"array_change_key_case\": [\n \"array array_change_key_case(array input [, int case=CASE_LOWER])\",\n \"Retuns an array with all string keys lowercased [or uppercased]\"\n ],\n \"array_chunk\": [\n \"array array_chunk(array input, int size [, bool preserve_keys])\",\n \"Split array into chunks\"\n ],\n \"array_combine\": [\n \"array array_combine(array keys, array values)\",\n \"Creates an array by using the elements of the first parameter as keys and the elements of the second as the corresponding values\"\n ],\n \"array_count_values\": [\n \"array array_count_values(array input)\",\n \"Return the value as key and the frequency of that value in input as value\"\n ],\n \"array_diff\": [\n \"array array_diff(array arr1, array arr2 [, array ...])\",\n \"Returns the entries of arr1 that have values which are not present in any of the others arguments.\"\n ],\n \"array_diff_assoc\": [\n \"array array_diff_assoc(array arr1, array arr2 [, array ...])\",\n \"Returns the entries of arr1 that have values which are not present in any of the others arguments but do additional checks whether the keys are equal\"\n ],\n \"array_diff_key\": [\n \"array array_diff_key(array arr1, array arr2 [, array ...])\",\n \"Returns the entries of arr1 that have keys which are not present in any of the others arguments. This function is like array_diff() but works on the keys instead of the values. The associativity is preserved.\"\n ],\n \"array_diff_uassoc\": [\n \"array array_diff_uassoc(array arr1, array arr2 [, array ...], callback data_comp_func)\",\n \"Returns the entries of arr1 that have values which are not present in any of the others arguments but do additional checks whether the keys are equal. Elements are compared by user supplied function.\"\n ],\n \"array_diff_ukey\": [\n \"array array_diff_ukey(array arr1, array arr2 [, array ...], callback key_comp_func)\",\n \"Returns the entries of arr1 that have keys which are not present in any of the others arguments. User supplied function is used for comparing the keys. This function is like array_udiff() but works on the keys instead of the values. The associativity is preserved.\"\n ],\n \"array_fill\": [\n \"array array_fill(int start_key, int num, mixed val)\",\n \"Create an array containing num elements starting with index start_key each initialized to val\"\n ],\n \"array_fill_keys\": [\n \"array array_fill_keys(array keys, mixed val)\",\n \"Create an array using the elements of the first parameter as keys each initialized to val\"\n ],\n \"array_filter\": [\n \"array array_filter(array input [, mixed callback])\",\n \"Filters elements from the array via the callback.\"\n ],\n \"array_flip\": [\n \"array array_flip(array input)\",\n \"Return array with key <-> value flipped\"\n ],\n \"array_intersect\": [\n \"array array_intersect(array arr1, array arr2 [, array ...])\",\n \"Returns the entries of arr1 that have values which are present in all the other arguments\"\n ],\n \"array_intersect_assoc\": [\n \"array array_intersect_assoc(array arr1, array arr2 [, array ...])\",\n \"Returns the entries of arr1 that have values which are present in all the other arguments. Keys are used to do more restrictive check\"\n ],\n \"array_intersect_key\": [\n \"array array_intersect_key(array arr1, array arr2 [, array ...])\",\n \"Returns the entries of arr1 that have keys which are present in all the other arguments. Kind of equivalent to array_diff(array_keys($arr1), array_keys($arr2)[,array_keys(...)]). Equivalent of array_intersect_assoc() but does not do compare of the data.\"\n ],\n \"array_intersect_uassoc\": [\n \"array array_intersect_uassoc(array arr1, array arr2 [, array ...], callback key_compare_func)\",\n \"Returns the entries of arr1 that have values which are present in all the other arguments. Keys are used to do more restrictive check and they are compared by using an user-supplied callback.\"\n ],\n \"array_intersect_ukey\": [\n \"array array_intersect_ukey(array arr1, array arr2 [, array ...], callback key_compare_func)\",\n \"Returns the entries of arr1 that have keys which are present in all the other arguments. Kind of equivalent to array_diff(array_keys($arr1), array_keys($arr2)[,array_keys(...)]). The comparison of the keys is performed by a user supplied function. Equivalent of array_intersect_uassoc() but does not do compare of the data.\"\n ],\n \"array_key_exists\": [\n \"bool array_key_exists(mixed key, array search)\",\n \"Checks if the given key or index exists in the array\"\n ],\n \"array_keys\": [\n \"array array_keys(array input [, mixed search_value[, bool strict]])\",\n \"Return just the keys from the input array, optionally only for the specified search_value\"\n ],\n \"array_map\": [\n \"array array_map(mixed callback, array input1 [, array input2 ,...])\",\n \"Applies the callback to the elements in given arrays.\"\n ],\n \"array_merge\": [\n \"array array_merge(array arr1, array arr2 [, array ...])\",\n \"Merges elements from passed arrays into one array\"\n ],\n \"array_merge_recursive\": [\n \"array array_merge_recursive(array arr1, array arr2 [, array ...])\",\n \"Recursively merges elements from passed arrays into one array\"\n ],\n \"array_multisort\": [\n \"bool array_multisort(array ar1 [, SORT_ASC|SORT_DESC [, SORT_REGULAR|SORT_NUMERIC|SORT_STRING]] [, array ar2 [, SORT_ASC|SORT_DESC [, SORT_REGULAR|SORT_NUMERIC|SORT_STRING]], ...])\",\n \"Sort multiple arrays at once similar to how ORDER BY clause works in SQL\"\n ],\n \"array_pad\": [\n \"array array_pad(array input, int pad_size, mixed pad_value)\",\n \"Returns a copy of input array padded with pad_value to size pad_size\"\n ],\n \"array_pop\": [\n \"mixed array_pop(array stack)\",\n \"Pops an element off the end of the array\"\n ],\n \"array_product\": [\n \"mixed array_product(array input)\",\n \"Returns the product of the array entries\"\n ],\n \"array_push\": [\n \"int array_push(array stack, mixed var [, mixed ...])\",\n \"Pushes elements onto the end of the array\"\n ],\n \"array_rand\": [\n \"mixed array_rand(array input [, int num_req])\",\n \"Return key/keys for random entry/entries in the array\"\n ],\n \"array_reduce\": [\n \"mixed array_reduce(array input, mixed callback [, mixed initial])\",\n \"Iteratively reduce the array to a single value via the callback.\"\n ],\n \"array_replace\": [\n \"array array_replace(array arr1, array arr2 [, array ...])\",\n \"Replaces elements from passed arrays into one array\"\n ],\n \"array_replace_recursive\": [\n \"array array_replace_recursive(array arr1, array arr2 [, array ...])\",\n \"Recursively replaces elements from passed arrays into one array\"\n ],\n \"array_reverse\": [\n \"array array_reverse(array input [, bool preserve keys])\",\n \"Return input as a new array with the order of the entries reversed\"\n ],\n \"array_search\": [\n \"mixed array_search(mixed needle, array haystack [, bool strict])\",\n \"Searches the array for a given value and returns the corresponding key if successful\"\n ],\n \"array_shift\": [\n \"mixed array_shift(array stack)\",\n \"Pops an element off the beginning of the array\"\n ],\n \"array_slice\": [\n \"array array_slice(array input, int offset [, int length [, bool preserve_keys]])\",\n \"Returns elements specified by offset and length\"\n ],\n \"array_splice\": [\n \"array array_splice(array input, int offset [, int length [, array replacement]])\",\n \"Removes the elements designated by offset and length and replace them with supplied array\"\n ],\n \"array_sum\": [\n \"mixed array_sum(array input)\",\n \"Returns the sum of the array entries\"\n ],\n \"array_udiff\": [\n \"array array_udiff(array arr1, array arr2 [, array ...], callback data_comp_func)\",\n \"Returns the entries of arr1 that have values which are not present in any of the others arguments. Elements are compared by user supplied function.\"\n ],\n \"array_udiff_assoc\": [\n \"array array_udiff_assoc(array arr1, array arr2 [, array ...], callback key_comp_func)\",\n \"Returns the entries of arr1 that have values which are not present in any of the others arguments but do additional checks whether the keys are equal. Keys are compared by user supplied function.\"\n ],\n \"array_udiff_uassoc\": [\n \"array array_udiff_uassoc(array arr1, array arr2 [, array ...], callback data_comp_func, callback key_comp_func)\",\n \"Returns the entries of arr1 that have values which are not present in any of the others arguments but do additional checks whether the keys are equal. Keys and elements are compared by user supplied functions.\"\n ],\n \"array_uintersect\": [\n \"array array_uintersect(array arr1, array arr2 [, array ...], callback data_compare_func)\",\n \"Returns the entries of arr1 that have values which are present in all the other arguments. Data is compared by using an user-supplied callback.\"\n ],\n \"array_uintersect_assoc\": [\n \"array array_uintersect_assoc(array arr1, array arr2 [, array ...], callback data_compare_func)\",\n \"Returns the entries of arr1 that have values which are present in all the other arguments. Keys are used to do more restrictive check. Data is compared by using an user-supplied callback.\"\n ],\n \"array_uintersect_uassoc\": [\n \"array array_uintersect_uassoc(array arr1, array arr2 [, array ...], callback data_compare_func, callback key_compare_func)\",\n \"Returns the entries of arr1 that have values which are present in all the other arguments. Keys are used to do more restrictive check. Both data and keys are compared by using user-supplied callbacks.\"\n ],\n \"array_unique\": [\n \"array array_unique(array input [, int sort_flags])\",\n \"Removes duplicate values from array\"\n ],\n \"array_unshift\": [\n \"int array_unshift(array stack, mixed var [, mixed ...])\",\n \"Pushes elements onto the beginning of the array\"\n ],\n \"array_values\": [\n \"array array_values(array input)\",\n \"Return just the values from the input array\"\n ],\n \"array_walk\": [\n \"bool array_walk(array input, string funcname [, mixed userdata])\",\n \"Apply a user function to every member of an array\"\n ],\n \"array_walk_recursive\": [\n \"bool array_walk_recursive(array input, string funcname [, mixed userdata])\",\n \"Apply a user function recursively to every member of an array\"\n ],\n \"arsort\": [\n \"bool arsort(array &array_arg [, int sort_flags])\",\n \"Sort an array in reverse order and maintain index association\"\n ],\n \"asin\": [\n \"float asin(float number)\",\n \"Returns the arc sine of the number in radians\"\n ],\n \"asinh\": [\n \"float asinh(float number)\",\n \"Returns the inverse hyperbolic sine of the number, i.e. the value whose hyperbolic sine is number\"\n ],\n \"asort\": [\n \"bool asort(array &array_arg [, int sort_flags])\",\n \"Sort an array and maintain index association\"\n ],\n \"assert\": [\n \"int assert(string|bool assertion)\",\n \"Checks if assertion is false\"\n ],\n \"assert_options\": [\n \"mixed assert_options(int what [, mixed value])\",\n \"Set/get the various assert flags\"\n ],\n \"atan\": [\n \"float atan(float number)\",\n \"Returns the arc tangent of the number in radians\"\n ],\n \"atan2\": [\n \"float atan2(float y, float x)\",\n \"Returns the arc tangent of y/x, with the resulting quadrant determined by the signs of y and x\"\n ],\n \"atanh\": [\n \"float atanh(float number)\",\n \"Returns the inverse hyperbolic tangent of the number, i.e. the value whose hyperbolic tangent is number\"\n ],\n \"attachIterator\": [\n \"void attachIterator(Iterator iterator[, mixed info])\",\n \"Attach a new iterator\"\n ],\n \"base64_decode\": [\n \"string base64_decode(string str[, bool strict])\",\n \"Decodes string using MIME base64 algorithm\"\n ],\n \"base64_encode\": [\n \"string base64_encode(string str)\",\n \"Encodes string using MIME base64 algorithm\"\n ],\n \"base_convert\": [\n \"string base_convert(string number, int frombase, int tobase)\",\n \"Converts a number in a string from any base <= 36 to any base <= 36\"\n ],\n \"basename\": [\n \"string basename(string path [, string suffix])\",\n \"Returns the filename component of the path\"\n ],\n \"bcadd\": [\n \"string bcadd(string left_operand, string right_operand [, int scale])\",\n \"Returns the sum of two arbitrary precision numbers\"\n ],\n \"bccomp\": [\n \"int bccomp(string left_operand, string right_operand [, int scale])\",\n \"Compares two arbitrary precision numbers\"\n ],\n \"bcdiv\": [\n \"string bcdiv(string left_operand, string right_operand [, int scale])\",\n \"Returns the quotient of two arbitrary precision numbers (division)\"\n ],\n \"bcmod\": [\n \"string bcmod(string left_operand, string right_operand)\",\n \"Returns the modulus of the two arbitrary precision operands\"\n ],\n \"bcmul\": [\n \"string bcmul(string left_operand, string right_operand [, int scale])\",\n \"Returns the multiplication of two arbitrary precision numbers\"\n ],\n \"bcpow\": [\n \"string bcpow(string x, string y [, int scale])\",\n \"Returns the value of an arbitrary precision number raised to the power of another\"\n ],\n \"bcpowmod\": [\n \"string bcpowmod(string x, string y, string mod [, int scale])\",\n \"Returns the value of an arbitrary precision number raised to the power of another reduced by a modulous\"\n ],\n \"bcscale\": [\n \"bool bcscale(int scale)\",\n \"Sets default scale parameter for all bc math functions\"\n ],\n \"bcsqrt\": [\n \"string bcsqrt(string operand [, int scale])\",\n \"Returns the square root of an arbitray precision number\"\n ],\n \"bcsub\": [\n \"string bcsub(string left_operand, string right_operand [, int scale])\",\n \"Returns the difference between two arbitrary precision numbers\"\n ],\n \"bin2hex\": [\n \"string bin2hex(string data)\",\n \"Converts the binary representation of data to hex\"\n ],\n \"bind_textdomain_codeset\": [\n \"string bind_textdomain_codeset (string domain, string codeset)\",\n \"Specify the character encoding in which the messages from the DOMAIN message catalog will be returned.\"\n ],\n \"bindec\": [\n \"int bindec(string binary_number)\",\n \"Returns the decimal equivalent of the binary number\"\n ],\n \"bindtextdomain\": [\n \"string bindtextdomain(string domain_name, string dir)\",\n \"Bind to the text domain domain_name, looking for translations in dir. Returns the current domain\"\n ],\n \"birdstep_autocommit\": [\n \"bool birdstep_autocommit(int index)\",\n \"\"\n ],\n \"birdstep_close\": [\n \"bool birdstep_close(int id)\",\n \"\"\n ],\n \"birdstep_commit\": [\n \"bool birdstep_commit(int index)\",\n \"\"\n ],\n \"birdstep_connect\": [\n \"int birdstep_connect(string server, string user, string pass)\",\n \"\"\n ],\n \"birdstep_exec\": [\n \"int birdstep_exec(int index, string exec_str)\",\n \"\"\n ],\n \"birdstep_fetch\": [\n \"bool birdstep_fetch(int index)\",\n \"\"\n ],\n \"birdstep_fieldname\": [\n \"string birdstep_fieldname(int index, int col)\",\n \"\"\n ],\n \"birdstep_fieldnum\": [\n \"int birdstep_fieldnum(int index)\",\n \"\"\n ],\n \"birdstep_freeresult\": [\n \"bool birdstep_freeresult(int index)\",\n \"\"\n ],\n \"birdstep_off_autocommit\": [\n \"bool birdstep_off_autocommit(int index)\",\n \"\"\n ],\n \"birdstep_result\": [\n \"mixed birdstep_result(int index, mixed col)\",\n \"\"\n ],\n \"birdstep_rollback\": [\n \"bool birdstep_rollback(int index)\",\n \"\"\n ],\n \"bzcompress\": [\n \"string bzcompress(string source [, int blocksize100k [, int workfactor]])\",\n \"Compresses a string into BZip2 encoded data\"\n ],\n \"bzdecompress\": [\n \"string bzdecompress(string source [, int small])\",\n \"Decompresses BZip2 compressed data\"\n ],\n \"bzerrno\": [\n \"int bzerrno(resource bz)\",\n \"Returns the error number\"\n ],\n \"bzerror\": [\n \"array bzerror(resource bz)\",\n \"Returns the error number and error string in an associative array\"\n ],\n \"bzerrstr\": [\n \"string bzerrstr(resource bz)\",\n \"Returns the error string\"\n ],\n \"bzopen\": [\n \"resource bzopen(string|int file|fp, string mode)\",\n \"Opens a new BZip2 stream\"\n ],\n \"bzread\": [\n \"string bzread(resource bz[, int length])\",\n \"Reads up to length bytes from a BZip2 stream, or 1024 bytes if length is not specified\"\n ],\n \"cal_days_in_month\": [\n \"int cal_days_in_month(int calendar, int month, int year)\",\n \"Returns the number of days in a month for a given year and calendar\"\n ],\n \"cal_from_jd\": [\n \"array cal_from_jd(int jd, int calendar)\",\n \"Converts from Julian Day Count to a supported calendar and return extended information\"\n ],\n \"cal_info\": [\n \"array cal_info([int calendar])\",\n \"Returns information about a particular calendar\"\n ],\n \"cal_to_jd\": [\n \"int cal_to_jd(int calendar, int month, int day, int year)\",\n \"Converts from a supported calendar to Julian Day Count\"\n ],\n \"call_user_func\": [\n \"mixed call_user_func(mixed function_name [, mixed parmeter] [, mixed ...])\",\n \"Call a user function which is the first parameter\"\n ],\n \"call_user_func_array\": [\n \"mixed call_user_func_array(string function_name, array parameters)\",\n \"Call a user function which is the first parameter with the arguments contained in array\"\n ],\n \"call_user_method\": [\n \"mixed call_user_method(string method_name, mixed object [, mixed parameter] [, mixed ...])\",\n \"Call a user method on a specific object or class\"\n ],\n \"call_user_method_array\": [\n \"mixed call_user_method_array(string method_name, mixed object, array params)\",\n \"Call a user method on a specific object or class using a parameter array\"\n ],\n \"ceil\": [\n \"float ceil(float number)\",\n \"Returns the next highest integer value of the number\"\n ],\n \"chdir\": [\n \"bool chdir(string directory)\",\n \"Change the current directory\"\n ],\n \"checkdate\": [\n \"bool checkdate(int month, int day, int year)\",\n \"Returns true(1) if it is a valid date in gregorian calendar\"\n ],\n \"chgrp\": [\n \"bool chgrp(string filename, mixed group)\",\n \"Change file group\"\n ],\n \"chmod\": [\n \"bool chmod(string filename, int mode)\",\n \"Change file mode\"\n ],\n \"chown\": [\n \"bool chown (string filename, mixed user)\",\n \"Change file owner\"\n ],\n \"chr\": [\n \"string chr(int ascii)\",\n \"Converts ASCII code to a character\"\n ],\n \"chroot\": [\n \"bool chroot(string directory)\",\n \"Change root directory\"\n ],\n \"chunk_split\": [\n \"string chunk_split(string str [, int chunklen [, string ending]])\",\n \"Returns split line\"\n ],\n \"class_alias\": [\n \"bool class_alias(string user_class_name , string alias_name [, bool autoload])\",\n \"Creates an alias for user defined class\"\n ],\n \"class_exists\": [\n \"bool class_exists(string classname [, bool autoload])\",\n \"Checks if the class exists\"\n ],\n \"class_implements\": [\n \"array class_implements(mixed what [, bool autoload ])\",\n \"Return all classes and interfaces implemented by SPL\"\n ],\n \"class_parents\": [\n \"array class_parents(object instance [, boolean autoload = true])\",\n \"Return an array containing the names of all parent classes\"\n ],\n \"clearstatcache\": [\n \"void clearstatcache([bool clear_realpath_cache[, string filename]])\",\n \"Clear file stat cache\"\n ],\n \"closedir\": [\n \"void closedir([resource dir_handle])\",\n \"Close directory connection identified by the dir_handle\"\n ],\n \"closelog\": [\n \"bool closelog(void)\",\n \"Close connection to system logger\"\n ],\n \"collator_asort\": [\n \"bool collator_asort( Collator $coll, array(string) $arr )\",\n \"* Sort array using specified collator, maintaining index association.\"\n ],\n \"collator_compare\": [\n \"int collator_compare( Collator $coll, string $str1, string $str2 )\",\n \"* Compare two strings.\"\n ],\n \"collator_create\": [\n \"Collator collator_create( string $locale )\",\n \"* Create collator.\"\n ],\n \"collator_get_attribute\": [\n \"int collator_get_attribute( Collator $coll, int $attr )\",\n \"* Get collation attribute value.\"\n ],\n \"collator_get_error_code\": [\n \"int collator_get_error_code( Collator $coll )\",\n \"* Get collator's last error code.\"\n ],\n \"collator_get_error_message\": [\n \"string collator_get_error_message( Collator $coll )\",\n \"* Get text description for collator's last error code.\"\n ],\n \"collator_get_locale\": [\n \"string collator_get_locale( Collator $coll, int $type )\",\n \"* Gets the locale name of the collator.\"\n ],\n \"collator_get_sort_key\": [\n \"bool collator_get_sort_key( Collator $coll, string $str )\",\n \"* Get a sort key for a string from a Collator. }}}\"\n ],\n \"collator_get_strength\": [\n \"int collator_get_strength(Collator coll)\",\n \"* Returns the current collation strength.\"\n ],\n \"collator_set_attribute\": [\n \"bool collator_set_attribute( Collator $coll, int $attr, int $val )\",\n \"* Set collation attribute.\"\n ],\n \"collator_set_strength\": [\n \"bool collator_set_strength(Collator coll, int strength)\",\n \"* Set the collation strength.\"\n ],\n \"collator_sort\": [\n \"bool collator_sort( Collator $coll, array(string) $arr [, int $sort_flags] )\",\n \"* Sort array using specified collator.\"\n ],\n \"collator_sort_with_sort_keys\": [\n \"bool collator_sort_with_sort_keys( Collator $coll, array(string) $arr )\",\n \"* Equivalent to standard PHP sort using Collator. * Uses ICU ucol_getSortKey for performance.\"\n ],\n \"com_create_guid\": [\n \"string com_create_guid()\",\n \"Generate a globally unique identifier (GUID)\"\n ],\n \"com_event_sink\": [\n \"bool com_event_sink(object comobject, object sinkobject [, mixed sinkinterface])\",\n \"Connect events from a COM object to a PHP object\"\n ],\n \"com_get_active_object\": [\n \"object com_get_active_object(string progid [, int code_page ])\",\n \"Returns a handle to an already running instance of a COM object\"\n ],\n \"com_load_typelib\": [\n \"bool com_load_typelib(string typelib_name [, int case_insensitive])\",\n \"Loads a Typelibrary and registers its constants\"\n ],\n \"com_message_pump\": [\n \"bool com_message_pump([int timeoutms])\",\n \"Process COM messages, sleeping for up to timeoutms milliseconds\"\n ],\n \"com_print_typeinfo\": [\n \"bool com_print_typeinfo(object comobject | string typelib, string dispinterface, bool wantsink)\",\n \"Print out a PHP class definition for a dispatchable interface\"\n ],\n \"compact\": [\n \"array compact(mixed var_names [, mixed ...])\",\n \"Creates a hash containing variables and their values\"\n ],\n \"compose_locale\": [\n \"static string compose_locale($array)\",\n \"* Creates a locale by combining the parts of locale-ID passed * }}}\"\n ],\n \"confirm_extname_compiled\": [\n \"string confirm_extname_compiled(string arg)\",\n \"Return a string to confirm that the module is compiled in\"\n ],\n \"connection_aborted\": [\n \"int connection_aborted(void)\",\n \"Returns true if client disconnected\"\n ],\n \"connection_status\": [\n \"int connection_status(void)\",\n \"Returns the connection status bitfield\"\n ],\n \"constant\": [\n \"mixed constant(string const_name)\",\n \"Given the name of a constant this function will return the constant's associated value\"\n ],\n \"convert_cyr_string\": [\n \"string convert_cyr_string(string str, string from, string to)\",\n \"Convert from one Cyrillic character set to another\"\n ],\n \"convert_uudecode\": [\n \"string convert_uudecode(string data)\",\n \"decode a uuencoded string\"\n ],\n \"convert_uuencode\": [\n \"string convert_uuencode(string data)\",\n \"uuencode a string\"\n ],\n \"copy\": [\n \"bool copy(string source_file, string destination_file [, resource context])\",\n \"Copy a file\"\n ],\n \"cos\": [\n \"float cos(float number)\",\n \"Returns the cosine of the number in radians\"\n ],\n \"cosh\": [\n \"float cosh(float number)\",\n \"Returns the hyperbolic cosine of the number, defined as (exp(number) + exp(-number))/2\"\n ],\n \"count\": [\n \"int count(mixed var [, int mode])\",\n \"Count the number of elements in a variable (usually an array)\"\n ],\n \"count_chars\": [\n \"mixed count_chars(string input [, int mode])\",\n \"Returns info about what characters are used in input\"\n ],\n \"crc32\": [\n \"string crc32(string str)\",\n \"Calculate the crc32 polynomial of a string\"\n ],\n \"create_function\": [\n \"string create_function(string args, string code)\",\n \"Creates an anonymous function, and returns its name (funny, eh?)\"\n ],\n \"crypt\": [\n \"string crypt(string str [, string salt])\",\n \"Hash a string\"\n ],\n \"ctype_alnum\": [\n \"bool ctype_alnum(mixed c)\",\n \"Checks for alphanumeric character(s)\"\n ],\n \"ctype_alpha\": [\n \"bool ctype_alpha(mixed c)\",\n \"Checks for alphabetic character(s)\"\n ],\n \"ctype_cntrl\": [\n \"bool ctype_cntrl(mixed c)\",\n \"Checks for control character(s)\"\n ],\n \"ctype_digit\": [\n \"bool ctype_digit(mixed c)\",\n \"Checks for numeric character(s)\"\n ],\n \"ctype_graph\": [\n \"bool ctype_graph(mixed c)\",\n \"Checks for any printable character(s) except space\"\n ],\n \"ctype_lower\": [\n \"bool ctype_lower(mixed c)\",\n \"Checks for lowercase character(s)\"\n ],\n \"ctype_print\": [\n \"bool ctype_print(mixed c)\",\n \"Checks for printable character(s)\"\n ],\n \"ctype_punct\": [\n \"bool ctype_punct(mixed c)\",\n \"Checks for any printable character which is not whitespace or an alphanumeric character\"\n ],\n \"ctype_space\": [\n \"bool ctype_space(mixed c)\",\n \"Checks for whitespace character(s)\"\n ],\n \"ctype_upper\": [\n \"bool ctype_upper(mixed c)\",\n \"Checks for uppercase character(s)\"\n ],\n \"ctype_xdigit\": [\n \"bool ctype_xdigit(mixed c)\",\n \"Checks for character(s) representing a hexadecimal digit\"\n ],\n \"curl_close\": [\n \"void curl_close(resource ch)\",\n \"Close a cURL session\"\n ],\n \"curl_copy_handle\": [\n \"resource curl_copy_handle(resource ch)\",\n \"Copy a cURL handle along with all of it's preferences\"\n ],\n \"curl_errno\": [\n \"int curl_errno(resource ch)\",\n \"Return an integer containing the last error number\"\n ],\n \"curl_error\": [\n \"string curl_error(resource ch)\",\n \"Return a string contain the last error for the current session\"\n ],\n \"curl_exec\": [\n \"bool curl_exec(resource ch)\",\n \"Perform a cURL session\"\n ],\n \"curl_getinfo\": [\n \"mixed curl_getinfo(resource ch [, int option])\",\n \"Get information regarding a specific transfer\"\n ],\n \"curl_init\": [\n \"resource curl_init([string url])\",\n \"Initialize a cURL session\"\n ],\n \"curl_multi_add_handle\": [\n \"int curl_multi_add_handle(resource mh, resource ch)\",\n \"Add a normal cURL handle to a cURL multi handle\"\n ],\n \"curl_multi_close\": [\n \"void curl_multi_close(resource mh)\",\n \"Close a set of cURL handles\"\n ],\n \"curl_multi_exec\": [\n \"int curl_multi_exec(resource mh, int &still_running)\",\n \"Run the sub-connections of the current cURL handle\"\n ],\n \"curl_multi_getcontent\": [\n \"string curl_multi_getcontent(resource ch)\",\n \"Return the content of a cURL handle if CURLOPT_RETURNTRANSFER is set\"\n ],\n \"curl_multi_info_read\": [\n \"array curl_multi_info_read(resource mh [, long msgs_in_queue])\",\n \"Get information about the current transfers\"\n ],\n \"curl_multi_init\": [\n \"resource curl_multi_init(void)\",\n \"Returns a new cURL multi handle\"\n ],\n \"curl_multi_remove_handle\": [\n \"int curl_multi_remove_handle(resource mh, resource ch)\",\n \"Remove a multi handle from a set of cURL handles\"\n ],\n \"curl_multi_select\": [\n \"int curl_multi_select(resource mh[, double timeout])\",\n \"Get all the sockets associated with the cURL extension, which can then be \\\"selected\\\"\"\n ],\n \"curl_setopt\": [\n \"bool curl_setopt(resource ch, int option, mixed value)\",\n \"Set an option for a cURL transfer\"\n ],\n \"curl_setopt_array\": [\n \"bool curl_setopt_array(resource ch, array options)\",\n \"Set an array of option for a cURL transfer\"\n ],\n \"curl_version\": [\n \"array curl_version([int version])\",\n \"Return cURL version information.\"\n ],\n \"current\": [\n \"mixed current(array array_arg)\",\n \"Return the element currently pointed to by the internal array pointer\"\n ],\n \"date\": [\n \"string date(string format [, long timestamp])\",\n \"Format a local date/time\"\n ],\n \"date_add\": [\n \"DateTime date_add(DateTime object, DateInterval interval)\",\n \"Adds an interval to the current date in object.\"\n ],\n \"date_create\": [\n \"DateTime date_create([string time[, DateTimeZone object]])\",\n \"Returns new DateTime object\"\n ],\n \"date_create_from_format\": [\n \"DateTime date_create_from_format(string format, string time[, DateTimeZone object])\",\n \"Returns new DateTime object formatted according to the specified format\"\n ],\n \"date_date_set\": [\n \"DateTime date_date_set(DateTime object, long year, long month, long day)\",\n \"Sets the date.\"\n ],\n \"date_default_timezone_get\": [\n \"string date_default_timezone_get()\",\n \"Gets the default timezone used by all date/time functions in a script\"\n ],\n \"date_default_timezone_set\": [\n \"bool date_default_timezone_set(string timezone_identifier)\",\n \"Sets the default timezone used by all date/time functions in a script\"\n ],\n \"date_diff\": [\n \"DateInterval date_diff(DateTime object [, bool absolute])\",\n \"Returns the difference between two DateTime objects.\"\n ],\n \"date_format\": [\n \"string date_format(DateTime object, string format)\",\n \"Returns date formatted according to given format\"\n ],\n \"date_get_last_errors\": [\n \"array date_get_last_errors()\",\n \"Returns the warnings and errors found while parsing a date/time string.\"\n ],\n \"date_interval_create_from_date_string\": [\n \"DateInterval date_interval_create_from_date_string(string time)\",\n \"Uses the normal date parsers and sets up a DateInterval from the relative parts of the parsed string\"\n ],\n \"date_interval_format\": [\n \"string date_interval_format(DateInterval object, string format)\",\n \"Formats the interval.\"\n ],\n \"date_isodate_set\": [\n \"DateTime date_isodate_set(DateTime object, long year, long week[, long day])\",\n \"Sets the ISO date.\"\n ],\n \"date_modify\": [\n \"DateTime date_modify(DateTime object, string modify)\",\n \"Alters the timestamp.\"\n ],\n \"date_offset_get\": [\n \"long date_offset_get(DateTime object)\",\n \"Returns the DST offset.\"\n ],\n \"date_parse\": [\n \"array date_parse(string date)\",\n \"Returns associative array with detailed info about given date\"\n ],\n \"date_parse_from_format\": [\n \"array date_parse_from_format(string format, string date)\",\n \"Returns associative array with detailed info about given date\"\n ],\n \"date_sub\": [\n \"DateTime date_sub(DateTime object, DateInterval interval)\",\n \"Subtracts an interval to the current date in object.\"\n ],\n \"date_sun_info\": [\n \"array date_sun_info(long time, float latitude, float longitude)\",\n \"Returns an array with information about sun set/rise and twilight begin/end\"\n ],\n \"date_sunrise\": [\n \"mixed date_sunrise(mixed time [, int format [, float latitude [, float longitude [, float zenith [, float gmt_offset]]]]])\",\n \"Returns time of sunrise for a given day and location\"\n ],\n \"date_sunset\": [\n \"mixed date_sunset(mixed time [, int format [, float latitude [, float longitude [, float zenith [, float gmt_offset]]]]])\",\n \"Returns time of sunset for a given day and location\"\n ],\n \"date_time_set\": [\n \"DateTime date_time_set(DateTime object, long hour, long minute[, long second])\",\n \"Sets the time.\"\n ],\n \"date_timestamp_get\": [\n \"long date_timestamp_get(DateTime object)\",\n \"Gets the Unix timestamp.\"\n ],\n \"date_timestamp_set\": [\n \"DateTime date_timestamp_set(DateTime object, long unixTimestamp)\",\n \"Sets the date and time based on an Unix timestamp.\"\n ],\n \"date_timezone_get\": [\n \"DateTimeZone date_timezone_get(DateTime object)\",\n \"Return new DateTimeZone object relative to give DateTime\"\n ],\n \"date_timezone_set\": [\n \"DateTime date_timezone_set(DateTime object, DateTimeZone object)\",\n \"Sets the timezone for the DateTime object.\"\n ],\n \"datefmt_create\": [\n \"IntlDateFormatter datefmt_create(string $locale, long date_type, long time_type[, string $timezone_str, long $calendar, string $pattern] )\",\n \"* Create formatter.\"\n ],\n \"datefmt_format\": [\n \"string datefmt_format( [mixed]int $args or array $args )\",\n \"* Format the time value as a string. }}}\"\n ],\n \"datefmt_get_calendar\": [\n \"string datefmt_get_calendar( IntlDateFormatter $mf )\",\n \"* Get formatter calendar.\"\n ],\n \"datefmt_get_datetype\": [\n \"string datefmt_get_datetype( IntlDateFormatter $mf )\",\n \"* Get formatter datetype.\"\n ],\n \"datefmt_get_error_code\": [\n \"int datefmt_get_error_code( IntlDateFormatter $nf )\",\n \"* Get formatter's last error code.\"\n ],\n \"datefmt_get_error_message\": [\n \"string datefmt_get_error_message( IntlDateFormatter $coll )\",\n \"* Get text description for formatter's last error code.\"\n ],\n \"datefmt_get_locale\": [\n \"string datefmt_get_locale(IntlDateFormatter $mf)\",\n \"* Get formatter locale.\"\n ],\n \"datefmt_get_pattern\": [\n \"string datefmt_get_pattern( IntlDateFormatter $mf )\",\n \"* Get formatter pattern.\"\n ],\n \"datefmt_get_timetype\": [\n \"string datefmt_get_timetype( IntlDateFormatter $mf )\",\n \"* Get formatter timetype.\"\n ],\n \"datefmt_get_timezone_id\": [\n \"string datefmt_get_timezone_id( IntlDateFormatter $mf )\",\n \"* Get formatter timezone_id.\"\n ],\n \"datefmt_isLenient\": [\n \"string datefmt_isLenient(IntlDateFormatter $mf)\",\n \"* Get formatter locale.\"\n ],\n \"datefmt_localtime\": [\n \"integer datefmt_localtime( IntlDateFormatter $fmt, string $text_to_parse[, int $parse_pos ])\",\n \"* Parse the string $value to a localtime array }}}\"\n ],\n \"datefmt_parse\": [\n \"integer datefmt_parse( IntlDateFormatter $fmt, string $text_to_parse [, int $parse_pos] )\",\n \"* Parse the string $value starting at parse_pos to a Unix timestamp -int }}}\"\n ],\n \"datefmt_setLenient\": [\n \"string datefmt_setLenient(IntlDateFormatter $mf)\",\n \"* Set formatter lenient.\"\n ],\n \"datefmt_set_calendar\": [\n \"bool datefmt_set_calendar( IntlDateFormatter $mf, int $calendar )\",\n \"* Set formatter calendar.\"\n ],\n \"datefmt_set_pattern\": [\n \"bool datefmt_set_pattern( IntlDateFormatter $mf, string $pattern )\",\n \"* Set formatter pattern.\"\n ],\n \"datefmt_set_timezone_id\": [\n \"boolean datefmt_set_timezone_id( IntlDateFormatter $mf,$timezone_id)\",\n \"* Set formatter timezone_id.\"\n ],\n \"dba_close\": [\n \"void dba_close(resource handle)\",\n \"Closes database\"\n ],\n \"dba_delete\": [\n \"bool dba_delete(string key, resource handle)\",\n \"Deletes the entry associated with key If inifile: remove all other key lines\"\n ],\n \"dba_exists\": [\n \"bool dba_exists(string key, resource handle)\",\n \"Checks, if the specified key exists\"\n ],\n \"dba_fetch\": [\n \"string dba_fetch(string key, [int skip ,] resource handle)\",\n \"Fetches the data associated with key\"\n ],\n \"dba_firstkey\": [\n \"string dba_firstkey(resource handle)\",\n \"Resets the internal key pointer and returns the first key\"\n ],\n \"dba_handlers\": [\n \"array dba_handlers([bool full_info])\",\n \"List configured database handlers\"\n ],\n \"dba_insert\": [\n \"bool dba_insert(string key, string value, resource handle)\",\n \"If not inifile: Insert value as key, return false, if key exists already If inifile: Add vakue as key (next instance of key)\"\n ],\n \"dba_key_split\": [\n \"array|false dba_key_split(string key)\",\n \"Splits an inifile key into an array of the form array(0=>group,1=>value_name) but returns false if input is false or null\"\n ],\n \"dba_list\": [\n \"array dba_list()\",\n \"List opened databases\"\n ],\n \"dba_nextkey\": [\n \"string dba_nextkey(resource handle)\",\n \"Returns the next key\"\n ],\n \"dba_open\": [\n \"resource dba_open(string path, string mode [, string handlername, string ...])\",\n \"Opens path using the specified handler in mode\"\n ],\n \"dba_optimize\": [\n \"bool dba_optimize(resource handle)\",\n \"Optimizes (e.g. clean up, vacuum) database\"\n ],\n \"dba_popen\": [\n \"resource dba_popen(string path, string mode [, string handlername, string ...])\",\n \"Opens path using the specified handler in mode persistently\"\n ],\n \"dba_replace\": [\n \"bool dba_replace(string key, string value, resource handle)\",\n \"Inserts value as key, replaces key, if key exists already If inifile: remove all other key lines\"\n ],\n \"dba_sync\": [\n \"bool dba_sync(resource handle)\",\n \"Synchronizes database\"\n ],\n \"dcgettext\": [\n \"string dcgettext(string domain_name, string msgid, long category)\",\n \"Return the translation of msgid for domain_name and category, or msgid unaltered if a translation does not exist\"\n ],\n \"dcngettext\": [\n \"string dcngettext (string domain, string msgid1, string msgid2, int n, int category)\",\n \"Plural version of dcgettext()\"\n ],\n \"debug_backtrace\": [\n \"array debug_backtrace([bool provide_object])\",\n \"Return backtrace as array\"\n ],\n \"debug_print_backtrace\": [\n \"void debug_print_backtrace(void) */\",\n \"ZEND_FUNCTION(debug_print_backtrace) { zend_execute_data *ptr, *skip; int lineno; char *function_name; char *filename; char *class_name = NULL; char *call_type; char *include_filename = NULL; zval *arg_array = NULL; int indent = 0; if (zend_parse_parameters_none() == FAILURE) { return; } ptr = EG(current_execute_data);\",\n \"PHP_FUNCTION(dom_document_relaxNG_validate_file) { _dom_document_relaxNG_validate(INTERNAL_FUNCTION_PARAM_PASSTHRU, DOM_LOAD_FILE); } /* }}} end dom_document_relaxNG_validate_file\"\n ],\n \"dom_document_relaxNG_validate_xml\": [\n \"boolean dom_document_relaxNG_validate_xml(string source); */\",\n \"PHP_FUNCTION(dom_document_relaxNG_validate_xml) { _dom_document_relaxNG_validate(INTERNAL_FUNCTION_PARAM_PASSTHRU, DOM_LOAD_STRING); } /* }}} end dom_document_relaxNG_validate_xml\"\n ],\n \"dom_document_rename_node\": [\n \"DOMNode dom_document_rename_node(node n, string namespaceURI, string qualifiedName);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-Document3-renameNode Since: DOM Level 3\"\n ],\n \"dom_document_save\": [\n \"int dom_document_save(string file);\",\n \"Convenience method to save to file\"\n ],\n \"dom_document_save_html\": [\n \"string dom_document_save_html();\",\n \"Convenience method to output as html\"\n ],\n \"dom_document_save_html_file\": [\n \"int dom_document_save_html_file(string file);\",\n \"Convenience method to save to file as html\"\n ],\n \"dom_document_savexml\": [\n \"string dom_document_savexml([node n]);\",\n \"URL: http://www.w3.org/TR/DOM-Level-3-LS/load-save.html#LS-DocumentLS-saveXML Since: DOM Level 3\"\n ],\n \"dom_document_schema_validate\": [\n \"boolean dom_document_schema_validate(string source); */\",\n \"PHP_FUNCTION(dom_document_schema_validate_xml) { _dom_document_schema_validate(INTERNAL_FUNCTION_PARAM_PASSTHRU, DOM_LOAD_STRING); } /* }}} end dom_document_schema_validate\"\n ],\n \"dom_document_schema_validate_file\": [\n \"boolean dom_document_schema_validate_file(string filename); */\",\n \"PHP_FUNCTION(dom_document_schema_validate_file) { _dom_document_schema_validate(INTERNAL_FUNCTION_PARAM_PASSTHRU, DOM_LOAD_FILE); } /* }}} end dom_document_schema_validate_file\"\n ],\n \"dom_document_validate\": [\n \"boolean dom_document_validate();\",\n \"Since: DOM extended\"\n ],\n \"dom_document_xinclude\": [\n \"int dom_document_xinclude([int options])\",\n \"Substitutues xincludes in a DomDocument\"\n ],\n \"dom_domconfiguration_can_set_parameter\": [\n \"boolean dom_domconfiguration_can_set_parameter(string name, domuserdata value);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMConfiguration-canSetParameter Since:\"\n ],\n \"dom_domconfiguration_get_parameter\": [\n \"domdomuserdata dom_domconfiguration_get_parameter(string name);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMConfiguration-getParameter Since:\"\n ],\n \"dom_domconfiguration_set_parameter\": [\n \"dom_void dom_domconfiguration_set_parameter(string name, domuserdata value);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMConfiguration-property Since:\"\n ],\n \"dom_domerrorhandler_handle_error\": [\n \"dom_boolean dom_domerrorhandler_handle_error(domerror error);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-ERRORS-DOMErrorHandler-handleError Since:\"\n ],\n \"dom_domimplementation_create_document\": [\n \"DOMDocument dom_domimplementation_create_document(string namespaceURI, string qualifiedName, DOMDocumentType doctype);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Level-2-Core-DOM-createDocument Since: DOM Level 2\"\n ],\n \"dom_domimplementation_create_document_type\": [\n \"DOMDocumentType dom_domimplementation_create_document_type(string qualifiedName, string publicId, string systemId);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Level-2-Core-DOM-createDocType Since: DOM Level 2\"\n ],\n \"dom_domimplementation_get_feature\": [\n \"DOMNode dom_domimplementation_get_feature(string feature, string version);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMImplementation3-getFeature Since: DOM Level 3\"\n ],\n \"dom_domimplementation_has_feature\": [\n \"boolean dom_domimplementation_has_feature(string feature, string version);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-5CED94D7 Since:\"\n ],\n \"dom_domimplementationlist_item\": [\n \"domdomimplementation dom_domimplementationlist_item(int index);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMImplementationList-item Since:\"\n ],\n \"dom_domimplementationsource_get_domimplementation\": [\n \"domdomimplementation dom_domimplementationsource_get_domimplementation(string features);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-getDOMImpl Since:\"\n ],\n \"dom_domimplementationsource_get_domimplementations\": [\n \"domimplementationlist dom_domimplementationsource_get_domimplementations(string features);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-getDOMImpls Since:\"\n ],\n \"dom_domstringlist_item\": [\n \"domstring dom_domstringlist_item(int index);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMStringList-item Since:\"\n ],\n \"dom_element_get_attribute\": [\n \"string dom_element_get_attribute(string name);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-666EE0F9 Since:\"\n ],\n \"dom_element_get_attribute_node\": [\n \"DOMAttr dom_element_get_attribute_node(string name);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-217A91B8 Since:\"\n ],\n \"dom_element_get_attribute_node_ns\": [\n \"DOMAttr dom_element_get_attribute_node_ns(string namespaceURI, string localName);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-ElGetAtNodeNS Since: DOM Level 2\"\n ],\n \"dom_element_get_attribute_ns\": [\n \"string dom_element_get_attribute_ns(string namespaceURI, string localName);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-ElGetAttrNS Since: DOM Level 2\"\n ],\n \"dom_element_get_elements_by_tag_name\": [\n \"DOMNodeList dom_element_get_elements_by_tag_name(string name);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-1938918D Since:\"\n ],\n \"dom_element_get_elements_by_tag_name_ns\": [\n \"DOMNodeList dom_element_get_elements_by_tag_name_ns(string namespaceURI, string localName);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-A6C90942 Since: DOM Level 2\"\n ],\n \"dom_element_has_attribute\": [\n \"boolean dom_element_has_attribute(string name);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-ElHasAttr Since: DOM Level 2\"\n ],\n \"dom_element_has_attribute_ns\": [\n \"boolean dom_element_has_attribute_ns(string namespaceURI, string localName);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-ElHasAttrNS Since: DOM Level 2\"\n ],\n \"dom_element_remove_attribute\": [\n \"void dom_element_remove_attribute(string name);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-6D6AC0F9 Since:\"\n ],\n \"dom_element_remove_attribute_node\": [\n \"DOMAttr dom_element_remove_attribute_node(DOMAttr oldAttr);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-D589198 Since:\"\n ],\n \"dom_element_remove_attribute_ns\": [\n \"void dom_element_remove_attribute_ns(string namespaceURI, string localName);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-ElRemAtNS Since: DOM Level 2\"\n ],\n \"dom_element_set_attribute\": [\n \"void dom_element_set_attribute(string name, string value);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-F68F082 Since:\"\n ],\n \"dom_element_set_attribute_node\": [\n \"DOMAttr dom_element_set_attribute_node(DOMAttr newAttr);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-887236154 Since:\"\n ],\n \"dom_element_set_attribute_node_ns\": [\n \"DOMAttr dom_element_set_attribute_node_ns(DOMAttr newAttr);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-ElSetAtNodeNS Since: DOM Level 2\"\n ],\n \"dom_element_set_attribute_ns\": [\n \"void dom_element_set_attribute_ns(string namespaceURI, string qualifiedName, string value);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-ElSetAttrNS Since: DOM Level 2\"\n ],\n \"dom_element_set_id_attribute\": [\n \"void dom_element_set_id_attribute(string name, boolean isId);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-ElSetIdAttr Since: DOM Level 3\"\n ],\n \"dom_element_set_id_attribute_node\": [\n \"void dom_element_set_id_attribute_node(attr idAttr, boolean isId);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-ElSetIdAttrNode Since: DOM Level 3\"\n ],\n \"dom_element_set_id_attribute_ns\": [\n \"void dom_element_set_id_attribute_ns(string namespaceURI, string localName, boolean isId);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-ElSetIdAttrNS Since: DOM Level 3\"\n ],\n \"dom_import_simplexml\": [\n \"somNode dom_import_simplexml(sxeobject node)\",\n \"Get a simplexml_element object from dom to allow for processing\"\n ],\n \"dom_namednodemap_get_named_item\": [\n \"DOMNode dom_namednodemap_get_named_item(string name);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-1074577549 Since:\"\n ],\n \"dom_namednodemap_get_named_item_ns\": [\n \"DOMNode dom_namednodemap_get_named_item_ns(string namespaceURI, string localName);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-getNamedItemNS Since: DOM Level 2\"\n ],\n \"dom_namednodemap_item\": [\n \"DOMNode dom_namednodemap_item(int index);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-349467F9 Since:\"\n ],\n \"dom_namednodemap_remove_named_item\": [\n \"DOMNode dom_namednodemap_remove_named_item(string name);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-D58B193 Since:\"\n ],\n \"dom_namednodemap_remove_named_item_ns\": [\n \"DOMNode dom_namednodemap_remove_named_item_ns(string namespaceURI, string localName);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-removeNamedItemNS Since: DOM Level 2\"\n ],\n \"dom_namednodemap_set_named_item\": [\n \"DOMNode dom_namednodemap_set_named_item(DOMNode arg);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-1025163788 Since:\"\n ],\n \"dom_namednodemap_set_named_item_ns\": [\n \"DOMNode dom_namednodemap_set_named_item_ns(DOMNode arg);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-setNamedItemNS Since: DOM Level 2\"\n ],\n \"dom_namelist_get_name\": [\n \"string dom_namelist_get_name(int index);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#NameList-getName Since:\"\n ],\n \"dom_namelist_get_namespace_uri\": [\n \"string dom_namelist_get_namespace_uri(int index);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#NameList-getNamespaceURI Since:\"\n ],\n \"dom_node_append_child\": [\n \"DomNode dom_node_append_child(DomNode newChild);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-184E7107 Since:\"\n ],\n \"dom_node_clone_node\": [\n \"DomNode dom_node_clone_node(boolean deep);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-3A0ED0A4 Since:\"\n ],\n \"dom_node_compare_document_position\": [\n \"short dom_node_compare_document_position(DomNode other);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Node3-compareDocumentPosition Since: DOM Level 3\"\n ],\n \"dom_node_get_feature\": [\n \"DomNode dom_node_get_feature(string feature, string version);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Node3-getFeature Since: DOM Level 3\"\n ],\n \"dom_node_get_user_data\": [\n \"mixed dom_node_get_user_data(string key);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Node3-getUserData Since: DOM Level 3\"\n ],\n \"dom_node_has_attributes\": [\n \"boolean dom_node_has_attributes();\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-NodeHasAttrs Since: DOM Level 2\"\n ],\n \"dom_node_has_child_nodes\": [\n \"boolean dom_node_has_child_nodes();\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-810594187 Since:\"\n ],\n \"dom_node_insert_before\": [\n \"domnode dom_node_insert_before(DomNode newChild, DomNode refChild);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-952280727 Since:\"\n ],\n \"dom_node_is_default_namespace\": [\n \"boolean dom_node_is_default_namespace(string namespaceURI);\",\n \"URL: http://www.w3.org/TR/DOM-Level-3-Core/core.html#Node3-isDefaultNamespace Since: DOM Level 3\"\n ],\n \"dom_node_is_equal_node\": [\n \"boolean dom_node_is_equal_node(DomNode arg);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Node3-isEqualNode Since: DOM Level 3\"\n ],\n \"dom_node_is_same_node\": [\n \"boolean dom_node_is_same_node(DomNode other);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Node3-isSameNode Since: DOM Level 3\"\n ],\n \"dom_node_is_supported\": [\n \"boolean dom_node_is_supported(string feature, string version);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-Level-2-Core-Node-supports Since: DOM Level 2\"\n ],\n \"dom_node_lookup_namespace_uri\": [\n \"string dom_node_lookup_namespace_uri(string prefix);\",\n \"URL: http://www.w3.org/TR/DOM-Level-3-Core/core.html#Node3-lookupNamespaceURI Since: DOM Level 3\"\n ],\n \"dom_node_lookup_prefix\": [\n \"string dom_node_lookup_prefix(string namespaceURI);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Node3-lookupNamespacePrefix Since: DOM Level 3\"\n ],\n \"dom_node_normalize\": [\n \"void dom_node_normalize();\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-normalize Since:\"\n ],\n \"dom_node_remove_child\": [\n \"DomNode dom_node_remove_child(DomNode oldChild);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-1734834066 Since:\"\n ],\n \"dom_node_replace_child\": [\n \"DomNode dom_node_replace_child(DomNode newChild, DomNode oldChild);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-785887307 Since:\"\n ],\n \"dom_node_set_user_data\": [\n \"mixed dom_node_set_user_data(string key, mixed data, userdatahandler handler);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Node3-setUserData Since: DOM Level 3\"\n ],\n \"dom_nodelist_item\": [\n \"DOMNode dom_nodelist_item(int index);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-844377136 Since:\"\n ],\n \"dom_string_extend_find_offset16\": [\n \"int dom_string_extend_find_offset16(int offset32);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#i18n-methods-StringExtend-findOffset16 Since:\"\n ],\n \"dom_string_extend_find_offset32\": [\n \"int dom_string_extend_find_offset32(int offset16);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#i18n-methods-StringExtend-findOffset32 Since:\"\n ],\n \"dom_text_is_whitespace_in_element_content\": [\n \"boolean dom_text_is_whitespace_in_element_content();\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-Text3-isWhitespaceInElementContent Since: DOM Level 3\"\n ],\n \"dom_text_replace_whole_text\": [\n \"DOMText dom_text_replace_whole_text(string content);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-Text3-replaceWholeText Since: DOM Level 3\"\n ],\n \"dom_text_split_text\": [\n \"DOMText dom_text_split_text(int offset);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-38853C1D Since:\"\n ],\n \"dom_userdatahandler_handle\": [\n \"dom_void dom_userdatahandler_handle(short operation, string key, domobject data, node src, node dst);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-handleUserDataEvent Since:\"\n ],\n \"dom_xpath_evaluate\": [\n \"mixed dom_xpath_evaluate(string expr [,DOMNode context]); */\",\n \"PHP_FUNCTION(dom_xpath_evaluate) { php_xpath_eval(INTERNAL_FUNCTION_PARAM_PASSTHRU, PHP_DOM_XPATH_EVALUATE); } /* }}} end dom_xpath_evaluate\"\n ],\n \"dom_xpath_query\": [\n \"DOMNodeList dom_xpath_query(string expr [,DOMNode context]); */\",\n \"PHP_FUNCTION(dom_xpath_query) { php_xpath_eval(INTERNAL_FUNCTION_PARAM_PASSTHRU, PHP_DOM_XPATH_QUERY); } /* }}} end dom_xpath_query\"\n ],\n \"dom_xpath_register_ns\": [\n \"boolean dom_xpath_register_ns(string prefix, string uri); */\",\n \"PHP_FUNCTION(dom_xpath_register_ns) { zval *id; xmlXPathContextPtr ctxp; int prefix_len, ns_uri_len; dom_xpath_object *intern; unsigned char *prefix, *ns_uri; if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), \\\"Oss\\\", &id, dom_xpath_class_entry, &prefix, &prefix_len, &ns_uri, &ns_uri_len) == FAILURE) { return; } intern = (dom_xpath_object *)zend_object_store_get_object(id TSRMLS_CC); ctxp = (xmlXPathContextPtr) intern->ptr; if (ctxp == NULL) { php_error_docref(NULL TSRMLS_CC, E_WARNING, \\\"Invalid XPath Context\\\"); RETURN_FALSE; } if (xmlXPathRegisterNs(ctxp, prefix, ns_uri) != 0) { RETURN_FALSE } RETURN_TRUE; } /* }}}\"\n ],\n \"dom_xpath_register_php_functions\": [\n \"void dom_xpath_register_php_functions() */\",\n \"PHP_FUNCTION(dom_xpath_register_php_functions) { zval *id; dom_xpath_object *intern; zval *array_value, **entry, *new_string; int name_len = 0; char *name; DOM_GET_THIS(id); if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS() TSRMLS_CC, \\\"a\\\", &array_value) == SUCCESS) { intern = (dom_xpath_object *)zend_object_store_get_object(id TSRMLS_CC); zend_hash_internal_pointer_reset(Z_ARRVAL_P(array_value)); while (zend_hash_get_current_data(Z_ARRVAL_P(array_value), (void **)&entry) == SUCCESS) { SEPARATE_ZVAL(entry); convert_to_string_ex(entry); MAKE_STD_ZVAL(new_string); ZVAL_LONG(new_string,1); zend_hash_update(intern->registered_phpfunctions, Z_STRVAL_PP(entry), Z_STRLEN_PP(entry) + 1, &new_string, sizeof(zval*), NULL); zend_hash_move_forward(Z_ARRVAL_P(array_value)); } intern->registerPhpFunctions = 2; RETURN_TRUE; } else if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS() TSRMLS_CC, \\\"s\\\", &name, &name_len) == SUCCESS) { intern = (dom_xpath_object *)zend_object_store_get_object(id TSRMLS_CC); MAKE_STD_ZVAL(new_string); ZVAL_LONG(new_string,1); zend_hash_update(intern->registered_phpfunctions, name, name_len + 1, &new_string, sizeof(zval*), NULL); intern->registerPhpFunctions = 2; } else { intern = (dom_xpath_object *)zend_object_store_get_object(id TSRMLS_CC); intern->registerPhpFunctions = 1; } } /* }}} end dom_xpath_register_php_functions\"\n ],\n \"each\": [\n \"array each(array arr)\",\n \"Return the currently pointed key..value pair in the passed array, and advance the pointer to the next element\"\n ],\n \"easter_date\": [\n \"int easter_date([int year])\",\n \"Return the timestamp of midnight on Easter of a given year (defaults to current year)\"\n ],\n \"easter_days\": [\n \"int easter_days([int year, [int method]])\",\n \"Return the number of days after March 21 that Easter falls on for a given year (defaults to current year)\"\n ],\n \"echo\": [\n \"void echo(string arg1 [, string ...])\",\n \"Output one or more strings\"\n ],\n \"empty\": [\n \"bool empty( mixed var )\",\n \"Determine whether a variable is empty\"\n ],\n \"enchant_broker_describe\": [\n \"array enchant_broker_describe(resource broker)\",\n \"Enumerates the Enchant providers and tells you some rudimentary information about them. The same info is provided through phpinfo()\"\n ],\n \"enchant_broker_dict_exists\": [\n \"bool enchant_broker_dict_exists(resource broker, string tag)\",\n \"Whether a dictionary exists or not. Using non-empty tag\"\n ],\n \"enchant_broker_free\": [\n \"boolean enchant_broker_free(resource broker)\",\n \"Destroys the broker object and its dictionnaries\"\n ],\n \"enchant_broker_free_dict\": [\n \"resource enchant_broker_free_dict(resource dict)\",\n \"Free the dictionary resource\"\n ],\n \"enchant_broker_get_dict_path\": [\n \"string enchant_broker_get_dict_path(resource broker, int dict_type)\",\n \"Get the directory path for a given backend, works with ispell and myspell\"\n ],\n \"enchant_broker_get_error\": [\n \"string enchant_broker_get_error(resource broker)\",\n \"Returns the last error of the broker\"\n ],\n \"enchant_broker_init\": [\n \"resource enchant_broker_init()\",\n \"create a new broker object capable of requesting\"\n ],\n \"enchant_broker_list_dicts\": [\n \"string enchant_broker_list_dicts(resource broker)\",\n \"Lists the dictionaries available for the given broker\"\n ],\n \"enchant_broker_request_dict\": [\n \"resource enchant_broker_request_dict(resource broker, string tag)\",\n \"create a new dictionary using tag, the non-empty language tag you wish to request a dictionary for (\\\"en_US\\\", \\\"de_DE\\\", ...)\"\n ],\n \"enchant_broker_request_pwl_dict\": [\n \"resource enchant_broker_request_pwl_dict(resource broker, string filename)\",\n \"creates a dictionary using a PWL file. A PWL file is personal word file one word per line. It must exist before the call.\"\n ],\n \"enchant_broker_set_dict_path\": [\n \"bool enchant_broker_set_dict_path(resource broker, int dict_type, string value)\",\n \"Set the directory path for a given backend, works with ispell and myspell\"\n ],\n \"enchant_broker_set_ordering\": [\n \"bool enchant_broker_set_ordering(resource broker, string tag, string ordering)\",\n \"Declares a preference of dictionaries to use for the language described/referred to by 'tag'. The ordering is a comma delimited list of provider names. As a special exception, the \\\"*\\\" tag can be used as a language tag to declare a default ordering for any language that does not explictly declare an ordering.\"\n ],\n \"enchant_dict_add_to_personal\": [\n \"void enchant_dict_add_to_personal(resource dict, string word)\",\n \"add 'word' to personal word list\"\n ],\n \"enchant_dict_add_to_session\": [\n \"void enchant_dict_add_to_session(resource dict, string word)\",\n \"add 'word' to this spell-checking session\"\n ],\n \"enchant_dict_check\": [\n \"bool enchant_dict_check(resource dict, string word)\",\n \"If the word is correctly spelled return true, otherwise return false\"\n ],\n \"enchant_dict_describe\": [\n \"array enchant_dict_describe(resource dict)\",\n \"Describes an individual dictionary 'dict'\"\n ],\n \"enchant_dict_get_error\": [\n \"string enchant_dict_get_error(resource dict)\",\n \"Returns the last error of the current spelling-session\"\n ],\n \"enchant_dict_is_in_session\": [\n \"bool enchant_dict_is_in_session(resource dict, string word)\",\n \"whether or not 'word' exists in this spelling-session\"\n ],\n \"enchant_dict_quick_check\": [\n \"bool enchant_dict_quick_check(resource dict, string word [, array &suggestions])\",\n \"If the word is correctly spelled return true, otherwise return false, if suggestions variable is provided, fill it with spelling alternatives.\"\n ],\n \"enchant_dict_store_replacement\": [\n \"void enchant_dict_store_replacement(resource dict, string mis, string cor)\",\n \"add a correction for 'mis' using 'cor'. Notes that you replaced @mis with @cor, so it's possibly more likely that future occurrences of @mis will be replaced with @cor. So it might bump @cor up in the suggestion list.\"\n ],\n \"enchant_dict_suggest\": [\n \"array enchant_dict_suggest(resource dict, string word)\",\n \"Will return a list of values if any of those pre-conditions are not met.\"\n ],\n \"end\": [\n \"mixed end(array array_arg)\",\n \"Advances array argument's internal pointer to the last element and return it\"\n ],\n \"ereg\": [\n \"int ereg(string pattern, string string [, array registers])\",\n \"Regular expression match\"\n ],\n \"ereg_replace\": [\n \"string ereg_replace(string pattern, string replacement, string string)\",\n \"Replace regular expression\"\n ],\n \"eregi\": [\n \"int eregi(string pattern, string string [, array registers])\",\n \"Case-insensitive regular expression match\"\n ],\n \"eregi_replace\": [\n \"string eregi_replace(string pattern, string replacement, string string)\",\n \"Case insensitive replace regular expression\"\n ],\n \"error_get_last\": [\n \"array error_get_last()\",\n \"Get the last occurred error as associative array. Returns NULL if there hasn't been an error yet.\"\n ],\n \"error_log\": [\n \"bool error_log(string message [, int message_type [, string destination [, string extra_headers]]])\",\n \"Send an error message somewhere\"\n ],\n \"error_reporting\": [\n \"int error_reporting([int new_error_level])\",\n \"Return the current error_reporting level, and if an argument was passed - change to the new level\"\n ],\n \"escapeshellarg\": [\n \"string escapeshellarg(string arg)\",\n \"Quote and escape an argument for use in a shell command\"\n ],\n \"escapeshellcmd\": [\n \"string escapeshellcmd(string command)\",\n \"Escape shell metacharacters\"\n ],\n \"exec\": [\n \"string exec(string command [, array &output [, int &return_value]])\",\n \"Execute an external program\"\n ],\n \"exif_imagetype\": [\n \"int exif_imagetype(string imagefile)\",\n \"Get the type of an image\"\n ],\n \"exif_read_data\": [\n \"array exif_read_data(string filename [, sections_needed [, sub_arrays[, read_thumbnail]]])\",\n \"Reads header data from the JPEG/TIFF image filename and optionally reads the internal thumbnails\"\n ],\n \"exif_tagname\": [\n \"string exif_tagname(index)\",\n \"Get headername for index or false if not defined\"\n ],\n \"exif_thumbnail\": [\n \"string exif_thumbnail(string filename [, &width, &height [, &imagetype]])\",\n \"Reads the embedded thumbnail\"\n ],\n \"exit\": [\n \"void exit([mixed status])\",\n \"Output a message and terminate the current script\"\n ],\n \"exp\": [\n \"float exp(float number)\",\n \"Returns e raised to the power of the number\"\n ],\n \"explode\": [\n \"array explode(string separator, string str [, int limit])\",\n \"Splits a string on string separator and return array of components. If limit is positive only limit number of components is returned. If limit is negative all components except the last abs(limit) are returned.\"\n ],\n \"expm1\": [\n \"float expm1(float number)\",\n \"Returns exp(number) - 1, computed in a way that accurate even when the value of number is close to zero\"\n ],\n \"extension_loaded\": [\n \"bool extension_loaded(string extension_name)\",\n \"Returns true if the named extension is loaded\"\n ],\n \"extract\": [\n \"int extract(array var_array [, int extract_type [, string prefix]])\",\n \"Imports variables into symbol table from an array\"\n ],\n \"ezmlm_hash\": [\n \"int ezmlm_hash(string addr)\",\n \"Calculate EZMLM list hash value.\"\n ],\n \"fclose\": [\n \"bool fclose(resource fp)\",\n \"Close an open file pointer\"\n ],\n \"feof\": [\n \"bool feof(resource fp)\",\n \"Test for end-of-file on a file pointer\"\n ],\n \"fflush\": [\n \"bool fflush(resource fp)\",\n \"Flushes output\"\n ],\n \"fgetc\": [\n \"string fgetc(resource fp)\",\n \"Get a character from file pointer\"\n ],\n \"fgetcsv\": [\n \"array fgetcsv(resource fp [,int length [, string delimiter [, string enclosure [, string escape]]]])\",\n \"Get line from file pointer and parse for CSV fields\"\n ],\n \"fgets\": [\n \"string fgets(resource fp[, int length])\",\n \"Get a line from file pointer\"\n ],\n \"fgetss\": [\n \"string fgetss(resource fp [, int length [, string allowable_tags]])\",\n \"Get a line from file pointer and strip HTML tags\"\n ],\n \"file\": [\n \"array file(string filename [, int flags[, resource context]])\",\n \"Read entire file into an array\"\n ],\n \"file_exists\": [\n \"bool file_exists(string filename)\",\n \"Returns true if filename exists\"\n ],\n \"file_get_contents\": [\n \"string file_get_contents(string filename [, bool use_include_path [, resource context [, long offset [, long maxlen]]]])\",\n \"Read the entire file into a string\"\n ],\n \"file_put_contents\": [\n \"int file_put_contents(string file, mixed data [, int flags [, resource context]])\",\n \"Write/Create a file with contents data and return the number of bytes written\"\n ],\n \"fileatime\": [\n \"int fileatime(string filename)\",\n \"Get last access time of file\"\n ],\n \"filectime\": [\n \"int filectime(string filename)\",\n \"Get inode modification time of file\"\n ],\n \"filegroup\": [\n \"int filegroup(string filename)\",\n \"Get file group\"\n ],\n \"fileinode\": [\n \"int fileinode(string filename)\",\n \"Get file inode\"\n ],\n \"filemtime\": [\n \"int filemtime(string filename)\",\n \"Get last modification time of file\"\n ],\n \"fileowner\": [\n \"int fileowner(string filename)\",\n \"Get file owner\"\n ],\n \"fileperms\": [\n \"int fileperms(string filename)\",\n \"Get file permissions\"\n ],\n \"filesize\": [\n \"int filesize(string filename)\",\n \"Get file size\"\n ],\n \"filetype\": [\n \"string filetype(string filename)\",\n \"Get file type\"\n ],\n \"filter_has_var\": [\n \"mixed filter_has_var(constant type, string variable_name)\",\n \"* Returns true if the variable with the name 'name' exists in source.\"\n ],\n \"filter_input\": [\n \"mixed filter_input(constant type, string variable_name [, long filter [, mixed options]])\",\n \"* Returns the filtered variable 'name'* from source `type`.\"\n ],\n \"filter_input_array\": [\n \"mixed filter_input_array(constant type, [, mixed options]])\",\n \"* Returns an array with all arguments defined in 'definition'.\"\n ],\n \"filter_var\": [\n \"mixed filter_var(mixed variable [, long filter [, mixed options]])\",\n \"* Returns the filtered version of the vriable.\"\n ],\n \"filter_var_array\": [\n \"mixed filter_var_array(array data, [, mixed options]])\",\n \"* Returns an array with all arguments defined in 'definition'.\"\n ],\n \"finfo_buffer\": [\n \"string finfo_buffer(resource finfo, char *string [, int options [, resource context]])\",\n \"Return infromation about a string buffer.\"\n ],\n \"finfo_close\": [\n \"resource finfo_close(resource finfo)\",\n \"Close fileinfo resource.\"\n ],\n \"finfo_file\": [\n \"string finfo_file(resource finfo, char *file_name [, int options [, resource context]])\",\n \"Return information about a file.\"\n ],\n \"finfo_open\": [\n \"resource finfo_open([int options [, string arg]])\",\n \"Create a new fileinfo resource.\"\n ],\n \"finfo_set_flags\": [\n \"bool finfo_set_flags(resource finfo, int options)\",\n \"Set libmagic configuration options.\"\n ],\n \"floatval\": [\n \"float floatval(mixed var)\",\n \"Get the float value of a variable\"\n ],\n \"flock\": [\n \"bool flock(resource fp, int operation [, int &wouldblock])\",\n \"Portable file locking\"\n ],\n \"floor\": [\n \"float floor(float number)\",\n \"Returns the next lowest integer value from the number\"\n ],\n \"flush\": [\n \"void flush(void)\",\n \"Flush the output buffer\"\n ],\n \"fmod\": [\n \"float fmod(float x, float y)\",\n \"Returns the remainder of dividing x by y as a float\"\n ],\n \"fnmatch\": [\n \"bool fnmatch(string pattern, string filename [, int flags])\",\n \"Match filename against pattern\"\n ],\n \"fopen\": [\n \"resource fopen(string filename, string mode [, bool use_include_path [, resource context]])\",\n \"Open a file or a URL and return a file pointer\"\n ],\n \"forward_static_call\": [\n \"mixed forward_static_call(mixed function_name [, mixed parmeter] [, mixed ...])\",\n \"Call a user function which is the first parameter\"\n ],\n \"fpassthru\": [\n \"int fpassthru(resource fp)\",\n \"Output all remaining data from a file pointer\"\n ],\n \"fprintf\": [\n \"int fprintf(resource stream, string format [, mixed arg1 [, mixed ...]])\",\n \"Output a formatted string into a stream\"\n ],\n \"fputcsv\": [\n \"int fputcsv(resource fp, array fields [, string delimiter [, string enclosure]])\",\n \"Format line as CSV and write to file pointer\"\n ],\n \"fread\": [\n \"string fread(resource fp, int length)\",\n \"Binary-safe file read\"\n ],\n \"frenchtojd\": [\n \"int frenchtojd(int month, int day, int year)\",\n \"Converts a french republic calendar date to julian day count\"\n ],\n \"fscanf\": [\n \"mixed fscanf(resource stream, string format [, string ...])\",\n \"Implements a mostly ANSI compatible fscanf()\"\n ],\n \"fseek\": [\n \"int fseek(resource fp, int offset [, int whence])\",\n \"Seek on a file pointer\"\n ],\n \"fsockopen\": [\n \"resource fsockopen(string hostname, int port [, int errno [, string errstr [, float timeout]]])\",\n \"Open Internet or Unix domain socket connection\"\n ],\n \"fstat\": [\n \"array fstat(resource fp)\",\n \"Stat() on a filehandle\"\n ],\n \"ftell\": [\n \"int ftell(resource fp)\",\n \"Get file pointer's read/write position\"\n ],\n \"ftok\": [\n \"int ftok(string pathname, string proj)\",\n \"Convert a pathname and a project identifier to a System V IPC key\"\n ],\n \"ftp_alloc\": [\n \"bool ftp_alloc(resource stream, int size[, &response])\",\n \"Attempt to allocate space on the remote FTP server\"\n ],\n \"ftp_cdup\": [\n \"bool ftp_cdup(resource stream)\",\n \"Changes to the parent directory\"\n ],\n \"ftp_chdir\": [\n \"bool ftp_chdir(resource stream, string directory)\",\n \"Changes directories\"\n ],\n \"ftp_chmod\": [\n \"int ftp_chmod(resource stream, int mode, string filename)\",\n \"Sets permissions on a file\"\n ],\n \"ftp_close\": [\n \"bool ftp_close(resource stream)\",\n \"Closes the FTP stream\"\n ],\n \"ftp_connect\": [\n \"resource ftp_connect(string host [, int port [, int timeout]])\",\n \"Opens a FTP stream\"\n ],\n \"ftp_delete\": [\n \"bool ftp_delete(resource stream, string file)\",\n \"Deletes a file\"\n ],\n \"ftp_exec\": [\n \"bool ftp_exec(resource stream, string command)\",\n \"Requests execution of a program on the FTP server\"\n ],\n \"ftp_fget\": [\n \"bool ftp_fget(resource stream, resource fp, string remote_file, int mode[, int resumepos])\",\n \"Retrieves a file from the FTP server and writes it to an open file\"\n ],\n \"ftp_fput\": [\n \"bool ftp_fput(resource stream, string remote_file, resource fp, int mode[, int startpos])\",\n \"Stores a file from an open file to the FTP server\"\n ],\n \"ftp_get\": [\n \"bool ftp_get(resource stream, string local_file, string remote_file, int mode[, int resume_pos])\",\n \"Retrieves a file from the FTP server and writes it to a local file\"\n ],\n \"ftp_get_option\": [\n \"mixed ftp_get_option(resource stream, int option)\",\n \"Gets an FTP option\"\n ],\n \"ftp_login\": [\n \"bool ftp_login(resource stream, string username, string password)\",\n \"Logs into the FTP server\"\n ],\n \"ftp_mdtm\": [\n \"int ftp_mdtm(resource stream, string filename)\",\n \"Returns the last modification time of the file, or -1 on error\"\n ],\n \"ftp_mkdir\": [\n \"string ftp_mkdir(resource stream, string directory)\",\n \"Creates a directory and returns the absolute path for the new directory or false on error\"\n ],\n \"ftp_nb_continue\": [\n \"int ftp_nb_continue(resource stream)\",\n \"Continues retrieving/sending a file nbronously\"\n ],\n \"ftp_nb_fget\": [\n \"int ftp_nb_fget(resource stream, resource fp, string remote_file, int mode[, int resumepos])\",\n \"Retrieves a file from the FTP server asynchronly and writes it to an open file\"\n ],\n \"ftp_nb_fput\": [\n \"int ftp_nb_fput(resource stream, string remote_file, resource fp, int mode[, int startpos])\",\n \"Stores a file from an open file to the FTP server nbronly\"\n ],\n \"ftp_nb_get\": [\n \"int ftp_nb_get(resource stream, string local_file, string remote_file, int mode[, int resume_pos])\",\n \"Retrieves a file from the FTP server nbhronly and writes it to a local file\"\n ],\n \"ftp_nb_put\": [\n \"int ftp_nb_put(resource stream, string remote_file, string local_file, int mode[, int startpos])\",\n \"Stores a file on the FTP server\"\n ],\n \"ftp_nlist\": [\n \"array ftp_nlist(resource stream, string directory)\",\n \"Returns an array of filenames in the given directory\"\n ],\n \"ftp_pasv\": [\n \"bool ftp_pasv(resource stream, bool pasv)\",\n \"Turns passive mode on or off\"\n ],\n \"ftp_put\": [\n \"bool ftp_put(resource stream, string remote_file, string local_file, int mode[, int startpos])\",\n \"Stores a file on the FTP server\"\n ],\n \"ftp_pwd\": [\n \"string ftp_pwd(resource stream)\",\n \"Returns the present working directory\"\n ],\n \"ftp_raw\": [\n \"array ftp_raw(resource stream, string command)\",\n \"Sends a literal command to the FTP server\"\n ],\n \"ftp_rawlist\": [\n \"array ftp_rawlist(resource stream, string directory [, bool recursive])\",\n \"Returns a detailed listing of a directory as an array of output lines\"\n ],\n \"ftp_rename\": [\n \"bool ftp_rename(resource stream, string src, string dest)\",\n \"Renames the given file to a new path\"\n ],\n \"ftp_rmdir\": [\n \"bool ftp_rmdir(resource stream, string directory)\",\n \"Removes a directory\"\n ],\n \"ftp_set_option\": [\n \"bool ftp_set_option(resource stream, int option, mixed value)\",\n \"Sets an FTP option\"\n ],\n \"ftp_site\": [\n \"bool ftp_site(resource stream, string cmd)\",\n \"Sends a SITE command to the server\"\n ],\n \"ftp_size\": [\n \"int ftp_size(resource stream, string filename)\",\n \"Returns the size of the file, or -1 on error\"\n ],\n \"ftp_ssl_connect\": [\n \"resource ftp_ssl_connect(string host [, int port [, int timeout]])\",\n \"Opens a FTP-SSL stream\"\n ],\n \"ftp_systype\": [\n \"string ftp_systype(resource stream)\",\n \"Returns the system type identifier\"\n ],\n \"ftruncate\": [\n \"bool ftruncate(resource fp, int size)\",\n \"Truncate file to 'size' length\"\n ],\n \"func_get_arg\": [\n \"mixed func_get_arg(int arg_num)\",\n \"Get the $arg_num'th argument that was passed to the function\"\n ],\n \"func_get_args\": [\n \"array func_get_args()\",\n \"Get an array of the arguments that were passed to the function\"\n ],\n \"func_num_args\": [\n \"int func_num_args(void)\",\n \"Get the number of arguments that were passed to the function\"\n ],\n \"function \": [\"\", \"\"],\n \"foreach \": [\"\", \"\"],\n \"function_exists\": [\n \"bool function_exists(string function_name)\",\n \"Checks if the function exists\"\n ],\n \"fwrite\": [\n \"int fwrite(resource fp, string str [, int length])\",\n \"Binary-safe file write\"\n ],\n \"gc_collect_cycles\": [\n \"int gc_collect_cycles(void)\",\n \"Forces collection of any existing garbage cycles. Returns number of freed zvals\"\n ],\n \"gc_disable\": [\n \"void gc_disable(void)\",\n \"Deactivates the circular reference collector\"\n ],\n \"gc_enable\": [\n \"void gc_enable(void)\",\n \"Activates the circular reference collector\"\n ],\n \"gc_enabled\": [\n \"void gc_enabled(void)\",\n \"Returns status of the circular reference collector\"\n ],\n \"gd_info\": [\n \"array gd_info()\",\n \"\"\n ],\n \"getKeywords\": [\n \"static array getKeywords(string $locale) {\",\n \"* return an associative array containing keyword-value * pairs for this locale. The keys are keys to the array (doh!) * }}}\"\n ],\n \"get_browser\": [\n \"mixed get_browser([string browser_name [, bool return_array]])\",\n \"Get information about the capabilities of a browser. If browser_name is omitted or null, HTTP_USER_AGENT is used. Returns an object by default; if return_array is true, returns an array.\"\n ],\n \"get_called_class\": [\n \"string get_called_class()\",\n \"Retrieves the \\\"Late Static Binding\\\" class name\"\n ],\n \"get_cfg_var\": [\n \"mixed get_cfg_var(string option_name)\",\n \"Get the value of a PHP configuration option\"\n ],\n \"get_class\": [\n \"string get_class([object object])\",\n \"Retrieves the class name\"\n ],\n \"get_class_methods\": [\n \"array get_class_methods(mixed class)\",\n \"Returns an array of method names for class or class instance.\"\n ],\n \"get_class_vars\": [\n \"array get_class_vars(string class_name)\",\n \"Returns an array of default properties of the class.\"\n ],\n \"get_current_user\": [\n \"string get_current_user(void)\",\n \"Get the name of the owner of the current PHP script\"\n ],\n \"get_declared_classes\": [\n \"array get_declared_classes()\",\n \"Returns an array of all declared classes.\"\n ],\n \"get_declared_interfaces\": [\n \"array get_declared_interfaces()\",\n \"Returns an array of all declared interfaces.\"\n ],\n \"get_defined_constants\": [\n \"array get_defined_constants([bool categorize])\",\n \"Return an array containing the names and values of all defined constants\"\n ],\n \"get_defined_functions\": [\n \"array get_defined_functions(void)\",\n \"Returns an array of all defined functions\"\n ],\n \"get_defined_vars\": [\n \"array get_defined_vars(void)\",\n \"Returns an associative array of names and values of all currently defined variable names (variables in the current scope)\"\n ],\n \"get_display_language\": [\n \"static string get_display_language($locale[, $in_locale = null])\",\n \"* gets the language for the $locale in $in_locale or default_locale\"\n ],\n \"get_display_name\": [\n \"static string get_display_name($locale[, $in_locale = null])\",\n \"* gets the name for the $locale in $in_locale or default_locale\"\n ],\n \"get_display_region\": [\n \"static string get_display_region($locale, $in_locale = null)\",\n \"* gets the region for the $locale in $in_locale or default_locale\"\n ],\n \"get_display_script\": [\n \"static string get_display_script($locale, $in_locale = null)\",\n \"* gets the script for the $locale in $in_locale or default_locale\"\n ],\n \"get_extension_funcs\": [\n \"array get_extension_funcs(string extension_name)\",\n \"Returns an array with the names of functions belonging to the named extension\"\n ],\n \"get_headers\": [\n \"array get_headers(string url[, int format])\",\n \"fetches all the headers sent by the server in response to a HTTP request\"\n ],\n \"get_html_translation_table\": [\n \"array get_html_translation_table([int table [, int quote_style]])\",\n \"Returns the internal translation table used by htmlspecialchars and htmlentities\"\n ],\n \"get_include_path\": [\n \"string get_include_path()\",\n \"Get the current include_path configuration option\"\n ],\n \"get_included_files\": [\n \"array get_included_files(void)\",\n \"Returns an array with the file names that were include_once()'d\"\n ],\n \"get_loaded_extensions\": [\n \"array get_loaded_extensions([bool zend_extensions])\",\n \"Return an array containing names of loaded extensions\"\n ],\n \"get_magic_quotes_gpc\": [\n \"int get_magic_quotes_gpc(void)\",\n \"Get the current active configuration setting of magic_quotes_gpc\"\n ],\n \"get_magic_quotes_runtime\": [\n \"int get_magic_quotes_runtime(void)\",\n \"Get the current active configuration setting of magic_quotes_runtime\"\n ],\n \"get_meta_tags\": [\n \"array get_meta_tags(string filename [, bool use_include_path])\",\n \"Extracts all meta tag content attributes from a file and returns an array\"\n ],\n \"get_object_vars\": [\n \"array get_object_vars(object obj)\",\n \"Returns an array of object properties\"\n ],\n \"get_parent_class\": [\n \"string get_parent_class([mixed object])\",\n \"Retrieves the parent class name for object or class or current scope.\"\n ],\n \"get_resource_type\": [\n \"string get_resource_type(resource res)\",\n \"Get the resource type name for a given resource\"\n ],\n \"getallheaders\": [\n \"array getallheaders(void)\",\n \"\"\n ],\n \"getcwd\": [\n \"mixed getcwd(void)\",\n \"Gets the current directory\"\n ],\n \"getdate\": [\n \"array getdate([int timestamp])\",\n \"Get date/time information\"\n ],\n \"getenv\": [\n \"string getenv(string varname)\",\n \"Get the value of an environment variable\"\n ],\n \"gethostbyaddr\": [\n \"string gethostbyaddr(string ip_address)\",\n \"Get the Internet host name corresponding to a given IP address\"\n ],\n \"gethostbyname\": [\n \"string gethostbyname(string hostname)\",\n \"Get the IP address corresponding to a given Internet host name\"\n ],\n \"gethostbynamel\": [\n \"array gethostbynamel(string hostname)\",\n \"Return a list of IP addresses that a given hostname resolves to.\"\n ],\n \"gethostname\": [\n \"string gethostname()\",\n \"Get the host name of the current machine\"\n ],\n \"getimagesize\": [\n \"array getimagesize(string imagefile [, array info])\",\n \"Get the size of an image as 4-element array\"\n ],\n \"getlastmod\": [\n \"int getlastmod(void)\",\n \"Get time of last page modification\"\n ],\n \"getmygid\": [\n \"int getmygid(void)\",\n \"Get PHP script owner's GID\"\n ],\n \"getmyinode\": [\n \"int getmyinode(void)\",\n \"Get the inode of the current script being parsed\"\n ],\n \"getmypid\": [\n \"int getmypid(void)\",\n \"Get current process ID\"\n ],\n \"getmyuid\": [\n \"int getmyuid(void)\",\n \"Get PHP script owner's UID\"\n ],\n \"getopt\": [\n \"array getopt(string options [, array longopts])\",\n \"Get options from the command line argument list\"\n ],\n \"getprotobyname\": [\n \"int getprotobyname(string name)\",\n \"Returns protocol number associated with name as per /etc/protocols\"\n ],\n \"getprotobynumber\": [\n \"string getprotobynumber(int proto)\",\n \"Returns protocol name associated with protocol number proto\"\n ],\n \"getrandmax\": [\n \"int getrandmax(void)\",\n \"Returns the maximum value a random number can have\"\n ],\n \"getrusage\": [\n \"array getrusage([int who])\",\n \"Returns an array of usage statistics\"\n ],\n \"getservbyname\": [\n \"int getservbyname(string service, string protocol)\",\n \"Returns port associated with service. Protocol must be \\\"tcp\\\" or \\\"udp\\\"\"\n ],\n \"getservbyport\": [\n \"string getservbyport(int port, string protocol)\",\n \"Returns service name associated with port. Protocol must be \\\"tcp\\\" or \\\"udp\\\"\"\n ],\n \"gettext\": [\n \"string gettext(string msgid)\",\n \"Return the translation of msgid for the current domain, or msgid unaltered if a translation does not exist\"\n ],\n \"gettimeofday\": [\n \"array gettimeofday([bool get_as_float])\",\n \"Returns the current time as array\"\n ],\n \"gettype\": [\n \"string gettype(mixed var)\",\n \"Returns the type of the variable\"\n ],\n \"glob\": [\n \"array glob(string pattern [, int flags])\",\n \"Find pathnames matching a pattern\"\n ],\n \"gmdate\": [\n \"string gmdate(string format [, long timestamp])\",\n \"Format a GMT date/time\"\n ],\n \"gmmktime\": [\n \"int gmmktime([int hour [, int min [, int sec [, int mon [, int day [, int year]]]]]])\",\n \"Get UNIX timestamp for a GMT date\"\n ],\n \"gmp_abs\": [\n \"resource gmp_abs(resource a)\",\n \"Calculates absolute value\"\n ],\n \"gmp_add\": [\n \"resource gmp_add(resource a, resource b)\",\n \"Add a and b\"\n ],\n \"gmp_and\": [\n \"resource gmp_and(resource a, resource b)\",\n \"Calculates logical AND of a and b\"\n ],\n \"gmp_clrbit\": [\n \"void gmp_clrbit(resource &a, int index)\",\n \"Clears bit in a\"\n ],\n \"gmp_cmp\": [\n \"int gmp_cmp(resource a, resource b)\",\n \"Compares two numbers\"\n ],\n \"gmp_com\": [\n \"resource gmp_com(resource a)\",\n \"Calculates one's complement of a\"\n ],\n \"gmp_div_q\": [\n \"resource gmp_div_q(resource a, resource b [, int round])\",\n \"Divide a by b, returns quotient only\"\n ],\n \"gmp_div_qr\": [\n \"array gmp_div_qr(resource a, resource b [, int round])\",\n \"Divide a by b, returns quotient and reminder\"\n ],\n \"gmp_div_r\": [\n \"resource gmp_div_r(resource a, resource b [, int round])\",\n \"Divide a by b, returns reminder only\"\n ],\n \"gmp_divexact\": [\n \"resource gmp_divexact(resource a, resource b)\",\n \"Divide a by b using exact division algorithm\"\n ],\n \"gmp_fact\": [\n \"resource gmp_fact(int a)\",\n \"Calculates factorial function\"\n ],\n \"gmp_gcd\": [\n \"resource gmp_gcd(resource a, resource b)\",\n \"Computes greatest common denominator (gcd) of a and b\"\n ],\n \"gmp_gcdext\": [\n \"array gmp_gcdext(resource a, resource b)\",\n \"Computes G, S, and T, such that AS + BT = G = `gcd' (A, B)\"\n ],\n \"gmp_hamdist\": [\n \"int gmp_hamdist(resource a, resource b)\",\n \"Calculates hamming distance between a and b\"\n ],\n \"gmp_init\": [\n \"resource gmp_init(mixed number [, int base])\",\n \"Initializes GMP number\"\n ],\n \"gmp_intval\": [\n \"int gmp_intval(resource gmpnumber)\",\n \"Gets signed long value of GMP number\"\n ],\n \"gmp_invert\": [\n \"resource gmp_invert(resource a, resource b)\",\n \"Computes the inverse of a modulo b\"\n ],\n \"gmp_jacobi\": [\n \"int gmp_jacobi(resource a, resource b)\",\n \"Computes Jacobi symbol\"\n ],\n \"gmp_legendre\": [\n \"int gmp_legendre(resource a, resource b)\",\n \"Computes Legendre symbol\"\n ],\n \"gmp_mod\": [\n \"resource gmp_mod(resource a, resource b)\",\n \"Computes a modulo b\"\n ],\n \"gmp_mul\": [\n \"resource gmp_mul(resource a, resource b)\",\n \"Multiply a and b\"\n ],\n \"gmp_neg\": [\n \"resource gmp_neg(resource a)\",\n \"Negates a number\"\n ],\n \"gmp_nextprime\": [\n \"resource gmp_nextprime(resource a)\",\n \"Finds next prime of a\"\n ],\n \"gmp_or\": [\n \"resource gmp_or(resource a, resource b)\",\n \"Calculates logical OR of a and b\"\n ],\n \"gmp_perfect_square\": [\n \"bool gmp_perfect_square(resource a)\",\n \"Checks if a is an exact square\"\n ],\n \"gmp_popcount\": [\n \"int gmp_popcount(resource a)\",\n \"Calculates the population count of a\"\n ],\n \"gmp_pow\": [\n \"resource gmp_pow(resource base, int exp)\",\n \"Raise base to power exp\"\n ],\n \"gmp_powm\": [\n \"resource gmp_powm(resource base, resource exp, resource mod)\",\n \"Raise base to power exp and take result modulo mod\"\n ],\n \"gmp_prob_prime\": [\n \"int gmp_prob_prime(resource a[, int reps])\",\n \"Checks if a is \\\"probably prime\\\"\"\n ],\n \"gmp_random\": [\n \"resource gmp_random([int limiter])\",\n \"Gets random number\"\n ],\n \"gmp_scan0\": [\n \"int gmp_scan0(resource a, int start)\",\n \"Finds first zero bit\"\n ],\n \"gmp_scan1\": [\n \"int gmp_scan1(resource a, int start)\",\n \"Finds first non-zero bit\"\n ],\n \"gmp_setbit\": [\n \"void gmp_setbit(resource &a, int index[, bool set_clear])\",\n \"Sets or clear bit in a\"\n ],\n \"gmp_sign\": [\n \"int gmp_sign(resource a)\",\n \"Gets the sign of the number\"\n ],\n \"gmp_sqrt\": [\n \"resource gmp_sqrt(resource a)\",\n \"Takes integer part of square root of a\"\n ],\n \"gmp_sqrtrem\": [\n \"array gmp_sqrtrem(resource a)\",\n \"Square root with remainder\"\n ],\n \"gmp_strval\": [\n \"string gmp_strval(resource gmpnumber [, int base])\",\n \"Gets string representation of GMP number\"\n ],\n \"gmp_sub\": [\n \"resource gmp_sub(resource a, resource b)\",\n \"Subtract b from a\"\n ],\n \"gmp_testbit\": [\n \"bool gmp_testbit(resource a, int index)\",\n \"Tests if bit is set in a\"\n ],\n \"gmp_xor\": [\n \"resource gmp_xor(resource a, resource b)\",\n \"Calculates logical exclusive OR of a and b\"\n ],\n \"gmstrftime\": [\n \"string gmstrftime(string format [, int timestamp])\",\n \"Format a GMT/UCT time/date according to locale settings\"\n ],\n \"grapheme_extract\": [\n \"string grapheme_extract(string str, int size[, int extract_type[, int start[, int next]]])\",\n \"Function to extract a sequence of default grapheme clusters\"\n ],\n \"grapheme_stripos\": [\n \"int grapheme_stripos(string haystack, string needle [, int offset ])\",\n \"Find position of first occurrence of a string within another, ignoring case differences\"\n ],\n \"grapheme_stristr\": [\n \"string grapheme_stristr(string haystack, string needle[, bool part])\",\n \"Finds first occurrence of a string within another\"\n ],\n \"grapheme_strlen\": [\n \"int grapheme_strlen(string str)\",\n \"Get number of graphemes in a string\"\n ],\n \"grapheme_strpos\": [\n \"int grapheme_strpos(string haystack, string needle [, int offset ])\",\n \"Find position of first occurrence of a string within another\"\n ],\n \"grapheme_strripos\": [\n \"int grapheme_strripos(string haystack, string needle [, int offset])\",\n \"Find position of last occurrence of a string within another, ignoring case\"\n ],\n \"grapheme_strrpos\": [\n \"int grapheme_strrpos(string haystack, string needle [, int offset])\",\n \"Find position of last occurrence of a string within another\"\n ],\n \"grapheme_strstr\": [\n \"string grapheme_strstr(string haystack, string needle[, bool part])\",\n \"Finds first occurrence of a string within another\"\n ],\n \"grapheme_substr\": [\n \"string grapheme_substr(string str, int start [, int length])\",\n \"Returns part of a string\"\n ],\n \"gregoriantojd\": [\n \"int gregoriantojd(int month, int day, int year)\",\n \"Converts a gregorian calendar date to julian day count\"\n ],\n \"gzcompress\": [\n \"string gzcompress(string data [, int level])\",\n \"Gzip-compress a string\"\n ],\n \"gzdeflate\": [\n \"string gzdeflate(string data [, int level])\",\n \"Gzip-compress a string\"\n ],\n \"gzencode\": [\n \"string gzencode(string data [, int level [, int encoding_mode]])\",\n \"GZ encode a string\"\n ],\n \"gzfile\": [\n \"array gzfile(string filename [, int use_include_path])\",\n \"Read und uncompress entire .gz-file into an array\"\n ],\n \"gzinflate\": [\n \"string gzinflate(string data [, int length])\",\n \"Unzip a gzip-compressed string\"\n ],\n \"gzopen\": [\n \"resource gzopen(string filename, string mode [, int use_include_path])\",\n \"Open a .gz-file and return a .gz-file pointer\"\n ],\n \"gzuncompress\": [\n \"string gzuncompress(string data [, int length])\",\n \"Unzip a gzip-compressed string\"\n ],\n \"hash\": [\n \"string hash(string algo, string data[, bool raw_output = false])\",\n \"Generate a hash of a given input string Returns lowercase hexits by default\"\n ],\n \"hash_algos\": [\n \"array hash_algos(void)\",\n \"Return a list of registered hashing algorithms\"\n ],\n \"hash_copy\": [\n \"resource hash_copy(resource context)\",\n \"Copy hash resource\"\n ],\n \"hash_file\": [\n \"string hash_file(string algo, string filename[, bool raw_output = false])\",\n \"Generate a hash of a given file Returns lowercase hexits by default\"\n ],\n \"hash_final\": [\n \"string hash_final(resource context[, bool raw_output=false])\",\n \"Output resulting digest\"\n ],\n \"hash_hmac\": [\n \"string hash_hmac(string algo, string data, string key[, bool raw_output = false])\",\n \"Generate a hash of a given input string with a key using HMAC Returns lowercase hexits by default\"\n ],\n \"hash_hmac_file\": [\n \"string hash_hmac_file(string algo, string filename, string key[, bool raw_output = false])\",\n \"Generate a hash of a given file with a key using HMAC Returns lowercase hexits by default\"\n ],\n \"hash_init\": [\n \"resource hash_init(string algo[, int options, string key])\",\n \"Initialize a hashing context\"\n ],\n \"hash_update\": [\n \"bool hash_update(resource context, string data)\",\n \"Pump data into the hashing algorithm\"\n ],\n \"hash_update_file\": [\n \"bool hash_update_file(resource context, string filename[, resource context])\",\n \"Pump data into the hashing algorithm from a file\"\n ],\n \"hash_update_stream\": [\n \"int hash_update_stream(resource context, resource handle[, integer length])\",\n \"Pump data into the hashing algorithm from an open stream\"\n ],\n \"header\": [\n \"void header(string header [, bool replace, [int http_response_code]])\",\n \"Sends a raw HTTP header\"\n ],\n \"header_remove\": [\n \"void header_remove([string name])\",\n \"Removes an HTTP header previously set using header()\"\n ],\n \"headers_list\": [\n \"array headers_list(void)\",\n \"Return list of headers to be sent / already sent\"\n ],\n \"headers_sent\": [\n \"bool headers_sent([string &$file [, int &$line]])\",\n \"Returns true if headers have already been sent, false otherwise\"\n ],\n \"hebrev\": [\n \"string hebrev(string str [, int max_chars_per_line])\",\n \"Converts logical Hebrew text to visual text\"\n ],\n \"hebrevc\": [\n \"string hebrevc(string str [, int max_chars_per_line])\",\n \"Converts logical Hebrew text to visual text with newline conversion\"\n ],\n \"hexdec\": [\n \"int hexdec(string hexadecimal_number)\",\n \"Returns the decimal equivalent of the hexadecimal number\"\n ],\n \"highlight_file\": [\n \"bool highlight_file(string file_name [, bool return] )\",\n \"Syntax highlight a source file\"\n ],\n \"highlight_string\": [\n \"bool highlight_string(string string [, bool return] )\",\n \"Syntax highlight a string or optionally return it\"\n ],\n \"html_entity_decode\": [\n \"string html_entity_decode(string string [, int quote_style][, string charset])\",\n \"Convert all HTML entities to their applicable characters\"\n ],\n \"htmlentities\": [\n \"string htmlentities(string string [, int quote_style[, string charset[, bool double_encode]]])\",\n \"Convert all applicable characters to HTML entities\"\n ],\n \"htmlspecialchars\": [\n \"string htmlspecialchars(string string [, int quote_style[, string charset[, bool double_encode]]])\",\n \"Convert special characters to HTML entities\"\n ],\n \"htmlspecialchars_decode\": [\n \"string htmlspecialchars_decode(string string [, int quote_style])\",\n \"Convert special HTML entities back to characters\"\n ],\n \"http_build_query\": [\n \"string http_build_query(mixed formdata [, string prefix [, string arg_separator]])\",\n \"Generates a form-encoded query string from an associative array or object.\"\n ],\n \"hypot\": [\n \"float hypot(float num1, float num2)\",\n \"Returns sqrt(num1*num1 + num2*num2)\"\n ],\n \"ibase_add_user\": [\n \"bool ibase_add_user(resource service_handle, string user_name, string password [, string first_name [, string middle_name [, string last_name]]])\",\n \"Add a user to security database\"\n ],\n \"ibase_affected_rows\": [\n \"int ibase_affected_rows( [ resource link_identifier ] )\",\n \"Returns the number of rows affected by the previous INSERT, UPDATE or DELETE statement\"\n ],\n \"ibase_backup\": [\n \"mixed ibase_backup(resource service_handle, string source_db, string dest_file [, int options [, bool verbose]])\",\n \"Initiates a backup task in the service manager and returns immediately\"\n ],\n \"ibase_blob_add\": [\n \"bool ibase_blob_add(resource blob_handle, string data)\",\n \"Add data into created blob\"\n ],\n \"ibase_blob_cancel\": [\n \"bool ibase_blob_cancel(resource blob_handle)\",\n \"Cancel creating blob\"\n ],\n \"ibase_blob_close\": [\n \"string ibase_blob_close(resource blob_handle)\",\n \"Close blob\"\n ],\n \"ibase_blob_create\": [\n \"resource ibase_blob_create([resource link_identifier])\",\n \"Create blob for adding data\"\n ],\n \"ibase_blob_echo\": [\n \"bool ibase_blob_echo([ resource link_identifier, ] string blob_id)\",\n \"Output blob contents to browser\"\n ],\n \"ibase_blob_get\": [\n \"string ibase_blob_get(resource blob_handle, int len)\",\n \"Get len bytes data from open blob\"\n ],\n \"ibase_blob_import\": [\n \"string ibase_blob_import([ resource link_identifier, ] resource file)\",\n \"Create blob, copy file in it, and close it\"\n ],\n \"ibase_blob_info\": [\n \"array ibase_blob_info([ resource link_identifier, ] string blob_id)\",\n \"Return blob length and other useful info\"\n ],\n \"ibase_blob_open\": [\n \"resource ibase_blob_open([ resource link_identifier, ] string blob_id)\",\n \"Open blob for retrieving data parts\"\n ],\n \"ibase_close\": [\n \"bool ibase_close([resource link_identifier])\",\n \"Close an InterBase connection\"\n ],\n \"ibase_commit\": [\n \"bool ibase_commit( resource link_identifier )\",\n \"Commit transaction\"\n ],\n \"ibase_commit_ret\": [\n \"bool ibase_commit_ret( resource link_identifier )\",\n \"Commit transaction and retain the transaction context\"\n ],\n \"ibase_connect\": [\n \"resource ibase_connect(string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role]]]]]])\",\n \"Open a connection to an InterBase database\"\n ],\n \"ibase_db_info\": [\n \"string ibase_db_info(resource service_handle, string db, int action [, int argument])\",\n \"Request statistics about a database\"\n ],\n \"ibase_delete_user\": [\n \"bool ibase_delete_user(resource service_handle, string user_name, string password [, string first_name [, string middle_name [, string last_name]]])\",\n \"Delete a user from security database\"\n ],\n \"ibase_drop_db\": [\n \"bool ibase_drop_db([resource link_identifier])\",\n \"Drop an InterBase database\"\n ],\n \"ibase_errcode\": [\n \"int ibase_errcode(void)\",\n \"Return error code\"\n ],\n \"ibase_errmsg\": [\n \"string ibase_errmsg(void)\",\n \"Return error message\"\n ],\n \"ibase_execute\": [\n \"mixed ibase_execute(resource query [, mixed bind_arg [, mixed bind_arg [, ...]]])\",\n \"Execute a previously prepared query\"\n ],\n \"ibase_fetch_assoc\": [\n \"array ibase_fetch_assoc(resource result [, int fetch_flags])\",\n \"Fetch a row from the results of a query\"\n ],\n \"ibase_fetch_object\": [\n \"object ibase_fetch_object(resource result [, int fetch_flags])\",\n \"Fetch a object from the results of a query\"\n ],\n \"ibase_fetch_row\": [\n \"array ibase_fetch_row(resource result [, int fetch_flags])\",\n \"Fetch a row from the results of a query\"\n ],\n \"ibase_field_info\": [\n \"array ibase_field_info(resource query_result, int field_number)\",\n \"Get information about a field\"\n ],\n \"ibase_free_event_handler\": [\n \"bool ibase_free_event_handler(resource event)\",\n \"Frees the event handler set by ibase_set_event_handler()\"\n ],\n \"ibase_free_query\": [\n \"bool ibase_free_query(resource query)\",\n \"Free memory used by a query\"\n ],\n \"ibase_free_result\": [\n \"bool ibase_free_result(resource result)\",\n \"Free the memory used by a result\"\n ],\n \"ibase_gen_id\": [\n \"int ibase_gen_id(string generator [, int increment [, resource link_identifier ]])\",\n \"Increments the named generator and returns its new value\"\n ],\n \"ibase_maintain_db\": [\n \"bool ibase_maintain_db(resource service_handle, string db, int action [, int argument])\",\n \"Execute a maintenance command on the database server\"\n ],\n \"ibase_modify_user\": [\n \"bool ibase_modify_user(resource service_handle, string user_name, string password [, string first_name [, string middle_name [, string last_name]]])\",\n \"Modify a user in security database\"\n ],\n \"ibase_name_result\": [\n \"bool ibase_name_result(resource result, string name)\",\n \"Assign a name to a result for use with ... WHERE CURRENT OF statements\"\n ],\n \"ibase_num_fields\": [\n \"int ibase_num_fields(resource query_result)\",\n \"Get the number of fields in result\"\n ],\n \"ibase_num_params\": [\n \"int ibase_num_params(resource query)\",\n \"Get the number of params in a prepared query\"\n ],\n \"ibase_num_rows\": [\n \"int ibase_num_rows( resource result_identifier )\",\n \"Return the number of rows that are available in a result\"\n ],\n \"ibase_param_info\": [\n \"array ibase_param_info(resource query, int field_number)\",\n \"Get information about a parameter\"\n ],\n \"ibase_pconnect\": [\n \"resource ibase_pconnect(string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role]]]]]])\",\n \"Open a persistent connection to an InterBase database\"\n ],\n \"ibase_prepare\": [\n \"resource ibase_prepare(resource link_identifier[, string query [, resource trans_identifier ]])\",\n \"Prepare a query for later execution\"\n ],\n \"ibase_query\": [\n \"mixed ibase_query([resource link_identifier, [ resource link_identifier, ]] string query [, mixed bind_arg [, mixed bind_arg [, ...]]])\",\n \"Execute a query\"\n ],\n \"ibase_restore\": [\n \"mixed ibase_restore(resource service_handle, string source_file, string dest_db [, int options [, bool verbose]])\",\n \"Initiates a restore task in the service manager and returns immediately\"\n ],\n \"ibase_rollback\": [\n \"bool ibase_rollback( resource link_identifier )\",\n \"Rollback transaction\"\n ],\n \"ibase_rollback_ret\": [\n \"bool ibase_rollback_ret( resource link_identifier )\",\n \"Rollback transaction and retain the transaction context\"\n ],\n \"ibase_server_info\": [\n \"string ibase_server_info(resource service_handle, int action)\",\n \"Request information about a database server\"\n ],\n \"ibase_service_attach\": [\n \"resource ibase_service_attach(string host, string dba_username, string dba_password)\",\n \"Connect to the service manager\"\n ],\n \"ibase_service_detach\": [\n \"bool ibase_service_detach(resource service_handle)\",\n \"Disconnect from the service manager\"\n ],\n \"ibase_set_event_handler\": [\n \"resource ibase_set_event_handler([resource link_identifier,] callback handler, string event [, string event [, ...]])\",\n \"Register the callback for handling each of the named events\"\n ],\n \"ibase_trans\": [\n \"resource ibase_trans([int trans_args [, resource link_identifier [, ... ], int trans_args [, resource link_identifier [, ... ]] [, ...]]])\",\n \"Start a transaction over one or several databases\"\n ],\n \"ibase_wait_event\": [\n \"string ibase_wait_event([resource link_identifier,] string event [, string event [, ...]])\",\n \"Waits for any one of the passed Interbase events to be posted by the database, and returns its name\"\n ],\n \"iconv\": [\n \"string iconv(string in_charset, string out_charset, string str)\",\n \"Returns str converted to the out_charset character set\"\n ],\n \"iconv_get_encoding\": [\n \"mixed iconv_get_encoding([string type])\",\n \"Get internal encoding and output encoding for ob_iconv_handler()\"\n ],\n \"iconv_mime_decode\": [\n \"string iconv_mime_decode(string encoded_string [, int mode, string charset])\",\n \"Decodes a mime header field\"\n ],\n \"iconv_mime_decode_headers\": [\n \"array iconv_mime_decode_headers(string headers [, int mode, string charset])\",\n \"Decodes multiple mime header fields\"\n ],\n \"iconv_mime_encode\": [\n \"string iconv_mime_encode(string field_name, string field_value [, array preference])\",\n \"Composes a mime header field with field_name and field_value in a specified scheme\"\n ],\n \"iconv_set_encoding\": [\n \"bool iconv_set_encoding(string type, string charset)\",\n \"Sets internal encoding and output encoding for ob_iconv_handler()\"\n ],\n \"iconv_strlen\": [\n \"int iconv_strlen(string str [, string charset])\",\n \"Returns the character count of str\"\n ],\n \"iconv_strpos\": [\n \"int iconv_strpos(string haystack, string needle [, int offset [, string charset]])\",\n \"Finds position of first occurrence of needle within part of haystack beginning with offset\"\n ],\n \"iconv_strrpos\": [\n \"int iconv_strrpos(string haystack, string needle [, string charset])\",\n \"Finds position of last occurrence of needle within part of haystack beginning with offset\"\n ],\n \"iconv_substr\": [\n \"string iconv_substr(string str, int offset, [int length, string charset])\",\n \"Returns specified part of a string\"\n ],\n \"idate\": [\n \"int idate(string format [, int timestamp])\",\n \"Format a local time/date as integer\"\n ],\n \"idn_to_ascii\": [\n \"int idn_to_ascii(string domain[, int options])\",\n \"Converts an Unicode domain to ASCII representation, as defined in the IDNA RFC\"\n ],\n \"idn_to_utf8\": [\n \"int idn_to_utf8(string domain[, int options])\",\n \"Converts an ASCII representation of the domain to Unicode (UTF-8), as defined in the IDNA RFC\"\n ],\n \"ignore_user_abort\": [\n \"int ignore_user_abort([string value])\",\n \"Set whether we want to ignore a user abort event or not\"\n ],\n \"image2wbmp\": [\n \"bool image2wbmp(resource im [, string filename [, int threshold]])\",\n \"Output WBMP image to browser or file\"\n ],\n \"image_type_to_extension\": [\n \"string image_type_to_extension(int imagetype [, bool include_dot])\",\n \"Get file extension for image-type returned by getimagesize, exif_read_data, exif_thumbnail, exif_imagetype\"\n ],\n \"image_type_to_mime_type\": [\n \"string image_type_to_mime_type(int imagetype)\",\n \"Get Mime-Type for image-type returned by getimagesize, exif_read_data, exif_thumbnail, exif_imagetype\"\n ],\n \"imagealphablending\": [\n \"bool imagealphablending(resource im, bool on)\",\n \"Turn alpha blending mode on or off for the given image\"\n ],\n \"imageantialias\": [\n \"bool imageantialias(resource im, bool on)\",\n \"Should antialiased functions used or not\"\n ],\n \"imagearc\": [\n \"bool imagearc(resource im, int cx, int cy, int w, int h, int s, int e, int col)\",\n \"Draw a partial ellipse\"\n ],\n \"imagechar\": [\n \"bool imagechar(resource im, int font, int x, int y, string c, int col)\",\n \"Draw a character\"\n ],\n \"imagecharup\": [\n \"bool imagecharup(resource im, int font, int x, int y, string c, int col)\",\n \"Draw a character rotated 90 degrees counter-clockwise\"\n ],\n \"imagecolorallocate\": [\n \"int imagecolorallocate(resource im, int red, int green, int blue)\",\n \"Allocate a color for an image\"\n ],\n \"imagecolorallocatealpha\": [\n \"int imagecolorallocatealpha(resource im, int red, int green, int blue, int alpha)\",\n \"Allocate a color with an alpha level. Works for true color and palette based images\"\n ],\n \"imagecolorat\": [\n \"int imagecolorat(resource im, int x, int y)\",\n \"Get the index of the color of a pixel\"\n ],\n \"imagecolorclosest\": [\n \"int imagecolorclosest(resource im, int red, int green, int blue)\",\n \"Get the index of the closest color to the specified color\"\n ],\n \"imagecolorclosestalpha\": [\n \"int imagecolorclosestalpha(resource im, int red, int green, int blue, int alpha)\",\n \"Find the closest matching colour with alpha transparency\"\n ],\n \"imagecolorclosesthwb\": [\n \"int imagecolorclosesthwb(resource im, int red, int green, int blue)\",\n \"Get the index of the color which has the hue, white and blackness nearest to the given color\"\n ],\n \"imagecolordeallocate\": [\n \"bool imagecolordeallocate(resource im, int index)\",\n \"De-allocate a color for an image\"\n ],\n \"imagecolorexact\": [\n \"int imagecolorexact(resource im, int red, int green, int blue)\",\n \"Get the index of the specified color\"\n ],\n \"imagecolorexactalpha\": [\n \"int imagecolorexactalpha(resource im, int red, int green, int blue, int alpha)\",\n \"Find exact match for colour with transparency\"\n ],\n \"imagecolormatch\": [\n \"bool imagecolormatch(resource im1, resource im2)\",\n \"Makes the colors of the palette version of an image more closely match the true color version\"\n ],\n \"imagecolorresolve\": [\n \"int imagecolorresolve(resource im, int red, int green, int blue)\",\n \"Get the index of the specified color or its closest possible alternative\"\n ],\n \"imagecolorresolvealpha\": [\n \"int imagecolorresolvealpha(resource im, int red, int green, int blue, int alpha)\",\n \"Resolve/Allocate a colour with an alpha level. Works for true colour and palette based images\"\n ],\n \"imagecolorset\": [\n \"void imagecolorset(resource im, int col, int red, int green, int blue)\",\n \"Set the color for the specified palette index\"\n ],\n \"imagecolorsforindex\": [\n \"array imagecolorsforindex(resource im, int col)\",\n \"Get the colors for an index\"\n ],\n \"imagecolorstotal\": [\n \"int imagecolorstotal(resource im)\",\n \"Find out the number of colors in an image's palette\"\n ],\n \"imagecolortransparent\": [\n \"int imagecolortransparent(resource im [, int col])\",\n \"Define a color as transparent\"\n ],\n \"imageconvolution\": [\n \"resource imageconvolution(resource src_im, array matrix3x3, double div, double offset)\",\n \"Apply a 3x3 convolution matrix, using coefficient div and offset\"\n ],\n \"imagecopy\": [\n \"bool imagecopy(resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h)\",\n \"Copy part of an image\"\n ],\n \"imagecopymerge\": [\n \"bool imagecopymerge(resource src_im, resource dst_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct)\",\n \"Merge one part of an image with another\"\n ],\n \"imagecopymergegray\": [\n \"bool imagecopymergegray(resource src_im, resource dst_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct)\",\n \"Merge one part of an image with another\"\n ],\n \"imagecopyresampled\": [\n \"bool imagecopyresampled(resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h)\",\n \"Copy and resize part of an image using resampling to help ensure clarity\"\n ],\n \"imagecopyresized\": [\n \"bool imagecopyresized(resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h)\",\n \"Copy and resize part of an image\"\n ],\n \"imagecreate\": [\n \"resource imagecreate(int x_size, int y_size)\",\n \"Create a new image\"\n ],\n \"imagecreatefromgd\": [\n \"resource imagecreatefromgd(string filename)\",\n \"Create a new image from GD file or URL\"\n ],\n \"imagecreatefromgd2\": [\n \"resource imagecreatefromgd2(string filename)\",\n \"Create a new image from GD2 file or URL\"\n ],\n \"imagecreatefromgd2part\": [\n \"resource imagecreatefromgd2part(string filename, int srcX, int srcY, int width, int height)\",\n \"Create a new image from a given part of GD2 file or URL\"\n ],\n \"imagecreatefromgif\": [\n \"resource imagecreatefromgif(string filename)\",\n \"Create a new image from GIF file or URL\"\n ],\n \"imagecreatefromjpeg\": [\n \"resource imagecreatefromjpeg(string filename)\",\n \"Create a new image from JPEG file or URL\"\n ],\n \"imagecreatefrompng\": [\n \"resource imagecreatefrompng(string filename)\",\n \"Create a new image from PNG file or URL\"\n ],\n \"imagecreatefromstring\": [\n \"resource imagecreatefromstring(string image)\",\n \"Create a new image from the image stream in the string\"\n ],\n \"imagecreatefromwbmp\": [\n \"resource imagecreatefromwbmp(string filename)\",\n \"Create a new image from WBMP file or URL\"\n ],\n \"imagecreatefromxbm\": [\n \"resource imagecreatefromxbm(string filename)\",\n \"Create a new image from XBM file or URL\"\n ],\n \"imagecreatefromxpm\": [\n \"resource imagecreatefromxpm(string filename)\",\n \"Create a new image from XPM file or URL\"\n ],\n \"imagecreatetruecolor\": [\n \"resource imagecreatetruecolor(int x_size, int y_size)\",\n \"Create a new true color image\"\n ],\n \"imagedashedline\": [\n \"bool imagedashedline(resource im, int x1, int y1, int x2, int y2, int col)\",\n \"Draw a dashed line\"\n ],\n \"imagedestroy\": [\n \"bool imagedestroy(resource im)\",\n \"Destroy an image\"\n ],\n \"imageellipse\": [\n \"bool imageellipse(resource im, int cx, int cy, int w, int h, int color)\",\n \"Draw an ellipse\"\n ],\n \"imagefill\": [\n \"bool imagefill(resource im, int x, int y, int col)\",\n \"Flood fill\"\n ],\n \"imagefilledarc\": [\n \"bool imagefilledarc(resource im, int cx, int cy, int w, int h, int s, int e, int col, int style)\",\n \"Draw a filled partial ellipse\"\n ],\n \"imagefilledellipse\": [\n \"bool imagefilledellipse(resource im, int cx, int cy, int w, int h, int color)\",\n \"Draw an ellipse\"\n ],\n \"imagefilledpolygon\": [\n \"bool imagefilledpolygon(resource im, array point, int num_points, int col)\",\n \"Draw a filled polygon\"\n ],\n \"imagefilledrectangle\": [\n \"bool imagefilledrectangle(resource im, int x1, int y1, int x2, int y2, int col)\",\n \"Draw a filled rectangle\"\n ],\n \"imagefilltoborder\": [\n \"bool imagefilltoborder(resource im, int x, int y, int border, int col)\",\n \"Flood fill to specific color\"\n ],\n \"imagefilter\": [\n \"bool imagefilter(resource src_im, int filtertype, [args] )\",\n \"Applies Filter an image using a custom angle\"\n ],\n \"imagefontheight\": [\n \"int imagefontheight(int font)\",\n \"Get font height\"\n ],\n \"imagefontwidth\": [\n \"int imagefontwidth(int font)\",\n \"Get font width\"\n ],\n \"imageftbbox\": [\n \"array imageftbbox(float size, float angle, string font_file, string text [, array extrainfo])\",\n \"Give the bounding box of a text using fonts via freetype2\"\n ],\n \"imagefttext\": [\n \"array imagefttext(resource im, float size, float angle, int x, int y, int col, string font_file, string text [, array extrainfo])\",\n \"Write text to the image using fonts via freetype2\"\n ],\n \"imagegammacorrect\": [\n \"bool imagegammacorrect(resource im, float inputgamma, float outputgamma)\",\n \"Apply a gamma correction to a GD image\"\n ],\n \"imagegd\": [\n \"bool imagegd(resource im [, string filename])\",\n \"Output GD image to browser or file\"\n ],\n \"imagegd2\": [\n \"bool imagegd2(resource im [, string filename, [, int chunk_size, [, int type]]])\",\n \"Output GD2 image to browser or file\"\n ],\n \"imagegif\": [\n \"bool imagegif(resource im [, string filename])\",\n \"Output GIF image to browser or file\"\n ],\n \"imagegrabscreen\": [\n \"resource imagegrabscreen()\",\n \"Grab a screenshot\"\n ],\n \"imagegrabwindow\": [\n \"resource imagegrabwindow(int window_handle [, int client_area])\",\n \"Grab a window or its client area using a windows handle (HWND property in COM instance)\"\n ],\n \"imageinterlace\": [\n \"int imageinterlace(resource im [, int interlace])\",\n \"Enable or disable interlace\"\n ],\n \"imageistruecolor\": [\n \"bool imageistruecolor(resource im)\",\n \"return true if the image uses truecolor\"\n ],\n \"imagejpeg\": [\n \"bool imagejpeg(resource im [, string filename [, int quality]])\",\n \"Output JPEG image to browser or file\"\n ],\n \"imagelayereffect\": [\n \"bool imagelayereffect(resource im, int effect)\",\n \"Set the alpha blending flag to use the bundled libgd layering effects\"\n ],\n \"imageline\": [\n \"bool imageline(resource im, int x1, int y1, int x2, int y2, int col)\",\n \"Draw a line\"\n ],\n \"imageloadfont\": [\n \"int imageloadfont(string filename)\",\n \"Load a new font\"\n ],\n \"imagepalettecopy\": [\n \"void imagepalettecopy(resource dst, resource src)\",\n \"Copy the palette from the src image onto the dst image\"\n ],\n \"imagepng\": [\n \"bool imagepng(resource im [, string filename])\",\n \"Output PNG image to browser or file\"\n ],\n \"imagepolygon\": [\n \"bool imagepolygon(resource im, array point, int num_points, int col)\",\n \"Draw a polygon\"\n ],\n \"imagepsbbox\": [\n \"array imagepsbbox(string text, resource font, int size [, int space, int tightness, float angle])\",\n \"Return the bounding box needed by a string if rasterized\"\n ],\n \"imagepscopyfont\": [\n \"int imagepscopyfont(int font_index)\",\n \"Make a copy of a font for purposes like extending or reenconding\"\n ],\n \"imagepsencodefont\": [\n \"bool imagepsencodefont(resource font_index, string filename)\",\n \"To change a fonts character encoding vector\"\n ],\n \"imagepsextendfont\": [\n \"bool imagepsextendfont(resource font_index, float extend)\",\n \"Extend or or condense (if extend < 1) a font\"\n ],\n \"imagepsfreefont\": [\n \"bool imagepsfreefont(resource font_index)\",\n \"Free memory used by a font\"\n ],\n \"imagepsloadfont\": [\n \"resource imagepsloadfont(string pathname)\",\n \"Load a new font from specified file\"\n ],\n \"imagepsslantfont\": [\n \"bool imagepsslantfont(resource font_index, float slant)\",\n \"Slant a font\"\n ],\n \"imagepstext\": [\n \"array imagepstext(resource image, string text, resource font, int size, int foreground, int background, int xcoord, int ycoord [, int space [, int tightness [, float angle [, int antialias])\",\n \"Rasterize a string over an image\"\n ],\n \"imagerectangle\": [\n \"bool imagerectangle(resource im, int x1, int y1, int x2, int y2, int col)\",\n \"Draw a rectangle\"\n ],\n \"imagerotate\": [\n \"resource imagerotate(resource src_im, float angle, int bgdcolor [, int ignoretransparent])\",\n \"Rotate an image using a custom angle\"\n ],\n \"imagesavealpha\": [\n \"bool imagesavealpha(resource im, bool on)\",\n \"Include alpha channel to a saved image\"\n ],\n \"imagesetbrush\": [\n \"bool imagesetbrush(resource image, resource brush)\",\n \"Set the brush image to $brush when filling $image with the \\\"IMG_COLOR_BRUSHED\\\" color\"\n ],\n \"imagesetpixel\": [\n \"bool imagesetpixel(resource im, int x, int y, int col)\",\n \"Set a single pixel\"\n ],\n \"imagesetstyle\": [\n \"bool imagesetstyle(resource im, array styles)\",\n \"Set the line drawing styles for use with imageline and IMG_COLOR_STYLED.\"\n ],\n \"imagesetthickness\": [\n \"bool imagesetthickness(resource im, int thickness)\",\n \"Set line thickness for drawing lines, ellipses, rectangles, polygons etc.\"\n ],\n \"imagesettile\": [\n \"bool imagesettile(resource image, resource tile)\",\n \"Set the tile image to $tile when filling $image with the \\\"IMG_COLOR_TILED\\\" color\"\n ],\n \"imagestring\": [\n \"bool imagestring(resource im, int font, int x, int y, string str, int col)\",\n \"Draw a string horizontally\"\n ],\n \"imagestringup\": [\n \"bool imagestringup(resource im, int font, int x, int y, string str, int col)\",\n \"Draw a string vertically - rotated 90 degrees counter-clockwise\"\n ],\n \"imagesx\": [\n \"int imagesx(resource im)\",\n \"Get image width\"\n ],\n \"imagesy\": [\n \"int imagesy(resource im)\",\n \"Get image height\"\n ],\n \"imagetruecolortopalette\": [\n \"void imagetruecolortopalette(resource im, bool ditherFlag, int colorsWanted)\",\n \"Convert a true colour image to a palette based image with a number of colours, optionally using dithering.\"\n ],\n \"imagettfbbox\": [\n \"array imagettfbbox(float size, float angle, string font_file, string text)\",\n \"Give the bounding box of a text using TrueType fonts\"\n ],\n \"imagettftext\": [\n \"array imagettftext(resource im, float size, float angle, int x, int y, int col, string font_file, string text)\",\n \"Write text to the image using a TrueType font\"\n ],\n \"imagetypes\": [\n \"int imagetypes(void)\",\n \"Return the types of images supported in a bitfield - 1=GIF, 2=JPEG, 4=PNG, 8=WBMP, 16=XPM\"\n ],\n \"imagewbmp\": [\n \"bool imagewbmp(resource im [, string filename, [, int foreground]])\",\n \"Output WBMP image to browser or file\"\n ],\n \"imagexbm\": [\n \"int imagexbm(int im, string filename [, int foreground])\",\n \"Output XBM image to browser or file\"\n ],\n \"imap_8bit\": [\n \"string imap_8bit(string text)\",\n \"Convert an 8-bit string to a quoted-printable string\"\n ],\n \"imap_alerts\": [\n \"array imap_alerts(void)\",\n \"Returns an array of all IMAP alerts that have been generated since the last page load or since the last imap_alerts() call, whichever came last. The alert stack is cleared after imap_alerts() is called.\"\n ],\n \"imap_append\": [\n \"bool imap_append(resource stream_id, string folder, string message [, string options [, string internal_date]])\",\n \"Append a new message to a specified mailbox\"\n ],\n \"imap_base64\": [\n \"string imap_base64(string text)\",\n \"Decode BASE64 encoded text\"\n ],\n \"imap_binary\": [\n \"string imap_binary(string text)\",\n \"Convert an 8bit string to a base64 string\"\n ],\n \"imap_body\": [\n \"string imap_body(resource stream_id, int msg_no [, int options])\",\n \"Read the message body\"\n ],\n \"imap_bodystruct\": [\n \"object imap_bodystruct(resource stream_id, int msg_no, string section)\",\n \"Read the structure of a specified body section of a specific message\"\n ],\n \"imap_check\": [\n \"object imap_check(resource stream_id)\",\n \"Get mailbox properties\"\n ],\n \"imap_clearflag_full\": [\n \"bool imap_clearflag_full(resource stream_id, string sequence, string flag [, int options])\",\n \"Clears flags on messages\"\n ],\n \"imap_close\": [\n \"bool imap_close(resource stream_id [, int options])\",\n \"Close an IMAP stream\"\n ],\n \"imap_createmailbox\": [\n \"bool imap_createmailbox(resource stream_id, string mailbox)\",\n \"Create a new mailbox\"\n ],\n \"imap_delete\": [\n \"bool imap_delete(resource stream_id, int msg_no [, int options])\",\n \"Mark a message for deletion\"\n ],\n \"imap_deletemailbox\": [\n \"bool imap_deletemailbox(resource stream_id, string mailbox)\",\n \"Delete a mailbox\"\n ],\n \"imap_errors\": [\n \"array imap_errors(void)\",\n \"Returns an array of all IMAP errors generated since the last page load, or since the last imap_errors() call, whichever came last. The error stack is cleared after imap_errors() is called.\"\n ],\n \"imap_expunge\": [\n \"bool imap_expunge(resource stream_id)\",\n \"Permanently delete all messages marked for deletion\"\n ],\n \"imap_fetch_overview\": [\n \"array imap_fetch_overview(resource stream_id, string sequence [, int options])\",\n \"Read an overview of the information in the headers of the given message sequence\"\n ],\n \"imap_fetchbody\": [\n \"string imap_fetchbody(resource stream_id, int msg_no, string section [, int options])\",\n \"Get a specific body section\"\n ],\n \"imap_fetchheader\": [\n \"string imap_fetchheader(resource stream_id, int msg_no [, int options])\",\n \"Get the full unfiltered header for a message\"\n ],\n \"imap_fetchstructure\": [\n \"object imap_fetchstructure(resource stream_id, int msg_no [, int options])\",\n \"Read the full structure of a message\"\n ],\n \"imap_gc\": [\n \"bool imap_gc(resource stream_id, int flags)\",\n \"This function garbage collects (purges) the cache of entries of a specific type.\"\n ],\n \"imap_get_quota\": [\n \"array imap_get_quota(resource stream_id, string qroot)\",\n \"Returns the quota set to the mailbox account qroot\"\n ],\n \"imap_get_quotaroot\": [\n \"array imap_get_quotaroot(resource stream_id, string mbox)\",\n \"Returns the quota set to the mailbox account mbox\"\n ],\n \"imap_getacl\": [\n \"array imap_getacl(resource stream_id, string mailbox)\",\n \"Gets the ACL for a given mailbox\"\n ],\n \"imap_getmailboxes\": [\n \"array imap_getmailboxes(resource stream_id, string ref, string pattern)\",\n \"Reads the list of mailboxes and returns a full array of objects containing name, attributes, and delimiter\"\n ],\n \"imap_getsubscribed\": [\n \"array imap_getsubscribed(resource stream_id, string ref, string pattern)\",\n \"Return a list of subscribed mailboxes, in the same format as imap_getmailboxes()\"\n ],\n \"imap_headerinfo\": [\n \"object imap_headerinfo(resource stream_id, int msg_no [, int from_length [, int subject_length [, string default_host]]])\",\n \"Read the headers of the message\"\n ],\n \"imap_headers\": [\n \"array imap_headers(resource stream_id)\",\n \"Returns headers for all messages in a mailbox\"\n ],\n \"imap_last_error\": [\n \"string imap_last_error(void)\",\n \"Returns the last error that was generated by an IMAP function. The error stack is NOT cleared after this call.\"\n ],\n \"imap_list\": [\n \"array imap_list(resource stream_id, string ref, string pattern)\",\n \"Read the list of mailboxes\"\n ],\n \"imap_listscan\": [\n \"array imap_listscan(resource stream_id, string ref, string pattern, string content)\",\n \"Read list of mailboxes containing a certain string\"\n ],\n \"imap_lsub\": [\n \"array imap_lsub(resource stream_id, string ref, string pattern)\",\n \"Return a list of subscribed mailboxes\"\n ],\n \"imap_mail\": [\n \"bool imap_mail(string to, string subject, string message [, string additional_headers [, string cc [, string bcc [, string rpath]]]])\",\n \"Send an email message\"\n ],\n \"imap_mail_compose\": [\n \"string imap_mail_compose(array envelope, array body)\",\n \"Create a MIME message based on given envelope and body sections\"\n ],\n \"imap_mail_copy\": [\n \"bool imap_mail_copy(resource stream_id, string msglist, string mailbox [, int options])\",\n \"Copy specified message to a mailbox\"\n ],\n \"imap_mail_move\": [\n \"bool imap_mail_move(resource stream_id, string sequence, string mailbox [, int options])\",\n \"Move specified message to a mailbox\"\n ],\n \"imap_mailboxmsginfo\": [\n \"object imap_mailboxmsginfo(resource stream_id)\",\n \"Returns info about the current mailbox\"\n ],\n \"imap_mime_header_decode\": [\n \"array imap_mime_header_decode(string str)\",\n \"Decode mime header element in accordance with RFC 2047 and return array of objects containing 'charset' encoding and decoded 'text'\"\n ],\n \"imap_msgno\": [\n \"int imap_msgno(resource stream_id, int unique_msg_id)\",\n \"Get the sequence number associated with a UID\"\n ],\n \"imap_mutf7_to_utf8\": [\n \"string imap_mutf7_to_utf8(string in)\",\n \"Decode a modified UTF-7 string to UTF-8\"\n ],\n \"imap_num_msg\": [\n \"int imap_num_msg(resource stream_id)\",\n \"Gives the number of messages in the current mailbox\"\n ],\n \"imap_num_recent\": [\n \"int imap_num_recent(resource stream_id)\",\n \"Gives the number of recent messages in current mailbox\"\n ],\n \"imap_open\": [\n \"resource imap_open(string mailbox, string user, string password [, int options [, int n_retries]])\",\n \"Open an IMAP stream to a mailbox\"\n ],\n \"imap_ping\": [\n \"bool imap_ping(resource stream_id)\",\n \"Check if the IMAP stream is still active\"\n ],\n \"imap_qprint\": [\n \"string imap_qprint(string text)\",\n \"Convert a quoted-printable string to an 8-bit string\"\n ],\n \"imap_renamemailbox\": [\n \"bool imap_renamemailbox(resource stream_id, string old_name, string new_name)\",\n \"Rename a mailbox\"\n ],\n \"imap_reopen\": [\n \"bool imap_reopen(resource stream_id, string mailbox [, int options [, int n_retries]])\",\n \"Reopen an IMAP stream to a new mailbox\"\n ],\n \"imap_rfc822_parse_adrlist\": [\n \"array imap_rfc822_parse_adrlist(string address_string, string default_host)\",\n \"Parses an address string\"\n ],\n \"imap_rfc822_parse_headers\": [\n \"object imap_rfc822_parse_headers(string headers [, string default_host])\",\n \"Parse a set of mail headers contained in a string, and return an object similar to imap_headerinfo()\"\n ],\n \"imap_rfc822_write_address\": [\n \"string imap_rfc822_write_address(string mailbox, string host, string personal)\",\n \"Returns a properly formatted email address given the mailbox, host, and personal info\"\n ],\n \"imap_savebody\": [\n \"bool imap_savebody(resource stream_id, string|resource file, int msg_no[, string section = \\\"\\\"[, int options = 0]])\",\n \"Save a specific body section to a file\"\n ],\n \"imap_search\": [\n \"array imap_search(resource stream_id, string criteria [, int options [, string charset]])\",\n \"Return a list of messages matching the given criteria\"\n ],\n \"imap_set_quota\": [\n \"bool imap_set_quota(resource stream_id, string qroot, int mailbox_size)\",\n \"Will set the quota for qroot mailbox\"\n ],\n \"imap_setacl\": [\n \"bool imap_setacl(resource stream_id, string mailbox, string id, string rights)\",\n \"Sets the ACL for a given mailbox\"\n ],\n \"imap_setflag_full\": [\n \"bool imap_setflag_full(resource stream_id, string sequence, string flag [, int options])\",\n \"Sets flags on messages\"\n ],\n \"imap_sort\": [\n \"array imap_sort(resource stream_id, int criteria, int reverse [, int options [, string search_criteria [, string charset]]])\",\n \"Sort an array of message headers, optionally including only messages that meet specified criteria.\"\n ],\n \"imap_status\": [\n \"object imap_status(resource stream_id, string mailbox, int options)\",\n \"Get status info from a mailbox\"\n ],\n \"imap_subscribe\": [\n \"bool imap_subscribe(resource stream_id, string mailbox)\",\n \"Subscribe to a mailbox\"\n ],\n \"imap_thread\": [\n \"array imap_thread(resource stream_id [, int options])\",\n \"Return threaded by REFERENCES tree\"\n ],\n \"imap_timeout\": [\n \"mixed imap_timeout(int timeout_type [, int timeout])\",\n \"Set or fetch imap timeout\"\n ],\n \"imap_uid\": [\n \"int imap_uid(resource stream_id, int msg_no)\",\n \"Get the unique message id associated with a standard sequential message number\"\n ],\n \"imap_undelete\": [\n \"bool imap_undelete(resource stream_id, int msg_no [, int flags])\",\n \"Remove the delete flag from a message\"\n ],\n \"imap_unsubscribe\": [\n \"bool imap_unsubscribe(resource stream_id, string mailbox)\",\n \"Unsubscribe from a mailbox\"\n ],\n \"imap_utf7_decode\": [\n \"string imap_utf7_decode(string buf)\",\n \"Decode a modified UTF-7 string\"\n ],\n \"imap_utf7_encode\": [\n \"string imap_utf7_encode(string buf)\",\n \"Encode a string in modified UTF-7\"\n ],\n \"imap_utf8\": [\n \"string imap_utf8(string mime_encoded_text)\",\n \"Convert a mime-encoded text to UTF-8\"\n ],\n \"imap_utf8_to_mutf7\": [\n \"string imap_utf8_to_mutf7(string in)\",\n \"Encode a UTF-8 string to modified UTF-7\"\n ],\n \"implode\": [\n \"string implode([string glue,] array pieces)\",\n \"Joins array elements placing glue string between items and return one string\"\n ],\n \"import_request_variables\": [\n \"bool import_request_variables(string types [, string prefix])\",\n \"Import GET/POST/Cookie variables into the global scope\"\n ],\n \"in_array\": [\n \"bool in_array(mixed needle, array haystack [, bool strict])\",\n \"Checks if the given value exists in the array\"\n ],\n \"include\": [\n \"bool include(string path)\",\n \"Includes and evaluates the specified file\"\n ],\n \"include_once\": [\n \"bool include_once(string path)\",\n \"Includes and evaluates the specified file\"\n ],\n \"inet_ntop\": [\n \"string inet_ntop(string in_addr)\",\n \"Converts a packed inet address to a human readable IP address string\"\n ],\n \"inet_pton\": [\n \"string inet_pton(string ip_address)\",\n \"Converts a human readable IP address to a packed binary string\"\n ],\n \"ini_get\": [\n \"string ini_get(string varname)\",\n \"Get a configuration option\"\n ],\n \"ini_get_all\": [\n \"array ini_get_all([string extension[, bool details = true]])\",\n \"Get all configuration options\"\n ],\n \"ini_restore\": [\n \"void ini_restore(string varname)\",\n \"Restore the value of a configuration option specified by varname\"\n ],\n \"ini_set\": [\n \"string ini_set(string varname, string newvalue)\",\n \"Set a configuration option, returns false on error and the old value of the configuration option on success\"\n ],\n \"interface_exists\": [\n \"bool interface_exists(string classname [, bool autoload])\",\n \"Checks if the class exists\"\n ],\n \"intl_error_name\": [\n \"string intl_error_name()\",\n \"* Return a string for a given error code. * The string will be the same as the name of the error code constant.\"\n ],\n \"intl_get_error_code\": [\n \"int intl_get_error_code()\",\n \"* Get code of the last occured error.\"\n ],\n \"intl_get_error_message\": [\n \"string intl_get_error_message()\",\n \"* Get text description of the last occured error.\"\n ],\n \"intl_is_failure\": [\n \"bool intl_is_failure()\",\n \"* Check whether the given error code indicates a failure. * Returns true if it does, and false if the code * indicates success or a warning.\"\n ],\n \"intval\": [\n \"int intval(mixed var [, int base])\",\n \"Get the integer value of a variable using the optional base for the conversion\"\n ],\n \"ip2long\": [\n \"int ip2long(string ip_address)\",\n \"Converts a string containing an (IPv4) Internet Protocol dotted address into a proper address\"\n ],\n \"iptcembed\": [\n \"array iptcembed(string iptcdata, string jpeg_file_name [, int spool])\",\n \"Embed binary IPTC data into a JPEG image.\"\n ],\n \"iptcparse\": [\n \"array iptcparse(string iptcdata)\",\n \"Parse binary IPTC-data into associative array\"\n ],\n \"is_a\": [\n \"bool is_a(object object, string class_name)\",\n \"Returns true if the object is of this class or has this class as one of its parents\"\n ],\n \"is_array\": [\n \"bool is_array(mixed var)\",\n \"Returns true if variable is an array\"\n ],\n \"is_bool\": [\n \"bool is_bool(mixed var)\",\n \"Returns true if variable is a boolean\"\n ],\n \"is_callable\": [\n \"bool is_callable(mixed var [, bool syntax_only [, string callable_name]])\",\n \"Returns true if var is callable.\"\n ],\n \"is_dir\": [\n \"bool is_dir(string filename)\",\n \"Returns true if file is directory\"\n ],\n \"is_executable\": [\n \"bool is_executable(string filename)\",\n \"Returns true if file is executable\"\n ],\n \"is_file\": [\n \"bool is_file(string filename)\",\n \"Returns true if file is a regular file\"\n ],\n \"is_finite\": [\n \"bool is_finite(float val)\",\n \"Returns whether argument is finite\"\n ],\n \"is_float\": [\n \"bool is_float(mixed var)\",\n \"Returns true if variable is float point\"\n ],\n \"is_infinite\": [\n \"bool is_infinite(float val)\",\n \"Returns whether argument is infinite\"\n ],\n \"is_link\": [\n \"bool is_link(string filename)\",\n \"Returns true if file is symbolic link\"\n ],\n \"is_long\": [\n \"bool is_long(mixed var)\",\n \"Returns true if variable is a long (integer)\"\n ],\n \"is_nan\": [\n \"bool is_nan(float val)\",\n \"Returns whether argument is not a number\"\n ],\n \"is_null\": [\n \"bool is_null(mixed var)\",\n \"Returns true if variable is null\"\n ],\n \"is_numeric\": [\n \"bool is_numeric(mixed value)\",\n \"Returns true if value is a number or a numeric string\"\n ],\n \"is_object\": [\n \"bool is_object(mixed var)\",\n \"Returns true if variable is an object\"\n ],\n \"is_readable\": [\n \"bool is_readable(string filename)\",\n \"Returns true if file can be read\"\n ],\n \"is_resource\": [\n \"bool is_resource(mixed var)\",\n \"Returns true if variable is a resource\"\n ],\n \"is_scalar\": [\n \"bool is_scalar(mixed value)\",\n \"Returns true if value is a scalar\"\n ],\n \"is_string\": [\n \"bool is_string(mixed var)\",\n \"Returns true if variable is a string\"\n ],\n \"is_subclass_of\": [\n \"bool is_subclass_of(object object, string class_name)\",\n \"Returns true if the object has this class as one of its parents\"\n ],\n \"is_uploaded_file\": [\n \"bool is_uploaded_file(string path)\",\n \"Check if file was created by rfc1867 upload\"\n ],\n \"is_writable\": [\n \"bool is_writable(string filename)\",\n \"Returns true if file can be written\"\n ],\n \"isset\": [\n \"bool isset(mixed var [, mixed var])\",\n \"Determine whether a variable is set\"\n ],\n \"iterator_apply\": [\n \"int iterator_apply(Traversable it, mixed function [, mixed params])\",\n \"Calls a function for every element in an iterator\"\n ],\n \"iterator_count\": [\n \"int iterator_count(Traversable it)\",\n \"Count the elements in an iterator\"\n ],\n \"iterator_to_array\": [\n \"array iterator_to_array(Traversable it [, bool use_keys = true])\",\n \"Copy the iterator into an array\"\n ],\n \"jddayofweek\": [\n \"mixed jddayofweek(int juliandaycount [, int mode])\",\n \"Returns name or number of day of week from julian day count\"\n ],\n \"jdmonthname\": [\n \"string jdmonthname(int juliandaycount, int mode)\",\n \"Returns name of month for julian day count\"\n ],\n \"jdtofrench\": [\n \"string jdtofrench(int juliandaycount)\",\n \"Converts a julian day count to a french republic calendar date\"\n ],\n \"jdtogregorian\": [\n \"string jdtogregorian(int juliandaycount)\",\n \"Converts a julian day count to a gregorian calendar date\"\n ],\n \"jdtojewish\": [\n \"string jdtojewish(int juliandaycount [, bool hebrew [, int fl]])\",\n \"Converts a julian day count to a jewish calendar date\"\n ],\n \"jdtojulian\": [\n \"string jdtojulian(int juliandaycount)\",\n \"Convert a julian day count to a julian calendar date\"\n ],\n \"jdtounix\": [\n \"int jdtounix(int jday)\",\n \"Convert Julian Day to UNIX timestamp\"\n ],\n \"jewishtojd\": [\n \"int jewishtojd(int month, int day, int year)\",\n \"Converts a jewish calendar date to a julian day count\"\n ],\n \"join\": [\n \"string join(array src, string glue)\",\n \"An alias for implode\"\n ],\n \"jpeg2wbmp\": [\n \"bool jpeg2wbmp (string f_org, string f_dest, int d_height, int d_width, int threshold)\",\n \"Convert JPEG image to WBMP image\"\n ],\n \"json_decode\": [\n \"mixed json_decode(string json [, bool assoc [, long depth]])\",\n \"Decodes the JSON representation into a PHP value\"\n ],\n \"json_encode\": [\n \"string json_encode(mixed data [, int options])\",\n \"Returns the JSON representation of a value\"\n ],\n \"json_last_error\": [\n \"int json_last_error()\",\n \"Returns the error code of the last json_decode().\"\n ],\n \"juliantojd\": [\n \"int juliantojd(int month, int day, int year)\",\n \"Converts a julian calendar date to julian day count\"\n ],\n \"key\": [\n \"mixed key(array array_arg)\",\n \"Return the key of the element currently pointed to by the internal array pointer\"\n ],\n \"krsort\": [\n \"bool krsort(array &array_arg [, int sort_flags])\",\n \"Sort an array by key value in reverse order\"\n ],\n \"ksort\": [\n \"bool ksort(array &array_arg [, int sort_flags])\",\n \"Sort an array by key\"\n ],\n \"lcfirst\": [\n \"string lcfirst(string str)\",\n \"Make a string's first character lowercase\"\n ],\n \"lcg_value\": [\n \"float lcg_value()\",\n \"Returns a value from the combined linear congruential generator\"\n ],\n \"lchgrp\": [\n \"bool lchgrp(string filename, mixed group)\",\n \"Change symlink group\"\n ],\n \"ldap_8859_to_t61\": [\n \"string ldap_8859_to_t61(string value)\",\n \"Translate 8859 characters to t61 characters\"\n ],\n \"ldap_add\": [\n \"bool ldap_add(resource link, string dn, array entry)\",\n \"Add entries to LDAP directory\"\n ],\n \"ldap_bind\": [\n \"bool ldap_bind(resource link [, string dn [, string password]])\",\n \"Bind to LDAP directory\"\n ],\n \"ldap_compare\": [\n \"bool ldap_compare(resource link, string dn, string attr, string value)\",\n \"Determine if an entry has a specific value for one of its attributes\"\n ],\n \"ldap_connect\": [\n \"resource ldap_connect([string host [, int port [, string wallet [, string wallet_passwd [, int authmode]]]]])\",\n \"Connect to an LDAP server\"\n ],\n \"ldap_count_entries\": [\n \"int ldap_count_entries(resource link, resource result)\",\n \"Count the number of entries in a search result\"\n ],\n \"ldap_delete\": [\n \"bool ldap_delete(resource link, string dn)\",\n \"Delete an entry from a directory\"\n ],\n \"ldap_dn2ufn\": [\n \"string ldap_dn2ufn(string dn)\",\n \"Convert DN to User Friendly Naming format\"\n ],\n \"ldap_err2str\": [\n \"string ldap_err2str(int errno)\",\n \"Convert error number to error string\"\n ],\n \"ldap_errno\": [\n \"int ldap_errno(resource link)\",\n \"Get the current ldap error number\"\n ],\n \"ldap_error\": [\n \"string ldap_error(resource link)\",\n \"Get the current ldap error string\"\n ],\n \"ldap_explode_dn\": [\n \"array ldap_explode_dn(string dn, int with_attrib)\",\n \"Splits DN into its component parts\"\n ],\n \"ldap_first_attribute\": [\n \"string ldap_first_attribute(resource link, resource result_entry)\",\n \"Return first attribute\"\n ],\n \"ldap_first_entry\": [\n \"resource ldap_first_entry(resource link, resource result)\",\n \"Return first result id\"\n ],\n \"ldap_first_reference\": [\n \"resource ldap_first_reference(resource link, resource result)\",\n \"Return first reference\"\n ],\n \"ldap_free_result\": [\n \"bool ldap_free_result(resource result)\",\n \"Free result memory\"\n ],\n \"ldap_get_attributes\": [\n \"array ldap_get_attributes(resource link, resource result_entry)\",\n \"Get attributes from a search result entry\"\n ],\n \"ldap_get_dn\": [\n \"string ldap_get_dn(resource link, resource result_entry)\",\n \"Get the DN of a result entry\"\n ],\n \"ldap_get_entries\": [\n \"array ldap_get_entries(resource link, resource result)\",\n \"Get all result entries\"\n ],\n \"ldap_get_option\": [\n \"bool ldap_get_option(resource link, int option, mixed retval)\",\n \"Get the current value of various session-wide parameters\"\n ],\n \"ldap_get_values_len\": [\n \"array ldap_get_values_len(resource link, resource result_entry, string attribute)\",\n \"Get all values with lengths from a result entry\"\n ],\n \"ldap_list\": [\n \"resource ldap_list(resource|array link, string base_dn, string filter [, array attrs [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]])\",\n \"Single-level search\"\n ],\n \"ldap_mod_add\": [\n \"bool ldap_mod_add(resource link, string dn, array entry)\",\n \"Add attribute values to current\"\n ],\n \"ldap_mod_del\": [\n \"bool ldap_mod_del(resource link, string dn, array entry)\",\n \"Delete attribute values\"\n ],\n \"ldap_mod_replace\": [\n \"bool ldap_mod_replace(resource link, string dn, array entry)\",\n \"Replace attribute values with new ones\"\n ],\n \"ldap_next_attribute\": [\n \"string ldap_next_attribute(resource link, resource result_entry)\",\n \"Get the next attribute in result\"\n ],\n \"ldap_next_entry\": [\n \"resource ldap_next_entry(resource link, resource result_entry)\",\n \"Get next result entry\"\n ],\n \"ldap_next_reference\": [\n \"resource ldap_next_reference(resource link, resource reference_entry)\",\n \"Get next reference\"\n ],\n \"ldap_parse_reference\": [\n \"bool ldap_parse_reference(resource link, resource reference_entry, array referrals)\",\n \"Extract information from reference entry\"\n ],\n \"ldap_parse_result\": [\n \"bool ldap_parse_result(resource link, resource result, int errcode, string matcheddn, string errmsg, array referrals)\",\n \"Extract information from result\"\n ],\n \"ldap_read\": [\n \"resource ldap_read(resource|array link, string base_dn, string filter [, array attrs [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]])\",\n \"Read an entry\"\n ],\n \"ldap_rename\": [\n \"bool ldap_rename(resource link, string dn, string newrdn, string newparent, bool deleteoldrdn);\",\n \"Modify the name of an entry\"\n ],\n \"ldap_sasl_bind\": [\n \"bool ldap_sasl_bind(resource link [, string binddn [, string password [, string sasl_mech [, string sasl_realm [, string sasl_authc_id [, string sasl_authz_id [, string props]]]]]]])\",\n \"Bind to LDAP directory using SASL\"\n ],\n \"ldap_search\": [\n \"resource ldap_search(resource|array link, string base_dn, string filter [, array attrs [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]])\",\n \"Search LDAP tree under base_dn\"\n ],\n \"ldap_set_option\": [\n \"bool ldap_set_option(resource link, int option, mixed newval)\",\n \"Set the value of various session-wide parameters\"\n ],\n \"ldap_set_rebind_proc\": [\n \"bool ldap_set_rebind_proc(resource link, string callback)\",\n \"Set a callback function to do re-binds on referral chasing.\"\n ],\n \"ldap_sort\": [\n \"bool ldap_sort(resource link, resource result, string sortfilter)\",\n \"Sort LDAP result entries\"\n ],\n \"ldap_start_tls\": [\n \"bool ldap_start_tls(resource link)\",\n \"Start TLS\"\n ],\n \"ldap_t61_to_8859\": [\n \"string ldap_t61_to_8859(string value)\",\n \"Translate t61 characters to 8859 characters\"\n ],\n \"ldap_unbind\": [\n \"bool ldap_unbind(resource link)\",\n \"Unbind from LDAP directory\"\n ],\n \"leak\": [\n \"void leak(int num_bytes=3)\",\n \"Cause an intentional memory leak, for testing/debugging purposes\"\n ],\n \"levenshtein\": [\n \"int levenshtein(string str1, string str2[, int cost_ins, int cost_rep, int cost_del])\",\n \"Calculate Levenshtein distance between two strings\"\n ],\n \"libxml_clear_errors\": [\n \"void libxml_clear_errors()\",\n \"Clear last error from libxml\"\n ],\n \"libxml_disable_entity_loader\": [\n \"bool libxml_disable_entity_loader([boolean disable])\",\n \"Disable/Enable ability to load external entities\"\n ],\n \"libxml_get_errors\": [\n \"object libxml_get_errors()\",\n \"Retrieve array of errors\"\n ],\n \"libxml_get_last_error\": [\n \"object libxml_get_last_error()\",\n \"Retrieve last error from libxml\"\n ],\n \"libxml_set_streams_context\": [\n \"void libxml_set_streams_context(resource streams_context)\",\n \"Set the streams context for the next libxml document load or write\"\n ],\n \"libxml_use_internal_errors\": [\n \"bool libxml_use_internal_errors([boolean use_errors])\",\n \"Disable libxml errors and allow user to fetch error information as needed\"\n ],\n \"link\": [\n \"int link(string target, string link)\",\n \"Create a hard link\"\n ],\n \"linkinfo\": [\n \"int linkinfo(string filename)\",\n \"Returns the st_dev field of the UNIX C stat structure describing the link\"\n ],\n \"litespeed_request_headers\": [\n \"array litespeed_request_headers(void)\",\n \"Fetch all HTTP request headers\"\n ],\n \"litespeed_response_headers\": [\n \"array litespeed_response_headers(void)\",\n \"Fetch all HTTP response headers\"\n ],\n \"locale_accept_from_http\": [\n \"string locale_accept_from_http(string $http_accept)\",\n null\n ],\n \"locale_canonicalize\": [\n \"static string locale_canonicalize(Locale $loc, string $locale)\",\n \"* @param string $locale The locale string to canonicalize\"\n ],\n \"locale_filter_matches\": [\n \"boolean locale_filter_matches(string $langtag, string $locale[, bool $canonicalize])\",\n \"* Checks if a $langtag filter matches with $locale according to RFC 4647's basic filtering algorithm\"\n ],\n \"locale_get_all_variants\": [\n \"static array locale_get_all_variants($locale)\",\n \"* gets an array containing the list of variants, or null\"\n ],\n \"locale_get_default\": [\n \"static string locale_get_default( )\",\n \"Get default locale\"\n ],\n \"locale_get_keywords\": [\n \"static array locale_get_keywords(string $locale) {\",\n \"* return an associative array containing keyword-value * pairs for this locale. The keys are keys to the array (doh!)\"\n ],\n \"locale_get_primary_language\": [\n \"static string locale_get_primary_language($locale)\",\n \"* gets the primary language for the $locale\"\n ],\n \"locale_get_region\": [\n \"static string locale_get_region($locale)\",\n \"* gets the region for the $locale\"\n ],\n \"locale_get_script\": [\n \"static string locale_get_script($locale)\",\n \"* gets the script for the $locale\"\n ],\n \"locale_lookup\": [\n \"string locale_lookup(array $langtag, string $locale[, bool $canonicalize[, string $default = null]])\",\n \"* Searchs the items in $langtag for the best match to the language * range\"\n ],\n \"locale_set_default\": [\n \"static string locale_set_default( string $locale )\",\n \"Set default locale\"\n ],\n \"localeconv\": [\n \"array localeconv(void)\",\n \"Returns numeric formatting information based on the current locale\"\n ],\n \"localtime\": [\n \"array localtime([int timestamp [, bool associative_array]])\",\n \"Returns the results of the C system call localtime as an associative array if the associative_array argument is set to 1 other wise it is a regular array\"\n ],\n \"log\": [\n \"float log(float number, [float base])\",\n \"Returns the natural logarithm of the number, or the base log if base is specified\"\n ],\n \"log10\": [\n \"float log10(float number)\",\n \"Returns the base-10 logarithm of the number\"\n ],\n \"log1p\": [\n \"float log1p(float number)\",\n \"Returns log(1 + number), computed in a way that accurate even when the value of number is close to zero\"\n ],\n \"long2ip\": [\n \"string long2ip(int proper_address)\",\n \"Converts an (IPv4) Internet network address into a string in Internet standard dotted format\"\n ],\n \"lstat\": [\n \"array lstat(string filename)\",\n \"Give information about a file or symbolic link\"\n ],\n \"ltrim\": [\n \"string ltrim(string str [, string character_mask])\",\n \"Strips whitespace from the beginning of a string\"\n ],\n \"mail\": [\n \"int mail(string to, string subject, string message [, string additional_headers [, string additional_parameters]])\",\n \"Send an email message\"\n ],\n \"max\": [\n \"mixed max(mixed arg1 [, mixed arg2 [, mixed ...]])\",\n \"Return the highest value in an array or a series of arguments\"\n ],\n \"mb_check_encoding\": [\n \"bool mb_check_encoding([string var[, string encoding]])\",\n \"Check if the string is valid for the specified encoding\"\n ],\n \"mb_convert_case\": [\n \"string mb_convert_case(string sourcestring, int mode [, string encoding])\",\n \"Returns a case-folded version of sourcestring\"\n ],\n \"mb_convert_encoding\": [\n \"string mb_convert_encoding(string str, string to-encoding [, mixed from-encoding])\",\n \"Returns converted string in desired encoding\"\n ],\n \"mb_convert_kana\": [\n \"string mb_convert_kana(string str [, string option] [, string encoding])\",\n \"Conversion between full-width character and half-width character (Japanese)\"\n ],\n \"mb_convert_variables\": [\n \"string mb_convert_variables(string to-encoding, mixed from-encoding, mixed vars [, ...])\",\n \"Converts the string resource in variables to desired encoding\"\n ],\n \"mb_decode_mimeheader\": [\n \"string mb_decode_mimeheader(string string)\",\n \"Decodes the MIME \\\"encoded-word\\\" in the string\"\n ],\n \"mb_decode_numericentity\": [\n \"string mb_decode_numericentity(string string, array convmap [, string encoding])\",\n \"Converts HTML numeric entities to character code\"\n ],\n \"mb_detect_encoding\": [\n \"string mb_detect_encoding(string str [, mixed encoding_list [, bool strict]])\",\n \"Encodings of the given string is returned (as a string)\"\n ],\n \"mb_detect_order\": [\n \"bool|array mb_detect_order([mixed encoding-list])\",\n \"Sets the current detect_order or Return the current detect_order as a array\"\n ],\n \"mb_encode_mimeheader\": [\n \"string mb_encode_mimeheader(string str [, string charset [, string transfer-encoding [, string linefeed [, int indent]]]])\",\n \"Converts the string to MIME \\\"encoded-word\\\" in the format of =?charset?(B|Q)?encoded_string?=\"\n ],\n \"mb_encode_numericentity\": [\n \"string mb_encode_numericentity(string string, array convmap [, string encoding])\",\n \"Converts specified characters to HTML numeric entities\"\n ],\n \"mb_encoding_aliases\": [\n \"array mb_encoding_aliases(string encoding)\",\n \"Returns an array of the aliases of a given encoding name\"\n ],\n \"mb_ereg\": [\n \"int mb_ereg(string pattern, string string [, array registers])\",\n \"Regular expression match for multibyte string\"\n ],\n \"mb_ereg_match\": [\n \"bool mb_ereg_match(string pattern, string string [,string option])\",\n \"Regular expression match for multibyte string\"\n ],\n \"mb_ereg_replace\": [\n \"string mb_ereg_replace(string pattern, string replacement, string string [, string option])\",\n \"Replace regular expression for multibyte string\"\n ],\n \"mb_ereg_search\": [\n \"bool mb_ereg_search([string pattern[, string option]])\",\n \"Regular expression search for multibyte string\"\n ],\n \"mb_ereg_search_getpos\": [\n \"int mb_ereg_search_getpos(void)\",\n \"Get search start position\"\n ],\n \"mb_ereg_search_getregs\": [\n \"array mb_ereg_search_getregs(void)\",\n \"Get matched substring of the last time\"\n ],\n \"mb_ereg_search_init\": [\n \"bool mb_ereg_search_init(string string [, string pattern[, string option]])\",\n \"Initialize string and regular expression for search.\"\n ],\n \"mb_ereg_search_pos\": [\n \"array mb_ereg_search_pos([string pattern[, string option]])\",\n \"Regular expression search for multibyte string\"\n ],\n \"mb_ereg_search_regs\": [\n \"array mb_ereg_search_regs([string pattern[, string option]])\",\n \"Regular expression search for multibyte string\"\n ],\n \"mb_ereg_search_setpos\": [\n \"bool mb_ereg_search_setpos(int position)\",\n \"Set search start position\"\n ],\n \"mb_eregi\": [\n \"int mb_eregi(string pattern, string string [, array registers])\",\n \"Case-insensitive regular expression match for multibyte string\"\n ],\n \"mb_eregi_replace\": [\n \"string mb_eregi_replace(string pattern, string replacement, string string)\",\n \"Case insensitive replace regular expression for multibyte string\"\n ],\n \"mb_get_info\": [\n \"mixed mb_get_info([string type])\",\n \"Returns the current settings of mbstring\"\n ],\n \"mb_http_input\": [\n \"mixed mb_http_input([string type])\",\n \"Returns the input encoding\"\n ],\n \"mb_http_output\": [\n \"string mb_http_output([string encoding])\",\n \"Sets the current output_encoding or returns the current output_encoding as a string\"\n ],\n \"mb_internal_encoding\": [\n \"string mb_internal_encoding([string encoding])\",\n \"Sets the current internal encoding or Returns the current internal encoding as a string\"\n ],\n \"mb_language\": [\n \"string mb_language([string language])\",\n \"Sets the current language or Returns the current language as a string\"\n ],\n \"mb_list_encodings\": [\n \"mixed mb_list_encodings()\",\n \"Returns an array of all supported entity encodings\"\n ],\n \"mb_output_handler\": [\n \"string mb_output_handler(string contents, int status)\",\n \"Returns string in output buffer converted to the http_output encoding\"\n ],\n \"mb_parse_str\": [\n \"bool mb_parse_str(string encoded_string [, array result])\",\n \"Parses GET/POST/COOKIE data and sets global variables\"\n ],\n \"mb_preferred_mime_name\": [\n \"string mb_preferred_mime_name(string encoding)\",\n \"Return the preferred MIME name (charset) as a string\"\n ],\n \"mb_regex_encoding\": [\n \"string mb_regex_encoding([string encoding])\",\n \"Returns the current encoding for regex as a string.\"\n ],\n \"mb_regex_set_options\": [\n \"string mb_regex_set_options([string options])\",\n \"Set or get the default options for mbregex functions\"\n ],\n \"mb_send_mail\": [\n \"int mb_send_mail(string to, string subject, string message [, string additional_headers [, string additional_parameters]])\",\n \"* Sends an email message with MIME scheme\"\n ],\n \"mb_split\": [\n \"array mb_split(string pattern, string string [, int limit])\",\n \"split multibyte string into array by regular expression\"\n ],\n \"mb_strcut\": [\n \"string mb_strcut(string str, int start [, int length [, string encoding]])\",\n \"Returns part of a string\"\n ],\n \"mb_strimwidth\": [\n \"string mb_strimwidth(string str, int start, int width [, string trimmarker [, string encoding]])\",\n \"Trim the string in terminal width\"\n ],\n \"mb_stripos\": [\n \"int mb_stripos(string haystack, string needle [, int offset [, string encoding]])\",\n \"Finds position of first occurrence of a string within another, case insensitive\"\n ],\n \"mb_stristr\": [\n \"string mb_stristr(string haystack, string needle[, bool part[, string encoding]])\",\n \"Finds first occurrence of a string within another, case insensitive\"\n ],\n \"mb_strlen\": [\n \"int mb_strlen(string str [, string encoding])\",\n \"Get character numbers of a string\"\n ],\n \"mb_strpos\": [\n \"int mb_strpos(string haystack, string needle [, int offset [, string encoding]])\",\n \"Find position of first occurrence of a string within another\"\n ],\n \"mb_strrchr\": [\n \"string mb_strrchr(string haystack, string needle[, bool part[, string encoding]])\",\n \"Finds the last occurrence of a character in a string within another\"\n ],\n \"mb_strrichr\": [\n \"string mb_strrichr(string haystack, string needle[, bool part[, string encoding]])\",\n \"Finds the last occurrence of a character in a string within another, case insensitive\"\n ],\n \"mb_strripos\": [\n \"int mb_strripos(string haystack, string needle [, int offset [, string encoding]])\",\n \"Finds position of last occurrence of a string within another, case insensitive\"\n ],\n \"mb_strrpos\": [\n \"int mb_strrpos(string haystack, string needle [, int offset [, string encoding]])\",\n \"Find position of last occurrence of a string within another\"\n ],\n \"mb_strstr\": [\n \"string mb_strstr(string haystack, string needle[, bool part[, string encoding]])\",\n \"Finds first occurrence of a string within another\"\n ],\n \"mb_strtolower\": [\n \"string mb_strtolower(string sourcestring [, string encoding])\",\n \"* Returns a lowercased version of sourcestring\"\n ],\n \"mb_strtoupper\": [\n \"string mb_strtoupper(string sourcestring [, string encoding])\",\n \"* Returns a uppercased version of sourcestring\"\n ],\n \"mb_strwidth\": [\n \"int mb_strwidth(string str [, string encoding])\",\n \"Gets terminal width of a string\"\n ],\n \"mb_substitute_character\": [\n \"mixed mb_substitute_character([mixed substchar])\",\n \"Sets the current substitute_character or returns the current substitute_character\"\n ],\n \"mb_substr\": [\n \"string mb_substr(string str, int start [, int length [, string encoding]])\",\n \"Returns part of a string\"\n ],\n \"mb_substr_count\": [\n \"int mb_substr_count(string haystack, string needle [, string encoding])\",\n \"Count the number of substring occurrences\"\n ],\n \"mcrypt_cbc\": [\n \"string mcrypt_cbc(int cipher, string key, string data, int mode, string iv)\",\n \"CBC crypt/decrypt data using key key with cipher cipher starting with iv\"\n ],\n \"mcrypt_cfb\": [\n \"string mcrypt_cfb(int cipher, string key, string data, int mode, string iv)\",\n \"CFB crypt/decrypt data using key key with cipher cipher starting with iv\"\n ],\n \"mcrypt_create_iv\": [\n \"string mcrypt_create_iv(int size, int source)\",\n \"Create an initialization vector (IV)\"\n ],\n \"mcrypt_decrypt\": [\n \"string mcrypt_decrypt(string cipher, string key, string data, string mode, string iv)\",\n \"OFB crypt/decrypt data using key key with cipher cipher starting with iv\"\n ],\n \"mcrypt_ecb\": [\n \"string mcrypt_ecb(int cipher, string key, string data, int mode, string iv)\",\n \"ECB crypt/decrypt data using key key with cipher cipher starting with iv\"\n ],\n \"mcrypt_enc_get_algorithms_name\": [\n \"string mcrypt_enc_get_algorithms_name(resource td)\",\n \"Returns the name of the algorithm specified by the descriptor td\"\n ],\n \"mcrypt_enc_get_block_size\": [\n \"int mcrypt_enc_get_block_size(resource td)\",\n \"Returns the block size of the cipher specified by the descriptor td\"\n ],\n \"mcrypt_enc_get_iv_size\": [\n \"int mcrypt_enc_get_iv_size(resource td)\",\n \"Returns the size of the IV in bytes of the algorithm specified by the descriptor td\"\n ],\n \"mcrypt_enc_get_key_size\": [\n \"int mcrypt_enc_get_key_size(resource td)\",\n \"Returns the maximum supported key size in bytes of the algorithm specified by the descriptor td\"\n ],\n \"mcrypt_enc_get_modes_name\": [\n \"string mcrypt_enc_get_modes_name(resource td)\",\n \"Returns the name of the mode specified by the descriptor td\"\n ],\n \"mcrypt_enc_get_supported_key_sizes\": [\n \"array mcrypt_enc_get_supported_key_sizes(resource td)\",\n \"This function decrypts the crypttext\"\n ],\n \"mcrypt_enc_is_block_algorithm\": [\n \"bool mcrypt_enc_is_block_algorithm(resource td)\",\n \"Returns TRUE if the alrogithm is a block algorithms\"\n ],\n \"mcrypt_enc_is_block_algorithm_mode\": [\n \"bool mcrypt_enc_is_block_algorithm_mode(resource td)\",\n \"Returns TRUE if the mode is for use with block algorithms\"\n ],\n \"mcrypt_enc_is_block_mode\": [\n \"bool mcrypt_enc_is_block_mode(resource td)\",\n \"Returns TRUE if the mode outputs blocks\"\n ],\n \"mcrypt_enc_self_test\": [\n \"int mcrypt_enc_self_test(resource td)\",\n \"This function runs the self test on the algorithm specified by the descriptor td\"\n ],\n \"mcrypt_encrypt\": [\n \"string mcrypt_encrypt(string cipher, string key, string data, string mode, string iv)\",\n \"OFB crypt/decrypt data using key key with cipher cipher starting with iv\"\n ],\n \"mcrypt_generic\": [\n \"string mcrypt_generic(resource td, string data)\",\n \"This function encrypts the plaintext\"\n ],\n \"mcrypt_generic_deinit\": [\n \"bool mcrypt_generic_deinit(resource td)\",\n \"This function terminates encrypt specified by the descriptor td\"\n ],\n \"mcrypt_generic_init\": [\n \"int mcrypt_generic_init(resource td, string key, string iv)\",\n \"This function initializes all buffers for the specific module\"\n ],\n \"mcrypt_get_block_size\": [\n \"int mcrypt_get_block_size(string cipher, string module)\",\n \"Get the key size of cipher\"\n ],\n \"mcrypt_get_cipher_name\": [\n \"string mcrypt_get_cipher_name(string cipher)\",\n \"Get the key size of cipher\"\n ],\n \"mcrypt_get_iv_size\": [\n \"int mcrypt_get_iv_size(string cipher, string module)\",\n \"Get the IV size of cipher (Usually the same as the blocksize)\"\n ],\n \"mcrypt_get_key_size\": [\n \"int mcrypt_get_key_size(string cipher, string module)\",\n \"Get the key size of cipher\"\n ],\n \"mcrypt_list_algorithms\": [\n \"array mcrypt_list_algorithms([string lib_dir])\",\n \"List all algorithms in \\\"module_dir\\\"\"\n ],\n \"mcrypt_list_modes\": [\n \"array mcrypt_list_modes([string lib_dir])\",\n \"List all modes \\\"module_dir\\\"\"\n ],\n \"mcrypt_module_close\": [\n \"bool mcrypt_module_close(resource td)\",\n \"Free the descriptor td\"\n ],\n \"mcrypt_module_get_algo_block_size\": [\n \"int mcrypt_module_get_algo_block_size(string algorithm [, string lib_dir])\",\n \"Returns the block size of the algorithm\"\n ],\n \"mcrypt_module_get_algo_key_size\": [\n \"int mcrypt_module_get_algo_key_size(string algorithm [, string lib_dir])\",\n \"Returns the maximum supported key size of the algorithm\"\n ],\n \"mcrypt_module_get_supported_key_sizes\": [\n \"array mcrypt_module_get_supported_key_sizes(string algorithm [, string lib_dir])\",\n \"This function decrypts the crypttext\"\n ],\n \"mcrypt_module_is_block_algorithm\": [\n \"bool mcrypt_module_is_block_algorithm(string algorithm [, string lib_dir])\",\n \"Returns TRUE if the algorithm is a block algorithm\"\n ],\n \"mcrypt_module_is_block_algorithm_mode\": [\n \"bool mcrypt_module_is_block_algorithm_mode(string mode [, string lib_dir])\",\n \"Returns TRUE if the mode is for use with block algorithms\"\n ],\n \"mcrypt_module_is_block_mode\": [\n \"bool mcrypt_module_is_block_mode(string mode [, string lib_dir])\",\n \"Returns TRUE if the mode outputs blocks of bytes\"\n ],\n \"mcrypt_module_open\": [\n \"resource mcrypt_module_open(string cipher, string cipher_directory, string mode, string mode_directory)\",\n \"Opens the module of the algorithm and the mode to be used\"\n ],\n \"mcrypt_module_self_test\": [\n \"bool mcrypt_module_self_test(string algorithm [, string lib_dir])\",\n \"Does a self test of the module \\\"module\\\"\"\n ],\n \"mcrypt_ofb\": [\n \"string mcrypt_ofb(int cipher, string key, string data, int mode, string iv)\",\n \"OFB crypt/decrypt data using key key with cipher cipher starting with iv\"\n ],\n \"md5\": [\n \"string md5(string str, [ bool raw_output])\",\n \"Calculate the md5 hash of a string\"\n ],\n \"md5_file\": [\n \"string md5_file(string filename [, bool raw_output])\",\n \"Calculate the md5 hash of given filename\"\n ],\n \"mdecrypt_generic\": [\n \"string mdecrypt_generic(resource td, string data)\",\n \"This function decrypts the plaintext\"\n ],\n \"memory_get_peak_usage\": [\n \"int memory_get_peak_usage([real_usage])\",\n \"Returns the peak allocated by PHP memory\"\n ],\n \"memory_get_usage\": [\n \"int memory_get_usage([real_usage])\",\n \"Returns the allocated by PHP memory\"\n ],\n \"metaphone\": [\n \"string metaphone(string text[, int phones])\",\n \"Break english phrases down into their phonemes\"\n ],\n \"method_exists\": [\n \"bool method_exists(object object, string method)\",\n \"Checks if the class method exists\"\n ],\n \"mhash\": [\n \"string mhash(int hash, string data [, string key])\",\n \"Hash data with hash\"\n ],\n \"mhash_count\": [\n \"int mhash_count(void)\",\n \"Gets the number of available hashes\"\n ],\n \"mhash_get_block_size\": [\n \"int mhash_get_block_size(int hash)\",\n \"Gets the block size of hash\"\n ],\n \"mhash_get_hash_name\": [\n \"string mhash_get_hash_name(int hash)\",\n \"Gets the name of hash\"\n ],\n \"mhash_keygen_s2k\": [\n \"string mhash_keygen_s2k(int hash, string input_password, string salt, int bytes)\",\n \"Generates a key using hash functions\"\n ],\n \"microtime\": [\n \"mixed microtime([bool get_as_float])\",\n \"Returns either a string or a float containing the current time in seconds and microseconds\"\n ],\n \"mime_content_type\": [\n \"string mime_content_type(string filename|resource stream)\",\n \"Return content-type for file\"\n ],\n \"min\": [\n \"mixed min(mixed arg1 [, mixed arg2 [, mixed ...]])\",\n \"Return the lowest value in an array or a series of arguments\"\n ],\n \"mkdir\": [\n \"bool mkdir(string pathname [, int mode [, bool recursive [, resource context]]])\",\n \"Create a directory\"\n ],\n \"mktime\": [\n \"int mktime([int hour [, int min [, int sec [, int mon [, int day [, int year]]]]]])\",\n \"Get UNIX timestamp for a date\"\n ],\n \"money_format\": [\n \"string money_format(string format , float value)\",\n \"Convert monetary value(s) to string\"\n ],\n \"move_uploaded_file\": [\n \"bool move_uploaded_file(string path, string new_path)\",\n \"Move a file if and only if it was created by an upload\"\n ],\n \"msg_get_queue\": [\n \"resource msg_get_queue(int key [, int perms])\",\n \"Attach to a message queue\"\n ],\n \"msg_queue_exists\": [\n \"bool msg_queue_exists(int key)\",\n \"Check whether a message queue exists\"\n ],\n \"msg_receive\": [\n \"mixed msg_receive(resource queue, int desiredmsgtype, int &msgtype, int maxsize, mixed message [, bool unserialize=true [, int flags=0 [, int errorcode]]])\",\n \"Send a message of type msgtype (must be > 0) to a message queue\"\n ],\n \"msg_remove_queue\": [\n \"bool msg_remove_queue(resource queue)\",\n \"Destroy the queue\"\n ],\n \"msg_send\": [\n \"bool msg_send(resource queue, int msgtype, mixed message [, bool serialize=true [, bool blocking=true [, int errorcode]]])\",\n \"Send a message of type msgtype (must be > 0) to a message queue\"\n ],\n \"msg_set_queue\": [\n \"bool msg_set_queue(resource queue, array data)\",\n \"Set information for a message queue\"\n ],\n \"msg_stat_queue\": [\n \"array msg_stat_queue(resource queue)\",\n \"Returns information about a message queue\"\n ],\n \"msgfmt_create\": [\n \"MessageFormatter msgfmt_create( string $locale, string $pattern )\",\n \"* Create formatter.\"\n ],\n \"msgfmt_format\": [\n \"mixed msgfmt_format( MessageFormatter $nf, array $args )\",\n \"* Format a message.\"\n ],\n \"msgfmt_format_message\": [\n \"mixed msgfmt_format_message( string $locale, string $pattern, array $args )\",\n \"* Format a message.\"\n ],\n \"msgfmt_get_error_code\": [\n \"int msgfmt_get_error_code( MessageFormatter $nf )\",\n \"* Get formatter's last error code.\"\n ],\n \"msgfmt_get_error_message\": [\n \"string msgfmt_get_error_message( MessageFormatter $coll )\",\n \"* Get text description for formatter's last error code.\"\n ],\n \"msgfmt_get_locale\": [\n \"string msgfmt_get_locale(MessageFormatter $mf)\",\n \"* Get formatter locale.\"\n ],\n \"msgfmt_get_pattern\": [\n \"string msgfmt_get_pattern( MessageFormatter $mf )\",\n \"* Get formatter pattern.\"\n ],\n \"msgfmt_parse\": [\n \"array msgfmt_parse( MessageFormatter $nf, string $source )\",\n \"* Parse a message.\"\n ],\n \"msgfmt_set_pattern\": [\n \"bool msgfmt_set_pattern( MessageFormatter $mf, string $pattern )\",\n \"* Set formatter pattern.\"\n ],\n \"mssql_bind\": [\n \"bool mssql_bind(resource stmt, string param_name, mixed var, int type [, bool is_output [, bool is_null [, int maxlen]]])\",\n \"Adds a parameter to a stored procedure or a remote stored procedure\"\n ],\n \"mssql_close\": [\n \"bool mssql_close([resource conn_id])\",\n \"Closes a connection to a MS-SQL server\"\n ],\n \"mssql_connect\": [\n \"int mssql_connect([string servername [, string username [, string password [, bool new_link]]]])\",\n \"Establishes a connection to a MS-SQL server\"\n ],\n \"mssql_data_seek\": [\n \"bool mssql_data_seek(resource result_id, int offset)\",\n \"Moves the internal row pointer of the MS-SQL result associated with the specified result identifier to pointer to the specified row number\"\n ],\n \"mssql_execute\": [\n \"mixed mssql_execute(resource stmt [, bool skip_results = false])\",\n \"Executes a stored procedure on a MS-SQL server database\"\n ],\n \"mssql_fetch_array\": [\n \"array mssql_fetch_array(resource result_id [, int result_type])\",\n \"Returns an associative array of the current row in the result set specified by result_id\"\n ],\n \"mssql_fetch_assoc\": [\n \"array mssql_fetch_assoc(resource result_id)\",\n \"Returns an associative array of the current row in the result set specified by result_id\"\n ],\n \"mssql_fetch_batch\": [\n \"int mssql_fetch_batch(resource result_index)\",\n \"Returns the next batch of records\"\n ],\n \"mssql_fetch_field\": [\n \"object mssql_fetch_field(resource result_id [, int offset])\",\n \"Gets information about certain fields in a query result\"\n ],\n \"mssql_fetch_object\": [\n \"object mssql_fetch_object(resource result_id)\",\n \"Returns a pseudo-object of the current row in the result set specified by result_id\"\n ],\n \"mssql_fetch_row\": [\n \"array mssql_fetch_row(resource result_id)\",\n \"Returns an array of the current row in the result set specified by result_id\"\n ],\n \"mssql_field_length\": [\n \"int mssql_field_length(resource result_id [, int offset])\",\n \"Get the length of a MS-SQL field\"\n ],\n \"mssql_field_name\": [\n \"string mssql_field_name(resource result_id [, int offset])\",\n \"Returns the name of the field given by offset in the result set given by result_id\"\n ],\n \"mssql_field_seek\": [\n \"bool mssql_field_seek(resource result_id, int offset)\",\n \"Seeks to the specified field offset\"\n ],\n \"mssql_field_type\": [\n \"string mssql_field_type(resource result_id [, int offset])\",\n \"Returns the type of a field\"\n ],\n \"mssql_free_result\": [\n \"bool mssql_free_result(resource result_index)\",\n \"Free a MS-SQL result index\"\n ],\n \"mssql_free_statement\": [\n \"bool mssql_free_statement(resource result_index)\",\n \"Free a MS-SQL statement index\"\n ],\n \"mssql_get_last_message\": [\n \"string mssql_get_last_message(void)\",\n \"Gets the last message from the MS-SQL server\"\n ],\n \"mssql_guid_string\": [\n \"string mssql_guid_string(string binary [,bool short_format])\",\n \"Converts a 16 byte binary GUID to a string\"\n ],\n \"mssql_init\": [\n \"int mssql_init(string sp_name [, resource conn_id])\",\n \"Initializes a stored procedure or a remote stored procedure\"\n ],\n \"mssql_min_error_severity\": [\n \"void mssql_min_error_severity(int severity)\",\n \"Sets the lower error severity\"\n ],\n \"mssql_min_message_severity\": [\n \"void mssql_min_message_severity(int severity)\",\n \"Sets the lower message severity\"\n ],\n \"mssql_next_result\": [\n \"bool mssql_next_result(resource result_id)\",\n \"Move the internal result pointer to the next result\"\n ],\n \"mssql_num_fields\": [\n \"int mssql_num_fields(resource mssql_result_index)\",\n \"Returns the number of fields fetched in from the result id specified\"\n ],\n \"mssql_num_rows\": [\n \"int mssql_num_rows(resource mssql_result_index)\",\n \"Returns the number of rows fetched in from the result id specified\"\n ],\n \"mssql_pconnect\": [\n \"int mssql_pconnect([string servername [, string username [, string password [, bool new_link]]]])\",\n \"Establishes a persistent connection to a MS-SQL server\"\n ],\n \"mssql_query\": [\n \"resource mssql_query(string query [, resource conn_id [, int batch_size]])\",\n \"Perform an SQL query on a MS-SQL server database\"\n ],\n \"mssql_result\": [\n \"string mssql_result(resource result_id, int row, mixed field)\",\n \"Returns the contents of one cell from a MS-SQL result set\"\n ],\n \"mssql_rows_affected\": [\n \"int mssql_rows_affected(resource conn_id)\",\n \"Returns the number of records affected by the query\"\n ],\n \"mssql_select_db\": [\n \"bool mssql_select_db(string database_name [, resource conn_id])\",\n \"Select a MS-SQL database\"\n ],\n \"mt_getrandmax\": [\n \"int mt_getrandmax(void)\",\n \"Returns the maximum value a random number from Mersenne Twister can have\"\n ],\n \"mt_rand\": [\n \"int mt_rand([int min, int max])\",\n \"Returns a random number from Mersenne Twister\"\n ],\n \"mt_srand\": [\n \"void mt_srand([int seed])\",\n \"Seeds Mersenne Twister random number generator\"\n ],\n \"mysql_affected_rows\": [\n \"int mysql_affected_rows([int link_identifier])\",\n \"Gets number of affected rows in previous MySQL operation\"\n ],\n \"mysql_client_encoding\": [\n \"string mysql_client_encoding([int link_identifier])\",\n \"Returns the default character set for the current connection\"\n ],\n \"mysql_close\": [\n \"bool mysql_close([int link_identifier])\",\n \"Close a MySQL connection\"\n ],\n \"mysql_connect\": [\n \"resource mysql_connect([string hostname[:port][:/path/to/socket] [, string username [, string password [, bool new [, int flags]]]]])\",\n \"Opens a connection to a MySQL Server\"\n ],\n \"mysql_create_db\": [\n \"bool mysql_create_db(string database_name [, int link_identifier])\",\n \"Create a MySQL database\"\n ],\n \"mysql_data_seek\": [\n \"bool mysql_data_seek(resource result, int row_number)\",\n \"Move internal result pointer\"\n ],\n \"mysql_db_query\": [\n \"resource mysql_db_query(string database_name, string query [, int link_identifier])\",\n \"Sends an SQL query to MySQL\"\n ],\n \"mysql_drop_db\": [\n \"bool mysql_drop_db(string database_name [, int link_identifier])\",\n \"Drops (delete) a MySQL database\"\n ],\n \"mysql_errno\": [\n \"int mysql_errno([int link_identifier])\",\n \"Returns the number of the error message from previous MySQL operation\"\n ],\n \"mysql_error\": [\n \"string mysql_error([int link_identifier])\",\n \"Returns the text of the error message from previous MySQL operation\"\n ],\n \"mysql_escape_string\": [\n \"string mysql_escape_string(string to_be_escaped)\",\n \"Escape string for mysql query\"\n ],\n \"mysql_fetch_array\": [\n \"array mysql_fetch_array(resource result [, int result_type])\",\n \"Fetch a result row as an array (associative, numeric or both)\"\n ],\n \"mysql_fetch_assoc\": [\n \"array mysql_fetch_assoc(resource result)\",\n \"Fetch a result row as an associative array\"\n ],\n \"mysql_fetch_field\": [\n \"object mysql_fetch_field(resource result [, int field_offset])\",\n \"Gets column information from a result and return as an object\"\n ],\n \"mysql_fetch_lengths\": [\n \"array mysql_fetch_lengths(resource result)\",\n \"Gets max data size of each column in a result\"\n ],\n \"mysql_fetch_object\": [\n \"object mysql_fetch_object(resource result [, string class_name [, NULL|array ctor_params]])\",\n \"Fetch a result row as an object\"\n ],\n \"mysql_fetch_row\": [\n \"array mysql_fetch_row(resource result)\",\n \"Gets a result row as an enumerated array\"\n ],\n \"mysql_field_flags\": [\n \"string mysql_field_flags(resource result, int field_offset)\",\n \"Gets the flags associated with the specified field in a result\"\n ],\n \"mysql_field_len\": [\n \"int mysql_field_len(resource result, int field_offset)\",\n \"Returns the length of the specified field\"\n ],\n \"mysql_field_name\": [\n \"string mysql_field_name(resource result, int field_index)\",\n \"Gets the name of the specified field in a result\"\n ],\n \"mysql_field_seek\": [\n \"bool mysql_field_seek(resource result, int field_offset)\",\n \"Sets result pointer to a specific field offset\"\n ],\n \"mysql_field_table\": [\n \"string mysql_field_table(resource result, int field_offset)\",\n \"Gets name of the table the specified field is in\"\n ],\n \"mysql_field_type\": [\n \"string mysql_field_type(resource result, int field_offset)\",\n \"Gets the type of the specified field in a result\"\n ],\n \"mysql_free_result\": [\n \"bool mysql_free_result(resource result)\",\n \"Free result memory\"\n ],\n \"mysql_get_client_info\": [\n \"string mysql_get_client_info(void)\",\n \"Returns a string that represents the client library version\"\n ],\n \"mysql_get_host_info\": [\n \"string mysql_get_host_info([int link_identifier])\",\n \"Returns a string describing the type of connection in use, including the server host name\"\n ],\n \"mysql_get_proto_info\": [\n \"int mysql_get_proto_info([int link_identifier])\",\n \"Returns the protocol version used by current connection\"\n ],\n \"mysql_get_server_info\": [\n \"string mysql_get_server_info([int link_identifier])\",\n \"Returns a string that represents the server version number\"\n ],\n \"mysql_info\": [\n \"string mysql_info([int link_identifier])\",\n \"Returns a string containing information about the most recent query\"\n ],\n \"mysql_insert_id\": [\n \"int mysql_insert_id([int link_identifier])\",\n \"Gets the ID generated from the previous INSERT operation\"\n ],\n \"mysql_list_dbs\": [\n \"resource mysql_list_dbs([int link_identifier])\",\n \"List databases available on a MySQL server\"\n ],\n \"mysql_list_fields\": [\n \"resource mysql_list_fields(string database_name, string table_name [, int link_identifier])\",\n \"List MySQL result fields\"\n ],\n \"mysql_list_processes\": [\n \"resource mysql_list_processes([int link_identifier])\",\n \"Returns a result set describing the current server threads\"\n ],\n \"mysql_list_tables\": [\n \"resource mysql_list_tables(string database_name [, int link_identifier])\",\n \"List tables in a MySQL database\"\n ],\n \"mysql_num_fields\": [\n \"int mysql_num_fields(resource result)\",\n \"Gets number of fields in a result\"\n ],\n \"mysql_num_rows\": [\n \"int mysql_num_rows(resource result)\",\n \"Gets number of rows in a result\"\n ],\n \"mysql_pconnect\": [\n \"resource mysql_pconnect([string hostname[:port][:/path/to/socket] [, string username [, string password [, int flags]]]])\",\n \"Opens a persistent connection to a MySQL Server\"\n ],\n \"mysql_ping\": [\n \"bool mysql_ping([int link_identifier])\",\n \"Ping a server connection. If no connection then reconnect.\"\n ],\n \"mysql_query\": [\n \"resource mysql_query(string query [, int link_identifier])\",\n \"Sends an SQL query to MySQL\"\n ],\n \"mysql_real_escape_string\": [\n \"string mysql_real_escape_string(string to_be_escaped [, int link_identifier])\",\n \"Escape special characters in a string for use in a SQL statement, taking into account the current charset of the connection\"\n ],\n \"mysql_result\": [\n \"mixed mysql_result(resource result, int row [, mixed field])\",\n \"Gets result data\"\n ],\n \"mysql_select_db\": [\n \"bool mysql_select_db(string database_name [, int link_identifier])\",\n \"Selects a MySQL database\"\n ],\n \"mysql_set_charset\": [\n \"bool mysql_set_charset(string csname [, int link_identifier])\",\n \"sets client character set\"\n ],\n \"mysql_stat\": [\n \"string mysql_stat([int link_identifier])\",\n \"Returns a string containing status information\"\n ],\n \"mysql_thread_id\": [\n \"int mysql_thread_id([int link_identifier])\",\n \"Returns the thread id of current connection\"\n ],\n \"mysql_unbuffered_query\": [\n \"resource mysql_unbuffered_query(string query [, int link_identifier])\",\n \"Sends an SQL query to MySQL, without fetching and buffering the result rows\"\n ],\n \"mysqli_affected_rows\": [\n \"mixed mysqli_affected_rows(object link)\",\n \"Get number of affected rows in previous MySQL operation\"\n ],\n \"mysqli_autocommit\": [\n \"bool mysqli_autocommit(object link, bool mode)\",\n \"Turn auto commit on or of\"\n ],\n \"mysqli_cache_stats\": [\n \"array mysqli_cache_stats(void)\",\n \"Returns statistics about the zval cache\"\n ],\n \"mysqli_change_user\": [\n \"bool mysqli_change_user(object link, string user, string password, string database)\",\n \"Change logged-in user of the active connection\"\n ],\n \"mysqli_character_set_name\": [\n \"string mysqli_character_set_name(object link)\",\n \"Returns the name of the character set used for this connection\"\n ],\n \"mysqli_close\": [\n \"bool mysqli_close(object link)\",\n \"Close connection\"\n ],\n \"mysqli_commit\": [\n \"bool mysqli_commit(object link)\",\n \"Commit outstanding actions and close transaction\"\n ],\n \"mysqli_connect\": [\n \"object mysqli_connect([string hostname [,string username [,string passwd [,string dbname [,int port [,string socket]]]]]])\",\n \"Open a connection to a mysql server\"\n ],\n \"mysqli_connect_errno\": [\n \"int mysqli_connect_errno(void)\",\n \"Returns the numerical value of the error message from last connect command\"\n ],\n \"mysqli_connect_error\": [\n \"string mysqli_connect_error(void)\",\n \"Returns the text of the error message from previous MySQL operation\"\n ],\n \"mysqli_data_seek\": [\n \"bool mysqli_data_seek(object result, int offset)\",\n \"Move internal result pointer\"\n ],\n \"mysqli_debug\": [\n \"void mysqli_debug(string debug)\",\n \"\"\n ],\n \"mysqli_dump_debug_info\": [\n \"bool mysqli_dump_debug_info(object link)\",\n \"\"\n ],\n \"mysqli_embedded_server_end\": [\n \"void mysqli_embedded_server_end(void)\",\n \"\"\n ],\n \"mysqli_embedded_server_start\": [\n \"bool mysqli_embedded_server_start(bool start, array arguments, array groups)\",\n \"initialize and start embedded server\"\n ],\n \"mysqli_errno\": [\n \"int mysqli_errno(object link)\",\n \"Returns the numerical value of the error message from previous MySQL operation\"\n ],\n \"mysqli_error\": [\n \"string mysqli_error(object link)\",\n \"Returns the text of the error message from previous MySQL operation\"\n ],\n \"mysqli_fetch_all\": [\n \"mixed mysqli_fetch_all (object result [,int resulttype])\",\n \"Fetches all result rows as an associative array, a numeric array, or both\"\n ],\n \"mysqli_fetch_array\": [\n \"mixed mysqli_fetch_array (object result [,int resulttype])\",\n \"Fetch a result row as an associative array, a numeric array, or both\"\n ],\n \"mysqli_fetch_assoc\": [\n \"mixed mysqli_fetch_assoc (object result)\",\n \"Fetch a result row as an associative array\"\n ],\n \"mysqli_fetch_field\": [\n \"mixed mysqli_fetch_field (object result)\",\n \"Get column information from a result and return as an object\"\n ],\n \"mysqli_fetch_field_direct\": [\n \"mixed mysqli_fetch_field_direct (object result, int offset)\",\n \"Fetch meta-data for a single field\"\n ],\n \"mysqli_fetch_fields\": [\n \"mixed mysqli_fetch_fields (object result)\",\n \"Return array of objects containing field meta-data\"\n ],\n \"mysqli_fetch_lengths\": [\n \"mixed mysqli_fetch_lengths (object result)\",\n \"Get the length of each output in a result\"\n ],\n \"mysqli_fetch_object\": [\n \"mixed mysqli_fetch_object (object result [, string class_name [, NULL|array ctor_params]])\",\n \"Fetch a result row as an object\"\n ],\n \"mysqli_fetch_row\": [\n \"array mysqli_fetch_row (object result)\",\n \"Get a result row as an enumerated array\"\n ],\n \"mysqli_field_count\": [\n \"int mysqli_field_count(object link)\",\n \"Fetch the number of fields returned by the last query for the given link\"\n ],\n \"mysqli_field_seek\": [\n \"int mysqli_field_seek(object result, int fieldnr)\",\n \"Set result pointer to a specified field offset\"\n ],\n \"mysqli_field_tell\": [\n \"int mysqli_field_tell(object result)\",\n \"Get current field offset of result pointer\"\n ],\n \"mysqli_free_result\": [\n \"void mysqli_free_result(object result)\",\n \"Free query result memory for the given result handle\"\n ],\n \"mysqli_get_charset\": [\n \"object mysqli_get_charset(object link)\",\n \"returns a character set object\"\n ],\n \"mysqli_get_client_info\": [\n \"string mysqli_get_client_info(void)\",\n \"Get MySQL client info\"\n ],\n \"mysqli_get_client_stats\": [\n \"array mysqli_get_client_stats(void)\",\n \"Returns statistics about the zval cache\"\n ],\n \"mysqli_get_client_version\": [\n \"int mysqli_get_client_version(void)\",\n \"Get MySQL client info\"\n ],\n \"mysqli_get_connection_stats\": [\n \"array mysqli_get_connection_stats(void)\",\n \"Returns statistics about the zval cache\"\n ],\n \"mysqli_get_host_info\": [\n \"string mysqli_get_host_info (object link)\",\n \"Get MySQL host info\"\n ],\n \"mysqli_get_proto_info\": [\n \"int mysqli_get_proto_info(object link)\",\n \"Get MySQL protocol information\"\n ],\n \"mysqli_get_server_info\": [\n \"string mysqli_get_server_info(object link)\",\n \"Get MySQL server info\"\n ],\n \"mysqli_get_server_version\": [\n \"int mysqli_get_server_version(object link)\",\n \"Return the MySQL version for the server referenced by the given link\"\n ],\n \"mysqli_get_warnings\": [\n \"object mysqli_get_warnings(object link) */\",\n \"PHP_FUNCTION(mysqli_get_warnings) { MY_MYSQL *mysql; zval *mysql_link; MYSQLI_RESOURCE *mysqli_resource; MYSQLI_WARNING *w; if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), \\\"O\\\", &mysql_link, mysqli_link_class_entry) == FAILURE) { return; } MYSQLI_FETCH_RESOURCE(mysql, MY_MYSQL*, &mysql_link, \\\"mysqli_link\\\", MYSQLI_STATUS_VALID); if (mysql_warning_count(mysql->mysql)) { w = php_get_warnings(mysql->mysql TSRMLS_CC); } else { RETURN_FALSE; } mysqli_resource = (MYSQLI_RESOURCE *)ecalloc (1, sizeof(MYSQLI_RESOURCE)); mysqli_resource->ptr = mysqli_resource->info = (void *)w; mysqli_resource->status = MYSQLI_STATUS_VALID; MYSQLI_RETURN_RESOURCE(mysqli_resource, mysqli_warning_class_entry); } /* }}}\"\n ],\n \"mysqli_info\": [\n \"string mysqli_info(object link)\",\n \"Get information about the most recent query\"\n ],\n \"mysqli_init\": [\n \"resource mysqli_init(void)\",\n \"Initialize mysqli and return a resource for use with mysql_real_connect\"\n ],\n \"mysqli_insert_id\": [\n \"mixed mysqli_insert_id(object link)\",\n \"Get the ID generated from the previous INSERT operation\"\n ],\n \"mysqli_kill\": [\n \"bool mysqli_kill(object link, int processid)\",\n \"Kill a mysql process on the server\"\n ],\n \"mysqli_link_construct\": [\n \"object mysqli_link_construct()\",\n \"\"\n ],\n \"mysqli_more_results\": [\n \"bool mysqli_more_results(object link)\",\n \"check if there any more query results from a multi query\"\n ],\n \"mysqli_multi_query\": [\n \"bool mysqli_multi_query(object link, string query)\",\n \"allows to execute multiple queries\"\n ],\n \"mysqli_next_result\": [\n \"bool mysqli_next_result(object link)\",\n \"read next result from multi_query\"\n ],\n \"mysqli_num_fields\": [\n \"int mysqli_num_fields(object result)\",\n \"Get number of fields in result\"\n ],\n \"mysqli_num_rows\": [\n \"mixed mysqli_num_rows(object result)\",\n \"Get number of rows in result\"\n ],\n \"mysqli_options\": [\n \"bool mysqli_options(object link, int flags, mixed values)\",\n \"Set options\"\n ],\n \"mysqli_ping\": [\n \"bool mysqli_ping(object link)\",\n \"Ping a server connection or reconnect if there is no connection\"\n ],\n \"mysqli_poll\": [\n \"int mysqli_poll(array read, array write, array error, long sec [, long usec])\",\n \"Poll connections\"\n ],\n \"mysqli_prepare\": [\n \"mixed mysqli_prepare(object link, string query)\",\n \"Prepare a SQL statement for execution\"\n ],\n \"mysqli_query\": [\n \"mixed mysqli_query(object link, string query [,int resultmode]) */\",\n \"PHP_FUNCTION(mysqli_query) { MY_MYSQL *mysql; zval *mysql_link; MYSQLI_RESOURCE *mysqli_resource; MYSQL_RES *result; char *query = NULL; unsigned int query_len; unsigned long resultmode = MYSQLI_STORE_RESULT; if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), \\\"Os|l\\\", &mysql_link, mysqli_link_class_entry, &query, &query_len, &resultmode) == FAILURE) { return; } if (!query_len) { php_error_docref(NULL TSRMLS_CC, E_WARNING, \\\"Empty query\\\"); RETURN_FALSE; } if ((resultmode & ~MYSQLI_ASYNC) != MYSQLI_USE_RESULT && (resultmode & ~MYSQLI_ASYNC) != MYSQLI_STORE_RESULT) { php_error_docref(NULL TSRMLS_CC, E_WARNING, \\\"Invalid value for resultmode\\\"); RETURN_FALSE; } MYSQLI_FETCH_RESOURCE(mysql, MY_MYSQL*, &mysql_link, \\\"mysqli_link\\\", MYSQLI_STATUS_VALID); MYSQLI_DISABLE_MQ; #ifdef MYSQLI_USE_MYSQLND if (resultmode & MYSQLI_ASYNC) { if (mysqli_async_query(mysql->mysql, query, query_len)) { MYSQLI_REPORT_MYSQL_ERROR(mysql->mysql); RETURN_FALSE; } mysql->async_result_fetch_type = resultmode & ~MYSQLI_ASYNC; RETURN_TRUE; } #endif if (mysql_real_query(mysql->mysql, query, query_len)) { MYSQLI_REPORT_MYSQL_ERROR(mysql->mysql); RETURN_FALSE; } if (!mysql_field_count(mysql->mysql)) { /* no result set - not a SELECT\"\n ],\n \"mysqli_real_connect\": [\n \"bool mysqli_real_connect(object link [,string hostname [,string username [,string passwd [,string dbname [,int port [,string socket [,int flags]]]]]]])\",\n \"Open a connection to a mysql server\"\n ],\n \"mysqli_real_escape_string\": [\n \"string mysqli_real_escape_string(object link, string escapestr)\",\n \"Escapes special characters in a string for use in a SQL statement, taking into account the current charset of the connection\"\n ],\n \"mysqli_real_query\": [\n \"bool mysqli_real_query(object link, string query)\",\n \"Binary-safe version of mysql_query()\"\n ],\n \"mysqli_reap_async_query\": [\n \"int mysqli_reap_async_query(object link)\",\n \"Poll connections\"\n ],\n \"mysqli_refresh\": [\n \"bool mysqli_refresh(object link, long options)\",\n \"Flush tables or caches, or reset replication server information\"\n ],\n \"mysqli_report\": [\n \"bool mysqli_report(int flags)\",\n \"sets report level\"\n ],\n \"mysqli_rollback\": [\n \"bool mysqli_rollback(object link)\",\n \"Undo actions from current transaction\"\n ],\n \"mysqli_select_db\": [\n \"bool mysqli_select_db(object link, string dbname)\",\n \"Select a MySQL database\"\n ],\n \"mysqli_set_charset\": [\n \"bool mysqli_set_charset(object link, string csname)\",\n \"sets client character set\"\n ],\n \"mysqli_set_local_infile_default\": [\n \"void mysqli_set_local_infile_default(object link)\",\n \"unsets user defined handler for load local infile command\"\n ],\n \"mysqli_set_local_infile_handler\": [\n \"bool mysqli_set_local_infile_handler(object link, callback read_func)\",\n \"Set callback functions for LOAD DATA LOCAL INFILE\"\n ],\n \"mysqli_sqlstate\": [\n \"string mysqli_sqlstate(object link)\",\n \"Returns the SQLSTATE error from previous MySQL operation\"\n ],\n \"mysqli_ssl_set\": [\n \"bool mysqli_ssl_set(object link ,string key ,string cert ,string ca ,string capath ,string cipher])\",\n \"\"\n ],\n \"mysqli_stat\": [\n \"mixed mysqli_stat(object link)\",\n \"Get current system status\"\n ],\n \"mysqli_stmt_affected_rows\": [\n \"mixed mysqli_stmt_affected_rows(object stmt)\",\n \"Return the number of rows affected in the last query for the given link\"\n ],\n \"mysqli_stmt_attr_get\": [\n \"int mysqli_stmt_attr_get(object stmt, long attr)\",\n \"\"\n ],\n \"mysqli_stmt_attr_set\": [\n \"int mysqli_stmt_attr_set(object stmt, long attr, long mode)\",\n \"\"\n ],\n \"mysqli_stmt_bind_param\": [\n \"bool mysqli_stmt_bind_param(object stmt, string types, mixed variable [,mixed,....])\",\n \"Bind variables to a prepared statement as parameters\"\n ],\n \"mysqli_stmt_bind_result\": [\n \"bool mysqli_stmt_bind_result(object stmt, mixed var, [,mixed, ...])\",\n \"Bind variables to a prepared statement for result storage\"\n ],\n \"mysqli_stmt_close\": [\n \"bool mysqli_stmt_close(object stmt)\",\n \"Close statement\"\n ],\n \"mysqli_stmt_data_seek\": [\n \"void mysqli_stmt_data_seek(object stmt, int offset)\",\n \"Move internal result pointer\"\n ],\n \"mysqli_stmt_errno\": [\n \"int mysqli_stmt_errno(object stmt)\",\n \"\"\n ],\n \"mysqli_stmt_error\": [\n \"string mysqli_stmt_error(object stmt)\",\n \"\"\n ],\n \"mysqli_stmt_execute\": [\n \"bool mysqli_stmt_execute(object stmt)\",\n \"Execute a prepared statement\"\n ],\n \"mysqli_stmt_fetch\": [\n \"mixed mysqli_stmt_fetch(object stmt)\",\n \"Fetch results from a prepared statement into the bound variables\"\n ],\n \"mysqli_stmt_field_count\": [\n \"int mysqli_stmt_field_count(object stmt) {\",\n \"Return the number of result columns for the given statement\"\n ],\n \"mysqli_stmt_free_result\": [\n \"void mysqli_stmt_free_result(object stmt)\",\n \"Free stored result memory for the given statement handle\"\n ],\n \"mysqli_stmt_get_result\": [\n \"object mysqli_stmt_get_result(object link)\",\n \"Buffer result set on client\"\n ],\n \"mysqli_stmt_get_warnings\": [\n \"object mysqli_stmt_get_warnings(object link) */\",\n \"PHP_FUNCTION(mysqli_stmt_get_warnings) { MY_STMT *stmt; zval *stmt_link; MYSQLI_RESOURCE *mysqli_resource; MYSQLI_WARNING *w; if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), \\\"O\\\", &stmt_link, mysqli_stmt_class_entry) == FAILURE) { return; } MYSQLI_FETCH_RESOURCE(stmt, MY_STMT*, &stmt_link, \\\"mysqli_stmt\\\", MYSQLI_STATUS_VALID); if (mysqli_stmt_warning_count(stmt->stmt)) { w = php_get_warnings(mysqli_stmt_get_connection(stmt->stmt) TSRMLS_CC); } else { RETURN_FALSE; } mysqli_resource = (MYSQLI_RESOURCE *)ecalloc (1, sizeof(MYSQLI_RESOURCE)); mysqli_resource->ptr = mysqli_resource->info = (void *)w; mysqli_resource->status = MYSQLI_STATUS_VALID; MYSQLI_RETURN_RESOURCE(mysqli_resource, mysqli_warning_class_entry); } /* }}}\"\n ],\n \"mysqli_stmt_init\": [\n \"mixed mysqli_stmt_init(object link)\",\n \"Initialize statement object\"\n ],\n \"mysqli_stmt_insert_id\": [\n \"mixed mysqli_stmt_insert_id(object stmt)\",\n \"Get the ID generated from the previous INSERT operation\"\n ],\n \"mysqli_stmt_next_result\": [\n \"bool mysqli_stmt_next_result(object link)\",\n \"read next result from multi_query\"\n ],\n \"mysqli_stmt_num_rows\": [\n \"mixed mysqli_stmt_num_rows(object stmt)\",\n \"Return the number of rows in statements result set\"\n ],\n \"mysqli_stmt_param_count\": [\n \"int mysqli_stmt_param_count(object stmt)\",\n \"Return the number of parameter for the given statement\"\n ],\n \"mysqli_stmt_prepare\": [\n \"bool mysqli_stmt_prepare(object stmt, string query)\",\n \"prepare server side statement with query\"\n ],\n \"mysqli_stmt_reset\": [\n \"bool mysqli_stmt_reset(object stmt)\",\n \"reset a prepared statement\"\n ],\n \"mysqli_stmt_result_metadata\": [\n \"mixed mysqli_stmt_result_metadata(object stmt)\",\n \"return result set from statement\"\n ],\n \"mysqli_stmt_send_long_data\": [\n \"bool mysqli_stmt_send_long_data(object stmt, int param_nr, string data)\",\n \"\"\n ],\n \"mysqli_stmt_sqlstate\": [\n \"string mysqli_stmt_sqlstate(object stmt)\",\n \"\"\n ],\n \"mysqli_stmt_store_result\": [\n \"bool mysqli_stmt_store_result(stmt)\",\n \"\"\n ],\n \"mysqli_store_result\": [\n \"object mysqli_store_result(object link)\",\n \"Buffer result set on client\"\n ],\n \"mysqli_thread_id\": [\n \"int mysqli_thread_id(object link)\",\n \"Return the current thread ID\"\n ],\n \"mysqli_thread_safe\": [\n \"bool mysqli_thread_safe(void)\",\n \"Return whether thread safety is given or not\"\n ],\n \"mysqli_use_result\": [\n \"mixed mysqli_use_result(object link)\",\n \"Directly retrieve query results - do not buffer results on client side\"\n ],\n \"mysqli_warning_count\": [\n \"int mysqli_warning_count (object link)\",\n \"Return number of warnings from the last query for the given link\"\n ],\n \"natcasesort\": [\n \"void natcasesort(array &array_arg)\",\n \"Sort an array using case-insensitive natural sort\"\n ],\n \"natsort\": [\n \"void natsort(array &array_arg)\",\n \"Sort an array using natural sort\"\n ],\n \"next\": [\n \"mixed next(array array_arg)\",\n \"Move array argument's internal pointer to the next element and return it\"\n ],\n \"ngettext\": [\n \"string ngettext(string MSGID1, string MSGID2, int N)\",\n \"Plural version of gettext()\"\n ],\n \"nl2br\": [\n \"string nl2br(string str [, bool is_xhtml])\",\n \"Converts newlines to HTML line breaks\"\n ],\n \"nl_langinfo\": [\n \"string nl_langinfo(int item)\",\n \"Query language and locale information\"\n ],\n \"normalizer_is_normalize\": [\n \"bool normalizer_is_normalize( string $input [, string $form = FORM_C] )\",\n \"* Test if a string is in a given normalization form.\"\n ],\n \"normalizer_normalize\": [\n \"string normalizer_normalize( string $input [, string $form = FORM_C] )\",\n \"* Normalize a string.\"\n ],\n \"nsapi_request_headers\": [\n \"array nsapi_request_headers(void)\",\n \"Get all headers from the request\"\n ],\n \"nsapi_response_headers\": [\n \"array nsapi_response_headers(void)\",\n \"Get all headers from the response\"\n ],\n \"nsapi_virtual\": [\n \"bool nsapi_virtual(string uri)\",\n \"Perform an NSAPI sub-request\"\n ],\n \"number_format\": [\n \"string number_format(float number [, int num_decimal_places [, string dec_seperator, string thousands_seperator]])\",\n \"Formats a number with grouped thousands\"\n ],\n \"numfmt_create\": [\n \"NumberFormatter numfmt_create( string $locale, int style[, string $pattern ] )\",\n \"* Create number formatter.\"\n ],\n \"numfmt_format\": [\n \"mixed numfmt_format( NumberFormatter $nf, mixed $num[, int type] )\",\n \"* Format a number.\"\n ],\n \"numfmt_format_currency\": [\n \"mixed numfmt_format_currency( NumberFormatter $nf, double $num, string $currency )\",\n \"* Format a number as currency.\"\n ],\n \"numfmt_get_attribute\": [\n \"mixed numfmt_get_attribute( NumberFormatter $nf, int $attr )\",\n \"* Get formatter attribute value.\"\n ],\n \"numfmt_get_error_code\": [\n \"int numfmt_get_error_code( NumberFormatter $nf )\",\n \"* Get formatter's last error code.\"\n ],\n \"numfmt_get_error_message\": [\n \"string numfmt_get_error_message( NumberFormatter $nf )\",\n \"* Get text description for formatter's last error code.\"\n ],\n \"numfmt_get_locale\": [\n \"string numfmt_get_locale( NumberFormatter $nf[, int type] )\",\n \"* Get formatter locale.\"\n ],\n \"numfmt_get_pattern\": [\n \"string numfmt_get_pattern( NumberFormatter $nf )\",\n \"* Get formatter pattern.\"\n ],\n \"numfmt_get_symbol\": [\n \"string numfmt_get_symbol( NumberFormatter $nf, int $attr )\",\n \"* Get formatter symbol value.\"\n ],\n \"numfmt_get_text_attribute\": [\n \"string numfmt_get_text_attribute( NumberFormatter $nf, int $attr )\",\n \"* Get formatter attribute value.\"\n ],\n \"numfmt_parse\": [\n \"mixed numfmt_parse( NumberFormatter $nf, string $str[, int $type, int &$position ])\",\n \"* Parse a number.\"\n ],\n \"numfmt_parse_currency\": [\n \"double numfmt_parse_currency( NumberFormatter $nf, string $str, string $¤cy[, int $&position] )\",\n \"* Parse a number as currency.\"\n ],\n \"numfmt_parse_message\": [\n \"array numfmt_parse_message( string $locale, string $pattern, string $source )\",\n \"* Parse a message.\"\n ],\n \"numfmt_set_attribute\": [\n \"bool numfmt_set_attribute( NumberFormatter $nf, int $attr, mixed $value )\",\n \"* Get formatter attribute value.\"\n ],\n \"numfmt_set_pattern\": [\n \"bool numfmt_set_pattern( NumberFormatter $nf, string $pattern )\",\n \"* Set formatter pattern.\"\n ],\n \"numfmt_set_symbol\": [\n \"bool numfmt_set_symbol( NumberFormatter $nf, int $attr, string $symbol )\",\n \"* Set formatter symbol value.\"\n ],\n \"numfmt_set_text_attribute\": [\n \"bool numfmt_set_text_attribute( NumberFormatter $nf, int $attr, string $value )\",\n \"* Get formatter attribute value.\"\n ],\n \"ob_clean\": [\n \"bool ob_clean(void)\",\n \"Clean (delete) the current output buffer\"\n ],\n \"ob_end_clean\": [\n \"bool ob_end_clean(void)\",\n \"Clean the output buffer, and delete current output buffer\"\n ],\n \"ob_end_flush\": [\n \"bool ob_end_flush(void)\",\n \"Flush (send) the output buffer, and delete current output buffer\"\n ],\n \"ob_flush\": [\n \"bool ob_flush(void)\",\n \"Flush (send) contents of the output buffer. The last buffer content is sent to next buffer\"\n ],\n \"ob_get_clean\": [\n \"bool ob_get_clean(void)\",\n \"Get current buffer contents and delete current output buffer\"\n ],\n \"ob_get_contents\": [\n \"string ob_get_contents(void)\",\n \"Return the contents of the output buffer\"\n ],\n \"ob_get_flush\": [\n \"bool ob_get_flush(void)\",\n \"Get current buffer contents, flush (send) the output buffer, and delete current output buffer\"\n ],\n \"ob_get_length\": [\n \"int ob_get_length(void)\",\n \"Return the length of the output buffer\"\n ],\n \"ob_get_level\": [\n \"int ob_get_level(void)\",\n \"Return the nesting level of the output buffer\"\n ],\n \"ob_get_status\": [\n \"false|array ob_get_status([bool full_status])\",\n \"Return the status of the active or all output buffers\"\n ],\n \"ob_gzhandler\": [\n \"string ob_gzhandler(string str, int mode)\",\n \"Encode str based on accept-encoding setting - designed to be called from ob_start()\"\n ],\n \"ob_iconv_handler\": [\n \"string ob_iconv_handler(string contents, int status)\",\n \"Returns str in output buffer converted to the iconv.output_encoding character set\"\n ],\n \"ob_implicit_flush\": [\n \"void ob_implicit_flush([int flag])\",\n \"Turn implicit flush on/off and is equivalent to calling flush() after every output call\"\n ],\n \"ob_list_handlers\": [\n \"false|array ob_list_handlers()\",\n \"* List all output_buffers in an array\"\n ],\n \"ob_start\": [\n \"bool ob_start([ string|array user_function [, int chunk_size [, bool erase]]])\",\n \"Turn on Output Buffering (specifying an optional output handler).\"\n ],\n \"oci_bind_array_by_name\": [\n \"bool oci_bind_array_by_name(resource stmt, string name, array &var, int max_table_length [, int max_item_length [, int type ]])\",\n \"Bind a PHP array to an Oracle PL/SQL type by name\"\n ],\n \"oci_bind_by_name\": [\n \"bool oci_bind_by_name(resource stmt, string name, mixed &var, [, int maxlength [, int type]])\",\n \"Bind a PHP variable to an Oracle placeholder by name\"\n ],\n \"oci_cancel\": [\n \"bool oci_cancel(resource stmt)\",\n \"Cancel reading from a cursor\"\n ],\n \"oci_close\": [\n \"bool oci_close(resource connection)\",\n \"Disconnect from database\"\n ],\n \"oci_collection_append\": [\n \"bool oci_collection_append(string value)\",\n \"Append an object to the collection\"\n ],\n \"oci_collection_assign\": [\n \"bool oci_collection_assign(object from)\",\n \"Assign a collection from another existing collection\"\n ],\n \"oci_collection_element_assign\": [\n \"bool oci_collection_element_assign(int index, string val)\",\n \"Assign element val to collection at index ndx\"\n ],\n \"oci_collection_element_get\": [\n \"string oci_collection_element_get(int ndx)\",\n \"Retrieve the value at collection index ndx\"\n ],\n \"oci_collection_max\": [\n \"int oci_collection_max()\",\n \"Return the max value of a collection. For a varray this is the maximum length of the array\"\n ],\n \"oci_collection_size\": [\n \"int oci_collection_size()\",\n \"Return the size of a collection\"\n ],\n \"oci_collection_trim\": [\n \"bool oci_collection_trim(int num)\",\n \"Trim num elements from the end of a collection\"\n ],\n \"oci_commit\": [\n \"bool oci_commit(resource connection)\",\n \"Commit the current context\"\n ],\n \"oci_connect\": [\n \"resource oci_connect(string user, string pass [, string db [, string charset [, int session_mode ]])\",\n \"Connect to an Oracle database and log on. Returns a new session.\"\n ],\n \"oci_define_by_name\": [\n \"bool oci_define_by_name(resource stmt, string name, mixed &var [, int type])\",\n \"Define a PHP variable to an Oracle column by name\"\n ],\n \"oci_error\": [\n \"array oci_error([resource stmt|connection|global])\",\n \"Return the last error of stmt|connection|global. If no error happened returns false.\"\n ],\n \"oci_execute\": [\n \"bool oci_execute(resource stmt [, int mode])\",\n \"Execute a parsed statement\"\n ],\n \"oci_fetch\": [\n \"bool oci_fetch(resource stmt)\",\n \"Prepare a new row of data for reading\"\n ],\n \"oci_fetch_all\": [\n \"int oci_fetch_all(resource stmt, array &output[, int skip[, int maxrows[, int flags]]])\",\n \"Fetch all rows of result data into an array\"\n ],\n \"oci_fetch_array\": [\n \"array oci_fetch_array( resource stmt [, int mode ])\",\n \"Fetch a result row as an array\"\n ],\n \"oci_fetch_assoc\": [\n \"array oci_fetch_assoc( resource stmt )\",\n \"Fetch a result row as an associative array\"\n ],\n \"oci_fetch_object\": [\n \"object oci_fetch_object( resource stmt )\",\n \"Fetch a result row as an object\"\n ],\n \"oci_fetch_row\": [\n \"array oci_fetch_row( resource stmt )\",\n \"Fetch a result row as an enumerated array\"\n ],\n \"oci_field_is_null\": [\n \"bool oci_field_is_null(resource stmt, int col)\",\n \"Tell whether a column is NULL\"\n ],\n \"oci_field_name\": [\n \"string oci_field_name(resource stmt, int col)\",\n \"Tell the name of a column\"\n ],\n \"oci_field_precision\": [\n \"int oci_field_precision(resource stmt, int col)\",\n \"Tell the precision of a column\"\n ],\n \"oci_field_scale\": [\n \"int oci_field_scale(resource stmt, int col)\",\n \"Tell the scale of a column\"\n ],\n \"oci_field_size\": [\n \"int oci_field_size(resource stmt, int col)\",\n \"Tell the maximum data size of a column\"\n ],\n \"oci_field_type\": [\n \"mixed oci_field_type(resource stmt, int col)\",\n \"Tell the data type of a column\"\n ],\n \"oci_field_type_raw\": [\n \"int oci_field_type_raw(resource stmt, int col)\",\n \"Tell the raw oracle data type of a column\"\n ],\n \"oci_free_collection\": [\n \"bool oci_free_collection()\",\n \"Deletes collection object\"\n ],\n \"oci_free_descriptor\": [\n \"bool oci_free_descriptor()\",\n \"Deletes large object description\"\n ],\n \"oci_free_statement\": [\n \"bool oci_free_statement(resource stmt)\",\n \"Free all resources associated with a statement\"\n ],\n \"oci_internal_debug\": [\n \"void oci_internal_debug(int onoff)\",\n \"Toggle internal debugging output for the OCI extension\"\n ],\n \"oci_lob_append\": [\n \"bool oci_lob_append( object lob )\",\n \"Appends data from a LOB to another LOB\"\n ],\n \"oci_lob_close\": [\n \"bool oci_lob_close()\",\n \"Closes lob descriptor\"\n ],\n \"oci_lob_copy\": [\n \"bool oci_lob_copy( object lob_to, object lob_from [, int length ] )\",\n \"Copies data from a LOB to another LOB\"\n ],\n \"oci_lob_eof\": [\n \"bool oci_lob_eof()\",\n \"Checks if EOF is reached\"\n ],\n \"oci_lob_erase\": [\n \"int oci_lob_erase( [ int offset [, int length ] ] )\",\n \"Erases a specified portion of the internal LOB, starting at a specified offset\"\n ],\n \"oci_lob_export\": [\n \"bool oci_lob_export([string filename [, int start [, int length]]])\",\n \"Writes a large object into a file\"\n ],\n \"oci_lob_flush\": [\n \"bool oci_lob_flush( [ int flag ] )\",\n \"Flushes the LOB buffer\"\n ],\n \"oci_lob_import\": [\n \"bool oci_lob_import( string filename )\",\n \"Loads file into a LOB\"\n ],\n \"oci_lob_is_equal\": [\n \"bool oci_lob_is_equal( object lob1, object lob2 )\",\n \"Tests to see if two LOB/FILE locators are equal\"\n ],\n \"oci_lob_load\": [\n \"string oci_lob_load()\",\n \"Loads a large object\"\n ],\n \"oci_lob_read\": [\n \"string oci_lob_read( int length )\",\n \"Reads particular part of a large object\"\n ],\n \"oci_lob_rewind\": [\n \"bool oci_lob_rewind()\",\n \"Rewind pointer of a LOB\"\n ],\n \"oci_lob_save\": [\n \"bool oci_lob_save( string data [, int offset ])\",\n \"Saves a large object\"\n ],\n \"oci_lob_seek\": [\n \"bool oci_lob_seek( int offset [, int whence ])\",\n \"Moves the pointer of a LOB\"\n ],\n \"oci_lob_size\": [\n \"int oci_lob_size()\",\n \"Returns size of a large object\"\n ],\n \"oci_lob_tell\": [\n \"int oci_lob_tell()\",\n \"Tells LOB pointer position\"\n ],\n \"oci_lob_truncate\": [\n \"bool oci_lob_truncate( [ int length ])\",\n \"Truncates a LOB\"\n ],\n \"oci_lob_write\": [\n \"int oci_lob_write( string string [, int length ])\",\n \"Writes data to current position of a LOB\"\n ],\n \"oci_lob_write_temporary\": [\n \"bool oci_lob_write_temporary(string var [, int lob_type])\",\n \"Writes temporary blob\"\n ],\n \"oci_new_collection\": [\n \"object oci_new_collection(resource connection, string tdo [, string schema])\",\n \"Initialize a new collection\"\n ],\n \"oci_new_connect\": [\n \"resource oci_new_connect(string user, string pass [, string db])\",\n \"Connect to an Oracle database and log on. Returns a new session.\"\n ],\n \"oci_new_cursor\": [\n \"resource oci_new_cursor(resource connection)\",\n \"Return a new cursor (Statement-Handle) - use this to bind ref-cursors!\"\n ],\n \"oci_new_descriptor\": [\n \"object oci_new_descriptor(resource connection [, int type])\",\n \"Initialize a new empty descriptor LOB/FILE (LOB is default)\"\n ],\n \"oci_num_fields\": [\n \"int oci_num_fields(resource stmt)\",\n \"Return the number of result columns in a statement\"\n ],\n \"oci_num_rows\": [\n \"int oci_num_rows(resource stmt)\",\n \"Return the row count of an OCI statement\"\n ],\n \"oci_parse\": [\n \"resource oci_parse(resource connection, string query)\",\n \"Parse a query and return a statement\"\n ],\n \"oci_password_change\": [\n \"bool oci_password_change(resource connection, string username, string old_password, string new_password)\",\n \"Changes the password of an account\"\n ],\n \"oci_pconnect\": [\n \"resource oci_pconnect(string user, string pass [, string db [, string charset ]])\",\n \"Connect to an Oracle database using a persistent connection and log on. Returns a new session.\"\n ],\n \"oci_result\": [\n \"string oci_result(resource stmt, mixed column)\",\n \"Return a single column of result data\"\n ],\n \"oci_rollback\": [\n \"bool oci_rollback(resource connection)\",\n \"Rollback the current context\"\n ],\n \"oci_server_version\": [\n \"string oci_server_version(resource connection)\",\n \"Return a string containing server version information\"\n ],\n \"oci_set_action\": [\n \"bool oci_set_action(resource connection, string value)\",\n \"Sets the action attribute on the connection\"\n ],\n \"oci_set_client_identifier\": [\n \"bool oci_set_client_identifier(resource connection, string value)\",\n \"Sets the client identifier attribute on the connection\"\n ],\n \"oci_set_client_info\": [\n \"bool oci_set_client_info(resource connection, string value)\",\n \"Sets the client info attribute on the connection\"\n ],\n \"oci_set_edition\": [\n \"bool oci_set_edition(string value)\",\n \"Sets the edition attribute for all subsequent connections created\"\n ],\n \"oci_set_module_name\": [\n \"bool oci_set_module_name(resource connection, string value)\",\n \"Sets the module attribute on the connection\"\n ],\n \"oci_set_prefetch\": [\n \"bool oci_set_prefetch(resource stmt, int prefetch_rows)\",\n \"Sets the number of rows to be prefetched on execute to prefetch_rows for stmt\"\n ],\n \"oci_statement_type\": [\n \"string oci_statement_type(resource stmt)\",\n \"Return the query type of an OCI statement\"\n ],\n \"ocifetchinto\": [\n \"int ocifetchinto(resource stmt, array &output [, int mode])\",\n \"Fetch a row of result data into an array\"\n ],\n \"ocigetbufferinglob\": [\n \"bool ocigetbufferinglob()\",\n \"Returns current state of buffering for a LOB\"\n ],\n \"ocisetbufferinglob\": [\n \"bool ocisetbufferinglob( boolean flag )\",\n \"Enables/disables buffering for a LOB\"\n ],\n \"octdec\": [\n \"int octdec(string octal_number)\",\n \"Returns the decimal equivalent of an octal string\"\n ],\n \"odbc_autocommit\": [\n \"mixed odbc_autocommit(resource connection_id [, int OnOff])\",\n \"Toggle autocommit mode or get status\"\n ],\n \"odbc_binmode\": [\n \"bool odbc_binmode(int result_id, int mode)\",\n \"Handle binary column data\"\n ],\n \"odbc_close\": [\n \"void odbc_close(resource connection_id)\",\n \"Close an ODBC connection\"\n ],\n \"odbc_close_all\": [\n \"void odbc_close_all(void)\",\n \"Close all ODBC connections\"\n ],\n \"odbc_columnprivileges\": [\n \"resource odbc_columnprivileges(resource connection_id, string catalog, string schema, string table, string column)\",\n \"Returns a result identifier that can be used to fetch a list of columns and associated privileges for the specified table\"\n ],\n \"odbc_columns\": [\n \"resource odbc_columns(resource connection_id [, string qualifier [, string owner [, string table_name [, string column_name]]]])\",\n \"Returns a result identifier that can be used to fetch a list of column names in specified tables\"\n ],\n \"odbc_commit\": [\n \"bool odbc_commit(resource connection_id)\",\n \"Commit an ODBC transaction\"\n ],\n \"odbc_connect\": [\n \"resource odbc_connect(string DSN, string user, string password [, int cursor_option])\",\n \"Connect to a datasource\"\n ],\n \"odbc_cursor\": [\n \"string odbc_cursor(resource result_id)\",\n \"Get cursor name\"\n ],\n \"odbc_data_source\": [\n \"array odbc_data_source(resource connection_id, int fetch_type)\",\n \"Return information about the currently connected data source\"\n ],\n \"odbc_error\": [\n \"string odbc_error([resource connection_id])\",\n \"Get the last error code\"\n ],\n \"odbc_errormsg\": [\n \"string odbc_errormsg([resource connection_id])\",\n \"Get the last error message\"\n ],\n \"odbc_exec\": [\n \"resource odbc_exec(resource connection_id, string query [, int flags])\",\n \"Prepare and execute an SQL statement\"\n ],\n \"odbc_execute\": [\n \"bool odbc_execute(resource result_id [, array parameters_array])\",\n \"Execute a prepared statement\"\n ],\n \"odbc_fetch_array\": [\n \"array odbc_fetch_array(int result [, int rownumber])\",\n \"Fetch a result row as an associative array\"\n ],\n \"odbc_fetch_into\": [\n \"int odbc_fetch_into(resource result_id, array &result_array, [, int rownumber])\",\n \"Fetch one result row into an array\"\n ],\n \"odbc_fetch_object\": [\n \"object odbc_fetch_object(int result [, int rownumber])\",\n \"Fetch a result row as an object\"\n ],\n \"odbc_fetch_row\": [\n \"bool odbc_fetch_row(resource result_id [, int row_number])\",\n \"Fetch a row\"\n ],\n \"odbc_field_len\": [\n \"int odbc_field_len(resource result_id, int field_number)\",\n \"Get the length (precision) of a column\"\n ],\n \"odbc_field_name\": [\n \"string odbc_field_name(resource result_id, int field_number)\",\n \"Get a column name\"\n ],\n \"odbc_field_num\": [\n \"int odbc_field_num(resource result_id, string field_name)\",\n \"Return column number\"\n ],\n \"odbc_field_scale\": [\n \"int odbc_field_scale(resource result_id, int field_number)\",\n \"Get the scale of a column\"\n ],\n \"odbc_field_type\": [\n \"string odbc_field_type(resource result_id, int field_number)\",\n \"Get the datatype of a column\"\n ],\n \"odbc_foreignkeys\": [\n \"resource odbc_foreignkeys(resource connection_id, string pk_qualifier, string pk_owner, string pk_table, string fk_qualifier, string fk_owner, string fk_table)\",\n \"Returns a result identifier to either a list of foreign keys in the specified table or a list of foreign keys in other tables that refer to the primary key in the specified table\"\n ],\n \"odbc_free_result\": [\n \"bool odbc_free_result(resource result_id)\",\n \"Free resources associated with a result\"\n ],\n \"odbc_gettypeinfo\": [\n \"resource odbc_gettypeinfo(resource connection_id [, int data_type])\",\n \"Returns a result identifier containing information about data types supported by the data source\"\n ],\n \"odbc_longreadlen\": [\n \"bool odbc_longreadlen(int result_id, int length)\",\n \"Handle LONG columns\"\n ],\n \"odbc_next_result\": [\n \"bool odbc_next_result(resource result_id)\",\n \"Checks if multiple results are avaiable\"\n ],\n \"odbc_num_fields\": [\n \"int odbc_num_fields(resource result_id)\",\n \"Get number of columns in a result\"\n ],\n \"odbc_num_rows\": [\n \"int odbc_num_rows(resource result_id)\",\n \"Get number of rows in a result\"\n ],\n \"odbc_pconnect\": [\n \"resource odbc_pconnect(string DSN, string user, string password [, int cursor_option])\",\n \"Establish a persistent connection to a datasource\"\n ],\n \"odbc_prepare\": [\n \"resource odbc_prepare(resource connection_id, string query)\",\n \"Prepares a statement for execution\"\n ],\n \"odbc_primarykeys\": [\n \"resource odbc_primarykeys(resource connection_id, string qualifier, string owner, string table)\",\n \"Returns a result identifier listing the column names that comprise the primary key for a table\"\n ],\n \"odbc_procedurecolumns\": [\n \"resource odbc_procedurecolumns(resource connection_id [, string qualifier, string owner, string proc, string column])\",\n \"Returns a result identifier containing the list of input and output parameters, as well as the columns that make up the result set for the specified procedures\"\n ],\n \"odbc_procedures\": [\n \"resource odbc_procedures(resource connection_id [, string qualifier, string owner, string name])\",\n \"Returns a result identifier containg the list of procedure names in a datasource\"\n ],\n \"odbc_result\": [\n \"mixed odbc_result(resource result_id, mixed field)\",\n \"Get result data\"\n ],\n \"odbc_result_all\": [\n \"int odbc_result_all(resource result_id [, string format])\",\n \"Print result as HTML table\"\n ],\n \"odbc_rollback\": [\n \"bool odbc_rollback(resource connection_id)\",\n \"Rollback a transaction\"\n ],\n \"odbc_setoption\": [\n \"bool odbc_setoption(resource conn_id|result_id, int which, int option, int value)\",\n \"Sets connection or statement options\"\n ],\n \"odbc_specialcolumns\": [\n \"resource odbc_specialcolumns(resource connection_id, int type, string qualifier, string owner, string table, int scope, int nullable)\",\n \"Returns a result identifier containing either the optimal set of columns that uniquely identifies a row in the table or columns that are automatically updated when any value in the row is updated by a transaction\"\n ],\n \"odbc_statistics\": [\n \"resource odbc_statistics(resource connection_id, string qualifier, string owner, string name, int unique, int accuracy)\",\n \"Returns a result identifier that contains statistics about a single table and the indexes associated with the table\"\n ],\n \"odbc_tableprivileges\": [\n \"resource odbc_tableprivileges(resource connection_id, string qualifier, string owner, string name)\",\n \"Returns a result identifier containing a list of tables and the privileges associated with each table\"\n ],\n \"odbc_tables\": [\n \"resource odbc_tables(resource connection_id [, string qualifier [, string owner [, string name [, string table_types]]]])\",\n \"Call the SQLTables function\"\n ],\n \"opendir\": [\n \"mixed opendir(string path[, resource context])\",\n \"Open a directory and return a dir_handle\"\n ],\n \"openlog\": [\n \"bool openlog(string ident, int option, int facility)\",\n \"Open connection to system logger\"\n ],\n \"openssl_csr_export\": [\n \"bool openssl_csr_export(resource csr, string &out [, bool notext=true])\",\n \"Exports a CSR to file or a var\"\n ],\n \"openssl_csr_export_to_file\": [\n \"bool openssl_csr_export_to_file(resource csr, string outfilename [, bool notext=true])\",\n \"Exports a CSR to file\"\n ],\n \"openssl_csr_get_public_key\": [\n \"mixed openssl_csr_get_public_key(mixed csr)\",\n \"Returns the subject of a CERT or FALSE on error\"\n ],\n \"openssl_csr_get_subject\": [\n \"mixed openssl_csr_get_subject(mixed csr)\",\n \"Returns the subject of a CERT or FALSE on error\"\n ],\n \"openssl_csr_new\": [\n \"bool openssl_csr_new(array dn, resource &privkey [, array configargs [, array extraattribs]])\",\n \"Generates a privkey and CSR\"\n ],\n \"openssl_csr_sign\": [\n \"resource openssl_csr_sign(mixed csr, mixed x509, mixed priv_key, long days [, array config_args [, long serial]])\",\n \"Signs a cert with another CERT\"\n ],\n \"openssl_decrypt\": [\n \"string openssl_decrypt(string data, string method, string password [, bool raw_input=false])\",\n \"Takes raw or base64 encoded string and dectupt it using given method and key\"\n ],\n \"openssl_dh_compute_key\": [\n \"string openssl_dh_compute_key(string pub_key, resource dh_key)\",\n \"Computes shared sicret for public value of remote DH key and local DH key\"\n ],\n \"openssl_digest\": [\n \"string openssl_digest(string data, string method [, bool raw_output=false])\",\n \"Computes digest hash value for given data using given method, returns raw or binhex encoded string\"\n ],\n \"openssl_encrypt\": [\n \"string openssl_encrypt(string data, string method, string password [, bool raw_output=false])\",\n \"Encrypts given data with given method and key, returns raw or base64 encoded string\"\n ],\n \"openssl_error_string\": [\n \"mixed openssl_error_string(void)\",\n \"Returns a description of the last error, and alters the index of the error messages. Returns false when the are no more messages\"\n ],\n \"openssl_get_cipher_methods\": [\n \"array openssl_get_cipher_methods([bool aliases = false])\",\n \"Return array of available cipher methods\"\n ],\n \"openssl_get_md_methods\": [\n \"array openssl_get_md_methods([bool aliases = false])\",\n \"Return array of available digest methods\"\n ],\n \"openssl_open\": [\n \"bool openssl_open(string data, &string opendata, string ekey, mixed privkey)\",\n \"Opens data\"\n ],\n \"openssl_pkcs12_export\": [\n \"bool openssl_pkcs12_export(mixed x509, string &out, mixed priv_key, string pass[, array args])\",\n \"Creates and exports a PKCS12 to a var\"\n ],\n \"openssl_pkcs12_export_to_file\": [\n \"bool openssl_pkcs12_export_to_file(mixed x509, string filename, mixed priv_key, string pass[, array args])\",\n \"Creates and exports a PKCS to file\"\n ],\n \"openssl_pkcs12_read\": [\n \"bool openssl_pkcs12_read(string PKCS12, array &certs, string pass)\",\n \"Parses a PKCS12 to an array\"\n ],\n \"openssl_pkcs7_decrypt\": [\n \"bool openssl_pkcs7_decrypt(string infilename, string outfilename, mixed recipcert [, mixed recipkey])\",\n \"Decrypts the S/MIME message in the file name infilename and output the results to the file name outfilename. recipcert is a CERT for one of the recipients. recipkey specifies the private key matching recipcert, if recipcert does not include the key\"\n ],\n \"openssl_pkcs7_encrypt\": [\n \"bool openssl_pkcs7_encrypt(string infile, string outfile, mixed recipcerts, array headers [, long flags [, long cipher]])\",\n \"Encrypts the message in the file named infile with the certificates in recipcerts and output the result to the file named outfile\"\n ],\n \"openssl_pkcs7_sign\": [\n \"bool openssl_pkcs7_sign(string infile, string outfile, mixed signcert, mixed signkey, array headers [, long flags [, string extracertsfilename]])\",\n \"Signs the MIME message in the file named infile with signcert/signkey and output the result to file name outfile. headers lists plain text headers to exclude from the signed portion of the message, and should include to, from and subject as a minimum\"\n ],\n \"openssl_pkcs7_verify\": [\n \"bool openssl_pkcs7_verify(string filename, long flags [, string signerscerts [, array cainfo [, string extracerts [, string content]]]])\",\n \"Verifys that the data block is intact, the signer is who they say they are, and returns the CERTs of the signers\"\n ],\n \"openssl_pkey_export\": [\n \"bool openssl_pkey_export(mixed key, &mixed out [, string passphrase [, array config_args]])\",\n \"Gets an exportable representation of a key into a string or file\"\n ],\n \"openssl_pkey_export_to_file\": [\n \"bool openssl_pkey_export_to_file(mixed key, string outfilename [, string passphrase, array config_args)\",\n \"Gets an exportable representation of a key into a file\"\n ],\n \"openssl_pkey_free\": [\n \"void openssl_pkey_free(int key)\",\n \"Frees a key\"\n ],\n \"openssl_pkey_get_details\": [\n \"resource openssl_pkey_get_details(resource key)\",\n \"returns an array with the key details (bits, pkey, type)\"\n ],\n \"openssl_pkey_get_private\": [\n \"int openssl_pkey_get_private(string key [, string passphrase])\",\n \"Gets private keys\"\n ],\n \"openssl_pkey_get_public\": [\n \"int openssl_pkey_get_public(mixed cert)\",\n \"Gets public key from X.509 certificate\"\n ],\n \"openssl_pkey_new\": [\n \"resource openssl_pkey_new([array configargs])\",\n \"Generates a new private key\"\n ],\n \"openssl_private_decrypt\": [\n \"bool openssl_private_decrypt(string data, string &decrypted, mixed key [, int padding])\",\n \"Decrypts data with private key\"\n ],\n \"openssl_private_encrypt\": [\n \"bool openssl_private_encrypt(string data, string &crypted, mixed key [, int padding])\",\n \"Encrypts data with private key\"\n ],\n \"openssl_public_decrypt\": [\n \"bool openssl_public_decrypt(string data, string &crypted, resource key [, int padding])\",\n \"Decrypts data with public key\"\n ],\n \"openssl_public_encrypt\": [\n \"bool openssl_public_encrypt(string data, string &crypted, mixed key [, int padding])\",\n \"Encrypts data with public key\"\n ],\n \"openssl_random_pseudo_bytes\": [\n \"string openssl_random_pseudo_bytes(integer length [, &bool returned_strong_result])\",\n \"Returns a string of the length specified filled with random pseudo bytes\"\n ],\n \"openssl_seal\": [\n \"int openssl_seal(string data, &string sealdata, &array ekeys, array pubkeys)\",\n \"Seals data\"\n ],\n \"openssl_sign\": [\n \"bool openssl_sign(string data, &string signature, mixed key[, mixed method])\",\n \"Signs data\"\n ],\n \"openssl_verify\": [\n \"int openssl_verify(string data, string signature, mixed key[, mixed method])\",\n \"Verifys data\"\n ],\n \"openssl_x509_check_private_key\": [\n \"bool openssl_x509_check_private_key(mixed cert, mixed key)\",\n \"Checks if a private key corresponds to a CERT\"\n ],\n \"openssl_x509_checkpurpose\": [\n \"int openssl_x509_checkpurpose(mixed x509cert, int purpose, array cainfo [, string untrustedfile])\",\n \"Checks the CERT to see if it can be used for the purpose in purpose. cainfo holds information about trusted CAs\"\n ],\n \"openssl_x509_export\": [\n \"bool openssl_x509_export(mixed x509, string &out [, bool notext = true])\",\n \"Exports a CERT to file or a var\"\n ],\n \"openssl_x509_export_to_file\": [\n \"bool openssl_x509_export_to_file(mixed x509, string outfilename [, bool notext = true])\",\n \"Exports a CERT to file or a var\"\n ],\n \"openssl_x509_free\": [\n \"void openssl_x509_free(resource x509)\",\n \"Frees X.509 certificates\"\n ],\n \"openssl_x509_parse\": [\n \"array openssl_x509_parse(mixed x509 [, bool shortnames=true])\",\n \"Returns an array of the fields/values of the CERT\"\n ],\n \"openssl_x509_read\": [\n \"resource openssl_x509_read(mixed cert)\",\n \"Reads X.509 certificates\"\n ],\n \"ord\": [\n \"int ord(string character)\",\n \"Returns ASCII value of character\"\n ],\n \"output_add_rewrite_var\": [\n \"bool output_add_rewrite_var(string name, string value)\",\n \"Add URL rewriter values\"\n ],\n \"output_reset_rewrite_vars\": [\n \"bool output_reset_rewrite_vars(void)\",\n \"Reset(clear) URL rewriter values\"\n ],\n \"pack\": [\n \"string pack(string format, mixed arg1 [, mixed arg2 [, mixed ...]])\",\n \"Takes one or more arguments and packs them into a binary string according to the format argument\"\n ],\n \"parse_ini_file\": [\n \"array parse_ini_file(string filename [, bool process_sections [, int scanner_mode]])\",\n \"Parse configuration file\"\n ],\n \"parse_ini_string\": [\n \"array parse_ini_string(string ini_string [, bool process_sections [, int scanner_mode]])\",\n \"Parse configuration string\"\n ],\n \"parse_locale\": [\n \"static array parse_locale($locale)\",\n \"* parses a locale-id into an array the different parts of it\"\n ],\n \"parse_str\": [\n \"void parse_str(string encoded_string [, array result])\",\n \"Parses GET/POST/COOKIE data and sets global variables\"\n ],\n \"parse_url\": [\n \"mixed parse_url(string url, [int url_component])\",\n \"Parse a URL and return its components\"\n ],\n \"passthru\": [\n \"void passthru(string command [, int &return_value])\",\n \"Execute an external program and display raw output\"\n ],\n \"pathinfo\": [\n \"array pathinfo(string path[, int options])\",\n \"Returns information about a certain string\"\n ],\n \"pclose\": [\n \"int pclose(resource fp)\",\n \"Close a file pointer opened by popen()\"\n ],\n \"pcnlt_sigwaitinfo\": [\n \"int pcnlt_sigwaitinfo(array set[, array &siginfo])\",\n \"Synchronously wait for queued signals\"\n ],\n \"pcntl_alarm\": [\n \"int pcntl_alarm(int seconds)\",\n \"Set an alarm clock for delivery of a signal\"\n ],\n \"pcntl_exec\": [\n \"bool pcntl_exec(string path [, array args [, array envs]])\",\n \"Executes specified program in current process space as defined by exec(2)\"\n ],\n \"pcntl_fork\": [\n \"int pcntl_fork(void)\",\n \"Forks the currently running process following the same behavior as the UNIX fork() system call\"\n ],\n \"pcntl_getpriority\": [\n \"int pcntl_getpriority([int pid [, int process_identifier]])\",\n \"Get the priority of any process\"\n ],\n \"pcntl_setpriority\": [\n \"bool pcntl_setpriority(int priority [, int pid [, int process_identifier]])\",\n \"Change the priority of any process\"\n ],\n \"pcntl_signal\": [\n \"bool pcntl_signal(int signo, callback handle [, bool restart_syscalls])\",\n \"Assigns a system signal handler to a PHP function\"\n ],\n \"pcntl_signal_dispatch\": [\n \"bool pcntl_signal_dispatch()\",\n \"Dispatch signals to signal handlers\"\n ],\n \"pcntl_sigprocmask\": [\n \"bool pcntl_sigprocmask(int how, array set[, array &oldset])\",\n \"Examine and change blocked signals\"\n ],\n \"pcntl_sigtimedwait\": [\n \"int pcntl_sigtimedwait(array set[, array &siginfo[, int seconds[, int nanoseconds]]])\",\n \"Wait for queued signals\"\n ],\n \"pcntl_wait\": [\n \"int pcntl_wait(int &status)\",\n \"Waits on or returns the status of a forked child as defined by the waitpid() system call\"\n ],\n \"pcntl_waitpid\": [\n \"int pcntl_waitpid(int pid, int &status, int options)\",\n \"Waits on or returns the status of a forked child as defined by the waitpid() system call\"\n ],\n \"pcntl_wexitstatus\": [\n \"int pcntl_wexitstatus(int status)\",\n \"Returns the status code of a child's exit\"\n ],\n \"pcntl_wifexited\": [\n \"bool pcntl_wifexited(int status)\",\n \"Returns true if the child status code represents a successful exit\"\n ],\n \"pcntl_wifsignaled\": [\n \"bool pcntl_wifsignaled(int status)\",\n \"Returns true if the child status code represents a process that was terminated due to a signal\"\n ],\n \"pcntl_wifstopped\": [\n \"bool pcntl_wifstopped(int status)\",\n \"Returns true if the child status code represents a stopped process (WUNTRACED must have been used with waitpid)\"\n ],\n \"pcntl_wstopsig\": [\n \"int pcntl_wstopsig(int status)\",\n \"Returns the number of the signal that caused the process to stop who's status code is passed\"\n ],\n \"pcntl_wtermsig\": [\n \"int pcntl_wtermsig(int status)\",\n \"Returns the number of the signal that terminated the process who's status code is passed\"\n ],\n \"pdo_drivers\": [\n \"array pdo_drivers()\",\n \"Return array of available PDO drivers\"\n ],\n \"pfsockopen\": [\n \"resource pfsockopen(string hostname, int port [, int errno [, string errstr [, float timeout]]])\",\n \"Open persistent Internet or Unix domain socket connection\"\n ],\n \"pg_affected_rows\": [\n \"int pg_affected_rows(resource result)\",\n \"Returns the number of affected tuples\"\n ],\n \"pg_cancel_query\": [\n \"bool pg_cancel_query(resource connection)\",\n \"Cancel request\"\n ],\n \"pg_client_encoding\": [\n \"string pg_client_encoding([resource connection])\",\n \"Get the current client encoding\"\n ],\n \"pg_close\": [\n \"bool pg_close([resource connection])\",\n \"Close a PostgreSQL connection\"\n ],\n \"pg_connect\": [\n \"resource pg_connect(string connection_string[, int connect_type] | [string host, string port [, string options [, string tty,]]] string database)\",\n \"Open a PostgreSQL connection\"\n ],\n \"pg_connection_busy\": [\n \"bool pg_connection_busy(resource connection)\",\n \"Get connection is busy or not\"\n ],\n \"pg_connection_reset\": [\n \"bool pg_connection_reset(resource connection)\",\n \"Reset connection (reconnect)\"\n ],\n \"pg_connection_status\": [\n \"int pg_connection_status(resource connnection)\",\n \"Get connection status\"\n ],\n \"pg_convert\": [\n \"array pg_convert(resource db, string table, array values[, int options])\",\n \"Check and convert values for PostgreSQL SQL statement\"\n ],\n \"pg_copy_from\": [\n \"bool pg_copy_from(resource connection, string table_name , array rows [, string delimiter [, string null_as]])\",\n \"Copy table from array\"\n ],\n \"pg_copy_to\": [\n \"array pg_copy_to(resource connection, string table_name [, string delimiter [, string null_as]])\",\n \"Copy table to array\"\n ],\n \"pg_dbname\": [\n \"string pg_dbname([resource connection])\",\n \"Get the database name\"\n ],\n \"pg_delete\": [\n \"mixed pg_delete(resource db, string table, array ids[, int options])\",\n \"Delete records has ids (id=>value)\"\n ],\n \"pg_end_copy\": [\n \"bool pg_end_copy([resource connection])\",\n \"Sync with backend. Completes the Copy command\"\n ],\n \"pg_escape_bytea\": [\n \"string pg_escape_bytea([resource connection,] string data)\",\n \"Escape binary for bytea type\"\n ],\n \"pg_escape_string\": [\n \"string pg_escape_string([resource connection,] string data)\",\n \"Escape string for text/char type\"\n ],\n \"pg_execute\": [\n \"resource pg_execute([resource connection,] string stmtname, array params)\",\n \"Execute a prepared query\"\n ],\n \"pg_fetch_all\": [\n \"array pg_fetch_all(resource result)\",\n \"Fetch all rows into array\"\n ],\n \"pg_fetch_all_columns\": [\n \"array pg_fetch_all_columns(resource result [, int column_number])\",\n \"Fetch all rows into array\"\n ],\n \"pg_fetch_array\": [\n \"array pg_fetch_array(resource result [, int row [, int result_type]])\",\n \"Fetch a row as an array\"\n ],\n \"pg_fetch_assoc\": [\n \"array pg_fetch_assoc(resource result [, int row])\",\n \"Fetch a row as an assoc array\"\n ],\n \"pg_fetch_object\": [\n \"object pg_fetch_object(resource result [, int row [, string class_name [, NULL|array ctor_params]]])\",\n \"Fetch a row as an object\"\n ],\n \"pg_fetch_result\": [\n \"mixed pg_fetch_result(resource result, [int row_number,] mixed field_name)\",\n \"Returns values from a result identifier\"\n ],\n \"pg_fetch_row\": [\n \"array pg_fetch_row(resource result [, int row [, int result_type]])\",\n \"Get a row as an enumerated array\"\n ],\n \"pg_field_is_null\": [\n \"int pg_field_is_null(resource result, [int row,] mixed field_name_or_number)\",\n \"Test if a field is NULL\"\n ],\n \"pg_field_name\": [\n \"string pg_field_name(resource result, int field_number)\",\n \"Returns the name of the field\"\n ],\n \"pg_field_num\": [\n \"int pg_field_num(resource result, string field_name)\",\n \"Returns the field number of the named field\"\n ],\n \"pg_field_prtlen\": [\n \"int pg_field_prtlen(resource result, [int row,] mixed field_name_or_number)\",\n \"Returns the printed length\"\n ],\n \"pg_field_size\": [\n \"int pg_field_size(resource result, int field_number)\",\n \"Returns the internal size of the field\"\n ],\n \"pg_field_table\": [\n \"mixed pg_field_table(resource result, int field_number[, bool oid_only])\",\n \"Returns the name of the table field belongs to, or table's oid if oid_only is true\"\n ],\n \"pg_field_type\": [\n \"string pg_field_type(resource result, int field_number)\",\n \"Returns the type name for the given field\"\n ],\n \"pg_field_type_oid\": [\n \"string pg_field_type_oid(resource result, int field_number)\",\n \"Returns the type oid for the given field\"\n ],\n \"pg_free_result\": [\n \"bool pg_free_result(resource result)\",\n \"Free result memory\"\n ],\n \"pg_get_notify\": [\n \"array pg_get_notify([resource connection[, result_type]])\",\n \"Get asynchronous notification\"\n ],\n \"pg_get_pid\": [\n \"int pg_get_pid([resource connection)\",\n \"Get backend(server) pid\"\n ],\n \"pg_get_result\": [\n \"resource pg_get_result(resource connection)\",\n \"Get asynchronous query result\"\n ],\n \"pg_host\": [\n \"string pg_host([resource connection])\",\n \"Returns the host name associated with the connection\"\n ],\n \"pg_insert\": [\n \"mixed pg_insert(resource db, string table, array values[, int options])\",\n \"Insert values (filed=>value) to table\"\n ],\n \"pg_last_error\": [\n \"string pg_last_error([resource connection])\",\n \"Get the error message string\"\n ],\n \"pg_last_notice\": [\n \"string pg_last_notice(resource connection)\",\n \"Returns the last notice set by the backend\"\n ],\n \"pg_last_oid\": [\n \"string pg_last_oid(resource result)\",\n \"Returns the last object identifier\"\n ],\n \"pg_lo_close\": [\n \"bool pg_lo_close(resource large_object)\",\n \"Close a large object\"\n ],\n \"pg_lo_create\": [\n \"mixed pg_lo_create([resource connection],[mixed large_object_oid])\",\n \"Create a large object\"\n ],\n \"pg_lo_export\": [\n \"bool pg_lo_export([resource connection, ] int objoid, string filename)\",\n \"Export large object direct to filesystem\"\n ],\n \"pg_lo_import\": [\n \"int pg_lo_import([resource connection, ] string filename [, mixed oid])\",\n \"Import large object direct from filesystem\"\n ],\n \"pg_lo_open\": [\n \"resource pg_lo_open([resource connection,] int large_object_oid, string mode)\",\n \"Open a large object and return fd\"\n ],\n \"pg_lo_read\": [\n \"string pg_lo_read(resource large_object [, int len])\",\n \"Read a large object\"\n ],\n \"pg_lo_read_all\": [\n \"int pg_lo_read_all(resource large_object)\",\n \"Read a large object and send straight to browser\"\n ],\n \"pg_lo_seek\": [\n \"bool pg_lo_seek(resource large_object, int offset [, int whence])\",\n \"Seeks position of large object\"\n ],\n \"pg_lo_tell\": [\n \"int pg_lo_tell(resource large_object)\",\n \"Returns current position of large object\"\n ],\n \"pg_lo_unlink\": [\n \"bool pg_lo_unlink([resource connection,] string large_object_oid)\",\n \"Delete a large object\"\n ],\n \"pg_lo_write\": [\n \"int pg_lo_write(resource large_object, string buf [, int len])\",\n \"Write a large object\"\n ],\n \"pg_meta_data\": [\n \"array pg_meta_data(resource db, string table)\",\n \"Get meta_data\"\n ],\n \"pg_num_fields\": [\n \"int pg_num_fields(resource result)\",\n \"Return the number of fields in the result\"\n ],\n \"pg_num_rows\": [\n \"int pg_num_rows(resource result)\",\n \"Return the number of rows in the result\"\n ],\n \"pg_options\": [\n \"string pg_options([resource connection])\",\n \"Get the options associated with the connection\"\n ],\n \"pg_parameter_status\": [\n \"string|false pg_parameter_status([resource connection,] string param_name)\",\n \"Returns the value of a server parameter\"\n ],\n \"pg_pconnect\": [\n \"resource pg_pconnect(string connection_string | [string host, string port [, string options [, string tty,]]] string database)\",\n \"Open a persistent PostgreSQL connection\"\n ],\n \"pg_ping\": [\n \"bool pg_ping([resource connection])\",\n \"Ping database. If connection is bad, try to reconnect.\"\n ],\n \"pg_port\": [\n \"int pg_port([resource connection])\",\n \"Return the port number associated with the connection\"\n ],\n \"pg_prepare\": [\n \"resource pg_prepare([resource connection,] string stmtname, string query)\",\n \"Prepare a query for future execution\"\n ],\n \"pg_put_line\": [\n \"bool pg_put_line([resource connection,] string query)\",\n \"Send null-terminated string to backend server\"\n ],\n \"pg_query\": [\n \"resource pg_query([resource connection,] string query)\",\n \"Execute a query\"\n ],\n \"pg_query_params\": [\n \"resource pg_query_params([resource connection,] string query, array params)\",\n \"Execute a query\"\n ],\n \"pg_result_error\": [\n \"string pg_result_error(resource result)\",\n \"Get error message associated with result\"\n ],\n \"pg_result_error_field\": [\n \"string pg_result_error_field(resource result, int fieldcode)\",\n \"Get error message field associated with result\"\n ],\n \"pg_result_seek\": [\n \"bool pg_result_seek(resource result, int offset)\",\n \"Set internal row offset\"\n ],\n \"pg_result_status\": [\n \"mixed pg_result_status(resource result[, long result_type])\",\n \"Get status of query result\"\n ],\n \"pg_select\": [\n \"mixed pg_select(resource db, string table, array ids[, int options])\",\n \"Select records that has ids (id=>value)\"\n ],\n \"pg_send_execute\": [\n \"bool pg_send_execute(resource connection, string stmtname, array params)\",\n \"Executes prevriously prepared stmtname asynchronously\"\n ],\n \"pg_send_prepare\": [\n \"bool pg_send_prepare(resource connection, string stmtname, string query)\",\n \"Asynchronously prepare a query for future execution\"\n ],\n \"pg_send_query\": [\n \"bool pg_send_query(resource connection, string query)\",\n \"Send asynchronous query\"\n ],\n \"pg_send_query_params\": [\n \"bool pg_send_query_params(resource connection, string query, array params)\",\n \"Send asynchronous parameterized query\"\n ],\n \"pg_set_client_encoding\": [\n \"int pg_set_client_encoding([resource connection,] string encoding)\",\n \"Set client encoding\"\n ],\n \"pg_set_error_verbosity\": [\n \"int pg_set_error_verbosity([resource connection,] int verbosity)\",\n \"Set error verbosity\"\n ],\n \"pg_trace\": [\n \"bool pg_trace(string filename [, string mode [, resource connection]])\",\n \"Enable tracing a PostgreSQL connection\"\n ],\n \"pg_transaction_status\": [\n \"int pg_transaction_status(resource connnection)\",\n \"Get transaction status\"\n ],\n \"pg_tty\": [\n \"string pg_tty([resource connection])\",\n \"Return the tty name associated with the connection\"\n ],\n \"pg_unescape_bytea\": [\n \"string pg_unescape_bytea(string data)\",\n \"Unescape binary for bytea type\"\n ],\n \"pg_untrace\": [\n \"bool pg_untrace([resource connection])\",\n \"Disable tracing of a PostgreSQL connection\"\n ],\n \"pg_update\": [\n \"mixed pg_update(resource db, string table, array fields, array ids[, int options])\",\n \"Update table using values (field=>value) and ids (id=>value)\"\n ],\n \"pg_version\": [\n \"array pg_version([resource connection])\",\n \"Returns an array with client, protocol and server version (when available)\"\n ],\n \"php_egg_logo_guid\": [\n \"string php_egg_logo_guid(void)\",\n \"Return the special ID used to request the PHP logo in phpinfo screens\"\n ],\n \"php_ini_loaded_file\": [\n \"string php_ini_loaded_file(void)\",\n \"Return the actual loaded ini filename\"\n ],\n \"php_ini_scanned_files\": [\n \"string php_ini_scanned_files(void)\",\n \"Return comma-separated string of .ini files parsed from the additional ini dir\"\n ],\n \"php_logo_guid\": [\n \"string php_logo_guid(void)\",\n \"Return the special ID used to request the PHP logo in phpinfo screens\"\n ],\n \"php_real_logo_guid\": [\n \"string php_real_logo_guid(void)\",\n \"Return the special ID used to request the PHP logo in phpinfo screens\"\n ],\n \"php_sapi_name\": [\n \"string php_sapi_name(void)\",\n \"Return the current SAPI module name\"\n ],\n \"php_snmpv3\": [\n \"void php_snmpv3(INTERNAL_FUNCTION_PARAMETERS, int st)\",\n \"* * Generic SNMPv3 object fetcher * From here is passed on the the common internal object fetcher. * * st=SNMP_CMD_GET snmp3_get() - query an agent and return a single value. * st=SNMP_CMD_GETNEXT snmp3_getnext() - query an agent and return the next single value. * st=SNMP_CMD_WALK snmp3_walk() - walk the mib and return a single dimensional array * containing the values. * st=SNMP_CMD_REALWALK snmp3_real_walk() - walk the mib and return an * array of oid,value pairs. * st=SNMP_CMD_SET snmp3_set() - query an agent and set a single value *\"\n ],\n \"php_strip_whitespace\": [\n \"string php_strip_whitespace(string file_name)\",\n \"Return source with stripped comments and whitespace\"\n ],\n \"php_uname\": [\n \"string php_uname(void)\",\n \"Return information about the system PHP was built on\"\n ],\n \"phpcredits\": [\n \"void phpcredits([int flag])\",\n \"Prints the list of people who've contributed to the PHP project\"\n ],\n \"phpinfo\": [\n \"void phpinfo([int what])\",\n \"Output a page of useful information about PHP and the current request\"\n ],\n \"phpversion\": [\n \"string phpversion([string extension])\",\n \"Return the current PHP version\"\n ],\n \"pi\": [\n \"float pi(void)\",\n \"Returns an approximation of pi\"\n ],\n \"png2wbmp\": [\n \"bool png2wbmp (string f_org, string f_dest, int d_height, int d_width, int threshold)\",\n \"Convert PNG image to WBMP image\"\n ],\n \"popen\": [\n \"resource popen(string command, string mode)\",\n \"Execute a command and open either a read or a write pipe to it\"\n ],\n \"posix_access\": [\n \"bool posix_access(string file [, int mode])\",\n \"Determine accessibility of a file (POSIX.1 5.6.3)\"\n ],\n \"posix_ctermid\": [\n \"string posix_ctermid(void)\",\n \"Generate terminal path name (POSIX.1, 4.7.1)\"\n ],\n \"posix_get_last_error\": [\n \"int posix_get_last_error(void)\",\n \"Retrieve the error number set by the last posix function which failed.\"\n ],\n \"posix_getcwd\": [\n \"string posix_getcwd(void)\",\n \"Get working directory pathname (POSIX.1, 5.2.2)\"\n ],\n \"posix_getegid\": [\n \"int posix_getegid(void)\",\n \"Get the current effective group id (POSIX.1, 4.2.1)\"\n ],\n \"posix_geteuid\": [\n \"int posix_geteuid(void)\",\n \"Get the current effective user id (POSIX.1, 4.2.1)\"\n ],\n \"posix_getgid\": [\n \"int posix_getgid(void)\",\n \"Get the current group id (POSIX.1, 4.2.1)\"\n ],\n \"posix_getgrgid\": [\n \"array posix_getgrgid(long gid)\",\n \"Group database access (POSIX.1, 9.2.1)\"\n ],\n \"posix_getgrnam\": [\n \"array posix_getgrnam(string groupname)\",\n \"Group database access (POSIX.1, 9.2.1)\"\n ],\n \"posix_getgroups\": [\n \"array posix_getgroups(void)\",\n \"Get supplementary group id's (POSIX.1, 4.2.3)\"\n ],\n \"posix_getlogin\": [\n \"string posix_getlogin(void)\",\n \"Get user name (POSIX.1, 4.2.4)\"\n ],\n \"posix_getpgid\": [\n \"int posix_getpgid(void)\",\n \"Get the process group id of the specified process (This is not a POSIX function, but a SVR4ism, so we compile conditionally)\"\n ],\n \"posix_getpgrp\": [\n \"int posix_getpgrp(void)\",\n \"Get current process group id (POSIX.1, 4.3.1)\"\n ],\n \"posix_getpid\": [\n \"int posix_getpid(void)\",\n \"Get the current process id (POSIX.1, 4.1.1)\"\n ],\n \"posix_getppid\": [\n \"int posix_getppid(void)\",\n \"Get the parent process id (POSIX.1, 4.1.1)\"\n ],\n \"posix_getpwnam\": [\n \"array posix_getpwnam(string groupname)\",\n \"User database access (POSIX.1, 9.2.2)\"\n ],\n \"posix_getpwuid\": [\n \"array posix_getpwuid(long uid)\",\n \"User database access (POSIX.1, 9.2.2)\"\n ],\n \"posix_getrlimit\": [\n \"array posix_getrlimit(void)\",\n \"Get system resource consumption limits (This is not a POSIX function, but a BSDism and a SVR4ism. We compile conditionally)\"\n ],\n \"posix_getsid\": [\n \"int posix_getsid(void)\",\n \"Get process group id of session leader (This is not a POSIX function, but a SVR4ism, so be compile conditionally)\"\n ],\n \"posix_getuid\": [\n \"int posix_getuid(void)\",\n \"Get the current user id (POSIX.1, 4.2.1)\"\n ],\n \"posix_initgroups\": [\n \"bool posix_initgroups(string name, int base_group_id)\",\n \"Calculate the group access list for the user specified in name.\"\n ],\n \"posix_isatty\": [\n \"bool posix_isatty(int fd)\",\n \"Determine if filedesc is a tty (POSIX.1, 4.7.1)\"\n ],\n \"posix_kill\": [\n \"bool posix_kill(int pid, int sig)\",\n \"Send a signal to a process (POSIX.1, 3.3.2)\"\n ],\n \"posix_mkfifo\": [\n \"bool posix_mkfifo(string pathname, int mode)\",\n \"Make a FIFO special file (POSIX.1, 5.4.2)\"\n ],\n \"posix_mknod\": [\n \"bool posix_mknod(string pathname, int mode [, int major [, int minor]])\",\n \"Make a special or ordinary file (POSIX.1)\"\n ],\n \"posix_setegid\": [\n \"bool posix_setegid(long uid)\",\n \"Set effective group id\"\n ],\n \"posix_seteuid\": [\n \"bool posix_seteuid(long uid)\",\n \"Set effective user id\"\n ],\n \"posix_setgid\": [\n \"bool posix_setgid(int uid)\",\n \"Set group id (POSIX.1, 4.2.2)\"\n ],\n \"posix_setpgid\": [\n \"bool posix_setpgid(int pid, int pgid)\",\n \"Set process group id for job control (POSIX.1, 4.3.3)\"\n ],\n \"posix_setsid\": [\n \"int posix_setsid(void)\",\n \"Create session and set process group id (POSIX.1, 4.3.2)\"\n ],\n \"posix_setuid\": [\n \"bool posix_setuid(long uid)\",\n \"Set user id (POSIX.1, 4.2.2)\"\n ],\n \"posix_strerror\": [\n \"string posix_strerror(int errno)\",\n \"Retrieve the system error message associated with the given errno.\"\n ],\n \"posix_times\": [\n \"array posix_times(void)\",\n \"Get process times (POSIX.1, 4.5.2)\"\n ],\n \"posix_ttyname\": [\n \"string posix_ttyname(int fd)\",\n \"Determine terminal device name (POSIX.1, 4.7.2)\"\n ],\n \"posix_uname\": [\n \"array posix_uname(void)\",\n \"Get system name (POSIX.1, 4.4.1)\"\n ],\n \"pow\": [\n \"number pow(number base, number exponent)\",\n \"Returns base raised to the power of exponent. Returns integer result when possible\"\n ],\n \"preg_filter\": [\n \"mixed preg_filter(mixed regex, mixed replace, mixed subject [, int limit [, int &count]])\",\n \"Perform Perl-style regular expression replacement and only return matches.\"\n ],\n \"preg_grep\": [\n \"array preg_grep(string regex, array input [, int flags])\",\n \"Searches array and returns entries which match regex\"\n ],\n \"preg_last_error\": [\n \"int preg_last_error()\",\n \"Returns the error code of the last regexp execution.\"\n ],\n \"preg_match\": [\n \"int preg_match(string pattern, string subject [, array &subpatterns [, int flags [, int offset]]])\",\n \"Perform a Perl-style regular expression match\"\n ],\n \"preg_match_all\": [\n \"int preg_match_all(string pattern, string subject, array &subpatterns [, int flags [, int offset]])\",\n \"Perform a Perl-style global regular expression match\"\n ],\n \"preg_quote\": [\n \"string preg_quote(string str [, string delim_char])\",\n \"Quote regular expression characters plus an optional character\"\n ],\n \"preg_replace\": [\n \"mixed preg_replace(mixed regex, mixed replace, mixed subject [, int limit [, int &count]])\",\n \"Perform Perl-style regular expression replacement.\"\n ],\n \"preg_replace_callback\": [\n \"mixed preg_replace_callback(mixed regex, mixed callback, mixed subject [, int limit [, int &count]])\",\n \"Perform Perl-style regular expression replacement using replacement callback.\"\n ],\n \"preg_split\": [\n \"array preg_split(string pattern, string subject [, int limit [, int flags]])\",\n \"Split string into an array using a perl-style regular expression as a delimiter\"\n ],\n \"prev\": [\n \"mixed prev(array array_arg)\",\n \"Move array argument's internal pointer to the previous element and return it\"\n ],\n \"print\": [\n \"int print(string arg)\",\n \"Output a string\"\n ],\n \"print_r\": [\n \"mixed print_r(mixed var [, bool return])\",\n \"Prints out or returns information about the specified variable\"\n ],\n \"printf\": [\n \"int printf(string format [, mixed arg1 [, mixed ...]])\",\n \"Output a formatted string\"\n ],\n \"proc_close\": [\n \"int proc_close(resource process)\",\n \"close a process opened by proc_open\"\n ],\n \"proc_get_status\": [\n \"array proc_get_status(resource process)\",\n \"get information about a process opened by proc_open\"\n ],\n \"proc_nice\": [\n \"bool proc_nice(int priority)\",\n \"Change the priority of the current process\"\n ],\n \"proc_open\": [\n \"resource proc_open(string command, array descriptorspec, array &pipes [, string cwd [, array env [, array other_options]]])\",\n \"Run a process with more control over it's file descriptors\"\n ],\n \"proc_terminate\": [\n \"bool proc_terminate(resource process [, long signal])\",\n \"kill a process opened by proc_open\"\n ],\n \"property_exists\": [\n \"bool property_exists(mixed object_or_class, string property_name)\",\n \"Checks if the object or class has a property\"\n ],\n \"pspell_add_to_personal\": [\n \"bool pspell_add_to_personal(int pspell, string word)\",\n \"Adds a word to a personal list\"\n ],\n \"pspell_add_to_session\": [\n \"bool pspell_add_to_session(int pspell, string word)\",\n \"Adds a word to the current session\"\n ],\n \"pspell_check\": [\n \"bool pspell_check(int pspell, string word)\",\n \"Returns true if word is valid\"\n ],\n \"pspell_clear_session\": [\n \"bool pspell_clear_session(int pspell)\",\n \"Clears the current session\"\n ],\n \"pspell_config_create\": [\n \"int pspell_config_create(string language [, string spelling [, string jargon [, string encoding]]])\",\n \"Create a new config to be used later to create a manager\"\n ],\n \"pspell_config_data_dir\": [\n \"bool pspell_config_data_dir(int conf, string directory)\",\n \"location of language data files\"\n ],\n \"pspell_config_dict_dir\": [\n \"bool pspell_config_dict_dir(int conf, string directory)\",\n \"location of the main word list\"\n ],\n \"pspell_config_ignore\": [\n \"bool pspell_config_ignore(int conf, int ignore)\",\n \"Ignore words <= n chars\"\n ],\n \"pspell_config_mode\": [\n \"bool pspell_config_mode(int conf, long mode)\",\n \"Select mode for config (PSPELL_FAST, PSPELL_NORMAL or PSPELL_BAD_SPELLERS)\"\n ],\n \"pspell_config_personal\": [\n \"bool pspell_config_personal(int conf, string personal)\",\n \"Use a personal dictionary for this config\"\n ],\n \"pspell_config_repl\": [\n \"bool pspell_config_repl(int conf, string repl)\",\n \"Use a personal dictionary with replacement pairs for this config\"\n ],\n \"pspell_config_runtogether\": [\n \"bool pspell_config_runtogether(int conf, bool runtogether)\",\n \"Consider run-together words as valid components\"\n ],\n \"pspell_config_save_repl\": [\n \"bool pspell_config_save_repl(int conf, bool save)\",\n \"Save replacement pairs when personal list is saved for this config\"\n ],\n \"pspell_new\": [\n \"int pspell_new(string language [, string spelling [, string jargon [, string encoding [, int mode]]]])\",\n \"Load a dictionary\"\n ],\n \"pspell_new_config\": [\n \"int pspell_new_config(int config)\",\n \"Load a dictionary based on the given config\"\n ],\n \"pspell_new_personal\": [\n \"int pspell_new_personal(string personal, string language [, string spelling [, string jargon [, string encoding [, int mode]]]])\",\n \"Load a dictionary with a personal wordlist\"\n ],\n \"pspell_save_wordlist\": [\n \"bool pspell_save_wordlist(int pspell)\",\n \"Saves the current (personal) wordlist\"\n ],\n \"pspell_store_replacement\": [\n \"bool pspell_store_replacement(int pspell, string misspell, string correct)\",\n \"Notify the dictionary of a user-selected replacement\"\n ],\n \"pspell_suggest\": [\n \"array pspell_suggest(int pspell, string word)\",\n \"Returns array of suggestions\"\n ],\n \"putenv\": [\n \"bool putenv(string setting)\",\n \"Set the value of an environment variable\"\n ],\n \"quoted_printable_decode\": [\n \"string quoted_printable_decode(string str)\",\n \"Convert a quoted-printable string to an 8 bit string\"\n ],\n \"quoted_printable_encode\": [\n \"string quoted_printable_encode(string str) */\",\n \"PHP_FUNCTION(quoted_printable_encode) { char *str, *new_str; int str_len; size_t new_str_len; if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, \\\"s\\\", &str, &str_len) != SUCCESS) { return; } if (!str_len) { RETURN_EMPTY_STRING(); } new_str = (char *)php_quot_print_encode((unsigned char *)str, (size_t)str_len, &new_str_len); RETURN_STRINGL(new_str, new_str_len, 0); } /* }}}\"\n ],\n \"quotemeta\": [\n \"string quotemeta(string str)\",\n \"Quotes meta characters\"\n ],\n \"rad2deg\": [\n \"float rad2deg(float number)\",\n \"Converts the radian number to the equivalent number in degrees\"\n ],\n \"rand\": [\n \"int rand([int min, int max])\",\n \"Returns a random number\"\n ],\n \"range\": [\n \"array range(mixed low, mixed high[, int step])\",\n \"Create an array containing the range of integers or characters from low to high (inclusive)\"\n ],\n \"rawurldecode\": [\n \"string rawurldecode(string str)\",\n \"Decodes URL-encodes string\"\n ],\n \"rawurlencode\": [\n \"string rawurlencode(string str)\",\n \"URL-encodes string\"\n ],\n \"readdir\": [\n \"string readdir([resource dir_handle])\",\n \"Read directory entry from dir_handle\"\n ],\n \"readfile\": [\n \"int readfile(string filename [, bool use_include_path[, resource context]])\",\n \"Output a file or a URL\"\n ],\n \"readgzfile\": [\n \"int readgzfile(string filename [, int use_include_path])\",\n \"Output a .gz-file\"\n ],\n \"readline\": [\n \"string readline([string prompt])\",\n \"Reads a line\"\n ],\n \"readline_add_history\": [\n \"bool readline_add_history(string prompt)\",\n \"Adds a line to the history\"\n ],\n \"readline_callback_handler_install\": [\n \"void readline_callback_handler_install(string prompt, mixed callback)\",\n \"Initializes the readline callback interface and terminal, prints the prompt and returns immediately\"\n ],\n \"readline_callback_handler_remove\": [\n \"bool readline_callback_handler_remove()\",\n \"Removes a previously installed callback handler and restores terminal settings\"\n ],\n \"readline_callback_read_char\": [\n \"void readline_callback_read_char()\",\n \"Informs the readline callback interface that a character is ready for input\"\n ],\n \"readline_clear_history\": [\n \"bool readline_clear_history(void)\",\n \"Clears the history\"\n ],\n \"readline_completion_function\": [\n \"bool readline_completion_function(string funcname)\",\n \"Readline completion function?\"\n ],\n \"readline_info\": [\n \"mixed readline_info([string varname [, string newvalue]])\",\n \"Gets/sets various internal readline variables.\"\n ],\n \"readline_list_history\": [\n \"array readline_list_history(void)\",\n \"Lists the history\"\n ],\n \"readline_on_new_line\": [\n \"void readline_on_new_line(void)\",\n \"Inform readline that the cursor has moved to a new line\"\n ],\n \"readline_read_history\": [\n \"bool readline_read_history([string filename])\",\n \"Reads the history\"\n ],\n \"readline_redisplay\": [\n \"void readline_redisplay(void)\",\n \"Ask readline to redraw the display\"\n ],\n \"readline_write_history\": [\n \"bool readline_write_history([string filename])\",\n \"Writes the history\"\n ],\n \"readlink\": [\n \"string readlink(string filename)\",\n \"Return the target of a symbolic link\"\n ],\n \"realpath\": [\n \"string realpath(string path)\",\n \"Return the resolved path\"\n ],\n \"realpath_cache_get\": [\n \"bool realpath_cache_get()\",\n \"Get current size of realpath cache\"\n ],\n \"realpath_cache_size\": [\n \"bool realpath_cache_size()\",\n \"Get current size of realpath cache\"\n ],\n \"recode_file\": [\n \"bool recode_file(string request, resource input, resource output)\",\n \"Recode file input into file output according to request\"\n ],\n \"recode_string\": [\n \"string recode_string(string request, string str)\",\n \"Recode string str according to request string\"\n ],\n \"register_shutdown_function\": [\n \"void register_shutdown_function(string function_name)\",\n \"Register a user-level function to be called on request termination\"\n ],\n \"register_tick_function\": [\n \"bool register_tick_function(string function_name [, mixed arg [, mixed ... ]])\",\n \"Registers a tick callback function\"\n ],\n \"rename\": [\n \"bool rename(string old_name, string new_name[, resource context])\",\n \"Rename a file\"\n ],\n \"require\": [\n \"bool require(string path)\",\n \"Includes and evaluates the specified file, erroring if the file cannot be included\"\n ],\n \"require_once\": [\n \"bool require_once(string path)\",\n \"Includes and evaluates the specified file, erroring if the file cannot be included\"\n ],\n \"reset\": [\n \"mixed reset(array array_arg)\",\n \"Set array argument's internal pointer to the first element and return it\"\n ],\n \"restore_error_handler\": [\n \"void restore_error_handler(void)\",\n \"Restores the previously defined error handler function\"\n ],\n \"restore_exception_handler\": [\n \"void restore_exception_handler(void)\",\n \"Restores the previously defined exception handler function\"\n ],\n \"restore_include_path\": [\n \"void restore_include_path()\",\n \"Restore the value of the include_path configuration option\"\n ],\n \"rewind\": [\n \"bool rewind(resource fp)\",\n \"Rewind the position of a file pointer\"\n ],\n \"rewinddir\": [\n \"void rewinddir([resource dir_handle])\",\n \"Rewind dir_handle back to the start\"\n ],\n \"rmdir\": [\n \"bool rmdir(string dirname[, resource context])\",\n \"Remove a directory\"\n ],\n \"round\": [\n \"float round(float number [, int precision [, int mode]])\",\n \"Returns the number rounded to specified precision\"\n ],\n \"rsort\": [\n \"bool rsort(array &array_arg [, int sort_flags])\",\n \"Sort an array in reverse order\"\n ],\n \"rtrim\": [\n \"string rtrim(string str [, string character_mask])\",\n \"Removes trailing whitespace\"\n ],\n \"scandir\": [\n \"array scandir(string dir [, int sorting_order [, resource context]])\",\n \"List files & directories inside the specified path\"\n ],\n \"sem_acquire\": [\n \"bool sem_acquire(resource id)\",\n \"Acquires the semaphore with the given id, blocking if necessary\"\n ],\n \"sem_get\": [\n \"resource sem_get(int key [, int max_acquire [, int perm [, int auto_release]])\",\n \"Return an id for the semaphore with the given key, and allow max_acquire (default 1) processes to acquire it simultaneously\"\n ],\n \"sem_release\": [\n \"bool sem_release(resource id)\",\n \"Releases the semaphore with the given id\"\n ],\n \"sem_remove\": [\n \"bool sem_remove(resource id)\",\n \"Removes semaphore from Unix systems\"\n ],\n \"serialize\": [\n \"string serialize(mixed variable)\",\n \"Returns a string representation of variable (which can later be unserialized)\"\n ],\n \"session_cache_expire\": [\n \"int session_cache_expire([int new_cache_expire])\",\n \"Return the current cache expire. If new_cache_expire is given, the current cache_expire is replaced with new_cache_expire\"\n ],\n \"session_cache_limiter\": [\n \"string session_cache_limiter([string new_cache_limiter])\",\n \"Return the current cache limiter. If new_cache_limited is given, the current cache_limiter is replaced with new_cache_limiter\"\n ],\n \"session_decode\": [\n \"bool session_decode(string data)\",\n \"Deserializes data and reinitializes the variables\"\n ],\n \"session_destroy\": [\n \"bool session_destroy(void)\",\n \"Destroy the current session and all data associated with it\"\n ],\n \"session_encode\": [\n \"string session_encode(void)\",\n \"Serializes the current setup and returns the serialized representation\"\n ],\n \"session_get_cookie_params\": [\n \"array session_get_cookie_params(void)\",\n \"Return the session cookie parameters\"\n ],\n \"session_id\": [\n \"string session_id([string newid])\",\n \"Return the current session id. If newid is given, the session id is replaced with newid\"\n ],\n \"session_is_registered\": [\n \"bool session_is_registered(string varname)\",\n \"Checks if a variable is registered in session\"\n ],\n \"session_module_name\": [\n \"string session_module_name([string newname])\",\n \"Return the current module name used for accessing session data. If newname is given, the module name is replaced with newname\"\n ],\n \"session_name\": [\n \"string session_name([string newname])\",\n \"Return the current session name. If newname is given, the session name is replaced with newname\"\n ],\n \"session_regenerate_id\": [\n \"bool session_regenerate_id([bool delete_old_session])\",\n \"Update the current session id with a newly generated one. If delete_old_session is set to true, remove the old session.\"\n ],\n \"session_register\": [\n \"bool session_register(mixed var_names [, mixed ...])\",\n \"Adds varname(s) to the list of variables which are freezed at the session end\"\n ],\n \"session_save_path\": [\n \"string session_save_path([string newname])\",\n \"Return the current save path passed to module_name. If newname is given, the save path is replaced with newname\"\n ],\n \"session_set_cookie_params\": [\n \"void session_set_cookie_params(int lifetime [, string path [, string domain [, bool secure[, bool httponly]]]])\",\n \"Set session cookie parameters\"\n ],\n \"session_set_save_handler\": [\n \"void session_set_save_handler(string open, string close, string read, string write, string destroy, string gc)\",\n \"Sets user-level functions\"\n ],\n \"session_start\": [\n \"bool session_start(void)\",\n \"Begin session - reinitializes freezed variables, registers browsers etc\"\n ],\n \"session_unregister\": [\n \"bool session_unregister(string varname)\",\n \"Removes varname from the list of variables which are freezed at the session end\"\n ],\n \"session_unset\": [\n \"void session_unset(void)\",\n \"Unset all registered variables\"\n ],\n \"session_write_close\": [\n \"void session_write_close(void)\",\n \"Write session data and end session\"\n ],\n \"set_error_handler\": [\n \"string set_error_handler(string error_handler [, int error_types])\",\n \"Sets a user-defined error handler function. Returns the previously defined error handler, or false on error\"\n ],\n \"set_exception_handler\": [\n \"string set_exception_handler(callable exception_handler)\",\n \"Sets a user-defined exception handler function. Returns the previously defined exception handler, or false on error\"\n ],\n \"set_include_path\": [\n \"string set_include_path(string new_include_path)\",\n \"Sets the include_path configuration option\"\n ],\n \"set_magic_quotes_runtime\": [\n \"bool set_magic_quotes_runtime(int new_setting)\",\n \"Set the current active configuration setting of magic_quotes_runtime and return previous\"\n ],\n \"set_time_limit\": [\n \"bool set_time_limit(int seconds)\",\n \"Sets the maximum time a script can run\"\n ],\n \"setcookie\": [\n \"bool setcookie(string name [, string value [, int expires [, string path [, string domain [, bool secure[, bool httponly]]]]]])\",\n \"Send a cookie\"\n ],\n \"setlocale\": [\n \"string setlocale(mixed category, string locale [, string ...])\",\n \"Set locale information\"\n ],\n \"setrawcookie\": [\n \"bool setrawcookie(string name [, string value [, int expires [, string path [, string domain [, bool secure[, bool httponly]]]]]])\",\n \"Send a cookie with no url encoding of the value\"\n ],\n \"settype\": [\n \"bool settype(mixed var, string type)\",\n \"Set the type of the variable\"\n ],\n \"sha1\": [\n \"string sha1(string str [, bool raw_output])\",\n \"Calculate the sha1 hash of a string\"\n ],\n \"sha1_file\": [\n \"string sha1_file(string filename [, bool raw_output])\",\n \"Calculate the sha1 hash of given filename\"\n ],\n \"shell_exec\": [\n \"string shell_exec(string cmd)\",\n \"Execute command via shell and return complete output as string\"\n ],\n \"shm_attach\": [\n \"int shm_attach(int key [, int memsize [, int perm]])\",\n \"Creates or open a shared memory segment\"\n ],\n \"shm_detach\": [\n \"bool shm_detach(resource shm_identifier)\",\n \"Disconnects from shared memory segment\"\n ],\n \"shm_get_var\": [\n \"mixed shm_get_var(resource id, int variable_key)\",\n \"Returns a variable from shared memory\"\n ],\n \"shm_has_var\": [\n \"bool shm_has_var(resource id, int variable_key)\",\n \"Checks whether a specific entry exists\"\n ],\n \"shm_put_var\": [\n \"bool shm_put_var(resource shm_identifier, int variable_key, mixed variable)\",\n \"Inserts or updates a variable in shared memory\"\n ],\n \"shm_remove\": [\n \"bool shm_remove(resource shm_identifier)\",\n \"Removes shared memory from Unix systems\"\n ],\n \"shm_remove_var\": [\n \"bool shm_remove_var(resource id, int variable_key)\",\n \"Removes variable from shared memory\"\n ],\n \"shmop_close\": [\n \"void shmop_close (int shmid)\",\n \"closes a shared memory segment\"\n ],\n \"shmop_delete\": [\n \"bool shmop_delete (int shmid)\",\n \"mark segment for deletion\"\n ],\n \"shmop_open\": [\n \"int shmop_open (int key, string flags, int mode, int size)\",\n \"gets and attaches a shared memory segment\"\n ],\n \"shmop_read\": [\n \"string shmop_read (int shmid, int start, int count)\",\n \"reads from a shm segment\"\n ],\n \"shmop_size\": [\n \"int shmop_size (int shmid)\",\n \"returns the shm size\"\n ],\n \"shmop_write\": [\n \"int shmop_write (int shmid, string data, int offset)\",\n \"writes to a shared memory segment\"\n ],\n \"shuffle\": [\n \"bool shuffle(array array_arg)\",\n \"Randomly shuffle the contents of an array\"\n ],\n \"similar_text\": [\n \"int similar_text(string str1, string str2 [, float percent])\",\n \"Calculates the similarity between two strings\"\n ],\n \"simplexml_import_dom\": [\n \"simplemxml_element simplexml_import_dom(domNode node [, string class_name])\",\n \"Get a simplexml_element object from dom to allow for processing\"\n ],\n \"simplexml_load_file\": [\n \"simplemxml_element simplexml_load_file(string filename [, string class_name [, int options [, string ns [, bool is_prefix]]]])\",\n \"Load a filename and return a simplexml_element object to allow for processing\"\n ],\n \"simplexml_load_string\": [\n \"simplemxml_element simplexml_load_string(string data [, string class_name [, int options [, string ns [, bool is_prefix]]]])\",\n \"Load a string and return a simplexml_element object to allow for processing\"\n ],\n \"sin\": [\n \"float sin(float number)\",\n \"Returns the sine of the number in radians\"\n ],\n \"sinh\": [\n \"float sinh(float number)\",\n \"Returns the hyperbolic sine of the number, defined as (exp(number) - exp(-number))/2\"\n ],\n \"sleep\": [\n \"void sleep(int seconds)\",\n \"Delay for a given number of seconds\"\n ],\n \"smfi_addheader\": [\n \"bool smfi_addheader(string headerf, string headerv)\",\n \"Adds a header to the current message.\"\n ],\n \"smfi_addrcpt\": [\n \"bool smfi_addrcpt(string rcpt)\",\n \"Add a recipient to the message envelope.\"\n ],\n \"smfi_chgheader\": [\n \"bool smfi_chgheader(string headerf, string headerv)\",\n \"Changes a header's value for the current message.\"\n ],\n \"smfi_delrcpt\": [\n \"bool smfi_delrcpt(string rcpt)\",\n \"Removes the named recipient from the current message's envelope.\"\n ],\n \"smfi_getsymval\": [\n \"string smfi_getsymval(string macro)\",\n \"Returns the value of the given macro or NULL if the macro is not defined.\"\n ],\n \"smfi_replacebody\": [\n \"bool smfi_replacebody(string body)\",\n \"Replaces the body of the current message. If called more than once, subsequent calls result in data being appended to the new body.\"\n ],\n \"smfi_setflags\": [\n \"void smfi_setflags(long flags)\",\n \"Sets the flags describing the actions the filter may take.\"\n ],\n \"smfi_setreply\": [\n \"bool smfi_setreply(string rcode, string xcode, string message)\",\n \"Directly set the SMTP error reply code for this connection. This code will be used on subsequent error replies resulting from actions taken by this filter.\"\n ],\n \"smfi_settimeout\": [\n \"void smfi_settimeout(long timeout)\",\n \"Sets the number of seconds libmilter will wait for an MTA connection before timing out a socket.\"\n ],\n \"snmp2_get\": [\n \"string snmp2_get(string host, string community, string object_id [, int timeout [, int retries]])\",\n \"Fetch a SNMP object\"\n ],\n \"snmp2_getnext\": [\n \"string snmp2_getnext(string host, string community, string object_id [, int timeout [, int retries]])\",\n \"Fetch a SNMP object\"\n ],\n \"snmp2_real_walk\": [\n \"array snmp2_real_walk(string host, string community, string object_id [, int timeout [, int retries]])\",\n \"Return all objects including their respective object id withing the specified one\"\n ],\n \"snmp2_set\": [\n \"int snmp2_set(string host, string community, string object_id, string type, mixed value [, int timeout [, int retries]])\",\n \"Set the value of a SNMP object\"\n ],\n \"snmp2_walk\": [\n \"array snmp2_walk(string host, string community, string object_id [, int timeout [, int retries]])\",\n \"Return all objects under the specified object id\"\n ],\n \"snmp3_get\": [\n \"int snmp3_get(string host, string sec_name, string sec_level, string auth_protocol, string auth_passphrase, string priv_protocol, string priv_passphrase, string object_id [, int timeout [, int retries]])\",\n \"Fetch the value of a SNMP object\"\n ],\n \"snmp3_getnext\": [\n \"int snmp3_getnext(string host, string sec_name, string sec_level, string auth_protocol, string auth_passphrase, string priv_protocol, string priv_passphrase, string object_id [, int timeout [, int retries]])\",\n \"Fetch the value of a SNMP object\"\n ],\n \"snmp3_real_walk\": [\n \"int snmp3_real_walk(string host, string sec_name, string sec_level, string auth_protocol, string auth_passphrase, string priv_protocol, string priv_passphrase, string object_id [, int timeout [, int retries]])\",\n \"Fetch the value of a SNMP object\"\n ],\n \"snmp3_set\": [\n \"int snmp3_set(string host, string sec_name, string sec_level, string auth_protocol, string auth_passphrase, string priv_protocol, string priv_passphrase, string object_id, string type, mixed value [, int timeout [, int retries]])\",\n \"Fetch the value of a SNMP object\"\n ],\n \"snmp3_walk\": [\n \"int snmp3_walk(string host, string sec_name, string sec_level, string auth_protocol, string auth_passphrase, string priv_protocol, string priv_passphrase, string object_id [, int timeout [, int retries]])\",\n \"Fetch the value of a SNMP object\"\n ],\n \"snmp_get_quick_print\": [\n \"bool snmp_get_quick_print(void)\",\n \"Return the current status of quick_print\"\n ],\n \"snmp_get_valueretrieval\": [\n \"int snmp_get_valueretrieval()\",\n \"Return the method how the SNMP values will be returned\"\n ],\n \"snmp_read_mib\": [\n \"int snmp_read_mib(string filename)\",\n \"Reads and parses a MIB file into the active MIB tree.\"\n ],\n \"snmp_set_enum_print\": [\n \"void snmp_set_enum_print(int enum_print)\",\n \"Return all values that are enums with their enum value instead of the raw integer\"\n ],\n \"snmp_set_oid_output_format\": [\n \"void snmp_set_oid_output_format(int oid_format)\",\n \"Set the OID output format.\"\n ],\n \"snmp_set_quick_print\": [\n \"void snmp_set_quick_print(int quick_print)\",\n \"Return all objects including their respective object id withing the specified one\"\n ],\n \"snmp_set_valueretrieval\": [\n \"void snmp_set_valueretrieval(int method)\",\n \"Specify the method how the SNMP values will be returned\"\n ],\n \"snmpget\": [\n \"string snmpget(string host, string community, string object_id [, int timeout [, int retries]])\",\n \"Fetch a SNMP object\"\n ],\n \"snmpgetnext\": [\n \"string snmpgetnext(string host, string community, string object_id [, int timeout [, int retries]])\",\n \"Fetch a SNMP object\"\n ],\n \"snmprealwalk\": [\n \"array snmprealwalk(string host, string community, string object_id [, int timeout [, int retries]])\",\n \"Return all objects including their respective object id withing the specified one\"\n ],\n \"snmpset\": [\n \"int snmpset(string host, string community, string object_id, string type, mixed value [, int timeout [, int retries]])\",\n \"Set the value of a SNMP object\"\n ],\n \"snmpwalk\": [\n \"array snmpwalk(string host, string community, string object_id [, int timeout [, int retries]])\",\n \"Return all objects under the specified object id\"\n ],\n \"socket_accept\": [\n \"resource socket_accept(resource socket)\",\n \"Accepts a connection on the listening socket fd\"\n ],\n \"socket_bind\": [\n \"bool socket_bind(resource socket, string addr [, int port])\",\n \"Binds an open socket to a listening port, port is only specified in AF_INET family.\"\n ],\n \"socket_clear_error\": [\n \"void socket_clear_error([resource socket])\",\n \"Clears the error on the socket or the last error code.\"\n ],\n \"socket_close\": [\n \"void socket_close(resource socket)\",\n \"Closes a file descriptor\"\n ],\n \"socket_connect\": [\n \"bool socket_connect(resource socket, string addr [, int port])\",\n \"Opens a connection to addr:port on the socket specified by socket\"\n ],\n \"socket_create\": [\n \"resource socket_create(int domain, int type, int protocol)\",\n \"Creates an endpoint for communication in the domain specified by domain, of type specified by type\"\n ],\n \"socket_create_listen\": [\n \"resource socket_create_listen(int port[, int backlog])\",\n \"Opens a socket on port to accept connections\"\n ],\n \"socket_create_pair\": [\n \"bool socket_create_pair(int domain, int type, int protocol, array &fd)\",\n \"Creates a pair of indistinguishable sockets and stores them in fds.\"\n ],\n \"socket_get_option\": [\n \"mixed socket_get_option(resource socket, int level, int optname)\",\n \"Gets socket options for the socket\"\n ],\n \"socket_getpeername\": [\n \"bool socket_getpeername(resource socket, string &addr[, int &port])\",\n \"Queries the remote side of the given socket which may either result in host/port or in a UNIX filesystem path, dependent on its type.\"\n ],\n \"socket_getsockname\": [\n \"bool socket_getsockname(resource socket, string &addr[, int &port])\",\n \"Queries the remote side of the given socket which may either result in host/port or in a UNIX filesystem path, dependent on its type.\"\n ],\n \"socket_last_error\": [\n \"int socket_last_error([resource socket])\",\n \"Returns the last socket error (either the last used or the provided socket resource)\"\n ],\n \"socket_listen\": [\n \"bool socket_listen(resource socket[, int backlog])\",\n \"Sets the maximum number of connections allowed to be waited for on the socket specified by fd\"\n ],\n \"socket_read\": [\n \"string socket_read(resource socket, int length [, int type])\",\n \"Reads a maximum of length bytes from socket\"\n ],\n \"socket_recv\": [\n \"int socket_recv(resource socket, string &buf, int len, int flags)\",\n \"Receives data from a connected socket\"\n ],\n \"socket_recvfrom\": [\n \"int socket_recvfrom(resource socket, string &buf, int len, int flags, string &name [, int &port])\",\n \"Receives data from a socket, connected or not\"\n ],\n \"socket_select\": [\n \"int socket_select(array &read_fds, array &write_fds, array &except_fds, int tv_sec[, int tv_usec])\",\n \"Runs the select() system call on the sets mentioned with a timeout specified by tv_sec and tv_usec\"\n ],\n \"socket_send\": [\n \"int socket_send(resource socket, string buf, int len, int flags)\",\n \"Sends data to a connected socket\"\n ],\n \"socket_sendto\": [\n \"int socket_sendto(resource socket, string buf, int len, int flags, string addr [, int port])\",\n \"Sends a message to a socket, whether it is connected or not\"\n ],\n \"socket_set_block\": [\n \"bool socket_set_block(resource socket)\",\n \"Sets blocking mode on a socket resource\"\n ],\n \"socket_set_nonblock\": [\n \"bool socket_set_nonblock(resource socket)\",\n \"Sets nonblocking mode on a socket resource\"\n ],\n \"socket_set_option\": [\n \"bool socket_set_option(resource socket, int level, int optname, int|array optval)\",\n \"Sets socket options for the socket\"\n ],\n \"socket_shutdown\": [\n \"bool socket_shutdown(resource socket[, int how])\",\n \"Shuts down a socket for receiving, sending, or both.\"\n ],\n \"socket_strerror\": [\n \"string socket_strerror(int errno)\",\n \"Returns a string describing an error\"\n ],\n \"socket_write\": [\n \"int socket_write(resource socket, string buf[, int length])\",\n \"Writes the buffer to the socket resource, length is optional\"\n ],\n \"solid_fetch_prev\": [\n \"bool solid_fetch_prev(resource result_id)\",\n \"\"\n ],\n \"sort\": [\n \"bool sort(array &array_arg [, int sort_flags])\",\n \"Sort an array\"\n ],\n \"soundex\": [\n \"string soundex(string str)\",\n \"Calculate the soundex key of a string\"\n ],\n \"spl_autoload\": [\n \"void spl_autoload(string class_name [, string file_extensions])\",\n \"Default implementation for __autoload()\"\n ],\n \"spl_autoload_call\": [\n \"void spl_autoload_call(string class_name)\",\n \"Try all registerd autoload function to load the requested class\"\n ],\n \"spl_autoload_extensions\": [\n \"string spl_autoload_extensions([string file_extensions])\",\n \"Register and return default file extensions for spl_autoload\"\n ],\n \"spl_autoload_functions\": [\n \"false|array spl_autoload_functions()\",\n \"Return all registered __autoload() functionns\"\n ],\n \"spl_autoload_register\": [\n \"bool spl_autoload_register([mixed autoload_function = \\\"spl_autoload\\\" [, throw = true [, prepend]]])\",\n \"Register given function as __autoload() implementation\"\n ],\n \"spl_autoload_unregister\": [\n \"bool spl_autoload_unregister(mixed autoload_function)\",\n \"Unregister given function as __autoload() implementation\"\n ],\n \"spl_classes\": [\n \"array spl_classes()\",\n \"Return an array containing the names of all clsses and interfaces defined in SPL\"\n ],\n \"spl_object_hash\": [\n \"string spl_object_hash(object obj)\",\n \"Return hash id for given object\"\n ],\n \"split\": [\n \"array split(string pattern, string string [, int limit])\",\n \"Split string into array by regular expression\"\n ],\n \"spliti\": [\n \"array spliti(string pattern, string string [, int limit])\",\n \"Split string into array by regular expression case-insensitive\"\n ],\n \"sprintf\": [\n \"string sprintf(string format [, mixed arg1 [, mixed ...]])\",\n \"Return a formatted string\"\n ],\n \"sql_regcase\": [\n \"string sql_regcase(string string)\",\n \"Make regular expression for case insensitive match\"\n ],\n \"sqlite_array_query\": [\n \"array sqlite_array_query(resource db, string query [ , int result_type [, bool decode_binary]])\",\n \"Executes a query against a given database and returns an array of arrays.\"\n ],\n \"sqlite_busy_timeout\": [\n \"void sqlite_busy_timeout(resource db, int ms)\",\n \"Set busy timeout duration. If ms <= 0, all busy handlers are disabled.\"\n ],\n \"sqlite_changes\": [\n \"int sqlite_changes(resource db)\",\n \"Returns the number of rows that were changed by the most recent SQL statement.\"\n ],\n \"sqlite_close\": [\n \"void sqlite_close(resource db)\",\n \"Closes an open sqlite database.\"\n ],\n \"sqlite_column\": [\n \"mixed sqlite_column(resource result, mixed index_or_name [, bool decode_binary])\",\n \"Fetches a column from the current row of a result set.\"\n ],\n \"sqlite_create_aggregate\": [\n \"bool sqlite_create_aggregate(resource db, string funcname, mixed step_func, mixed finalize_func[, long num_args])\",\n \"Registers an aggregate function for queries.\"\n ],\n \"sqlite_create_function\": [\n \"bool sqlite_create_function(resource db, string funcname, mixed callback[, long num_args])\",\n \"Registers a \\\"regular\\\" function for queries.\"\n ],\n \"sqlite_current\": [\n \"array sqlite_current(resource result [, int result_type [, bool decode_binary]])\",\n \"Fetches the current row from a result set as an array.\"\n ],\n \"sqlite_error_string\": [\n \"string sqlite_error_string(int error_code)\",\n \"Returns the textual description of an error code.\"\n ],\n \"sqlite_escape_string\": [\n \"string sqlite_escape_string(string item)\",\n \"Escapes a string for use as a query parameter.\"\n ],\n \"sqlite_exec\": [\n \"boolean sqlite_exec(string query, resource db[, string &error_message])\",\n \"Executes a result-less query against a given database\"\n ],\n \"sqlite_factory\": [\n \"object sqlite_factory(string filename [, int mode [, string &error_message]])\",\n \"Opens a SQLite database and creates an object for it. Will create the database if it does not exist.\"\n ],\n \"sqlite_fetch_all\": [\n \"array sqlite_fetch_all(resource result [, int result_type [, bool decode_binary]])\",\n \"Fetches all rows from a result set as an array of arrays.\"\n ],\n \"sqlite_fetch_array\": [\n \"array sqlite_fetch_array(resource result [, int result_type [, bool decode_binary]])\",\n \"Fetches the next row from a result set as an array.\"\n ],\n \"sqlite_fetch_column_types\": [\n \"resource sqlite_fetch_column_types(string table_name, resource db [, int result_type])\",\n \"Return an array of column types from a particular table.\"\n ],\n \"sqlite_fetch_object\": [\n \"object sqlite_fetch_object(resource result [, string class_name [, NULL|array ctor_params [, bool decode_binary]]])\",\n \"Fetches the next row from a result set as an object.\"\n ],\n \"sqlite_fetch_single\": [\n \"string sqlite_fetch_single(resource result [, bool decode_binary])\",\n \"Fetches the first column of a result set as a string.\"\n ],\n \"sqlite_field_name\": [\n \"string sqlite_field_name(resource result, int field_index)\",\n \"Returns the name of a particular field of a result set.\"\n ],\n \"sqlite_has_prev\": [\n \"bool sqlite_has_prev(resource result)\",\n \"* Returns whether a previous row is available.\"\n ],\n \"sqlite_key\": [\n \"int sqlite_key(resource result)\",\n \"Return the current row index of a buffered result.\"\n ],\n \"sqlite_last_error\": [\n \"int sqlite_last_error(resource db)\",\n \"Returns the error code of the last error for a database.\"\n ],\n \"sqlite_last_insert_rowid\": [\n \"int sqlite_last_insert_rowid(resource db)\",\n \"Returns the rowid of the most recently inserted row.\"\n ],\n \"sqlite_libencoding\": [\n \"string sqlite_libencoding()\",\n \"Returns the encoding (iso8859 or UTF-8) of the linked SQLite library.\"\n ],\n \"sqlite_libversion\": [\n \"string sqlite_libversion()\",\n \"Returns the version of the linked SQLite library.\"\n ],\n \"sqlite_next\": [\n \"bool sqlite_next(resource result)\",\n \"Seek to the next row number of a result set.\"\n ],\n \"sqlite_num_fields\": [\n \"int sqlite_num_fields(resource result)\",\n \"Returns the number of fields in a result set.\"\n ],\n \"sqlite_num_rows\": [\n \"int sqlite_num_rows(resource result)\",\n \"Returns the number of rows in a buffered result set.\"\n ],\n \"sqlite_open\": [\n \"resource sqlite_open(string filename [, int mode [, string &error_message]])\",\n \"Opens a SQLite database. Will create the database if it does not exist.\"\n ],\n \"sqlite_popen\": [\n \"resource sqlite_popen(string filename [, int mode [, string &error_message]])\",\n \"Opens a persistent handle to a SQLite database. Will create the database if it does not exist.\"\n ],\n \"sqlite_prev\": [\n \"bool sqlite_prev(resource result)\",\n \"* Seek to the previous row number of a result set.\"\n ],\n \"sqlite_query\": [\n \"resource sqlite_query(string query, resource db [, int result_type [, string &error_message]])\",\n \"Executes a query against a given database and returns a result handle.\"\n ],\n \"sqlite_rewind\": [\n \"bool sqlite_rewind(resource result)\",\n \"Seek to the first row number of a buffered result set.\"\n ],\n \"sqlite_seek\": [\n \"bool sqlite_seek(resource result, int row)\",\n \"Seek to a particular row number of a buffered result set.\"\n ],\n \"sqlite_single_query\": [\n \"array sqlite_single_query(resource db, string query [, bool first_row_only [, bool decode_binary]])\",\n \"Executes a query and returns either an array for one single column or the value of the first row.\"\n ],\n \"sqlite_udf_decode_binary\": [\n \"string sqlite_udf_decode_binary(string data)\",\n \"Decode binary encoding on a string parameter passed to an UDF.\"\n ],\n \"sqlite_udf_encode_binary\": [\n \"string sqlite_udf_encode_binary(string data)\",\n \"Apply binary encoding (if required) to a string to return from an UDF.\"\n ],\n \"sqlite_unbuffered_query\": [\n \"resource sqlite_unbuffered_query(string query, resource db [ , int result_type [, string &error_message]])\",\n \"Executes a query that does not prefetch and buffer all data.\"\n ],\n \"sqlite_valid\": [\n \"bool sqlite_valid(resource result)\",\n \"Returns whether more rows are available.\"\n ],\n \"sqrt\": [\n \"float sqrt(float number)\",\n \"Returns the square root of the number\"\n ],\n \"srand\": [\n \"void srand([int seed])\",\n \"Seeds random number generator\"\n ],\n \"sscanf\": [\n \"mixed sscanf(string str, string format [, string ...])\",\n \"Implements an ANSI C compatible sscanf\"\n ],\n \"stat\": [\n \"array stat(string filename)\",\n \"Give information about a file\"\n ],\n \"str_getcsv\": [\n \"array str_getcsv(string input[, string delimiter[, string enclosure[, string escape]]])\",\n \"Parse a CSV string into an array\"\n ],\n \"str_ireplace\": [\n \"mixed str_ireplace(mixed search, mixed replace, mixed subject [, int &replace_count])\",\n \"Replaces all occurrences of search in haystack with replace / case-insensitive\"\n ],\n \"str_pad\": [\n \"string str_pad(string input, int pad_length [, string pad_string [, int pad_type]])\",\n \"Returns input string padded on the left or right to specified length with pad_string\"\n ],\n \"str_repeat\": [\n \"string str_repeat(string input, int mult)\",\n \"Returns the input string repeat mult times\"\n ],\n \"str_replace\": [\n \"mixed str_replace(mixed search, mixed replace, mixed subject [, int &replace_count])\",\n \"Replaces all occurrences of search in haystack with replace\"\n ],\n \"str_rot13\": [\n \"string str_rot13(string str)\",\n \"Perform the rot13 transform on a string\"\n ],\n \"str_shuffle\": [\n \"void str_shuffle(string str)\",\n \"Shuffles string. One permutation of all possible is created\"\n ],\n \"str_split\": [\n \"array str_split(string str [, int split_length])\",\n \"Convert a string to an array. If split_length is specified, break the string down into chunks each split_length characters long.\"\n ],\n \"str_word_count\": [\n \"mixed str_word_count(string str, [int format [, string charlist]])\",\n \"Counts the number of words inside a string. If format of 1 is specified, then the function will return an array containing all the words found inside the string. If format of 2 is specified, then the function will return an associated array where the position of the word is the key and the word itself is the value. For the purpose of this function, 'word' is defined as a locale dependent string containing alphabetic characters, which also may contain, but not start with \\\"'\\\" and \\\"-\\\" characters.\"\n ],\n \"strcasecmp\": [\n \"int strcasecmp(string str1, string str2)\",\n \"Binary safe case-insensitive string comparison\"\n ],\n \"strchr\": [\n \"string strchr(string haystack, string needle)\",\n \"An alias for strstr\"\n ],\n \"strcmp\": [\n \"int strcmp(string str1, string str2)\",\n \"Binary safe string comparison\"\n ],\n \"strcoll\": [\n \"int strcoll(string str1, string str2)\",\n \"Compares two strings using the current locale\"\n ],\n \"strcspn\": [\n \"int strcspn(string str, string mask [, start [, len]])\",\n \"Finds length of initial segment consisting entirely of characters not found in mask. If start or/and length is provide works like strcspn(substr($s,$start,$len),$bad_chars)\"\n ],\n \"stream_bucket_append\": [\n \"void stream_bucket_append(resource brigade, resource bucket)\",\n \"Append bucket to brigade\"\n ],\n \"stream_bucket_make_writeable\": [\n \"object stream_bucket_make_writeable(resource brigade)\",\n \"Return a bucket object from the brigade for operating on\"\n ],\n \"stream_bucket_new\": [\n \"resource stream_bucket_new(resource stream, string buffer)\",\n \"Create a new bucket for use on the current stream\"\n ],\n \"stream_bucket_prepend\": [\n \"void stream_bucket_prepend(resource brigade, resource bucket)\",\n \"Prepend bucket to brigade\"\n ],\n \"stream_context_create\": [\n \"resource stream_context_create([array options[, array params]])\",\n \"Create a file context and optionally set parameters\"\n ],\n \"stream_context_get_default\": [\n \"resource stream_context_get_default([array options])\",\n \"Get a handle on the default file/stream context and optionally set parameters\"\n ],\n \"stream_context_get_options\": [\n \"array stream_context_get_options(resource context|resource stream)\",\n \"Retrieve options for a stream/wrapper/context\"\n ],\n \"stream_context_get_params\": [\n \"array stream_context_get_params(resource context|resource stream)\",\n \"Get parameters of a file context\"\n ],\n \"stream_context_set_default\": [\n \"resource stream_context_set_default(array options)\",\n \"Set default file/stream context, returns the context as a resource\"\n ],\n \"stream_context_set_option\": [\n \"bool stream_context_set_option(resource context|resource stream, string wrappername, string optionname, mixed value)\",\n \"Set an option for a wrapper\"\n ],\n \"stream_context_set_params\": [\n \"bool stream_context_set_params(resource context|resource stream, array options)\",\n \"Set parameters for a file context\"\n ],\n \"stream_copy_to_stream\": [\n \"long stream_copy_to_stream(resource source, resource dest [, long maxlen [, long pos]])\",\n \"Reads up to maxlen bytes from source stream and writes them to dest stream.\"\n ],\n \"stream_filter_append\": [\n \"resource stream_filter_append(resource stream, string filtername[, int read_write[, string filterparams]])\",\n \"Append a filter to a stream\"\n ],\n \"stream_filter_prepend\": [\n \"resource stream_filter_prepend(resource stream, string filtername[, int read_write[, string filterparams]])\",\n \"Prepend a filter to a stream\"\n ],\n \"stream_filter_register\": [\n \"bool stream_filter_register(string filtername, string classname)\",\n \"Registers a custom filter handler class\"\n ],\n \"stream_filter_remove\": [\n \"bool stream_filter_remove(resource stream_filter)\",\n \"Flushes any data in the filter's internal buffer, removes it from the chain, and frees the resource\"\n ],\n \"stream_get_contents\": [\n \"string stream_get_contents(resource source [, long maxlen [, long offset]])\",\n \"Reads all remaining bytes (or up to maxlen bytes) from a stream and returns them as a string.\"\n ],\n \"stream_get_filters\": [\n \"array stream_get_filters(void)\",\n \"Returns a list of registered filters\"\n ],\n \"stream_get_line\": [\n \"string stream_get_line(resource stream, int maxlen [, string ending])\",\n \"Read up to maxlen bytes from a stream or until the ending string is found\"\n ],\n \"stream_get_meta_data\": [\n \"array stream_get_meta_data(resource fp)\",\n \"Retrieves header/meta data from streams/file pointers\"\n ],\n \"stream_get_transports\": [\n \"array stream_get_transports()\",\n \"Retrieves list of registered socket transports\"\n ],\n \"stream_get_wrappers\": [\n \"array stream_get_wrappers()\",\n \"Retrieves list of registered stream wrappers\"\n ],\n \"stream_is_local\": [\n \"bool stream_is_local(resource stream|string url)\",\n \"\"\n ],\n \"stream_resolve_include_path\": [\n \"string stream_resolve_include_path(string filename)\",\n \"Determine what file will be opened by calls to fopen() with a relative path\"\n ],\n \"stream_select\": [\n \"int stream_select(array &read_streams, array &write_streams, array &except_streams, int tv_sec[, int tv_usec])\",\n \"Runs the select() system call on the sets of streams with a timeout specified by tv_sec and tv_usec\"\n ],\n \"stream_set_blocking\": [\n \"bool stream_set_blocking(resource socket, int mode)\",\n \"Set blocking/non-blocking mode on a socket or stream\"\n ],\n \"stream_set_timeout\": [\n \"bool stream_set_timeout(resource stream, int seconds [, int microseconds])\",\n \"Set timeout on stream read to seconds + microseonds\"\n ],\n \"stream_set_write_buffer\": [\n \"int stream_set_write_buffer(resource fp, int buffer)\",\n \"Set file write buffer\"\n ],\n \"stream_socket_accept\": [\n \"resource stream_socket_accept(resource serverstream, [ double timeout [, string &peername ]])\",\n \"Accept a client connection from a server socket\"\n ],\n \"stream_socket_client\": [\n \"resource stream_socket_client(string remoteaddress [, long &errcode [, string &errstring [, double timeout [, long flags [, resource context]]]]])\",\n \"Open a client connection to a remote address\"\n ],\n \"stream_socket_enable_crypto\": [\n \"int stream_socket_enable_crypto(resource stream, bool enable [, int cryptokind [, resource sessionstream]])\",\n \"Enable or disable a specific kind of crypto on the stream\"\n ],\n \"stream_socket_get_name\": [\n \"string stream_socket_get_name(resource stream, bool want_peer)\",\n \"Returns either the locally bound or remote name for a socket stream\"\n ],\n \"stream_socket_pair\": [\n \"array stream_socket_pair(int domain, int type, int protocol)\",\n \"Creates a pair of connected, indistinguishable socket streams\"\n ],\n \"stream_socket_recvfrom\": [\n \"string stream_socket_recvfrom(resource stream, long amount [, long flags [, string &remote_addr]])\",\n \"Receives data from a socket stream\"\n ],\n \"stream_socket_sendto\": [\n \"long stream_socket_sendto(resouce stream, string data [, long flags [, string target_addr]])\",\n \"Send data to a socket stream. If target_addr is specified it must be in dotted quad (or [ipv6]) format\"\n ],\n \"stream_socket_server\": [\n \"resource stream_socket_server(string localaddress [, long &errcode [, string &errstring [, long flags [, resource context]]]])\",\n \"Create a server socket bound to localaddress\"\n ],\n \"stream_socket_shutdown\": [\n \"int stream_socket_shutdown(resource stream, int how)\",\n \"causes all or part of a full-duplex connection on the socket associated with stream to be shut down. If how is SHUT_RD, further receptions will be disallowed. If how is SHUT_WR, further transmissions will be disallowed. If how is SHUT_RDWR, further receptions and transmissions will be disallowed.\"\n ],\n \"stream_supports_lock\": [\n \"bool stream_supports_lock(resource stream)\",\n \"Tells whether the stream supports locking through flock().\"\n ],\n \"stream_wrapper_register\": [\n \"bool stream_wrapper_register(string protocol, string classname[, integer flags])\",\n \"Registers a custom URL protocol handler class\"\n ],\n \"stream_wrapper_restore\": [\n \"bool stream_wrapper_restore(string protocol)\",\n \"Restore the original protocol handler, overriding if necessary\"\n ],\n \"stream_wrapper_unregister\": [\n \"bool stream_wrapper_unregister(string protocol)\",\n \"Unregister a wrapper for the life of the current request.\"\n ],\n \"strftime\": [\n \"string strftime(string format [, int timestamp])\",\n \"Format a local time/date according to locale settings\"\n ],\n \"strip_tags\": [\n \"string strip_tags(string str [, string allowable_tags])\",\n \"Strips HTML and PHP tags from a string\"\n ],\n \"stripcslashes\": [\n \"string stripcslashes(string str)\",\n \"Strips backslashes from a string. Uses C-style conventions\"\n ],\n \"stripos\": [\n \"int stripos(string haystack, string needle [, int offset])\",\n \"Finds position of first occurrence of a string within another, case insensitive\"\n ],\n \"stripslashes\": [\n \"string stripslashes(string str)\",\n \"Strips backslashes from a string\"\n ],\n \"stristr\": [\n \"string stristr(string haystack, string needle[, bool part])\",\n \"Finds first occurrence of a string within another, case insensitive\"\n ],\n \"strlen\": [\n \"int strlen(string str)\",\n \"Get string length\"\n ],\n \"strnatcasecmp\": [\n \"int strnatcasecmp(string s1, string s2)\",\n \"Returns the result of case-insensitive string comparison using 'natural' algorithm\"\n ],\n \"strnatcmp\": [\n \"int strnatcmp(string s1, string s2)\",\n \"Returns the result of string comparison using 'natural' algorithm\"\n ],\n \"strncasecmp\": [\n \"int strncasecmp(string str1, string str2, int len)\",\n \"Binary safe string comparison\"\n ],\n \"strncmp\": [\n \"int strncmp(string str1, string str2, int len)\",\n \"Binary safe string comparison\"\n ],\n \"strpbrk\": [\n \"array strpbrk(string haystack, string char_list)\",\n \"Search a string for any of a set of characters\"\n ],\n \"strpos\": [\n \"int strpos(string haystack, string needle [, int offset])\",\n \"Finds position of first occurrence of a string within another\"\n ],\n \"strptime\": [\n \"string strptime(string timestamp, string format)\",\n \"Parse a time/date generated with strftime()\"\n ],\n \"strrchr\": [\n \"string strrchr(string haystack, string needle)\",\n \"Finds the last occurrence of a character in a string within another\"\n ],\n \"strrev\": [\n \"string strrev(string str)\",\n \"Reverse a string\"\n ],\n \"strripos\": [\n \"int strripos(string haystack, string needle [, int offset])\",\n \"Finds position of last occurrence of a string within another string\"\n ],\n \"strrpos\": [\n \"int strrpos(string haystack, string needle [, int offset])\",\n \"Finds position of last occurrence of a string within another string\"\n ],\n \"strspn\": [\n \"int strspn(string str, string mask [, start [, len]])\",\n \"Finds length of initial segment consisting entirely of characters found in mask. If start or/and length is provided works like strspn(substr($s,$start,$len),$good_chars)\"\n ],\n \"strstr\": [\n \"string strstr(string haystack, string needle[, bool part])\",\n \"Finds first occurrence of a string within another\"\n ],\n \"strtok\": [\n \"string strtok([string str,] string token)\",\n \"Tokenize a string\"\n ],\n \"strtolower\": [\n \"string strtolower(string str)\",\n \"Makes a string lowercase\"\n ],\n \"strtotime\": [\n \"int strtotime(string time [, int now ])\",\n \"Convert string representation of date and time to a timestamp\"\n ],\n \"strtoupper\": [\n \"string strtoupper(string str)\",\n \"Makes a string uppercase\"\n ],\n \"strtr\": [\n \"string strtr(string str, string from[, string to])\",\n \"Translates characters in str using given translation tables\"\n ],\n \"strval\": [\n \"string strval(mixed var)\",\n \"Get the string value of a variable\"\n ],\n \"substr\": [\n \"string substr(string str, int start [, int length])\",\n \"Returns part of a string\"\n ],\n \"substr_compare\": [\n \"int substr_compare(string main_str, string str, int offset [, int length [, bool case_sensitivity]])\",\n \"Binary safe optionally case insensitive comparison of 2 strings from an offset, up to length characters\"\n ],\n \"substr_count\": [\n \"int substr_count(string haystack, string needle [, int offset [, int length]])\",\n \"Returns the number of times a substring occurs in the string\"\n ],\n \"substr_replace\": [\n \"mixed substr_replace(mixed str, mixed repl, mixed start [, mixed length])\",\n \"Replaces part of a string with another string\"\n ],\n \"sybase_affected_rows\": [\n \"int sybase_affected_rows([resource link_id])\",\n \"Get number of affected rows in last query\"\n ],\n \"sybase_close\": [\n \"bool sybase_close([resource link_id])\",\n \"Close Sybase connection\"\n ],\n \"sybase_connect\": [\n \"int sybase_connect([string host [, string user [, string password [, string charset [, string appname [, bool new]]]]]])\",\n \"Open Sybase server connection\"\n ],\n \"sybase_data_seek\": [\n \"bool sybase_data_seek(resource result, int offset)\",\n \"Move internal row pointer\"\n ],\n \"sybase_deadlock_retry_count\": [\n \"void sybase_deadlock_retry_count(int retry_count)\",\n \"Sets deadlock retry count\"\n ],\n \"sybase_fetch_array\": [\n \"array sybase_fetch_array(resource result)\",\n \"Fetch row as array\"\n ],\n \"sybase_fetch_assoc\": [\n \"array sybase_fetch_assoc(resource result)\",\n \"Fetch row as array without numberic indices\"\n ],\n \"sybase_fetch_field\": [\n \"object sybase_fetch_field(resource result [, int offset])\",\n \"Get field information\"\n ],\n \"sybase_fetch_object\": [\n \"object sybase_fetch_object(resource result [, mixed object])\",\n \"Fetch row as object\"\n ],\n \"sybase_fetch_row\": [\n \"array sybase_fetch_row(resource result)\",\n \"Get row as enumerated array\"\n ],\n \"sybase_field_seek\": [\n \"bool sybase_field_seek(resource result, int offset)\",\n \"Set field offset\"\n ],\n \"sybase_free_result\": [\n \"bool sybase_free_result(resource result)\",\n \"Free result memory\"\n ],\n \"sybase_get_last_message\": [\n \"string sybase_get_last_message(void)\",\n \"Returns the last message from server (over min_message_severity)\"\n ],\n \"sybase_min_client_severity\": [\n \"void sybase_min_client_severity(int severity)\",\n \"Sets minimum client severity\"\n ],\n \"sybase_min_server_severity\": [\n \"void sybase_min_server_severity(int severity)\",\n \"Sets minimum server severity\"\n ],\n \"sybase_num_fields\": [\n \"int sybase_num_fields(resource result)\",\n \"Get number of fields in result\"\n ],\n \"sybase_num_rows\": [\n \"int sybase_num_rows(resource result)\",\n \"Get number of rows in result\"\n ],\n \"sybase_pconnect\": [\n \"int sybase_pconnect([string host [, string user [, string password [, string charset [, string appname]]]]])\",\n \"Open persistent Sybase connection\"\n ],\n \"sybase_query\": [\n \"int sybase_query(string query [, resource link_id])\",\n \"Send Sybase query\"\n ],\n \"sybase_result\": [\n \"string sybase_result(resource result, int row, mixed field)\",\n \"Get result data\"\n ],\n \"sybase_select_db\": [\n \"bool sybase_select_db(string database [, resource link_id])\",\n \"Select Sybase database\"\n ],\n \"sybase_set_message_handler\": [\n \"bool sybase_set_message_handler(mixed error_func [, resource connection])\",\n \"Set the error handler, to be called when a server message is raised. If error_func is NULL the handler will be deleted\"\n ],\n \"sybase_unbuffered_query\": [\n \"int sybase_unbuffered_query(string query [, resource link_id])\",\n \"Send Sybase query\"\n ],\n \"symlink\": [\n \"int symlink(string target, string link)\",\n \"Create a symbolic link\"\n ],\n \"sys_get_temp_dir\": [\n \"string sys_get_temp_dir()\",\n \"Returns directory path used for temporary files\"\n ],\n \"sys_getloadavg\": [\n \"array sys_getloadavg()\",\n \"\"\n ],\n \"syslog\": [\n \"bool syslog(int priority, string message)\",\n \"Generate a system log message\"\n ],\n \"system\": [\n \"int system(string command [, int &return_value])\",\n \"Execute an external program and display output\"\n ],\n \"tan\": [\n \"float tan(float number)\",\n \"Returns the tangent of the number in radians\"\n ],\n \"tanh\": [\n \"float tanh(float number)\",\n \"Returns the hyperbolic tangent of the number, defined as sinh(number)/cosh(number)\"\n ],\n \"tempnam\": [\n \"string tempnam(string dir, string prefix)\",\n \"Create a unique filename in a directory\"\n ],\n \"textdomain\": [\n \"string textdomain(string domain)\",\n \"Set the textdomain to \\\"domain\\\". Returns the current domain\"\n ],\n \"tidy_access_count\": [\n \"int tidy_access_count()\",\n \"Returns the Number of Tidy accessibility warnings encountered for specified document.\"\n ],\n \"tidy_clean_repair\": [\n \"boolean tidy_clean_repair()\",\n \"Execute configured cleanup and repair operations on parsed markup\"\n ],\n \"tidy_config_count\": [\n \"int tidy_config_count()\",\n \"Returns the Number of Tidy configuration errors encountered for specified document.\"\n ],\n \"tidy_diagnose\": [\n \"boolean tidy_diagnose()\",\n \"Run configured diagnostics on parsed and repaired markup.\"\n ],\n \"tidy_error_count\": [\n \"int tidy_error_count()\",\n \"Returns the Number of Tidy errors encountered for specified document.\"\n ],\n \"tidy_get_body\": [\n \"TidyNode tidy_get_body(resource tidy)\",\n \"Returns a TidyNode Object starting from the tag of the tidy parse tree\"\n ],\n \"tidy_get_config\": [\n \"array tidy_get_config()\",\n \"Get current Tidy configuarion\"\n ],\n \"tidy_get_error_buffer\": [\n \"string tidy_get_error_buffer([boolean detailed])\",\n \"Return warnings and errors which occured parsing the specified document\"\n ],\n \"tidy_get_head\": [\n \"TidyNode tidy_get_head()\",\n \"Returns a TidyNode Object starting from the tag of the tidy parse tree\"\n ],\n \"tidy_get_html\": [\n \"TidyNode tidy_get_html()\",\n \"Returns a TidyNode Object starting from the tag of the tidy parse tree\"\n ],\n \"tidy_get_html_ver\": [\n \"int tidy_get_html_ver()\",\n \"Get the Detected HTML version for the specified document.\"\n ],\n \"tidy_get_opt_doc\": [\n \"string tidy_get_opt_doc(tidy resource, string optname)\",\n \"Returns the documentation for the given option name\"\n ],\n \"tidy_get_output\": [\n \"string tidy_get_output()\",\n \"Return a string representing the parsed tidy markup\"\n ],\n \"tidy_get_release\": [\n \"string tidy_get_release()\",\n \"Get release date (version) for Tidy library\"\n ],\n \"tidy_get_root\": [\n \"TidyNode tidy_get_root()\",\n \"Returns a TidyNode Object representing the root of the tidy parse tree\"\n ],\n \"tidy_get_status\": [\n \"int tidy_get_status()\",\n \"Get status of specfied document.\"\n ],\n \"tidy_getopt\": [\n \"mixed tidy_getopt(string option)\",\n \"Returns the value of the specified configuration option for the tidy document.\"\n ],\n \"tidy_is_xhtml\": [\n \"boolean tidy_is_xhtml()\",\n \"Indicates if the document is a XHTML document.\"\n ],\n \"tidy_is_xml\": [\n \"boolean tidy_is_xml()\",\n \"Indicates if the document is a generic (non HTML/XHTML) XML document.\"\n ],\n \"tidy_parse_file\": [\n \"boolean tidy_parse_file(string file [, mixed config_options [, string encoding [, bool use_include_path]]])\",\n \"Parse markup in file or URI\"\n ],\n \"tidy_parse_string\": [\n \"bool tidy_parse_string(string input [, mixed config_options [, string encoding]])\",\n \"Parse a document stored in a string\"\n ],\n \"tidy_repair_file\": [\n \"boolean tidy_repair_file(string filename [, mixed config_file [, string encoding [, bool use_include_path]]])\",\n \"Repair a file using an optionally provided configuration file\"\n ],\n \"tidy_repair_string\": [\n \"boolean tidy_repair_string(string data [, mixed config_file [, string encoding]])\",\n \"Repair a string using an optionally provided configuration file\"\n ],\n \"tidy_warning_count\": [\n \"int tidy_warning_count()\",\n \"Returns the Number of Tidy warnings encountered for specified document.\"\n ],\n \"time\": [\n \"int time(void)\",\n \"Return current UNIX timestamp\"\n ],\n \"time_nanosleep\": [\n \"mixed time_nanosleep(long seconds, long nanoseconds)\",\n \"Delay for a number of seconds and nano seconds\"\n ],\n \"time_sleep_until\": [\n \"mixed time_sleep_until(float timestamp)\",\n \"Make the script sleep until the specified time\"\n ],\n \"timezone_abbreviations_list\": [\n \"array timezone_abbreviations_list()\",\n \"Returns associative array containing dst, offset and the timezone name\"\n ],\n \"timezone_identifiers_list\": [\n \"array timezone_identifiers_list([long what[, string country]])\",\n \"Returns numerically index array with all timezone identifiers.\"\n ],\n \"timezone_location_get\": [\n \"array timezone_location_get()\",\n \"Returns location information for a timezone, including country code, latitude/longitude and comments\"\n ],\n \"timezone_name_from_abbr\": [\n \"string timezone_name_from_abbr(string abbr[, long gmtOffset[, long isdst]])\",\n \"Returns the timezone name from abbrevation\"\n ],\n \"timezone_name_get\": [\n \"string timezone_name_get(DateTimeZone object)\",\n \"Returns the name of the timezone.\"\n ],\n \"timezone_offset_get\": [\n \"long timezone_offset_get(DateTimeZone object, DateTime object)\",\n \"Returns the timezone offset.\"\n ],\n \"timezone_open\": [\n \"DateTimeZone timezone_open(string timezone)\",\n \"Returns new DateTimeZone object\"\n ],\n \"timezone_transitions_get\": [\n \"array timezone_transitions_get(DateTimeZone object [, long timestamp_begin [, long timestamp_end ]])\",\n \"Returns numerically indexed array containing associative array for all transitions in the specified range for the timezone.\"\n ],\n \"timezone_version_get\": [\n \"array timezone_version_get()\",\n \"Returns the Olson database version number.\"\n ],\n \"tmpfile\": [\n \"resource tmpfile(void)\",\n \"Create a temporary file that will be deleted automatically after use\"\n ],\n \"token_get_all\": [\n \"array token_get_all(string source)\",\n \"\"\n ],\n \"token_name\": [\n \"string token_name(int type)\",\n \"\"\n ],\n \"touch\": [\n \"bool touch(string filename [, int time [, int atime]])\",\n \"Set modification time of file\"\n ],\n \"trigger_error\": [\n \"void trigger_error(string messsage [, int error_type])\",\n \"Generates a user-level error/warning/notice message\"\n ],\n \"trim\": [\n \"string trim(string str [, string character_mask])\",\n \"Strips whitespace from the beginning and end of a string\"\n ],\n \"uasort\": [\n \"bool uasort(array array_arg, string cmp_function)\",\n \"Sort an array with a user-defined comparison function and maintain index association\"\n ],\n \"ucfirst\": [\n \"string ucfirst(string str)\",\n \"Make a string's first character lowercase\"\n ],\n \"ucwords\": [\n \"string ucwords(string str)\",\n \"Uppercase the first character of every word in a string\"\n ],\n \"uksort\": [\n \"bool uksort(array array_arg, string cmp_function)\",\n \"Sort an array by keys using a user-defined comparison function\"\n ],\n \"umask\": [\n \"int umask([int mask])\",\n \"Return or change the umask\"\n ],\n \"uniqid\": [\n \"string uniqid([string prefix [, bool more_entropy]])\",\n \"Generates a unique ID\"\n ],\n \"unixtojd\": [\n \"int unixtojd([int timestamp])\",\n \"Convert UNIX timestamp to Julian Day\"\n ],\n \"unlink\": [\n \"bool unlink(string filename[, context context])\",\n \"Delete a file\"\n ],\n \"unpack\": [\n \"array unpack(string format, string input)\",\n \"Unpack binary string into named array elements according to format argument\"\n ],\n \"unregister_tick_function\": [\n \"void unregister_tick_function(string function_name)\",\n \"Unregisters a tick callback function\"\n ],\n \"unserialize\": [\n \"mixed unserialize(string variable_representation)\",\n \"Takes a string representation of variable and recreates it\"\n ],\n \"unset\": [\n \"void unset (mixed var [, mixed var])\",\n \"Unset a given variable\"\n ],\n \"urldecode\": [\n \"string urldecode(string str)\",\n \"Decodes URL-encoded string\"\n ],\n \"urlencode\": [\n \"string urlencode(string str)\",\n \"URL-encodes string\"\n ],\n \"usleep\": [\n \"void usleep(int micro_seconds)\",\n \"Delay for a given number of micro seconds\"\n ],\n \"usort\": [\n \"bool usort(array array_arg, string cmp_function)\",\n \"Sort an array by values using a user-defined comparison function\"\n ],\n \"utf8_decode\": [\n \"string utf8_decode(string data)\",\n \"Converts a UTF-8 encoded string to ISO-8859-1\"\n ],\n \"utf8_encode\": [\n \"string utf8_encode(string data)\",\n \"Encodes an ISO-8859-1 string to UTF-8\"\n ],\n \"var_dump\": [\n \"void var_dump(mixed var)\",\n \"Dumps a string representation of variable to output\"\n ],\n \"var_export\": [\n \"mixed var_export(mixed var [, bool return])\",\n \"Outputs or returns a string representation of a variable\"\n ],\n \"variant_abs\": [\n \"mixed variant_abs(mixed left)\",\n \"Returns the absolute value of a variant\"\n ],\n \"variant_add\": [\n \"mixed variant_add(mixed left, mixed right)\",\n \"\\\"Adds\\\" two variant values together and returns the result\"\n ],\n \"variant_and\": [\n \"mixed variant_and(mixed left, mixed right)\",\n \"performs a bitwise AND operation between two variants and returns the result\"\n ],\n \"variant_cast\": [\n \"object variant_cast(object variant, int type)\",\n \"Convert a variant into a new variant object of another type\"\n ],\n \"variant_cat\": [\n \"mixed variant_cat(mixed left, mixed right)\",\n \"concatenates two variant values together and returns the result\"\n ],\n \"variant_cmp\": [\n \"int variant_cmp(mixed left, mixed right [, int lcid [, int flags]])\",\n \"Compares two variants\"\n ],\n \"variant_date_from_timestamp\": [\n \"object variant_date_from_timestamp(int timestamp)\",\n \"Returns a variant date representation of a unix timestamp\"\n ],\n \"variant_date_to_timestamp\": [\n \"int variant_date_to_timestamp(object variant)\",\n \"Converts a variant date/time value to unix timestamp\"\n ],\n \"variant_div\": [\n \"mixed variant_div(mixed left, mixed right)\",\n \"Returns the result from dividing two variants\"\n ],\n \"variant_eqv\": [\n \"mixed variant_eqv(mixed left, mixed right)\",\n \"Performs a bitwise equivalence on two variants\"\n ],\n \"variant_fix\": [\n \"mixed variant_fix(mixed left)\",\n \"Returns the integer part ? of a variant\"\n ],\n \"variant_get_type\": [\n \"int variant_get_type(object variant)\",\n \"Returns the VT_XXX type code for a variant\"\n ],\n \"variant_idiv\": [\n \"mixed variant_idiv(mixed left, mixed right)\",\n \"Converts variants to integers and then returns the result from dividing them\"\n ],\n \"variant_imp\": [\n \"mixed variant_imp(mixed left, mixed right)\",\n \"Performs a bitwise implication on two variants\"\n ],\n \"variant_int\": [\n \"mixed variant_int(mixed left)\",\n \"Returns the integer portion of a variant\"\n ],\n \"variant_mod\": [\n \"mixed variant_mod(mixed left, mixed right)\",\n \"Divides two variants and returns only the remainder\"\n ],\n \"variant_mul\": [\n \"mixed variant_mul(mixed left, mixed right)\",\n \"multiplies the values of the two variants and returns the result\"\n ],\n \"variant_neg\": [\n \"mixed variant_neg(mixed left)\",\n \"Performs logical negation on a variant\"\n ],\n \"variant_not\": [\n \"mixed variant_not(mixed left)\",\n \"Performs bitwise not negation on a variant\"\n ],\n \"variant_or\": [\n \"mixed variant_or(mixed left, mixed right)\",\n \"Performs a logical disjunction on two variants\"\n ],\n \"variant_pow\": [\n \"mixed variant_pow(mixed left, mixed right)\",\n \"Returns the result of performing the power function with two variants\"\n ],\n \"variant_round\": [\n \"mixed variant_round(mixed left, int decimals)\",\n \"Rounds a variant to the specified number of decimal places\"\n ],\n \"variant_set\": [\n \"void variant_set(object variant, mixed value)\",\n \"Assigns a new value for a variant object\"\n ],\n \"variant_set_type\": [\n \"void variant_set_type(object variant, int type)\",\n \"Convert a variant into another type. Variant is modified \\\"in-place\\\"\"\n ],\n \"variant_sub\": [\n \"mixed variant_sub(mixed left, mixed right)\",\n \"subtracts the value of the right variant from the left variant value and returns the result\"\n ],\n \"variant_xor\": [\n \"mixed variant_xor(mixed left, mixed right)\",\n \"Performs a logical exclusion on two variants\"\n ],\n \"version_compare\": [\n \"int version_compare(string ver1, string ver2 [, string oper])\",\n \"Compares two \\\"PHP-standardized\\\" version number strings\"\n ],\n \"vfprintf\": [\n \"int vfprintf(resource stream, string format, array args)\",\n \"Output a formatted string into a stream\"\n ],\n \"virtual\": [\n \"bool virtual(string filename)\",\n \"Perform an Apache sub-request\"\n ],\n \"vprintf\": [\n \"int vprintf(string format, array args)\",\n \"Output a formatted string\"\n ],\n \"vsprintf\": [\n \"string vsprintf(string format, array args)\",\n \"Return a formatted string\"\n ],\n \"wddx_add_vars\": [\n \"int wddx_add_vars(resource packet_id, mixed var_names [, mixed ...])\",\n \"Serializes given variables and adds them to packet given by packet_id\"\n ],\n \"wddx_deserialize\": [\n \"mixed wddx_deserialize(mixed packet)\",\n \"Deserializes given packet and returns a PHP value\"\n ],\n \"wddx_packet_end\": [\n \"string wddx_packet_end(resource packet_id)\",\n \"Ends specified WDDX packet and returns the string containing the packet\"\n ],\n \"wddx_packet_start\": [\n \"resource wddx_packet_start([string comment])\",\n \"Starts a WDDX packet with optional comment and returns the packet id\"\n ],\n \"wddx_serialize_value\": [\n \"string wddx_serialize_value(mixed var [, string comment])\",\n \"Creates a new packet and serializes the given value\"\n ],\n \"wddx_serialize_vars\": [\n \"string wddx_serialize_vars(mixed var_name [, mixed ...])\",\n \"Creates a new packet and serializes given variables into a struct\"\n ],\n \"wordwrap\": [\n \"string wordwrap(string str [, int width [, string break [, boolean cut]]])\",\n \"Wraps buffer to selected number of characters using string break char\"\n ],\n \"xml_error_string\": [\n \"string xml_error_string(int code)\",\n \"Get XML parser error string\"\n ],\n \"xml_get_current_byte_index\": [\n \"int xml_get_current_byte_index(resource parser)\",\n \"Get current byte index for an XML parser\"\n ],\n \"xml_get_current_column_number\": [\n \"int xml_get_current_column_number(resource parser)\",\n \"Get current column number for an XML parser\"\n ],\n \"xml_get_current_line_number\": [\n \"int xml_get_current_line_number(resource parser)\",\n \"Get current line number for an XML parser\"\n ],\n \"xml_get_error_code\": [\n \"int xml_get_error_code(resource parser)\",\n \"Get XML parser error code\"\n ],\n \"xml_parse\": [\n \"int xml_parse(resource parser, string data [, int isFinal])\",\n \"Start parsing an XML document\"\n ],\n \"xml_parse_into_struct\": [\n \"int xml_parse_into_struct(resource parser, string data, array &values [, array &index ])\",\n \"Parsing a XML document\"\n ],\n \"xml_parser_create\": [\n \"resource xml_parser_create([string encoding])\",\n \"Create an XML parser\"\n ],\n \"xml_parser_create_ns\": [\n \"resource xml_parser_create_ns([string encoding [, string sep]])\",\n \"Create an XML parser\"\n ],\n \"xml_parser_free\": [\n \"int xml_parser_free(resource parser)\",\n \"Free an XML parser\"\n ],\n \"xml_parser_get_option\": [\n \"int xml_parser_get_option(resource parser, int option)\",\n \"Get options from an XML parser\"\n ],\n \"xml_parser_set_option\": [\n \"int xml_parser_set_option(resource parser, int option, mixed value)\",\n \"Set options in an XML parser\"\n ],\n \"xml_set_character_data_handler\": [\n \"int xml_set_character_data_handler(resource parser, string hdl)\",\n \"Set up character data handler\"\n ],\n \"xml_set_default_handler\": [\n \"int xml_set_default_handler(resource parser, string hdl)\",\n \"Set up default handler\"\n ],\n \"xml_set_element_handler\": [\n \"int xml_set_element_handler(resource parser, string shdl, string ehdl)\",\n \"Set up start and end element handlers\"\n ],\n \"xml_set_end_namespace_decl_handler\": [\n \"int xml_set_end_namespace_decl_handler(resource parser, string hdl)\",\n \"Set up character data handler\"\n ],\n \"xml_set_external_entity_ref_handler\": [\n \"int xml_set_external_entity_ref_handler(resource parser, string hdl)\",\n \"Set up external entity reference handler\"\n ],\n \"xml_set_notation_decl_handler\": [\n \"int xml_set_notation_decl_handler(resource parser, string hdl)\",\n \"Set up notation declaration handler\"\n ],\n \"xml_set_object\": [\n \"int xml_set_object(resource parser, object &obj)\",\n \"Set up object which should be used for callbacks\"\n ],\n \"xml_set_processing_instruction_handler\": [\n \"int xml_set_processing_instruction_handler(resource parser, string hdl)\",\n \"Set up processing instruction (PI) handler\"\n ],\n \"xml_set_start_namespace_decl_handler\": [\n \"int xml_set_start_namespace_decl_handler(resource parser, string hdl)\",\n \"Set up character data handler\"\n ],\n \"xml_set_unparsed_entity_decl_handler\": [\n \"int xml_set_unparsed_entity_decl_handler(resource parser, string hdl)\",\n \"Set up unparsed entity declaration handler\"\n ],\n \"xmlrpc_decode\": [\n \"array xmlrpc_decode(string xml [, string encoding])\",\n \"Decodes XML into native PHP types\"\n ],\n \"xmlrpc_decode_request\": [\n \"array xmlrpc_decode_request(string xml, string& method [, string encoding])\",\n \"Decodes XML into native PHP types\"\n ],\n \"xmlrpc_encode\": [\n \"string xmlrpc_encode(mixed value)\",\n \"Generates XML for a PHP value\"\n ],\n \"xmlrpc_encode_request\": [\n \"string xmlrpc_encode_request(string method, mixed params [, array output_options])\",\n \"Generates XML for a method request\"\n ],\n \"xmlrpc_get_type\": [\n \"string xmlrpc_get_type(mixed value)\",\n \"Gets xmlrpc type for a PHP value. Especially useful for base64 and datetime strings\"\n ],\n \"xmlrpc_is_fault\": [\n \"bool xmlrpc_is_fault(array)\",\n \"Determines if an array value represents an XMLRPC fault.\"\n ],\n \"xmlrpc_parse_method_descriptions\": [\n \"array xmlrpc_parse_method_descriptions(string xml)\",\n \"Decodes XML into a list of method descriptions\"\n ],\n \"xmlrpc_server_add_introspection_data\": [\n \"int xmlrpc_server_add_introspection_data(resource server, array desc)\",\n \"Adds introspection documentation\"\n ],\n \"xmlrpc_server_call_method\": [\n \"mixed xmlrpc_server_call_method(resource server, string xml, mixed user_data [, array output_options])\",\n \"Parses XML requests and call methods\"\n ],\n \"xmlrpc_server_create\": [\n \"resource xmlrpc_server_create(void)\",\n \"Creates an xmlrpc server\"\n ],\n \"xmlrpc_server_destroy\": [\n \"int xmlrpc_server_destroy(resource server)\",\n \"Destroys server resources\"\n ],\n \"xmlrpc_server_register_introspection_callback\": [\n \"bool xmlrpc_server_register_introspection_callback(resource server, string function)\",\n \"Register a PHP function to generate documentation\"\n ],\n \"xmlrpc_server_register_method\": [\n \"bool xmlrpc_server_register_method(resource server, string method_name, string function)\",\n \"Register a PHP function to handle method matching method_name\"\n ],\n \"xmlrpc_set_type\": [\n \"bool xmlrpc_set_type(string value, string type)\",\n \"Sets xmlrpc type, base64 or datetime, for a PHP string value\"\n ],\n \"xmlwriter_end_attribute\": [\n \"bool xmlwriter_end_attribute(resource xmlwriter)\",\n \"End attribute - returns FALSE on error\"\n ],\n \"xmlwriter_end_cdata\": [\n \"bool xmlwriter_end_cdata(resource xmlwriter)\",\n \"End current CDATA - returns FALSE on error\"\n ],\n \"xmlwriter_end_comment\": [\n \"bool xmlwriter_end_comment(resource xmlwriter)\",\n \"Create end comment - returns FALSE on error\"\n ],\n \"xmlwriter_end_document\": [\n \"bool xmlwriter_end_document(resource xmlwriter)\",\n \"End current document - returns FALSE on error\"\n ],\n \"xmlwriter_end_dtd\": [\n \"bool xmlwriter_end_dtd(resource xmlwriter)\",\n \"End current DTD - returns FALSE on error\"\n ],\n \"xmlwriter_end_dtd_attlist\": [\n \"bool xmlwriter_end_dtd_attlist(resource xmlwriter)\",\n \"End current DTD AttList - returns FALSE on error\"\n ],\n \"xmlwriter_end_dtd_element\": [\n \"bool xmlwriter_end_dtd_element(resource xmlwriter)\",\n \"End current DTD element - returns FALSE on error\"\n ],\n \"xmlwriter_end_dtd_entity\": [\n \"bool xmlwriter_end_dtd_entity(resource xmlwriter)\",\n \"End current DTD Entity - returns FALSE on error\"\n ],\n \"xmlwriter_end_element\": [\n \"bool xmlwriter_end_element(resource xmlwriter)\",\n \"End current element - returns FALSE on error\"\n ],\n \"xmlwriter_end_pi\": [\n \"bool xmlwriter_end_pi(resource xmlwriter)\",\n \"End current PI - returns FALSE on error\"\n ],\n \"xmlwriter_flush\": [\n \"mixed xmlwriter_flush(resource xmlwriter [,bool empty])\",\n \"Output current buffer\"\n ],\n \"xmlwriter_full_end_element\": [\n \"bool xmlwriter_full_end_element(resource xmlwriter)\",\n \"End current element - returns FALSE on error\"\n ],\n \"xmlwriter_open_memory\": [\n \"resource xmlwriter_open_memory()\",\n \"Create new xmlwriter using memory for string output\"\n ],\n \"xmlwriter_open_uri\": [\n \"resource xmlwriter_open_uri(resource xmlwriter, string source)\",\n \"Create new xmlwriter using source uri for output\"\n ],\n \"xmlwriter_output_memory\": [\n \"string xmlwriter_output_memory(resource xmlwriter [,bool flush])\",\n \"Output current buffer as string\"\n ],\n \"xmlwriter_set_indent\": [\n \"bool xmlwriter_set_indent(resource xmlwriter, bool indent)\",\n \"Toggle indentation on/off - returns FALSE on error\"\n ],\n \"xmlwriter_set_indent_string\": [\n \"bool xmlwriter_set_indent_string(resource xmlwriter, string indentString)\",\n \"Set string used for indenting - returns FALSE on error\"\n ],\n \"xmlwriter_start_attribute\": [\n \"bool xmlwriter_start_attribute(resource xmlwriter, string name)\",\n \"Create start attribute - returns FALSE on error\"\n ],\n \"xmlwriter_start_attribute_ns\": [\n \"bool xmlwriter_start_attribute_ns(resource xmlwriter, string prefix, string name, string uri)\",\n \"Create start namespaced attribute - returns FALSE on error\"\n ],\n \"xmlwriter_start_cdata\": [\n \"bool xmlwriter_start_cdata(resource xmlwriter)\",\n \"Create start CDATA tag - returns FALSE on error\"\n ],\n \"xmlwriter_start_comment\": [\n \"bool xmlwriter_start_comment(resource xmlwriter)\",\n \"Create start comment - returns FALSE on error\"\n ],\n \"xmlwriter_start_document\": [\n \"bool xmlwriter_start_document(resource xmlwriter, string version, string encoding, string standalone)\",\n \"Create document tag - returns FALSE on error\"\n ],\n \"xmlwriter_start_dtd\": [\n \"bool xmlwriter_start_dtd(resource xmlwriter, string name, string pubid, string sysid)\",\n \"Create start DTD tag - returns FALSE on error\"\n ],\n \"xmlwriter_start_dtd_attlist\": [\n \"bool xmlwriter_start_dtd_attlist(resource xmlwriter, string name)\",\n \"Create start DTD AttList - returns FALSE on error\"\n ],\n \"xmlwriter_start_dtd_element\": [\n \"bool xmlwriter_start_dtd_element(resource xmlwriter, string name)\",\n \"Create start DTD element - returns FALSE on error\"\n ],\n \"xmlwriter_start_dtd_entity\": [\n \"bool xmlwriter_start_dtd_entity(resource xmlwriter, string name, bool isparam)\",\n \"Create start DTD Entity - returns FALSE on error\"\n ],\n \"xmlwriter_start_element\": [\n \"bool xmlwriter_start_element(resource xmlwriter, string name)\",\n \"Create start element tag - returns FALSE on error\"\n ],\n \"xmlwriter_start_element_ns\": [\n \"bool xmlwriter_start_element_ns(resource xmlwriter, string prefix, string name, string uri)\",\n \"Create start namespaced element tag - returns FALSE on error\"\n ],\n \"xmlwriter_start_pi\": [\n \"bool xmlwriter_start_pi(resource xmlwriter, string target)\",\n \"Create start PI tag - returns FALSE on error\"\n ],\n \"xmlwriter_text\": [\n \"bool xmlwriter_text(resource xmlwriter, string content)\",\n \"Write text - returns FALSE on error\"\n ],\n \"xmlwriter_write_attribute\": [\n \"bool xmlwriter_write_attribute(resource xmlwriter, string name, string content)\",\n \"Write full attribute - returns FALSE on error\"\n ],\n \"xmlwriter_write_attribute_ns\": [\n \"bool xmlwriter_write_attribute_ns(resource xmlwriter, string prefix, string name, string uri, string content)\",\n \"Write full namespaced attribute - returns FALSE on error\"\n ],\n \"xmlwriter_write_cdata\": [\n \"bool xmlwriter_write_cdata(resource xmlwriter, string content)\",\n \"Write full CDATA tag - returns FALSE on error\"\n ],\n \"xmlwriter_write_comment\": [\n \"bool xmlwriter_write_comment(resource xmlwriter, string content)\",\n \"Write full comment tag - returns FALSE on error\"\n ],\n \"xmlwriter_write_dtd\": [\n \"bool xmlwriter_write_dtd(resource xmlwriter, string name, string pubid, string sysid, string subset)\",\n \"Write full DTD tag - returns FALSE on error\"\n ],\n \"xmlwriter_write_dtd_attlist\": [\n \"bool xmlwriter_write_dtd_attlist(resource xmlwriter, string name, string content)\",\n \"Write full DTD AttList tag - returns FALSE on error\"\n ],\n \"xmlwriter_write_dtd_element\": [\n \"bool xmlwriter_write_dtd_element(resource xmlwriter, string name, string content)\",\n \"Write full DTD element tag - returns FALSE on error\"\n ],\n \"xmlwriter_write_dtd_entity\": [\n \"bool xmlwriter_write_dtd_entity(resource xmlwriter, string name, string content [, int pe [, string pubid [, string sysid [, string ndataid]]]])\",\n \"Write full DTD Entity tag - returns FALSE on error\"\n ],\n \"xmlwriter_write_element\": [\n \"bool xmlwriter_write_element(resource xmlwriter, string name[, string content])\",\n \"Write full element tag - returns FALSE on error\"\n ],\n \"xmlwriter_write_element_ns\": [\n \"bool xmlwriter_write_element_ns(resource xmlwriter, string prefix, string name, string uri[, string content])\",\n \"Write full namesapced element tag - returns FALSE on error\"\n ],\n \"xmlwriter_write_pi\": [\n \"bool xmlwriter_write_pi(resource xmlwriter, string target, string content)\",\n \"Write full PI tag - returns FALSE on error\"\n ],\n \"xmlwriter_write_raw\": [\n \"bool xmlwriter_write_raw(resource xmlwriter, string content)\",\n \"Write text - returns FALSE on error\"\n ],\n \"xsl_xsltprocessor_get_parameter\": [\n \"string xsl_xsltprocessor_get_parameter(string namespace, string name);\",\n \"\"\n ],\n \"xsl_xsltprocessor_has_exslt_support\": [\n \"bool xsl_xsltprocessor_has_exslt_support();\",\n \"\"\n ],\n \"xsl_xsltprocessor_import_stylesheet\": [\n \"void xsl_xsltprocessor_import_stylesheet(domdocument doc);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html# Since:\"\n ],\n \"xsl_xsltprocessor_register_php_functions\": [\n \"void xsl_xsltprocessor_register_php_functions([mixed $restrict]);\",\n \"\"\n ],\n \"xsl_xsltprocessor_remove_parameter\": [\n \"bool xsl_xsltprocessor_remove_parameter(string namespace, string name);\",\n \"\"\n ],\n \"xsl_xsltprocessor_set_parameter\": [\n \"bool xsl_xsltprocessor_set_parameter(string namespace, mixed name [, string value]);\",\n \"\"\n ],\n \"xsl_xsltprocessor_set_profiling\": [\n \"bool xsl_xsltprocessor_set_profiling(string filename) */\",\n \"PHP_FUNCTION(xsl_xsltprocessor_set_profiling) { zval *id; xsl_object *intern; char *filename = NULL; int filename_len; DOM_GET_THIS(id); if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS() TSRMLS_CC, \\\"s!\\\", &filename, &filename_len) == SUCCESS) { intern = (xsl_object *)zend_object_store_get_object(id TSRMLS_CC); if (intern->profiling) { efree(intern->profiling); } if (filename != NULL) { intern->profiling = estrndup(filename,filename_len); } else { intern->profiling = NULL; } RETURN_TRUE; } else { WRONG_PARAM_COUNT; } } /* }}} end xsl_xsltprocessor_set_profiling\"\n ],\n \"xsl_xsltprocessor_transform_to_doc\": [\n \"domdocument xsl_xsltprocessor_transform_to_doc(domnode doc);\",\n \"URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html# Since:\"\n ],\n \"xsl_xsltprocessor_transform_to_uri\": [\n \"int xsl_xsltprocessor_transform_to_uri(domdocument doc, string uri);\",\n \"\"\n ],\n \"xsl_xsltprocessor_transform_to_xml\": [\n \"string xsl_xsltprocessor_transform_to_xml(domdocument doc);\",\n \"\"\n ],\n \"zend_logo_guid\": [\n \"string zend_logo_guid(void)\",\n \"Return the special ID used to request the Zend logo in phpinfo screens\"\n ],\n \"zend_version\": [\n \"string zend_version(void)\",\n \"Get the version of the Zend Engine\"\n ],\n \"zip_close\": [\n \"void zip_close(resource zip)\",\n \"Close a Zip archive\"\n ],\n \"zip_entry_close\": [\n \"void zip_entry_close(resource zip_ent)\",\n \"Close a zip entry\"\n ],\n \"zip_entry_compressedsize\": [\n \"int zip_entry_compressedsize(resource zip_entry)\",\n \"Return the compressed size of a ZZip entry\"\n ],\n \"zip_entry_compressionmethod\": [\n \"string zip_entry_compressionmethod(resource zip_entry)\",\n \"Return a string containing the compression method used on a particular entry\"\n ],\n \"zip_entry_filesize\": [\n \"int zip_entry_filesize(resource zip_entry)\",\n \"Return the actual filesize of a ZZip entry\"\n ],\n \"zip_entry_name\": [\n \"string zip_entry_name(resource zip_entry)\",\n \"Return the name given a ZZip entry\"\n ],\n \"zip_entry_open\": [\n \"bool zip_entry_open(resource zip_dp, resource zip_entry [, string mode])\",\n \"Open a Zip File, pointed by the resource entry\"\n ],\n \"zip_entry_read\": [\n \"mixed zip_entry_read(resource zip_entry [, int len])\",\n \"Read from an open directory entry\"\n ],\n \"zip_open\": [\n \"resource zip_open(string filename)\",\n \"Create new zip using source uri for output\"\n ],\n \"zip_read\": [\n \"resource zip_read(resource zip)\",\n \"Returns the next file in the archive\"\n ],\n \"zlib_get_coding_type\": [\n \"string zlib_get_coding_type(void)\",\n \"Returns the coding type used for output compression\"\n ]\n};\n\nvar variableMap = {\n \"$_COOKIE\": {\n type: \"array\"\n },\n \"$_ENV\": {\n type: \"array\"\n },\n \"$_FILES\": {\n type: \"array\"\n },\n \"$_GET\": {\n type: \"array\"\n },\n \"$_POST\": {\n type: \"array\"\n },\n \"$_REQUEST\": {\n type: \"array\"\n },\n \"$_SERVER\": {\n type: \"array\",\n value: {\n \"DOCUMENT_ROOT\": 1,\n \"GATEWAY_INTERFACE\": 1,\n \"HTTP_ACCEPT\": 1,\n \"HTTP_ACCEPT_CHARSET\": 1,\n \"HTTP_ACCEPT_ENCODING\": 1 ,\n \"HTTP_ACCEPT_LANGUAGE\": 1,\n \"HTTP_CONNECTION\": 1,\n \"HTTP_HOST\": 1,\n \"HTTP_REFERER\": 1,\n \"HTTP_USER_AGENT\": 1,\n \"PATH_TRANSLATED\": 1,\n \"PHP_SELF\": 1,\n \"QUERY_STRING\": 1,\n \"REMOTE_ADDR\": 1,\n \"REMOTE_PORT\": 1,\n \"REQUEST_METHOD\": 1,\n \"REQUEST_URI\": 1,\n \"SCRIPT_FILENAME\": 1,\n \"SCRIPT_NAME\": 1,\n \"SERVER_ADMIN\": 1,\n \"SERVER_NAME\": 1,\n \"SERVER_PORT\": 1,\n \"SERVER_PROTOCOL\": 1,\n \"SERVER_SIGNATURE\": 1,\n \"SERVER_SOFTWARE\": 1\n }\n },\n \"$_SESSION\": {\n type: \"array\"\n },\n \"$GLOBALS\": {\n type: \"array\"\n }\n};\n\nfunction is(token, type) {\n return token.type.lastIndexOf(type) > -1;\n}\n\nvar PhpCompletions = function() {\n\n};\n\n(function() {\n\n this.getCompletions = function(state, session, pos, prefix) {\n var token = session.getTokenAt(pos.row, pos.column);\n\n if (!token)\n return [];\n \n if (token.type==='support.php_tag' && token.value===' 0) {\n var prevToken = session.getTokenAt(pos.row, token.start);\n if (prevToken.type==='support.php_tag') {\n return this.getTagCompletions(state, session, pos, prefix);\n }\n }\n return this.getFunctionCompletions(state, session, pos, prefix);\n }\n if (is(token, \"variable\"))\n return this.getVariableCompletions(state, session, pos, prefix);\n var line = session.getLine(pos.row).substr(0, pos.column);\n if (token.type==='string' && /(\\$[\\w]*)\\[[\"']([^'\"]*)$/i.test(line))\n return this.getArrayKeyCompletions(state, session, pos, prefix);\n\n return [];\n };\n \n this.getTagCompletions = function(state, session, pos, prefix) {\n return [{\n caption: 'php',\n value: 'php',\n meta: \"php tag\",\n score: 1000000\n }, {\n caption: '=',\n value: '=',\n meta: \"php tag\",\n score: 1000000\n }];\n };\n\n this.getFunctionCompletions = function(state, session, pos, prefix) {\n var functions = Object.keys(functionMap);\n return functions.map(function(func){\n return {\n caption: func,\n snippet: func + '($0)',\n meta: \"php function\",\n score: 1000000,\n docHTML: functionMap[func][1]\n };\n });\n };\n\n this.getVariableCompletions = function(state, session, pos, prefix) {\n var variables = Object.keys(variableMap);\n return variables.map(function(variable){\n return {\n caption: variable,\n value: variable,\n meta: \"php variable\",\n score: 1000000\n };\n });\n };\n\n this.getArrayKeyCompletions = function(state, session, pos, prefix) {\n var line = session.getLine(pos.row).substr(0, pos.column);\n var variable = line.match(/(\\$[\\w]*)\\[[\"']([^'\"]*)$/i)[1];\n\n if (!variableMap[variable]) {\n return [];\n }\n\n var keys = [];\n if (variableMap[variable].type==='array' && variableMap[variable].value)\n keys = Object.keys(variableMap[variable].value);\n\n return keys.map(function(key) {\n return {\n caption: key,\n value: key,\n meta: \"php array key\",\n score: 1000000\n };\n });\n };\n\n}).call(PhpCompletions.prototype);\n\nexports.PhpCompletions = PhpCompletions;\n});\n\nace.define(\"ace/mode/folding/cstyle\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/range\",\"ace/mode/folding/fold_mode\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Range = require(\"../../range\").Range;\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function(commentRegex) {\n if (commentRegex) {\n this.foldingStartMarker = new RegExp(\n this.foldingStartMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.start)\n );\n this.foldingStopMarker = new RegExp(\n this.foldingStopMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.end)\n );\n }\n};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n \n this.foldingStartMarker = /([\\{\\[\\(])[^\\}\\]\\)]*$|^\\s*(\\/\\*)/;\n this.foldingStopMarker = /^[^\\[\\{\\(]*([\\}\\]\\)])|^[\\s\\*]*(\\*\\/)/;\n this.singleLineBlockCommentRe= /^\\s*(\\/\\*).*\\*\\/\\s*$/;\n this.tripleStarBlockCommentRe = /^\\s*(\\/\\*\\*\\*).*\\*\\/\\s*$/;\n this.startRegionRe = /^\\s*(\\/\\*|\\/\\/)#?region\\b/;\n this._getFoldWidgetBase = this.getFoldWidget;\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n \n if (this.singleLineBlockCommentRe.test(line)) {\n if (!this.startRegionRe.test(line) && !this.tripleStarBlockCommentRe.test(line))\n return \"\";\n }\n \n var fw = this._getFoldWidgetBase(session, foldStyle, row);\n \n if (!fw && this.startRegionRe.test(line))\n return \"start\"; // lineCommentRegionStart\n \n return fw;\n };\n\n this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {\n var line = session.getLine(row);\n \n if (this.startRegionRe.test(line))\n return this.getCommentRegionBlock(session, line, row);\n \n var match = line.match(this.foldingStartMarker);\n if (match) {\n var i = match.index;\n\n if (match[1])\n return this.openingBracketBlock(session, match[1], row, i);\n \n var range = session.getCommentFoldRange(row, i + match[0].length, 1);\n \n if (range && !range.isMultiLine()) {\n if (forceMultiline) {\n range = this.getSectionRange(session, row);\n } else if (foldStyle != \"all\")\n range = null;\n }\n \n return range;\n }\n\n if (foldStyle === \"markbegin\")\n return;\n\n var match = line.match(this.foldingStopMarker);\n if (match) {\n var i = match.index + match[0].length;\n\n if (match[1])\n return this.closingBracketBlock(session, match[1], row, i);\n\n return session.getCommentFoldRange(row, i, -1);\n }\n };\n \n this.getSectionRange = function(session, row) {\n var line = session.getLine(row);\n var startIndent = line.search(/\\S/);\n var startRow = row;\n var startColumn = line.length;\n row = row + 1;\n var endRow = row;\n var maxRow = session.getLength();\n while (++row < maxRow) {\n line = session.getLine(row);\n var indent = line.search(/\\S/);\n if (indent === -1)\n continue;\n if (startIndent > indent)\n break;\n var subRange = this.getFoldWidgetRange(session, \"all\", row);\n \n if (subRange) {\n if (subRange.start.row <= startRow) {\n break;\n } else if (subRange.isMultiLine()) {\n row = subRange.end.row;\n } else if (startIndent == indent) {\n break;\n }\n }\n endRow = row;\n }\n \n return new Range(startRow, startColumn, endRow, session.getLine(endRow).length);\n };\n this.getCommentRegionBlock = function(session, line, row) {\n var startColumn = line.search(/\\s*$/);\n var maxRow = session.getLength();\n var startRow = row;\n \n var re = /^\\s*(?:\\/\\*|\\/\\/|--)#?(end)?region\\b/;\n var depth = 1;\n while (++row < maxRow) {\n line = session.getLine(row);\n var m = re.exec(line);\n if (!m) continue;\n if (m[1]) depth--;\n else depth++;\n\n if (!depth) break;\n }\n\n var endRow = row;\n if (endRow > startRow) {\n return new Range(startRow, startColumn, endRow, line.length);\n }\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/javascript\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/javascript_highlight_rules\",\"ace/mode/matching_brace_outdent\",\"ace/worker/worker_client\",\"ace/mode/behaviour/cstyle\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar JavaScriptHighlightRules = require(\"./javascript_highlight_rules\").JavaScriptHighlightRules;\nvar MatchingBraceOutdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\nvar WorkerClient = require(\"../worker/worker_client\").WorkerClient;\nvar CstyleBehaviour = require(\"./behaviour/cstyle\").CstyleBehaviour;\nvar CStyleFoldMode = require(\"./folding/cstyle\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = JavaScriptHighlightRules;\n \n this.$outdent = new MatchingBraceOutdent();\n this.$behaviour = new CstyleBehaviour();\n this.foldingRules = new CStyleFoldMode();\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.lineCommentStart = \"//\";\n this.blockComment = {start: \"/*\", end: \"*/\"};\n this.$quotes = {'\"': '\"', \"'\": \"'\", \"`\": \"`\"};\n\n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n\n var tokenizedLine = this.getTokenizer().getLineTokens(line, state);\n var tokens = tokenizedLine.tokens;\n var endState = tokenizedLine.state;\n\n if (tokens.length && tokens[tokens.length-1].type == \"comment\") {\n return indent;\n }\n\n if (state == \"start\" || state == \"no_regex\") {\n var match = line.match(/^.*(?:\\bcase\\b.*:|[\\{\\(\\[])\\s*$/);\n if (match) {\n indent += tab;\n }\n } else if (state == \"doc-start\") {\n if (endState == \"start\" || endState == \"no_regex\") {\n return \"\";\n }\n var match = line.match(/^\\s*(\\/?)\\*/);\n if (match) {\n if (match[1]) {\n indent += \" \";\n }\n indent += \"* \";\n }\n }\n\n return indent;\n };\n\n this.checkOutdent = function(state, line, input) {\n return this.$outdent.checkOutdent(line, input);\n };\n\n this.autoOutdent = function(state, doc, row) {\n this.$outdent.autoOutdent(doc, row);\n };\n\n this.createWorker = function(session) {\n var worker = new WorkerClient([\"ace\"], \"ace/mode/javascript_worker\", \"JavaScriptWorker\");\n worker.attachToDocument(session.getDocument());\n\n worker.on(\"annotate\", function(results) {\n session.setAnnotations(results.data);\n });\n\n worker.on(\"terminate\", function() {\n session.clearAnnotations();\n });\n\n return worker;\n };\n\n this.$id = \"ace/mode/javascript\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n});\n\nace.define(\"ace/mode/css_completions\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nvar propertyMap = {\n \"background\": {\"#$0\": 1},\n \"background-color\": {\"#$0\": 1, \"transparent\": 1, \"fixed\": 1},\n \"background-image\": {\"url('/$0')\": 1},\n \"background-repeat\": {\"repeat\": 1, \"repeat-x\": 1, \"repeat-y\": 1, \"no-repeat\": 1, \"inherit\": 1},\n \"background-position\": {\"bottom\":2, \"center\":2, \"left\":2, \"right\":2, \"top\":2, \"inherit\":2},\n \"background-attachment\": {\"scroll\": 1, \"fixed\": 1},\n \"background-size\": {\"cover\": 1, \"contain\": 1},\n \"background-clip\": {\"border-box\": 1, \"padding-box\": 1, \"content-box\": 1},\n \"background-origin\": {\"border-box\": 1, \"padding-box\": 1, \"content-box\": 1},\n \"border\": {\"solid $0\": 1, \"dashed $0\": 1, \"dotted $0\": 1, \"#$0\": 1},\n \"border-color\": {\"#$0\": 1},\n \"border-style\": {\"solid\":2, \"dashed\":2, \"dotted\":2, \"double\":2, \"groove\":2, \"hidden\":2, \"inherit\":2, \"inset\":2, \"none\":2, \"outset\":2, \"ridged\":2},\n \"border-collapse\": {\"collapse\": 1, \"separate\": 1},\n \"bottom\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"clear\": {\"left\": 1, \"right\": 1, \"both\": 1, \"none\": 1},\n \"color\": {\"#$0\": 1, \"rgb(#$00,0,0)\": 1},\n \"cursor\": {\"default\": 1, \"pointer\": 1, \"move\": 1, \"text\": 1, \"wait\": 1, \"help\": 1, \"progress\": 1, \"n-resize\": 1, \"ne-resize\": 1, \"e-resize\": 1, \"se-resize\": 1, \"s-resize\": 1, \"sw-resize\": 1, \"w-resize\": 1, \"nw-resize\": 1},\n \"display\": {\"none\": 1, \"block\": 1, \"inline\": 1, \"inline-block\": 1, \"table-cell\": 1},\n \"empty-cells\": {\"show\": 1, \"hide\": 1},\n \"float\": {\"left\": 1, \"right\": 1, \"none\": 1},\n \"font-family\": {\"Arial\":2,\"Comic Sans MS\":2,\"Consolas\":2,\"Courier New\":2,\"Courier\":2,\"Georgia\":2,\"Monospace\":2,\"Sans-Serif\":2, \"Segoe UI\":2,\"Tahoma\":2,\"Times New Roman\":2,\"Trebuchet MS\":2,\"Verdana\": 1},\n \"font-size\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"font-weight\": {\"bold\": 1, \"normal\": 1},\n \"font-style\": {\"italic\": 1, \"normal\": 1},\n \"font-variant\": {\"normal\": 1, \"small-caps\": 1},\n \"height\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"left\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"letter-spacing\": {\"normal\": 1},\n \"line-height\": {\"normal\": 1},\n \"list-style-type\": {\"none\": 1, \"disc\": 1, \"circle\": 1, \"square\": 1, \"decimal\": 1, \"decimal-leading-zero\": 1, \"lower-roman\": 1, \"upper-roman\": 1, \"lower-greek\": 1, \"lower-latin\": 1, \"upper-latin\": 1, \"georgian\": 1, \"lower-alpha\": 1, \"upper-alpha\": 1},\n \"margin\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"margin-right\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"margin-left\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"margin-top\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"margin-bottom\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"max-height\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"max-width\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"min-height\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"min-width\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"overflow\": {\"hidden\": 1, \"visible\": 1, \"auto\": 1, \"scroll\": 1},\n \"overflow-x\": {\"hidden\": 1, \"visible\": 1, \"auto\": 1, \"scroll\": 1},\n \"overflow-y\": {\"hidden\": 1, \"visible\": 1, \"auto\": 1, \"scroll\": 1},\n \"padding\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"padding-top\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"padding-right\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"padding-bottom\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"padding-left\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"page-break-after\": {\"auto\": 1, \"always\": 1, \"avoid\": 1, \"left\": 1, \"right\": 1},\n \"page-break-before\": {\"auto\": 1, \"always\": 1, \"avoid\": 1, \"left\": 1, \"right\": 1},\n \"position\": {\"absolute\": 1, \"relative\": 1, \"fixed\": 1, \"static\": 1},\n \"right\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"table-layout\": {\"fixed\": 1, \"auto\": 1},\n \"text-decoration\": {\"none\": 1, \"underline\": 1, \"line-through\": 1, \"blink\": 1},\n \"text-align\": {\"left\": 1, \"right\": 1, \"center\": 1, \"justify\": 1},\n \"text-transform\": {\"capitalize\": 1, \"uppercase\": 1, \"lowercase\": 1, \"none\": 1},\n \"top\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"vertical-align\": {\"top\": 1, \"bottom\": 1},\n \"visibility\": {\"hidden\": 1, \"visible\": 1},\n \"white-space\": {\"nowrap\": 1, \"normal\": 1, \"pre\": 1, \"pre-line\": 1, \"pre-wrap\": 1},\n \"width\": {\"px\": 1, \"em\": 1, \"%\": 1},\n \"word-spacing\": {\"normal\": 1},\n \"filter\": {\"alpha(opacity=$0100)\": 1},\n\n \"text-shadow\": {\"$02px 2px 2px #777\": 1},\n \"text-overflow\": {\"ellipsis-word\": 1, \"clip\": 1, \"ellipsis\": 1},\n \"-moz-border-radius\": 1,\n \"-moz-border-radius-topright\": 1,\n \"-moz-border-radius-bottomright\": 1,\n \"-moz-border-radius-topleft\": 1,\n \"-moz-border-radius-bottomleft\": 1,\n \"-webkit-border-radius\": 1,\n \"-webkit-border-top-right-radius\": 1,\n \"-webkit-border-top-left-radius\": 1,\n \"-webkit-border-bottom-right-radius\": 1,\n \"-webkit-border-bottom-left-radius\": 1,\n \"-moz-box-shadow\": 1,\n \"-webkit-box-shadow\": 1,\n \"transform\": {\"rotate($00deg)\": 1, \"skew($00deg)\": 1},\n \"-moz-transform\": {\"rotate($00deg)\": 1, \"skew($00deg)\": 1},\n \"-webkit-transform\": {\"rotate($00deg)\": 1, \"skew($00deg)\": 1 }\n};\n\nvar CssCompletions = function() {\n\n};\n\n(function() {\n\n this.completionsDefined = false;\n\n this.defineCompletions = function() {\n if (document) {\n var style = document.createElement('c').style;\n\n for (var i in style) {\n if (typeof style[i] !== 'string')\n continue;\n\n var name = i.replace(/[A-Z]/g, function(x) {\n return '-' + x.toLowerCase();\n });\n\n if (!propertyMap.hasOwnProperty(name))\n propertyMap[name] = 1;\n }\n }\n\n this.completionsDefined = true;\n };\n\n this.getCompletions = function(state, session, pos, prefix) {\n if (!this.completionsDefined) {\n this.defineCompletions();\n }\n\n var token = session.getTokenAt(pos.row, pos.column);\n\n if (!token)\n return [];\n if (state==='ruleset'){\n var line = session.getLine(pos.row).substr(0, pos.column);\n if (/:[^;]+$/.test(line)) {\n /([\\w\\-]+):[^:]*$/.test(line);\n\n return this.getPropertyValueCompletions(state, session, pos, prefix);\n } else {\n return this.getPropertyCompletions(state, session, pos, prefix);\n }\n }\n\n return [];\n };\n\n this.getPropertyCompletions = function(state, session, pos, prefix) {\n var properties = Object.keys(propertyMap);\n return properties.map(function(property){\n return {\n caption: property,\n snippet: property + ': $0;',\n meta: \"property\",\n score: 1000000\n };\n });\n };\n\n this.getPropertyValueCompletions = function(state, session, pos, prefix) {\n var line = session.getLine(pos.row).substr(0, pos.column);\n var property = (/([\\w\\-]+):[^:]*$/.exec(line) || {})[1];\n\n if (!property)\n return [];\n var values = [];\n if (property in propertyMap && typeof propertyMap[property] === \"object\") {\n values = Object.keys(propertyMap[property]);\n }\n return values.map(function(value){\n return {\n caption: value,\n snippet: value,\n meta: \"property value\",\n score: 1000000\n };\n });\n };\n\n}).call(CssCompletions.prototype);\n\nexports.CssCompletions = CssCompletions;\n});\n\nace.define(\"ace/mode/behaviour/css\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/behaviour\",\"ace/mode/behaviour/cstyle\",\"ace/token_iterator\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Behaviour = require(\"../behaviour\").Behaviour;\nvar CstyleBehaviour = require(\"./cstyle\").CstyleBehaviour;\nvar TokenIterator = require(\"../../token_iterator\").TokenIterator;\n\nvar CssBehaviour = function () {\n\n this.inherit(CstyleBehaviour);\n\n this.add(\"colon\", \"insertion\", function (state, action, editor, session, text) {\n if (text === ':' && editor.selection.isEmpty()) {\n var cursor = editor.getCursorPosition();\n var iterator = new TokenIterator(session, cursor.row, cursor.column);\n var token = iterator.getCurrentToken();\n if (token && token.value.match(/\\s+/)) {\n token = iterator.stepBackward();\n }\n if (token && token.type === 'support.type') {\n var line = session.doc.getLine(cursor.row);\n var rightChar = line.substring(cursor.column, cursor.column + 1);\n if (rightChar === ':') {\n return {\n text: '',\n selection: [1, 1]\n };\n }\n if (/^(\\s+[^;]|\\s*$)/.test(line.substring(cursor.column))) {\n return {\n text: ':;',\n selection: [1, 1]\n };\n }\n }\n }\n });\n\n this.add(\"colon\", \"deletion\", function (state, action, editor, session, range) {\n var selected = session.doc.getTextRange(range);\n if (!range.isMultiLine() && selected === ':') {\n var cursor = editor.getCursorPosition();\n var iterator = new TokenIterator(session, cursor.row, cursor.column);\n var token = iterator.getCurrentToken();\n if (token && token.value.match(/\\s+/)) {\n token = iterator.stepBackward();\n }\n if (token && token.type === 'support.type') {\n var line = session.doc.getLine(range.start.row);\n var rightChar = line.substring(range.end.column, range.end.column + 1);\n if (rightChar === ';') {\n range.end.column ++;\n return range;\n }\n }\n }\n });\n\n this.add(\"semicolon\", \"insertion\", function (state, action, editor, session, text) {\n if (text === ';' && editor.selection.isEmpty()) {\n var cursor = editor.getCursorPosition();\n var line = session.doc.getLine(cursor.row);\n var rightChar = line.substring(cursor.column, cursor.column + 1);\n if (rightChar === ';') {\n return {\n text: '',\n selection: [1, 1]\n };\n }\n }\n });\n\n this.add(\"!important\", \"insertion\", function (state, action, editor, session, text) {\n if (text === '!' && editor.selection.isEmpty()) {\n var cursor = editor.getCursorPosition();\n var line = session.doc.getLine(cursor.row);\n\n if (/^\\s*(;|}|$)/.test(line.substring(cursor.column))) {\n return {\n text: '!important',\n selection: [10, 10]\n };\n }\n }\n });\n\n};\noop.inherits(CssBehaviour, CstyleBehaviour);\n\nexports.CssBehaviour = CssBehaviour;\n});\n\nace.define(\"ace/mode/css\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/css_highlight_rules\",\"ace/mode/matching_brace_outdent\",\"ace/worker/worker_client\",\"ace/mode/css_completions\",\"ace/mode/behaviour/css\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar CssHighlightRules = require(\"./css_highlight_rules\").CssHighlightRules;\nvar MatchingBraceOutdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\nvar WorkerClient = require(\"../worker/worker_client\").WorkerClient;\nvar CssCompletions = require(\"./css_completions\").CssCompletions;\nvar CssBehaviour = require(\"./behaviour/css\").CssBehaviour;\nvar CStyleFoldMode = require(\"./folding/cstyle\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = CssHighlightRules;\n this.$outdent = new MatchingBraceOutdent();\n this.$behaviour = new CssBehaviour();\n this.$completer = new CssCompletions();\n this.foldingRules = new CStyleFoldMode();\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.foldingRules = \"cStyle\";\n this.blockComment = {start: \"/*\", end: \"*/\"};\n\n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n var tokens = this.getTokenizer().getLineTokens(line, state).tokens;\n if (tokens.length && tokens[tokens.length-1].type == \"comment\") {\n return indent;\n }\n\n var match = line.match(/^.*\\{\\s*$/);\n if (match) {\n indent += tab;\n }\n\n return indent;\n };\n\n this.checkOutdent = function(state, line, input) {\n return this.$outdent.checkOutdent(line, input);\n };\n\n this.autoOutdent = function(state, doc, row) {\n this.$outdent.autoOutdent(doc, row);\n };\n\n this.getCompletions = function(state, session, pos, prefix) {\n return this.$completer.getCompletions(state, session, pos, prefix);\n };\n\n this.createWorker = function(session) {\n var worker = new WorkerClient([\"ace\"], \"ace/mode/css_worker\", \"Worker\");\n worker.attachToDocument(session.getDocument());\n\n worker.on(\"annotate\", function(e) {\n session.setAnnotations(e.data);\n });\n\n worker.on(\"terminate\", function() {\n session.clearAnnotations();\n });\n\n return worker;\n };\n\n this.$id = \"ace/mode/css\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n\n});\n\nace.define(\"ace/mode/behaviour/xml\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/behaviour\",\"ace/token_iterator\",\"ace/lib/lang\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Behaviour = require(\"../behaviour\").Behaviour;\nvar TokenIterator = require(\"../../token_iterator\").TokenIterator;\nvar lang = require(\"../../lib/lang\");\n\nfunction is(token, type) {\n return token && token.type.lastIndexOf(type + \".xml\") > -1;\n}\n\nvar XmlBehaviour = function () {\n\n this.add(\"string_dquotes\", \"insertion\", function (state, action, editor, session, text) {\n if (text == '\"' || text == \"'\") {\n var quote = text;\n var selected = session.doc.getTextRange(editor.getSelectionRange());\n if (selected !== \"\" && selected !== \"'\" && selected != '\"' && editor.getWrapBehavioursEnabled()) {\n return {\n text: quote + selected + quote,\n selection: false\n };\n }\n\n var cursor = editor.getCursorPosition();\n var line = session.doc.getLine(cursor.row);\n var rightChar = line.substring(cursor.column, cursor.column + 1);\n var iterator = new TokenIterator(session, cursor.row, cursor.column);\n var token = iterator.getCurrentToken();\n\n if (rightChar == quote && (is(token, \"attribute-value\") || is(token, \"string\"))) {\n return {\n text: \"\",\n selection: [1, 1]\n };\n }\n\n if (!token)\n token = iterator.stepBackward();\n\n if (!token)\n return;\n\n while (is(token, \"tag-whitespace\") || is(token, \"whitespace\")) {\n token = iterator.stepBackward();\n }\n var rightSpace = !rightChar || rightChar.match(/\\s/);\n if (is(token, \"attribute-equals\") && (rightSpace || rightChar == '>') || (is(token, \"decl-attribute-equals\") && (rightSpace || rightChar == '?'))) {\n return {\n text: quote + quote,\n selection: [1, 1]\n };\n }\n }\n });\n\n this.add(\"string_dquotes\", \"deletion\", function(state, action, editor, session, range) {\n var selected = session.doc.getTextRange(range);\n if (!range.isMultiLine() && (selected == '\"' || selected == \"'\")) {\n var line = session.doc.getLine(range.start.row);\n var rightChar = line.substring(range.start.column + 1, range.start.column + 2);\n if (rightChar == selected) {\n range.end.column++;\n return range;\n }\n }\n });\n\n this.add(\"autoclosing\", \"insertion\", function (state, action, editor, session, text) {\n if (text == '>') {\n var position = editor.getSelectionRange().start;\n var iterator = new TokenIterator(session, position.row, position.column);\n var token = iterator.getCurrentToken() || iterator.stepBackward();\n if (!token || !(is(token, \"tag-name\") || is(token, \"tag-whitespace\") || is(token, \"attribute-name\") || is(token, \"attribute-equals\") || is(token, \"attribute-value\")))\n return;\n if (is(token, \"reference.attribute-value\"))\n return;\n if (is(token, \"attribute-value\")) {\n var tokenEndColumn = iterator.getCurrentTokenColumn() + token.value.length;\n if (position.column < tokenEndColumn)\n return;\n if (position.column == tokenEndColumn) {\n var nextToken = iterator.stepForward();\n if (nextToken && is(nextToken, \"attribute-value\"))\n return;\n iterator.stepBackward();\n }\n }\n \n if (/^\\s*>/.test(session.getLine(position.row).slice(position.column)))\n return;\n while (!is(token, \"tag-name\")) {\n token = iterator.stepBackward();\n if (token.value == \"<\") {\n token = iterator.stepForward();\n break;\n }\n }\n\n var tokenRow = iterator.getCurrentTokenRow();\n var tokenColumn = iterator.getCurrentTokenColumn();\n if (is(iterator.stepBackward(), \"end-tag-open\"))\n return;\n\n var element = token.value;\n if (tokenRow == position.row)\n element = element.substring(0, position.column - tokenColumn);\n\n if (this.voidElements.hasOwnProperty(element.toLowerCase()))\n return;\n\n return {\n text: \">\" + \"\",\n selection: [1, 1]\n };\n }\n });\n\n this.add(\"autoindent\", \"insertion\", function (state, action, editor, session, text) {\n if (text == \"\\n\") {\n var cursor = editor.getCursorPosition();\n var line = session.getLine(cursor.row);\n var iterator = new TokenIterator(session, cursor.row, cursor.column);\n var token = iterator.getCurrentToken();\n\n if (token && token.type.indexOf(\"tag-close\") !== -1) {\n if (token.value == \"/>\")\n return;\n while (token && token.type.indexOf(\"tag-name\") === -1) {\n token = iterator.stepBackward();\n }\n\n if (!token) {\n return;\n }\n\n var tag = token.value;\n var row = iterator.getCurrentTokenRow();\n token = iterator.stepBackward();\n if (!token || token.type.indexOf(\"end-tag\") !== -1) {\n return;\n }\n\n if (this.voidElements && !this.voidElements[tag]) {\n var nextToken = session.getTokenAt(cursor.row, cursor.column+1);\n var line = session.getLine(row);\n var nextIndent = this.$getIndent(line);\n var indent = nextIndent + session.getTabString();\n\n if (nextToken && nextToken.value === \" -1;\n}\n\n(function() {\n\n this.getFoldWidget = function(session, foldStyle, row) {\n var tag = this._getFirstTagInLine(session, row);\n\n if (!tag)\n return this.getCommentFoldWidget(session, row);\n\n if (tag.closing || (!tag.tagName && tag.selfClosing))\n return foldStyle == \"markbeginend\" ? \"end\" : \"\";\n\n if (!tag.tagName || tag.selfClosing || this.voidElements.hasOwnProperty(tag.tagName.toLowerCase()))\n return \"\";\n\n if (this._findEndTagInLine(session, row, tag.tagName, tag.end.column))\n return \"\";\n\n return \"start\";\n };\n \n this.getCommentFoldWidget = function(session, row) {\n if (/comment/.test(session.getState(row)) && /';\n break;\n }\n }\n return tag;\n } else if (is(token, \"tag-close\")) {\n tag.selfClosing = token.value == '/>';\n return tag;\n }\n tag.start.column += token.value.length;\n }\n\n return null;\n };\n\n this._findEndTagInLine = function(session, row, tagName, startColumn) {\n var tokens = session.getTokens(row);\n var column = 0;\n for (var i = 0; i < tokens.length; i++) {\n var token = tokens[i];\n column += token.value.length;\n if (column < startColumn)\n continue;\n if (is(token, \"end-tag-open\")) {\n token = tokens[i + 1];\n if (token && token.value == tagName)\n return true;\n }\n }\n return false;\n };\n this._readTagForward = function(iterator) {\n var token = iterator.getCurrentToken();\n if (!token)\n return null;\n\n var tag = new Tag();\n do {\n if (is(token, \"tag-open\")) {\n tag.closing = is(token, \"end-tag-open\");\n tag.start.row = iterator.getCurrentTokenRow();\n tag.start.column = iterator.getCurrentTokenColumn();\n } else if (is(token, \"tag-name\")) {\n tag.tagName = token.value;\n } else if (is(token, \"tag-close\")) {\n tag.selfClosing = token.value == \"/>\";\n tag.end.row = iterator.getCurrentTokenRow();\n tag.end.column = iterator.getCurrentTokenColumn() + token.value.length;\n iterator.stepForward();\n return tag;\n }\n } while(token = iterator.stepForward());\n\n return null;\n };\n \n this._readTagBackward = function(iterator) {\n var token = iterator.getCurrentToken();\n if (!token)\n return null;\n\n var tag = new Tag();\n do {\n if (is(token, \"tag-open\")) {\n tag.closing = is(token, \"end-tag-open\");\n tag.start.row = iterator.getCurrentTokenRow();\n tag.start.column = iterator.getCurrentTokenColumn();\n iterator.stepBackward();\n return tag;\n } else if (is(token, \"tag-name\")) {\n tag.tagName = token.value;\n } else if (is(token, \"tag-close\")) {\n tag.selfClosing = token.value == \"/>\";\n tag.end.row = iterator.getCurrentTokenRow();\n tag.end.column = iterator.getCurrentTokenColumn() + token.value.length;\n }\n } while(token = iterator.stepBackward());\n\n return null;\n };\n \n this._pop = function(stack, tag) {\n while (stack.length) {\n \n var top = stack[stack.length-1];\n if (!tag || top.tagName == tag.tagName) {\n return stack.pop();\n }\n else if (this.optionalEndTags.hasOwnProperty(top.tagName)) {\n stack.pop();\n continue;\n } else {\n return null;\n }\n }\n };\n \n this.getFoldWidgetRange = function(session, foldStyle, row) {\n var firstTag = this._getFirstTagInLine(session, row);\n \n if (!firstTag) {\n return this.getCommentFoldWidget(session, row)\n && session.getCommentFoldRange(row, session.getLine(row).length);\n }\n \n var isBackward = firstTag.closing || firstTag.selfClosing;\n var stack = [];\n var tag;\n \n if (!isBackward) {\n var iterator = new TokenIterator(session, row, firstTag.start.column);\n var start = {\n row: row,\n column: firstTag.start.column + firstTag.tagName.length + 2\n };\n if (firstTag.start.row == firstTag.end.row)\n start.column = firstTag.end.column;\n while (tag = this._readTagForward(iterator)) {\n if (tag.selfClosing) {\n if (!stack.length) {\n tag.start.column += tag.tagName.length + 2;\n tag.end.column -= 2;\n return Range.fromPoints(tag.start, tag.end);\n } else\n continue;\n }\n \n if (tag.closing) {\n this._pop(stack, tag);\n if (stack.length == 0)\n return Range.fromPoints(start, tag.start);\n }\n else {\n stack.push(tag);\n }\n }\n }\n else {\n var iterator = new TokenIterator(session, row, firstTag.end.column);\n var end = {\n row: row,\n column: firstTag.start.column\n };\n \n while (tag = this._readTagBackward(iterator)) {\n if (tag.selfClosing) {\n if (!stack.length) {\n tag.start.column += tag.tagName.length + 2;\n tag.end.column -= 2;\n return Range.fromPoints(tag.start, tag.end);\n } else\n continue;\n }\n \n if (!tag.closing) {\n this._pop(stack, tag);\n if (stack.length == 0) {\n tag.start.column += tag.tagName.length + 2;\n if (tag.start.row == tag.end.row && tag.start.column < tag.end.column)\n tag.start.column = tag.end.column;\n return Range.fromPoints(tag.start, end);\n }\n }\n else {\n stack.push(tag);\n }\n }\n }\n \n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/folding/html\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/folding/mixed\",\"ace/mode/folding/xml\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar MixedFoldMode = require(\"./mixed\").FoldMode;\nvar XmlFoldMode = require(\"./xml\").FoldMode;\nvar CStyleFoldMode = require(\"./cstyle\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function(voidElements, optionalTags) {\n MixedFoldMode.call(this, new XmlFoldMode(voidElements, optionalTags), {\n \"js-\": new CStyleFoldMode(),\n \"css-\": new CStyleFoldMode()\n });\n};\n\noop.inherits(FoldMode, MixedFoldMode);\n\n});\n\nace.define(\"ace/mode/html_completions\",[\"require\",\"exports\",\"module\",\"ace/token_iterator\"], function(require, exports, module) {\n\"use strict\";\n\nvar TokenIterator = require(\"../token_iterator\").TokenIterator;\n\nvar commonAttributes = [\n \"accesskey\",\n \"class\",\n \"contenteditable\",\n \"contextmenu\",\n \"dir\",\n \"draggable\",\n \"dropzone\",\n \"hidden\",\n \"id\",\n \"inert\",\n \"itemid\",\n \"itemprop\",\n \"itemref\",\n \"itemscope\",\n \"itemtype\",\n \"lang\",\n \"spellcheck\",\n \"style\",\n \"tabindex\",\n \"title\",\n \"translate\"\n];\n\nvar eventAttributes = [\n \"onabort\",\n \"onblur\",\n \"oncancel\",\n \"oncanplay\",\n \"oncanplaythrough\",\n \"onchange\",\n \"onclick\",\n \"onclose\",\n \"oncontextmenu\",\n \"oncuechange\",\n \"ondblclick\",\n \"ondrag\",\n \"ondragend\",\n \"ondragenter\",\n \"ondragleave\",\n \"ondragover\",\n \"ondragstart\",\n \"ondrop\",\n \"ondurationchange\",\n \"onemptied\",\n \"onended\",\n \"onerror\",\n \"onfocus\",\n \"oninput\",\n \"oninvalid\",\n \"onkeydown\",\n \"onkeypress\",\n \"onkeyup\",\n \"onload\",\n \"onloadeddata\",\n \"onloadedmetadata\",\n \"onloadstart\",\n \"onmousedown\",\n \"onmousemove\",\n \"onmouseout\",\n \"onmouseover\",\n \"onmouseup\",\n \"onmousewheel\",\n \"onpause\",\n \"onplay\",\n \"onplaying\",\n \"onprogress\",\n \"onratechange\",\n \"onreset\",\n \"onscroll\",\n \"onseeked\",\n \"onseeking\",\n \"onselect\",\n \"onshow\",\n \"onstalled\",\n \"onsubmit\",\n \"onsuspend\",\n \"ontimeupdate\",\n \"onvolumechange\",\n \"onwaiting\"\n];\n\nvar globalAttributes = commonAttributes.concat(eventAttributes);\n\nvar attributeMap = {\n \"a\": {\"href\": 1, \"target\": {\"_blank\": 1, \"top\": 1}, \"ping\": 1, \"rel\": {\"nofollow\": 1, \"alternate\": 1, \"author\": 1, \"bookmark\": 1, \"help\": 1, \"license\": 1, \"next\": 1, \"noreferrer\": 1, \"prefetch\": 1, \"prev\": 1, \"search\": 1, \"tag\": 1}, \"media\": 1, \"hreflang\": 1, \"type\": 1},\n \"abbr\": {},\n \"address\": {},\n \"area\": {\"shape\": 1, \"coords\": 1, \"href\": 1, \"hreflang\": 1, \"alt\": 1, \"target\": 1, \"media\": 1, \"rel\": 1, \"ping\": 1, \"type\": 1},\n \"article\": {\"pubdate\": 1},\n \"aside\": {},\n \"audio\": {\"src\": 1, \"autobuffer\": 1, \"autoplay\": {\"autoplay\": 1}, \"loop\": {\"loop\": 1}, \"controls\": {\"controls\": 1}, \"muted\": {\"muted\": 1}, \"preload\": {\"auto\": 1, \"metadata\": 1, \"none\": 1 }},\n \"b\": {},\n \"base\": {\"href\": 1, \"target\": 1},\n \"bdi\": {},\n \"bdo\": {},\n \"blockquote\": {\"cite\": 1},\n \"body\": {\"onafterprint\": 1, \"onbeforeprint\": 1, \"onbeforeunload\": 1, \"onhashchange\": 1, \"onmessage\": 1, \"onoffline\": 1, \"onpopstate\": 1, \"onredo\": 1, \"onresize\": 1, \"onstorage\": 1, \"onundo\": 1, \"onunload\": 1},\n \"br\": {},\n \"button\": {\"autofocus\": 1, \"disabled\": {\"disabled\": 1}, \"form\": 1, \"formaction\": 1, \"formenctype\": 1, \"formmethod\": 1, \"formnovalidate\": 1, \"formtarget\": 1, \"name\": 1, \"value\": 1, \"type\": {\"button\": 1, \"submit\": 1}},\n \"canvas\": {\"width\": 1, \"height\": 1},\n \"caption\": {},\n \"cite\": {},\n \"code\": {},\n \"col\": {\"span\": 1},\n \"colgroup\": {\"span\": 1},\n \"command\": {\"type\": 1, \"label\": 1, \"icon\": 1, \"disabled\": 1, \"checked\": 1, \"radiogroup\": 1, \"command\": 1},\n \"data\": {},\n \"datalist\": {},\n \"dd\": {},\n \"del\": {\"cite\": 1, \"datetime\": 1},\n \"details\": {\"open\": 1},\n \"dfn\": {},\n \"dialog\": {\"open\": 1},\n \"div\": {},\n \"dl\": {},\n \"dt\": {},\n \"em\": {},\n \"embed\": {\"src\": 1, \"height\": 1, \"width\": 1, \"type\": 1},\n \"fieldset\": {\"disabled\": 1, \"form\": 1, \"name\": 1},\n \"figcaption\": {},\n \"figure\": {},\n \"footer\": {},\n \"form\": {\"accept-charset\": 1, \"action\": 1, \"autocomplete\": 1, \"enctype\": {\"multipart/form-data\": 1, \"application/x-www-form-urlencoded\": 1}, \"method\": {\"get\": 1, \"post\": 1}, \"name\": 1, \"novalidate\": 1, \"target\": {\"_blank\": 1, \"top\": 1}},\n \"h1\": {},\n \"h2\": {},\n \"h3\": {},\n \"h4\": {},\n \"h5\": {},\n \"h6\": {},\n \"head\": {},\n \"header\": {},\n \"hr\": {},\n \"html\": {\"manifest\": 1},\n \"i\": {},\n \"iframe\": {\"name\": 1, \"src\": 1, \"height\": 1, \"width\": 1, \"sandbox\": {\"allow-same-origin\": 1, \"allow-top-navigation\": 1, \"allow-forms\": 1, \"allow-scripts\": 1}, \"seamless\": {\"seamless\": 1}},\n \"img\": {\"alt\": 1, \"src\": 1, \"height\": 1, \"width\": 1, \"usemap\": 1, \"ismap\": 1},\n \"input\": {\n \"type\": {\"text\": 1, \"password\": 1, \"hidden\": 1, \"checkbox\": 1, \"submit\": 1, \"radio\": 1, \"file\": 1, \"button\": 1, \"reset\": 1, \"image\": 31, \"color\": 1, \"date\": 1, \"datetime\": 1, \"datetime-local\": 1, \"email\": 1, \"month\": 1, \"number\": 1, \"range\": 1, \"search\": 1, \"tel\": 1, \"time\": 1, \"url\": 1, \"week\": 1},\n \"accept\": 1, \"alt\": 1, \"autocomplete\": {\"on\": 1, \"off\": 1}, \"autofocus\": {\"autofocus\": 1}, \"checked\": {\"checked\": 1}, \"disabled\": {\"disabled\": 1}, \"form\": 1, \"formaction\": 1, \"formenctype\": {\"application/x-www-form-urlencoded\": 1, \"multipart/form-data\": 1, \"text/plain\": 1}, \"formmethod\": {\"get\": 1, \"post\": 1}, \"formnovalidate\": {\"formnovalidate\": 1}, \"formtarget\": {\"_blank\": 1, \"_self\": 1, \"_parent\": 1, \"_top\": 1}, \"height\": 1, \"list\": 1, \"max\": 1, \"maxlength\": 1, \"min\": 1, \"multiple\": {\"multiple\": 1}, \"name\": 1, \"pattern\": 1, \"placeholder\": 1, \"readonly\": {\"readonly\": 1}, \"required\": {\"required\": 1}, \"size\": 1, \"src\": 1, \"step\": 1, \"width\": 1, \"files\": 1, \"value\": 1},\n \"ins\": {\"cite\": 1, \"datetime\": 1},\n \"kbd\": {},\n \"keygen\": {\"autofocus\": 1, \"challenge\": {\"challenge\": 1}, \"disabled\": {\"disabled\": 1}, \"form\": 1, \"keytype\": {\"rsa\": 1, \"dsa\": 1, \"ec\": 1}, \"name\": 1},\n \"label\": {\"form\": 1, \"for\": 1},\n \"legend\": {},\n \"li\": {\"value\": 1},\n \"link\": {\"href\": 1, \"hreflang\": 1, \"rel\": {\"stylesheet\": 1, \"icon\": 1}, \"media\": {\"all\": 1, \"screen\": 1, \"print\": 1}, \"type\": {\"text/css\": 1, \"image/png\": 1, \"image/jpeg\": 1, \"image/gif\": 1}, \"sizes\": 1},\n \"main\": {},\n \"map\": {\"name\": 1},\n \"mark\": {},\n \"math\": {},\n \"menu\": {\"type\": 1, \"label\": 1},\n \"meta\": {\"http-equiv\": {\"content-type\": 1}, \"name\": {\"description\": 1, \"keywords\": 1}, \"content\": {\"text/html; charset=UTF-8\": 1}, \"charset\": 1},\n \"meter\": {\"value\": 1, \"min\": 1, \"max\": 1, \"low\": 1, \"high\": 1, \"optimum\": 1},\n \"nav\": {},\n \"noscript\": {\"href\": 1},\n \"object\": {\"param\": 1, \"data\": 1, \"type\": 1, \"height\" : 1, \"width\": 1, \"usemap\": 1, \"name\": 1, \"form\": 1, \"classid\": 1},\n \"ol\": {\"start\": 1, \"reversed\": 1},\n \"optgroup\": {\"disabled\": 1, \"label\": 1},\n \"option\": {\"disabled\": 1, \"selected\": 1, \"label\": 1, \"value\": 1},\n \"output\": {\"for\": 1, \"form\": 1, \"name\": 1},\n \"p\": {},\n \"param\": {\"name\": 1, \"value\": 1},\n \"pre\": {},\n \"progress\": {\"value\": 1, \"max\": 1},\n \"q\": {\"cite\": 1},\n \"rp\": {},\n \"rt\": {},\n \"ruby\": {},\n \"s\": {},\n \"samp\": {},\n \"script\": {\"charset\": 1, \"type\": {\"text/javascript\": 1}, \"src\": 1, \"defer\": 1, \"async\": 1},\n \"select\": {\"autofocus\": 1, \"disabled\": 1, \"form\": 1, \"multiple\": {\"multiple\": 1}, \"name\": 1, \"size\": 1, \"readonly\":{\"readonly\": 1}},\n \"small\": {},\n \"source\": {\"src\": 1, \"type\": 1, \"media\": 1},\n \"span\": {},\n \"strong\": {},\n \"style\": {\"type\": 1, \"media\": {\"all\": 1, \"screen\": 1, \"print\": 1}, \"scoped\": 1},\n \"sub\": {},\n \"sup\": {},\n \"svg\": {},\n \"table\": {\"summary\": 1},\n \"tbody\": {},\n \"td\": {\"headers\": 1, \"rowspan\": 1, \"colspan\": 1},\n \"textarea\": {\"autofocus\": {\"autofocus\": 1}, \"disabled\": {\"disabled\": 1}, \"form\": 1, \"maxlength\": 1, \"name\": 1, \"placeholder\": 1, \"readonly\": {\"readonly\": 1}, \"required\": {\"required\": 1}, \"rows\": 1, \"cols\": 1, \"wrap\": {\"on\": 1, \"off\": 1, \"hard\": 1, \"soft\": 1}},\n \"tfoot\": {},\n \"th\": {\"headers\": 1, \"rowspan\": 1, \"colspan\": 1, \"scope\": 1},\n \"thead\": {},\n \"time\": {\"datetime\": 1},\n \"title\": {},\n \"tr\": {},\n \"track\": {\"kind\": 1, \"src\": 1, \"srclang\": 1, \"label\": 1, \"default\": 1},\n \"section\": {},\n \"summary\": {},\n \"u\": {},\n \"ul\": {},\n \"var\": {},\n \"video\": {\"src\": 1, \"autobuffer\": 1, \"autoplay\": {\"autoplay\": 1}, \"loop\": {\"loop\": 1}, \"controls\": {\"controls\": 1}, \"width\": 1, \"height\": 1, \"poster\": 1, \"muted\": {\"muted\": 1}, \"preload\": {\"auto\": 1, \"metadata\": 1, \"none\": 1}},\n \"wbr\": {}\n};\n\nvar elements = Object.keys(attributeMap);\n\nfunction is(token, type) {\n return token.type.lastIndexOf(type + \".xml\") > -1;\n}\n\nfunction findTagName(session, pos) {\n var iterator = new TokenIterator(session, pos.row, pos.column);\n var token = iterator.getCurrentToken();\n while (token && !is(token, \"tag-name\")){\n token = iterator.stepBackward();\n }\n if (token)\n return token.value;\n}\n\nfunction findAttributeName(session, pos) {\n var iterator = new TokenIterator(session, pos.row, pos.column);\n var token = iterator.getCurrentToken();\n while (token && !is(token, \"attribute-name\")){\n token = iterator.stepBackward();\n }\n if (token)\n return token.value;\n}\n\nvar HtmlCompletions = function() {\n\n};\n\n(function() {\n\n this.getCompletions = function(state, session, pos, prefix) {\n var token = session.getTokenAt(pos.row, pos.column);\n\n if (!token)\n return [];\n if (is(token, \"tag-name\") || is(token, \"tag-open\") || is(token, \"end-tag-open\"))\n return this.getTagCompletions(state, session, pos, prefix);\n if (is(token, \"tag-whitespace\") || is(token, \"attribute-name\"))\n return this.getAttributeCompletions(state, session, pos, prefix);\n if (is(token, \"attribute-value\"))\n return this.getAttributeValueCompletions(state, session, pos, prefix);\n var line = session.getLine(pos.row).substr(0, pos.column);\n if (/&[a-z]*$/i.test(line))\n return this.getHTMLEntityCompletions(state, session, pos, prefix);\n\n return [];\n };\n\n this.getTagCompletions = function(state, session, pos, prefix) {\n return elements.map(function(element){\n return {\n value: element,\n meta: \"tag\",\n score: 1000000\n };\n });\n };\n\n this.getAttributeCompletions = function(state, session, pos, prefix) {\n var tagName = findTagName(session, pos);\n if (!tagName)\n return [];\n var attributes = globalAttributes;\n if (tagName in attributeMap) {\n attributes = attributes.concat(Object.keys(attributeMap[tagName]));\n }\n return attributes.map(function(attribute){\n return {\n caption: attribute,\n snippet: attribute + '=\"$0\"',\n meta: \"attribute\",\n score: 1000000\n };\n });\n };\n\n this.getAttributeValueCompletions = function(state, session, pos, prefix) {\n var tagName = findTagName(session, pos);\n var attributeName = findAttributeName(session, pos);\n \n if (!tagName)\n return [];\n var values = [];\n if (tagName in attributeMap && attributeName in attributeMap[tagName] && typeof attributeMap[tagName][attributeName] === \"object\") {\n values = Object.keys(attributeMap[tagName][attributeName]);\n }\n return values.map(function(value){\n return {\n caption: value,\n snippet: value,\n meta: \"attribute value\",\n score: 1000000\n };\n });\n };\n\n this.getHTMLEntityCompletions = function(state, session, pos, prefix) {\n var values = ['Aacute;', 'aacute;', 'Acirc;', 'acirc;', 'acute;', 'AElig;', 'aelig;', 'Agrave;', 'agrave;', 'alefsym;', 'Alpha;', 'alpha;', 'amp;', 'and;', 'ang;', 'Aring;', 'aring;', 'asymp;', 'Atilde;', 'atilde;', 'Auml;', 'auml;', 'bdquo;', 'Beta;', 'beta;', 'brvbar;', 'bull;', 'cap;', 'Ccedil;', 'ccedil;', 'cedil;', 'cent;', 'Chi;', 'chi;', 'circ;', 'clubs;', 'cong;', 'copy;', 'crarr;', 'cup;', 'curren;', 'Dagger;', 'dagger;', 'dArr;', 'darr;', 'deg;', 'Delta;', 'delta;', 'diams;', 'divide;', 'Eacute;', 'eacute;', 'Ecirc;', 'ecirc;', 'Egrave;', 'egrave;', 'empty;', 'emsp;', 'ensp;', 'Epsilon;', 'epsilon;', 'equiv;', 'Eta;', 'eta;', 'ETH;', 'eth;', 'Euml;', 'euml;', 'euro;', 'exist;', 'fnof;', 'forall;', 'frac12;', 'frac14;', 'frac34;', 'frasl;', 'Gamma;', 'gamma;', 'ge;', 'gt;', 'hArr;', 'harr;', 'hearts;', 'hellip;', 'Iacute;', 'iacute;', 'Icirc;', 'icirc;', 'iexcl;', 'Igrave;', 'igrave;', 'image;', 'infin;', 'int;', 'Iota;', 'iota;', 'iquest;', 'isin;', 'Iuml;', 'iuml;', 'Kappa;', 'kappa;', 'Lambda;', 'lambda;', 'lang;', 'laquo;', 'lArr;', 'larr;', 'lceil;', 'ldquo;', 'le;', 'lfloor;', 'lowast;', 'loz;', 'lrm;', 'lsaquo;', 'lsquo;', 'lt;', 'macr;', 'mdash;', 'micro;', 'middot;', 'minus;', 'Mu;', 'mu;', 'nabla;', 'nbsp;', 'ndash;', 'ne;', 'ni;', 'not;', 'notin;', 'nsub;', 'Ntilde;', 'ntilde;', 'Nu;', 'nu;', 'Oacute;', 'oacute;', 'Ocirc;', 'ocirc;', 'OElig;', 'oelig;', 'Ograve;', 'ograve;', 'oline;', 'Omega;', 'omega;', 'Omicron;', 'omicron;', 'oplus;', 'or;', 'ordf;', 'ordm;', 'Oslash;', 'oslash;', 'Otilde;', 'otilde;', 'otimes;', 'Ouml;', 'ouml;', 'para;', 'part;', 'permil;', 'perp;', 'Phi;', 'phi;', 'Pi;', 'pi;', 'piv;', 'plusmn;', 'pound;', 'Prime;', 'prime;', 'prod;', 'prop;', 'Psi;', 'psi;', 'quot;', 'radic;', 'rang;', 'raquo;', 'rArr;', 'rarr;', 'rceil;', 'rdquo;', 'real;', 'reg;', 'rfloor;', 'Rho;', 'rho;', 'rlm;', 'rsaquo;', 'rsquo;', 'sbquo;', 'Scaron;', 'scaron;', 'sdot;', 'sect;', 'shy;', 'Sigma;', 'sigma;', 'sigmaf;', 'sim;', 'spades;', 'sub;', 'sube;', 'sum;', 'sup;', 'sup1;', 'sup2;', 'sup3;', 'supe;', 'szlig;', 'Tau;', 'tau;', 'there4;', 'Theta;', 'theta;', 'thetasym;', 'thinsp;', 'THORN;', 'thorn;', 'tilde;', 'times;', 'trade;', 'Uacute;', 'uacute;', 'uArr;', 'uarr;', 'Ucirc;', 'ucirc;', 'Ugrave;', 'ugrave;', 'uml;', 'upsih;', 'Upsilon;', 'upsilon;', 'Uuml;', 'uuml;', 'weierp;', 'Xi;', 'xi;', 'Yacute;', 'yacute;', 'yen;', 'Yuml;', 'yuml;', 'Zeta;', 'zeta;', 'zwj;', 'zwnj;'];\n\n return values.map(function(value){\n return {\n caption: value,\n snippet: value,\n meta: \"html entity\",\n score: 1000000\n };\n });\n };\n\n}).call(HtmlCompletions.prototype);\n\nexports.HtmlCompletions = HtmlCompletions;\n});\n\nace.define(\"ace/mode/html\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/text\",\"ace/mode/javascript\",\"ace/mode/css\",\"ace/mode/html_highlight_rules\",\"ace/mode/behaviour/xml\",\"ace/mode/folding/html\",\"ace/mode/html_completions\",\"ace/worker/worker_client\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar TextMode = require(\"./text\").Mode;\nvar JavaScriptMode = require(\"./javascript\").Mode;\nvar CssMode = require(\"./css\").Mode;\nvar HtmlHighlightRules = require(\"./html_highlight_rules\").HtmlHighlightRules;\nvar XmlBehaviour = require(\"./behaviour/xml\").XmlBehaviour;\nvar HtmlFoldMode = require(\"./folding/html\").FoldMode;\nvar HtmlCompletions = require(\"./html_completions\").HtmlCompletions;\nvar WorkerClient = require(\"../worker/worker_client\").WorkerClient;\nvar voidElements = [\"area\", \"base\", \"br\", \"col\", \"embed\", \"hr\", \"img\", \"input\", \"keygen\", \"link\", \"meta\", \"menuitem\", \"param\", \"source\", \"track\", \"wbr\"];\nvar optionalEndTags = [\"li\", \"dt\", \"dd\", \"p\", \"rt\", \"rp\", \"optgroup\", \"option\", \"colgroup\", \"td\", \"th\"];\n\nvar Mode = function(options) {\n this.fragmentContext = options && options.fragmentContext;\n this.HighlightRules = HtmlHighlightRules;\n this.$behaviour = new XmlBehaviour();\n this.$completer = new HtmlCompletions();\n \n this.createModeDelegates({\n \"js-\": JavaScriptMode,\n \"css-\": CssMode\n });\n \n this.foldingRules = new HtmlFoldMode(this.voidElements, lang.arrayToMap(optionalEndTags));\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.blockComment = {start: \"\"};\n\n this.voidElements = lang.arrayToMap(voidElements);\n\n this.getNextLineIndent = function(state, line, tab) {\n return this.$getIndent(line);\n };\n\n this.checkOutdent = function(state, line, input) {\n return false;\n };\n\n this.getCompletions = function(state, session, pos, prefix) {\n return this.$completer.getCompletions(state, session, pos, prefix);\n };\n\n this.createWorker = function(session) {\n if (this.constructor != Mode)\n return;\n var worker = new WorkerClient([\"ace\"], \"ace/mode/html_worker\", \"Worker\");\n worker.attachToDocument(session.getDocument());\n\n if (this.fragmentContext)\n worker.call(\"setOptions\", [{context: this.fragmentContext}]);\n\n worker.on(\"error\", function(e) {\n session.setAnnotations(e.data);\n });\n\n worker.on(\"terminate\", function() {\n session.clearAnnotations();\n });\n\n return worker;\n };\n\n this.$id = \"ace/mode/html\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n});\n\nace.define(\"ace/mode/php\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/php_highlight_rules\",\"ace/mode/php_highlight_rules\",\"ace/mode/matching_brace_outdent\",\"ace/range\",\"ace/worker/worker_client\",\"ace/mode/php_completions\",\"ace/mode/behaviour/cstyle\",\"ace/mode/folding/cstyle\",\"ace/unicode\",\"ace/mode/html\",\"ace/mode/javascript\",\"ace/mode/css\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar PhpHighlightRules = require(\"./php_highlight_rules\").PhpHighlightRules;\nvar PhpLangHighlightRules = require(\"./php_highlight_rules\").PhpLangHighlightRules;\nvar MatchingBraceOutdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\nvar Range = require(\"../range\").Range;\nvar WorkerClient = require(\"../worker/worker_client\").WorkerClient;\nvar PhpCompletions = require(\"./php_completions\").PhpCompletions;\nvar CstyleBehaviour = require(\"./behaviour/cstyle\").CstyleBehaviour;\nvar CStyleFoldMode = require(\"./folding/cstyle\").FoldMode;\nvar unicode = require(\"../unicode\");\nvar HtmlMode = require(\"./html\").Mode;\nvar JavaScriptMode = require(\"./javascript\").Mode;\nvar CssMode = require(\"./css\").Mode;\n\nvar PhpMode = function(opts) {\n this.HighlightRules = PhpLangHighlightRules;\n this.$outdent = new MatchingBraceOutdent();\n this.$behaviour = new CstyleBehaviour();\n this.$completer = new PhpCompletions();\n this.foldingRules = new CStyleFoldMode();\n};\noop.inherits(PhpMode, TextMode);\n\n(function() {\n\n this.tokenRe = new RegExp(\"^[\" + unicode.wordChars + \"_]+\", \"g\");\n this.nonTokenRe = new RegExp(\"^(?:[^\" + unicode.wordChars + \"_]|\\\\s])+\", \"g\");\n\n this.lineCommentStart = [\"//\", \"#\"];\n this.blockComment = {start: \"/*\", end: \"*/\"};\n\n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n\n var tokenizedLine = this.getTokenizer().getLineTokens(line, state);\n var tokens = tokenizedLine.tokens;\n var endState = tokenizedLine.state;\n\n if (tokens.length && tokens[tokens.length-1].type == \"comment\") {\n return indent;\n }\n\n if (state == \"start\") {\n var match = line.match(/^.*[\\{\\(\\[:]\\s*$/);\n if (match) {\n indent += tab;\n }\n } else if (state == \"doc-start\") {\n if (endState != \"doc-start\") {\n return \"\";\n }\n var match = line.match(/^\\s*(\\/?)\\*/);\n if (match) {\n if (match[1]) {\n indent += \" \";\n }\n indent += \"* \";\n }\n }\n\n return indent;\n };\n\n this.checkOutdent = function(state, line, input) {\n return this.$outdent.checkOutdent(line, input);\n };\n\n this.autoOutdent = function(state, doc, row) {\n this.$outdent.autoOutdent(doc, row);\n };\n\n this.getCompletions = function(state, session, pos, prefix) {\n return this.$completer.getCompletions(state, session, pos, prefix);\n };\n\n this.$id = \"ace/mode/php-inline\";\n}).call(PhpMode.prototype);\n\nvar Mode = function(opts) {\n if (opts && opts.inline) {\n var mode = new PhpMode();\n mode.createWorker = this.createWorker;\n mode.inlinePhp = true;\n return mode;\n }\n HtmlMode.call(this);\n this.HighlightRules = PhpHighlightRules;\n this.createModeDelegates({\n \"js-\": JavaScriptMode,\n \"css-\": CssMode,\n \"php-\": PhpMode\n });\n this.foldingRules.subModes[\"php-\"] = new CStyleFoldMode();\n};\noop.inherits(Mode, HtmlMode);\n\n(function() {\n\n this.createWorker = function(session) {\n var worker = new WorkerClient([\"ace\"], \"ace/mode/php_worker\", \"PhpWorker\");\n worker.attachToDocument(session.getDocument());\n\n if (this.inlinePhp)\n worker.call(\"setOptions\", [{inline: true}]);\n\n worker.on(\"annotate\", function(e) {\n session.setAnnotations(e.data);\n });\n\n worker.on(\"terminate\", function() {\n session.clearAnnotations();\n });\n\n return worker;\n };\n\n this.$id = \"ace/mode/php\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/php\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file3j := &embedded.EmbeddedFile{ Filename: "50eeb828262568282a21d6fb27523560.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/doc_comment_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar DocCommentHighlightRules = function() {\n this.$rules = {\n \"start\" : [ {\n token : \"comment.doc.tag\",\n regex : \"@[\\\\w\\\\d_]+\" // TODO: fix email addresses\n }, \n DocCommentHighlightRules.getTagRule(),\n {\n defaultToken : \"comment.doc\",\n caseInsensitive: true\n }]\n };\n};\n\noop.inherits(DocCommentHighlightRules, TextHighlightRules);\n\nDocCommentHighlightRules.getTagRule = function(start) {\n return {\n token : \"comment.doc.tag.storage.type\",\n regex : \"\\\\b(?:TODO|FIXME|XXX|HACK)\\\\b\"\n };\n};\n\nDocCommentHighlightRules.getStartRule = function(start) {\n return {\n token : \"comment.doc\", // doc comment\n regex : \"\\\\/\\\\*(?=\\\\*)\",\n next : start\n };\n};\n\nDocCommentHighlightRules.getEndRule = function (start) {\n return {\n token : \"comment.doc\", // closing comment\n regex : \"\\\\*\\\\/\",\n next : start\n };\n};\n\n\nexports.DocCommentHighlightRules = DocCommentHighlightRules;\n\n});\n\nace.define(\"ace/mode/c_cpp_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/doc_comment_highlight_rules\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar DocCommentHighlightRules = require(\"./doc_comment_highlight_rules\").DocCommentHighlightRules;\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar cFunctions = exports.cFunctions = \"\\\\b(?:hypot(?:f|l)?|s(?:scanf|ystem|nprintf|ca(?:nf|lb(?:n(?:f|l)?|ln(?:f|l)?))|i(?:n(?:h(?:f|l)?|f|l)?|gn(?:al|bit))|tr(?:s(?:tr|pn)|nc(?:py|at|mp)|c(?:spn|hr|oll|py|at|mp)|to(?:imax|d|u(?:l(?:l)?|max)|k|f|l(?:d|l)?)|error|pbrk|ftime|len|rchr|xfrm)|printf|et(?:jmp|vbuf|locale|buf)|qrt(?:f|l)?|w(?:scanf|printf)|rand)|n(?:e(?:arbyint(?:f|l)?|xt(?:toward(?:f|l)?|after(?:f|l)?))|an(?:f|l)?)|c(?:s(?:in(?:h(?:f|l)?|f|l)?|qrt(?:f|l)?)|cos(?:h(?:f)?|f|l)?|imag(?:f|l)?|t(?:ime|an(?:h(?:f|l)?|f|l)?)|o(?:s(?:h(?:f|l)?|f|l)?|nj(?:f|l)?|pysign(?:f|l)?)|p(?:ow(?:f|l)?|roj(?:f|l)?)|e(?:il(?:f|l)?|xp(?:f|l)?)|l(?:o(?:ck|g(?:f|l)?)|earerr)|a(?:sin(?:h(?:f|l)?|f|l)?|cos(?:h(?:f|l)?|f|l)?|tan(?:h(?:f|l)?|f|l)?|lloc|rg(?:f|l)?|bs(?:f|l)?)|real(?:f|l)?|brt(?:f|l)?)|t(?:ime|o(?:upper|lower)|an(?:h(?:f|l)?|f|l)?|runc(?:f|l)?|gamma(?:f|l)?|mp(?:nam|file))|i(?:s(?:space|n(?:ormal|an)|cntrl|inf|digit|u(?:nordered|pper)|p(?:unct|rint)|finite|w(?:space|c(?:ntrl|type)|digit|upper|p(?:unct|rint)|lower|al(?:num|pha)|graph|xdigit|blank)|l(?:ower|ess(?:equal|greater)?)|al(?:num|pha)|gr(?:eater(?:equal)?|aph)|xdigit|blank)|logb(?:f|l)?|max(?:div|abs))|di(?:v|fftime)|_Exit|unget(?:c|wc)|p(?:ow(?:f|l)?|ut(?:s|c(?:har)?|wc(?:har)?)|error|rintf)|e(?:rf(?:c(?:f|l)?|f|l)?|x(?:it|p(?:2(?:f|l)?|f|l|m1(?:f|l)?)?))|v(?:s(?:scanf|nprintf|canf|printf|w(?:scanf|printf))|printf|f(?:scanf|printf|w(?:scanf|printf))|w(?:scanf|printf)|a_(?:start|copy|end|arg))|qsort|f(?:s(?:canf|e(?:tpos|ek))|close|tell|open|dim(?:f|l)?|p(?:classify|ut(?:s|c|w(?:s|c))|rintf)|e(?:holdexcept|set(?:e(?:nv|xceptflag)|round)|clearexcept|testexcept|of|updateenv|r(?:aiseexcept|ror)|get(?:e(?:nv|xceptflag)|round))|flush|w(?:scanf|ide|printf|rite)|loor(?:f|l)?|abs(?:f|l)?|get(?:s|c|pos|w(?:s|c))|re(?:open|e|ad|xp(?:f|l)?)|m(?:in(?:f|l)?|od(?:f|l)?|a(?:f|l|x(?:f|l)?)?))|l(?:d(?:iv|exp(?:f|l)?)|o(?:ngjmp|cal(?:time|econv)|g(?:1(?:p(?:f|l)?|0(?:f|l)?)|2(?:f|l)?|f|l|b(?:f|l)?)?)|abs|l(?:div|abs|r(?:int(?:f|l)?|ound(?:f|l)?))|r(?:int(?:f|l)?|ound(?:f|l)?)|gamma(?:f|l)?)|w(?:scanf|c(?:s(?:s(?:tr|pn)|nc(?:py|at|mp)|c(?:spn|hr|oll|py|at|mp)|to(?:imax|d|u(?:l(?:l)?|max)|k|f|l(?:d|l)?|mbs)|pbrk|ftime|len|r(?:chr|tombs)|xfrm)|to(?:b|mb)|rtomb)|printf|mem(?:set|c(?:hr|py|mp)|move))|a(?:s(?:sert|ctime|in(?:h(?:f|l)?|f|l)?)|cos(?:h(?:f|l)?|f|l)?|t(?:o(?:i|f|l(?:l)?)|exit|an(?:h(?:f|l)?|2(?:f|l)?|f|l)?)|b(?:s|ort))|g(?:et(?:s|c(?:har)?|env|wc(?:har)?)|mtime)|r(?:int(?:f|l)?|ound(?:f|l)?|e(?:name|alloc|wind|m(?:ove|quo(?:f|l)?|ainder(?:f|l)?))|a(?:nd|ise))|b(?:search|towc)|m(?:odf(?:f|l)?|em(?:set|c(?:hr|py|mp)|move)|ktime|alloc|b(?:s(?:init|towcs|rtowcs)|towc|len|r(?:towc|len))))\\\\b\";\n\nvar c_cppHighlightRules = function() {\n\n var keywordControls = (\n \"break|case|continue|default|do|else|for|goto|if|_Pragma|\" +\n \"return|switch|while|catch|operator|try|throw|using\"\n );\n \n var storageType = (\n \"asm|__asm__|auto|bool|_Bool|char|_Complex|double|enum|float|\" +\n \"_Imaginary|int|long|short|signed|struct|typedef|union|unsigned|void|\" +\n \"class|wchar_t|template|char16_t|char32_t\"\n );\n\n var storageModifiers = (\n \"const|extern|register|restrict|static|volatile|inline|private|\" +\n \"protected|public|friend|explicit|virtual|export|mutable|typename|\" +\n \"constexpr|new|delete|alignas|alignof|decltype|noexcept|thread_local\"\n );\n\n var keywordOperators = (\n \"and|and_eq|bitand|bitor|compl|not|not_eq|or|or_eq|typeid|xor|xor_eq|\" +\n \"const_cast|dynamic_cast|reinterpret_cast|static_cast|sizeof|namespace\"\n );\n\n var builtinConstants = (\n \"NULL|true|false|TRUE|FALSE|nullptr\"\n );\n\n var keywordMapper = this.$keywords = this.createKeywordMapper({\n \"keyword.control\" : keywordControls,\n \"storage.type\" : storageType,\n \"storage.modifier\" : storageModifiers,\n \"keyword.operator\" : keywordOperators,\n \"variable.language\": \"this\",\n \"constant.language\": builtinConstants\n }, \"identifier\");\n\n var identifierRe = \"[a-zA-Z\\\\$_\\u00a1-\\uffff][a-zA-Z\\\\d\\\\$_\\u00a1-\\uffff]*\\\\b\";\n var escapeRe = /\\\\(?:['\"?\\\\abfnrtv]|[0-7]{1,3}|x[a-fA-F\\d]{2}|u[a-fA-F\\d]{4}U[a-fA-F\\d]{8}|.)/.source;\n var formatRe = \"%\"\n + /(\\d+\\$)?/.source // field (argument #)\n + /[#0\\- +']*/.source // flags\n + /[,;:_]?/.source // separator character (AltiVec)\n + /((-?\\d+)|\\*(-?\\d+\\$)?)?/.source // minimum field width\n + /(\\.((-?\\d+)|\\*(-?\\d+\\$)?)?)?/.source // precision\n + /(hh|h|ll|l|j|t|z|q|L|vh|vl|v|hv|hl)?/.source // length modifier\n + /(\\[[^\"\\]]+\\]|[diouxXDOUeEfFgGaACcSspn%])/.source; // conversion type\n\n this.$rules = { \n \"start\" : [\n {\n token : \"comment\",\n regex : \"//$\",\n next : \"start\"\n }, {\n token : \"comment\",\n regex : \"//\",\n next : \"singleLineComment\"\n },\n DocCommentHighlightRules.getStartRule(\"doc-start\"),\n {\n token : \"comment\", // multi line comment\n regex : \"\\\\/\\\\*\",\n next : \"comment\"\n }, {\n token : \"string\", // character\n regex : \"'(?:\" + escapeRe + \"|.)?'\"\n }, {\n token : \"string.start\",\n regex : '\"', \n stateName: \"qqstring\",\n next: [\n { token: \"string\", regex: /\\\\\\s*$/, next: \"qqstring\" },\n { token: \"constant.language.escape\", regex: escapeRe },\n { token: \"constant.language.escape\", regex: formatRe },\n { token: \"string.end\", regex: '\"|$', next: \"start\" },\n { defaultToken: \"string\"}\n ]\n }, {\n token : \"string.start\",\n regex : 'R\"\\\\(', \n stateName: \"rawString\",\n next: [\n { token: \"string.end\", regex: '\\\\)\"', next: \"start\" },\n { defaultToken: \"string\"}\n ]\n }, {\n token : \"constant.numeric\", // hex\n regex : \"0[xX][0-9a-fA-F]+(L|l|UL|ul|u|U|F|f|ll|LL|ull|ULL)?\\\\b\"\n }, {\n token : \"constant.numeric\", // float\n regex : \"[+-]?\\\\d+(?:(?:\\\\.\\\\d*)?(?:[eE][+-]?\\\\d+)?)?(L|l|UL|ul|u|U|F|f|ll|LL|ull|ULL)?\\\\b\"\n }, {\n token : \"keyword\", // pre-compiler directives\n regex : \"#\\\\s*(?:include|import|pragma|line|define|undef)\\\\b\",\n next : \"directive\"\n }, {\n token : \"keyword\", // special case pre-compiler directive\n regex : \"#\\\\s*(?:endif|if|ifdef|else|elif|ifndef)\\\\b\"\n }, {\n token : \"support.function.C99.c\",\n regex : cFunctions\n }, {\n token : keywordMapper,\n regex : \"[a-zA-Z_$][a-zA-Z0-9_$]*\"\n }, {\n token : \"keyword.operator\",\n regex : /--|\\+\\+|<<=|>>=|>>>=|<>|&&|\\|\\||\\?:|[*%\\/+\\-&\\^|~!<>=]=?/\n }, {\n token : \"punctuation.operator\",\n regex : \"\\\\?|\\\\:|\\\\,|\\\\;|\\\\.\"\n }, {\n token : \"paren.lparen\",\n regex : \"[[({]\"\n }, {\n token : \"paren.rparen\",\n regex : \"[\\\\])}]\"\n }, {\n token : \"text\",\n regex : \"\\\\s+\"\n }\n ],\n \"comment\" : [\n {\n token : \"comment\", // closing comment\n regex : \"\\\\*\\\\/\",\n next : \"start\"\n }, {\n defaultToken : \"comment\"\n }\n ],\n \"singleLineComment\" : [\n {\n token : \"comment\",\n regex : /\\\\$/,\n next : \"singleLineComment\"\n }, {\n token : \"comment\",\n regex : /$/,\n next : \"start\"\n }, {\n defaultToken: \"comment\"\n }\n ],\n \"directive\" : [\n {\n token : \"constant.other.multiline\",\n regex : /\\\\/\n },\n {\n token : \"constant.other.multiline\",\n regex : /.*\\\\/\n },\n {\n token : \"constant.other\",\n regex : \"\\\\s*<.+?>\",\n next : \"start\"\n },\n {\n token : \"constant.other\", // single line\n regex : '\\\\s*[\"](?:(?:\\\\\\\\.)|(?:[^\"\\\\\\\\]))*?[\"]',\n next : \"start\"\n }, \n {\n token : \"constant.other\", // single line\n regex : \"\\\\s*['](?:(?:\\\\\\\\.)|(?:[^'\\\\\\\\]))*?[']\",\n next : \"start\"\n },\n {\n token : \"constant.other\",\n regex : /[^\\\\\\/]+/,\n next : \"start\"\n }\n ]\n };\n\n this.embedRules(DocCommentHighlightRules, \"doc-\",\n [ DocCommentHighlightRules.getEndRule(\"start\") ]);\n this.normalizeRules();\n};\n\noop.inherits(c_cppHighlightRules, TextHighlightRules);\n\nexports.c_cppHighlightRules = c_cppHighlightRules;\n});\n\nace.define(\"ace/mode/matching_brace_outdent\",[\"require\",\"exports\",\"module\",\"ace/range\"], function(require, exports, module) {\n\"use strict\";\n\nvar Range = require(\"../range\").Range;\n\nvar MatchingBraceOutdent = function() {};\n\n(function() {\n\n this.checkOutdent = function(line, input) {\n if (! /^\\s+$/.test(line))\n return false;\n\n return /^\\s*\\}/.test(input);\n };\n\n this.autoOutdent = function(doc, row) {\n var line = doc.getLine(row);\n var match = line.match(/^(\\s*\\})/);\n\n if (!match) return 0;\n\n var column = match[1].length;\n var openBracePos = doc.findMatchingBracket({row: row, column: column});\n\n if (!openBracePos || openBracePos.row == row) return 0;\n\n var indent = this.$getIndent(doc.getLine(openBracePos.row));\n doc.replace(new Range(row, 0, row, column-1), indent);\n };\n\n this.$getIndent = function(line) {\n return line.match(/^\\s*/)[0];\n };\n\n}).call(MatchingBraceOutdent.prototype);\n\nexports.MatchingBraceOutdent = MatchingBraceOutdent;\n});\n\nace.define(\"ace/mode/folding/cstyle\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/range\",\"ace/mode/folding/fold_mode\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Range = require(\"../../range\").Range;\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function(commentRegex) {\n if (commentRegex) {\n this.foldingStartMarker = new RegExp(\n this.foldingStartMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.start)\n );\n this.foldingStopMarker = new RegExp(\n this.foldingStopMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.end)\n );\n }\n};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n \n this.foldingStartMarker = /([\\{\\[\\(])[^\\}\\]\\)]*$|^\\s*(\\/\\*)/;\n this.foldingStopMarker = /^[^\\[\\{\\(]*([\\}\\]\\)])|^[\\s\\*]*(\\*\\/)/;\n this.singleLineBlockCommentRe= /^\\s*(\\/\\*).*\\*\\/\\s*$/;\n this.tripleStarBlockCommentRe = /^\\s*(\\/\\*\\*\\*).*\\*\\/\\s*$/;\n this.startRegionRe = /^\\s*(\\/\\*|\\/\\/)#?region\\b/;\n this._getFoldWidgetBase = this.getFoldWidget;\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n \n if (this.singleLineBlockCommentRe.test(line)) {\n if (!this.startRegionRe.test(line) && !this.tripleStarBlockCommentRe.test(line))\n return \"\";\n }\n \n var fw = this._getFoldWidgetBase(session, foldStyle, row);\n \n if (!fw && this.startRegionRe.test(line))\n return \"start\"; // lineCommentRegionStart\n \n return fw;\n };\n\n this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {\n var line = session.getLine(row);\n \n if (this.startRegionRe.test(line))\n return this.getCommentRegionBlock(session, line, row);\n \n var match = line.match(this.foldingStartMarker);\n if (match) {\n var i = match.index;\n\n if (match[1])\n return this.openingBracketBlock(session, match[1], row, i);\n \n var range = session.getCommentFoldRange(row, i + match[0].length, 1);\n \n if (range && !range.isMultiLine()) {\n if (forceMultiline) {\n range = this.getSectionRange(session, row);\n } else if (foldStyle != \"all\")\n range = null;\n }\n \n return range;\n }\n\n if (foldStyle === \"markbegin\")\n return;\n\n var match = line.match(this.foldingStopMarker);\n if (match) {\n var i = match.index + match[0].length;\n\n if (match[1])\n return this.closingBracketBlock(session, match[1], row, i);\n\n return session.getCommentFoldRange(row, i, -1);\n }\n };\n \n this.getSectionRange = function(session, row) {\n var line = session.getLine(row);\n var startIndent = line.search(/\\S/);\n var startRow = row;\n var startColumn = line.length;\n row = row + 1;\n var endRow = row;\n var maxRow = session.getLength();\n while (++row < maxRow) {\n line = session.getLine(row);\n var indent = line.search(/\\S/);\n if (indent === -1)\n continue;\n if (startIndent > indent)\n break;\n var subRange = this.getFoldWidgetRange(session, \"all\", row);\n \n if (subRange) {\n if (subRange.start.row <= startRow) {\n break;\n } else if (subRange.isMultiLine()) {\n row = subRange.end.row;\n } else if (startIndent == indent) {\n break;\n }\n }\n endRow = row;\n }\n \n return new Range(startRow, startColumn, endRow, session.getLine(endRow).length);\n };\n this.getCommentRegionBlock = function(session, line, row) {\n var startColumn = line.search(/\\s*$/);\n var maxRow = session.getLength();\n var startRow = row;\n \n var re = /^\\s*(?:\\/\\*|\\/\\/|--)#?(end)?region\\b/;\n var depth = 1;\n while (++row < maxRow) {\n line = session.getLine(row);\n var m = re.exec(line);\n if (!m) continue;\n if (m[1]) depth--;\n else depth++;\n\n if (!depth) break;\n }\n\n var endRow = row;\n if (endRow > startRow) {\n return new Range(startRow, startColumn, endRow, line.length);\n }\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/c_cpp\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/c_cpp_highlight_rules\",\"ace/mode/matching_brace_outdent\",\"ace/range\",\"ace/mode/behaviour/cstyle\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar c_cppHighlightRules = require(\"./c_cpp_highlight_rules\").c_cppHighlightRules;\nvar MatchingBraceOutdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\nvar Range = require(\"../range\").Range;\nvar CstyleBehaviour = require(\"./behaviour/cstyle\").CstyleBehaviour;\nvar CStyleFoldMode = require(\"./folding/cstyle\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = c_cppHighlightRules;\n\n this.$outdent = new MatchingBraceOutdent();\n this.$behaviour = new CstyleBehaviour();\n\n this.foldingRules = new CStyleFoldMode();\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.lineCommentStart = \"//\";\n this.blockComment = {start: \"/*\", end: \"*/\"};\n\n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n\n var tokenizedLine = this.getTokenizer().getLineTokens(line, state);\n var tokens = tokenizedLine.tokens;\n var endState = tokenizedLine.state;\n\n if (tokens.length && tokens[tokens.length-1].type == \"comment\") {\n return indent;\n }\n\n if (state == \"start\") {\n var match = line.match(/^.*[\\{\\(\\[]\\s*$/);\n if (match) {\n indent += tab;\n }\n } else if (state == \"doc-start\") {\n if (endState == \"start\") {\n return \"\";\n }\n var match = line.match(/^\\s*(\\/?)\\*/);\n if (match) {\n if (match[1]) {\n indent += \" \";\n }\n indent += \"* \";\n }\n }\n\n return indent;\n };\n\n this.checkOutdent = function(state, line, input) {\n return this.$outdent.checkOutdent(line, input);\n };\n\n this.autoOutdent = function(state, doc, row) {\n this.$outdent.autoOutdent(doc, row);\n };\n\n this.$id = \"ace/mode/c_cpp\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n});\n\nace.define(\"ace/mode/dart_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/doc_comment_highlight_rules\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar DocCommentHighlightRules = require(\"./doc_comment_highlight_rules\").DocCommentHighlightRules;\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar DartHighlightRules = function() {\n\n var constantLanguage = \"true|false|null\";\n var variableLanguage = \"this|super\";\n var keywordControl = \"try|catch|finally|throw|rethrow|assert|break|case|continue|default|do|else|for|if|in|return|switch|while|new|deferred|async|await\";\n var keywordDeclaration = \"abstract|class|extends|external|factory|implements|get|native|operator|set|typedef|with|enum\";\n var storageModifier = \"static|final|const\";\n var storageType = \"void|bool|num|int|double|dynamic|var|String\";\n\n var keywordMapper = this.createKeywordMapper({\n \"constant.language.dart\": constantLanguage,\n \"variable.language.dart\": variableLanguage,\n \"keyword.control.dart\": keywordControl,\n \"keyword.declaration.dart\": keywordDeclaration,\n \"storage.modifier.dart\": storageModifier,\n \"storage.type.primitive.dart\": storageType\n }, \"identifier\");\n\n var stringfill = [{\n token : \"constant.language.escape\",\n regex : /\\\\./\n }, {\n token : \"text\",\n regex : /\\$(?:\\w+|{[^\"'}]+})?/\n }, {\n defaultToken : \"string\"\n }];\n\n this.$rules = {\n \"start\": [\n {\n token : \"comment\",\n regex : /\\/\\/.*$/\n },\n DocCommentHighlightRules.getStartRule(\"doc-start\"),\n {\n token : \"comment\", // multi line comment\n regex : /\\/\\*/,\n next : \"comment\"\n },\n {\n token: [\"meta.preprocessor.script.dart\"],\n regex: \"^(#!.*)$\"\n },\n {\n token: \"keyword.other.import.dart\",\n regex: \"(?:\\\\b)(?:library|import|export|part|of|show|hide)(?:\\\\b)\"\n },\n {\n token : [\"keyword.other.import.dart\", \"text\"],\n regex : \"(?:\\\\b)(prefix)(\\\\s*:)\"\n },\n {\n regex: \"\\\\bas\\\\b\",\n token: \"keyword.cast.dart\"\n },\n {\n regex: \"\\\\?|:\",\n token: \"keyword.control.ternary.dart\"\n },\n {\n regex: \"(?:\\\\b)(is\\\\!?)(?:\\\\b)\",\n token: [\"keyword.operator.dart\"]\n },\n {\n regex: \"(<<|>>>?|~|\\\\^|\\\\||&)\",\n token: [\"keyword.operator.bitwise.dart\"]\n },\n {\n regex: \"((?:&|\\\\^|\\\\||<<|>>>?)=)\",\n token: [\"keyword.operator.assignment.bitwise.dart\"]\n },\n {\n regex: \"(===?|!==?|<=?|>=?)\",\n token: [\"keyword.operator.comparison.dart\"]\n },\n {\n regex: \"((?:[+*/%-]|\\\\~)=)\",\n token: [\"keyword.operator.assignment.arithmetic.dart\"]\n },\n {\n regex: \"=\",\n token: \"keyword.operator.assignment.dart\"\n },\n {\n token : \"string\",\n regex : \"'''\",\n next : \"qdoc\"\n }, \n {\n token : \"string\",\n regex : '\"\"\"',\n next : \"qqdoc\"\n }, \n {\n token : \"string\",\n regex : \"'\",\n next : \"qstring\"\n }, \n {\n token : \"string\",\n regex : '\"',\n next : \"qqstring\"\n }, \n {\n regex: \"(\\\\-\\\\-|\\\\+\\\\+)\",\n token: [\"keyword.operator.increment-decrement.dart\"]\n },\n {\n regex: \"(\\\\-|\\\\+|\\\\*|\\\\/|\\\\~\\\\/|%)\",\n token: [\"keyword.operator.arithmetic.dart\"]\n },\n {\n regex: \"(!|&&|\\\\|\\\\|)\",\n token: [\"keyword.operator.logical.dart\"]\n },\n {\n token : \"constant.numeric\", // hex\n regex : \"0[xX][0-9a-fA-F]+\\\\b\"\n }, \n {\n token : \"constant.numeric\", // float\n regex : \"[+-]?\\\\d+(?:(?:\\\\.\\\\d*)?(?:[eE][+-]?\\\\d+)?)?\\\\b\"\n }, \n {\n token : keywordMapper,\n regex : \"[a-zA-Z_$][a-zA-Z0-9_$]*\\\\b\"\n }\n ],\n \"comment\" : [\n {\n token : \"comment\", // closing comment\n regex : \"\\\\*\\\\/\",\n next : \"start\"\n }, {\n defaultToken : \"comment\"\n }\n ],\n \"qdoc\" : [\n {\n token : \"string\",\n regex : \"'''\",\n next : \"start\"\n }\n ].concat(stringfill),\n\n \"qqdoc\" : [\n {\n token : \"string\",\n regex : '\"\"\"',\n next : \"start\"\n }\n ].concat(stringfill),\n\n \"qstring\" : [\n {\n token : \"string\",\n regex : \"'|$\",\n next : \"start\"\n }\n ].concat(stringfill),\n\n \"qqstring\" : [\n {\n token : \"string\",\n regex : '\"|$',\n next : \"start\"\n }\n ].concat(stringfill)\n};\n\n this.embedRules(DocCommentHighlightRules, \"doc-\",\n [ DocCommentHighlightRules.getEndRule(\"start\") ]);\n};\n\noop.inherits(DartHighlightRules, TextHighlightRules);\n\nexports.DartHighlightRules = DartHighlightRules;\n});\n\nace.define(\"ace/mode/dart\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/c_cpp\",\"ace/mode/dart_highlight_rules\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar CMode = require(\"./c_cpp\").Mode;\nvar DartHighlightRules = require(\"./dart_highlight_rules\").DartHighlightRules;\nvar CStyleFoldMode = require(\"./folding/cstyle\").FoldMode;\n\nvar Mode = function() {\n CMode.call(this);\n this.HighlightRules = DartHighlightRules;\n this.foldingRules = new CStyleFoldMode();\n};\noop.inherits(Mode, CMode);\n\n(function() { \n this.lineCommentStart = \"//\";\n this.blockComment = {start: \"/*\", end: \"*/\"};\n this.$id = \"ace/mode/dart\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/dart\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file3k := &embedded.EmbeddedFile{ Filename: "51e6918f996813eafa4b1491d9dd343b.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/plain_text\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/text_highlight_rules\",\"ace/mode/behaviour\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar Behaviour = require(\"./behaviour\").Behaviour;\n\nvar Mode = function() {\n this.HighlightRules = TextHighlightRules;\n this.$behaviour = new Behaviour();\n};\n\noop.inherits(Mode, TextMode);\n\n(function() {\n this.type = \"text\";\n this.getNextLineIndent = function(state, line, tab) {\n return '';\n };\n this.$id = \"ace/mode/plain_text\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/plain_text\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file3l := &embedded.EmbeddedFile{ Filename: "528a3090b1df1ea3c80e351f32564d05.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/scss\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText =undefined;\nexports.scope = \"scss\";\n\n}); (function() {\n ace.require([\"ace/snippets/scss\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file3m := &embedded.EmbeddedFile{ Filename: "54c1516151cd1ce002bc8140484185c3.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/occur\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/range\",\"ace/search\",\"ace/edit_session\",\"ace/search_highlight\",\"ace/lib/dom\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"./lib/oop\");\nvar Range = require(\"./range\").Range;\nvar Search = require(\"./search\").Search;\nvar EditSession = require(\"./edit_session\").EditSession;\nvar SearchHighlight = require(\"./search_highlight\").SearchHighlight;\nfunction Occur() {}\n\noop.inherits(Occur, Search);\n\n(function() {\n this.enter = function(editor, options) {\n if (!options.needle) return false;\n var pos = editor.getCursorPosition();\n this.displayOccurContent(editor, options);\n var translatedPos = this.originalToOccurPosition(editor.session, pos);\n editor.moveCursorToPosition(translatedPos);\n return true;\n };\n this.exit = function(editor, options) {\n var pos = options.translatePosition && editor.getCursorPosition();\n var translatedPos = pos && this.occurToOriginalPosition(editor.session, pos);\n this.displayOriginalContent(editor);\n if (translatedPos)\n editor.moveCursorToPosition(translatedPos);\n return true;\n };\n\n this.highlight = function(sess, regexp) {\n var hl = sess.$occurHighlight = sess.$occurHighlight || sess.addDynamicMarker(\n new SearchHighlight(null, \"ace_occur-highlight\", \"text\"));\n hl.setRegexp(regexp);\n sess._emit(\"changeBackMarker\"); // force highlight layer redraw\n };\n\n this.displayOccurContent = function(editor, options) {\n this.$originalSession = editor.session;\n var found = this.matchingLines(editor.session, options);\n var lines = found.map(function(foundLine) { return foundLine.content; });\n var occurSession = new EditSession(lines.join('\\n'));\n occurSession.$occur = this;\n occurSession.$occurMatchingLines = found;\n editor.setSession(occurSession);\n this.$useEmacsStyleLineStart = this.$originalSession.$useEmacsStyleLineStart;\n occurSession.$useEmacsStyleLineStart = this.$useEmacsStyleLineStart;\n this.highlight(occurSession, options.re);\n occurSession._emit('changeBackMarker');\n };\n\n this.displayOriginalContent = function(editor) {\n editor.setSession(this.$originalSession);\n this.$originalSession.$useEmacsStyleLineStart = this.$useEmacsStyleLineStart;\n };\n this.originalToOccurPosition = function(session, pos) {\n var lines = session.$occurMatchingLines;\n var nullPos = {row: 0, column: 0};\n if (!lines) return nullPos;\n for (var i = 0; i < lines.length; i++) {\n if (lines[i].row === pos.row)\n return {row: i, column: pos.column};\n }\n return nullPos;\n };\n this.occurToOriginalPosition = function(session, pos) {\n var lines = session.$occurMatchingLines;\n if (!lines || !lines[pos.row])\n return pos;\n return {row: lines[pos.row].row, column: pos.column};\n };\n\n this.matchingLines = function(session, options) {\n options = oop.mixin({}, options);\n if (!session || !options.needle) return [];\n var search = new Search();\n search.set(options);\n return search.findAll(session).reduce(function(lines, range) {\n var row = range.start.row;\n var last = lines[lines.length-1];\n return last && last.row === row ?\n lines :\n lines.concat({row: row, content: session.getLine(row)});\n }, []);\n };\n\n}).call(Occur.prototype);\n\nvar dom = require('./lib/dom');\ndom.importCssString(\".ace_occur-highlight {\\n\\\n border-radius: 4px;\\n\\\n background-color: rgba(87, 255, 8, 0.25);\\n\\\n position: absolute;\\n\\\n z-index: 4;\\n\\\n box-sizing: border-box;\\n\\\n box-shadow: 0 0 4px rgb(91, 255, 50);\\n\\\n}\\n\\\n.ace_dark .ace_occur-highlight {\\n\\\n background-color: rgb(80, 140, 85);\\n\\\n box-shadow: 0 0 4px rgb(60, 120, 70);\\n\\\n}\\n\", \"incremental-occur-highlighting\");\n\nexports.Occur = Occur;\n\n});\n\nace.define(\"ace/commands/occur_commands\",[\"require\",\"exports\",\"module\",\"ace/config\",\"ace/occur\",\"ace/keyboard/hash_handler\",\"ace/lib/oop\"], function(require, exports, module) {\n\nvar config = require(\"../config\"),\n Occur = require(\"../occur\").Occur;\nvar occurStartCommand = {\n name: \"occur\",\n exec: function(editor, options) {\n var alreadyInOccur = !!editor.session.$occur;\n var occurSessionActive = new Occur().enter(editor, options);\n if (occurSessionActive && !alreadyInOccur)\n OccurKeyboardHandler.installIn(editor);\n },\n readOnly: true\n};\n\nvar occurCommands = [{\n name: \"occurexit\",\n bindKey: 'esc|Ctrl-G',\n exec: function(editor) {\n var occur = editor.session.$occur;\n if (!occur) return;\n occur.exit(editor, {});\n if (!editor.session.$occur) OccurKeyboardHandler.uninstallFrom(editor);\n },\n readOnly: true\n}, {\n name: \"occuraccept\",\n bindKey: 'enter',\n exec: function(editor) {\n var occur = editor.session.$occur;\n if (!occur) return;\n occur.exit(editor, {translatePosition: true});\n if (!editor.session.$occur) OccurKeyboardHandler.uninstallFrom(editor);\n },\n readOnly: true\n}];\n\nvar HashHandler = require(\"../keyboard/hash_handler\").HashHandler;\nvar oop = require(\"../lib/oop\");\n\n\nfunction OccurKeyboardHandler() {}\n\noop.inherits(OccurKeyboardHandler, HashHandler);\n\n(function() {\n\n this.isOccurHandler = true;\n\n this.attach = function(editor) {\n HashHandler.call(this, occurCommands, editor.commands.platform);\n this.$editor = editor;\n };\n\n var handleKeyboard$super = this.handleKeyboard;\n this.handleKeyboard = function(data, hashId, key, keyCode) {\n var cmd = handleKeyboard$super.call(this, data, hashId, key, keyCode);\n return (cmd && cmd.command) ? cmd : undefined;\n };\n\n}).call(OccurKeyboardHandler.prototype);\n\nOccurKeyboardHandler.installIn = function(editor) {\n var handler = new this();\n editor.keyBinding.addKeyboardHandler(handler);\n editor.commands.addCommands(occurCommands);\n};\n\nOccurKeyboardHandler.uninstallFrom = function(editor) {\n editor.commands.removeCommands(occurCommands);\n var handler = editor.getKeyboardHandler();\n if (handler.isOccurHandler)\n editor.keyBinding.removeKeyboardHandler(handler);\n};\n\nexports.occurStartCommand = occurStartCommand;\n\n});\n\nace.define(\"ace/commands/incremental_search_commands\",[\"require\",\"exports\",\"module\",\"ace/config\",\"ace/lib/oop\",\"ace/keyboard/hash_handler\",\"ace/commands/occur_commands\"], function(require, exports, module) {\n\nvar config = require(\"../config\");\nvar oop = require(\"../lib/oop\");\nvar HashHandler = require(\"../keyboard/hash_handler\").HashHandler;\nvar occurStartCommand = require(\"./occur_commands\").occurStartCommand;\nexports.iSearchStartCommands = [{\n name: \"iSearch\",\n bindKey: {win: \"Ctrl-F\", mac: \"Command-F\"},\n exec: function(editor, options) {\n config.loadModule([\"core\", \"ace/incremental_search\"], function(e) {\n var iSearch = e.iSearch = e.iSearch || new e.IncrementalSearch();\n iSearch.activate(editor, options.backwards);\n if (options.jumpToFirstMatch) iSearch.next(options);\n });\n },\n readOnly: true\n}, {\n name: \"iSearchBackwards\",\n exec: function(editor, jumpToNext) { editor.execCommand('iSearch', {backwards: true}); },\n readOnly: true\n}, {\n name: \"iSearchAndGo\",\n bindKey: {win: \"Ctrl-K\", mac: \"Command-G\"},\n exec: function(editor, jumpToNext) { editor.execCommand('iSearch', {jumpToFirstMatch: true, useCurrentOrPrevSearch: true}); },\n readOnly: true\n}, {\n name: \"iSearchBackwardsAndGo\",\n bindKey: {win: \"Ctrl-Shift-K\", mac: \"Command-Shift-G\"},\n exec: function(editor) { editor.execCommand('iSearch', {jumpToFirstMatch: true, backwards: true, useCurrentOrPrevSearch: true}); },\n readOnly: true\n}];\nexports.iSearchCommands = [{\n name: \"restartSearch\",\n bindKey: {win: \"Ctrl-F\", mac: \"Command-F\"},\n exec: function(iSearch) {\n iSearch.cancelSearch(true);\n }\n}, {\n name: \"searchForward\",\n bindKey: {win: \"Ctrl-S|Ctrl-K\", mac: \"Ctrl-S|Command-G\"},\n exec: function(iSearch, options) {\n options.useCurrentOrPrevSearch = true;\n iSearch.next(options);\n }\n}, {\n name: \"searchBackward\",\n bindKey: {win: \"Ctrl-R|Ctrl-Shift-K\", mac: \"Ctrl-R|Command-Shift-G\"},\n exec: function(iSearch, options) {\n options.useCurrentOrPrevSearch = true;\n options.backwards = true;\n iSearch.next(options);\n }\n}, {\n name: \"extendSearchTerm\",\n exec: function(iSearch, string) {\n iSearch.addString(string);\n }\n}, {\n name: \"extendSearchTermSpace\",\n bindKey: \"space\",\n exec: function(iSearch) { iSearch.addString(' '); }\n}, {\n name: \"shrinkSearchTerm\",\n bindKey: \"backspace\",\n exec: function(iSearch) {\n iSearch.removeChar();\n }\n}, {\n name: 'confirmSearch',\n bindKey: 'return',\n exec: function(iSearch) { iSearch.deactivate(); }\n}, {\n name: 'cancelSearch',\n bindKey: 'esc|Ctrl-G',\n exec: function(iSearch) { iSearch.deactivate(true); }\n}, {\n name: 'occurisearch',\n bindKey: 'Ctrl-O',\n exec: function(iSearch) {\n var options = oop.mixin({}, iSearch.$options);\n iSearch.deactivate();\n occurStartCommand.exec(iSearch.$editor, options);\n }\n}, {\n name: \"yankNextWord\",\n bindKey: \"Ctrl-w\",\n exec: function(iSearch) {\n var ed = iSearch.$editor,\n range = ed.selection.getRangeOfMovements(function(sel) { sel.moveCursorWordRight(); }),\n string = ed.session.getTextRange(range);\n iSearch.addString(string);\n }\n}, {\n name: \"yankNextChar\",\n bindKey: \"Ctrl-Alt-y\",\n exec: function(iSearch) {\n var ed = iSearch.$editor,\n range = ed.selection.getRangeOfMovements(function(sel) { sel.moveCursorRight(); }),\n string = ed.session.getTextRange(range);\n iSearch.addString(string);\n }\n}, {\n name: 'recenterTopBottom',\n bindKey: 'Ctrl-l',\n exec: function(iSearch) { iSearch.$editor.execCommand('recenterTopBottom'); }\n}, {\n name: 'selectAllMatches',\n bindKey: 'Ctrl-space',\n exec: function(iSearch) {\n var ed = iSearch.$editor,\n hl = ed.session.$isearchHighlight,\n ranges = hl && hl.cache ? hl.cache\n .reduce(function(ranges, ea) {\n return ranges.concat(ea ? ea : []); }, []) : [];\n iSearch.deactivate(false);\n ranges.forEach(ed.selection.addRange.bind(ed.selection));\n }\n}, {\n name: 'searchAsRegExp',\n bindKey: 'Alt-r',\n exec: function(iSearch) {\n iSearch.convertNeedleToRegExp();\n }\n}].map(function(cmd) {\n cmd.readOnly = true;\n cmd.isIncrementalSearchCommand = true;\n cmd.scrollIntoView = \"animate-cursor\";\n return cmd;\n});\n\nfunction IncrementalSearchKeyboardHandler(iSearch) {\n this.$iSearch = iSearch;\n}\n\noop.inherits(IncrementalSearchKeyboardHandler, HashHandler);\n\n(function() {\n\n this.attach = function(editor) {\n var iSearch = this.$iSearch;\n HashHandler.call(this, exports.iSearchCommands, editor.commands.platform);\n this.$commandExecHandler = editor.commands.addEventListener('exec', function(e) {\n if (!e.command.isIncrementalSearchCommand)\n return iSearch.deactivate();\n e.stopPropagation();\n e.preventDefault();\n var scrollTop = editor.session.getScrollTop();\n var result = e.command.exec(iSearch, e.args || {});\n editor.renderer.scrollCursorIntoView(null, 0.5);\n editor.renderer.animateScrolling(scrollTop);\n return result;\n });\n };\n\n this.detach = function(editor) {\n if (!this.$commandExecHandler) return;\n editor.commands.removeEventListener('exec', this.$commandExecHandler);\n delete this.$commandExecHandler;\n };\n\n var handleKeyboard$super = this.handleKeyboard;\n this.handleKeyboard = function(data, hashId, key, keyCode) {\n if (((hashId === 1/*ctrl*/ || hashId === 8/*command*/) && key === 'v')\n || (hashId === 1/*ctrl*/ && key === 'y')) return null;\n var cmd = handleKeyboard$super.call(this, data, hashId, key, keyCode);\n if (cmd.command) { return cmd; }\n if (hashId == -1) {\n var extendCmd = this.commands.extendSearchTerm;\n if (extendCmd) { return {command: extendCmd, args: key}; }\n }\n return false;\n };\n\n}).call(IncrementalSearchKeyboardHandler.prototype);\n\n\nexports.IncrementalSearchKeyboardHandler = IncrementalSearchKeyboardHandler;\n\n});\n\nace.define(\"ace/incremental_search\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/range\",\"ace/search\",\"ace/search_highlight\",\"ace/commands/incremental_search_commands\",\"ace/lib/dom\",\"ace/commands/command_manager\",\"ace/editor\",\"ace/config\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"./lib/oop\");\nvar Range = require(\"./range\").Range;\nvar Search = require(\"./search\").Search;\nvar SearchHighlight = require(\"./search_highlight\").SearchHighlight;\nvar iSearchCommandModule = require(\"./commands/incremental_search_commands\");\nvar ISearchKbd = iSearchCommandModule.IncrementalSearchKeyboardHandler;\nfunction IncrementalSearch() {\n this.$options = {wrap: false, skipCurrent: false};\n this.$keyboardHandler = new ISearchKbd(this);\n}\n\noop.inherits(IncrementalSearch, Search);\n\nfunction isRegExp(obj) {\n return obj instanceof RegExp;\n}\n\nfunction regExpToObject(re) {\n var string = String(re),\n start = string.indexOf('/'),\n flagStart = string.lastIndexOf('/');\n return {\n expression: string.slice(start+1, flagStart),\n flags: string.slice(flagStart+1)\n };\n}\n\nfunction stringToRegExp(string, flags) {\n try {\n return new RegExp(string, flags);\n } catch (e) { return string; }\n}\n\nfunction objectToRegExp(obj) {\n return stringToRegExp(obj.expression, obj.flags);\n}\n\n(function() {\n\n this.activate = function(ed, backwards) {\n this.$editor = ed;\n this.$startPos = this.$currentPos = ed.getCursorPosition();\n this.$options.needle = '';\n this.$options.backwards = backwards;\n ed.keyBinding.addKeyboardHandler(this.$keyboardHandler);\n this.$originalEditorOnPaste = ed.onPaste; ed.onPaste = this.onPaste.bind(this);\n this.$mousedownHandler = ed.addEventListener('mousedown', this.onMouseDown.bind(this));\n this.selectionFix(ed);\n this.statusMessage(true);\n };\n\n this.deactivate = function(reset) {\n this.cancelSearch(reset);\n var ed = this.$editor;\n ed.keyBinding.removeKeyboardHandler(this.$keyboardHandler);\n if (this.$mousedownHandler) {\n ed.removeEventListener('mousedown', this.$mousedownHandler);\n delete this.$mousedownHandler;\n }\n ed.onPaste = this.$originalEditorOnPaste;\n this.message('');\n };\n\n this.selectionFix = function(editor) {\n if (editor.selection.isEmpty() && !editor.session.$emacsMark) {\n editor.clearSelection();\n }\n };\n\n this.highlight = function(regexp) {\n var sess = this.$editor.session,\n hl = sess.$isearchHighlight = sess.$isearchHighlight || sess.addDynamicMarker(\n new SearchHighlight(null, \"ace_isearch-result\", \"text\"));\n hl.setRegexp(regexp);\n sess._emit(\"changeBackMarker\"); // force highlight layer redraw\n };\n\n this.cancelSearch = function(reset) {\n var e = this.$editor;\n this.$prevNeedle = this.$options.needle;\n this.$options.needle = '';\n if (reset) {\n e.moveCursorToPosition(this.$startPos);\n this.$currentPos = this.$startPos;\n } else {\n e.pushEmacsMark && e.pushEmacsMark(this.$startPos, false);\n }\n this.highlight(null);\n return Range.fromPoints(this.$currentPos, this.$currentPos);\n };\n\n this.highlightAndFindWithNeedle = function(moveToNext, needleUpdateFunc) {\n if (!this.$editor) return null;\n var options = this.$options;\n if (needleUpdateFunc) {\n options.needle = needleUpdateFunc.call(this, options.needle || '') || '';\n }\n if (options.needle.length === 0) {\n this.statusMessage(true);\n return this.cancelSearch(true);\n }\n options.start = this.$currentPos;\n var session = this.$editor.session,\n found = this.find(session),\n shouldSelect = this.$editor.emacsMark ?\n !!this.$editor.emacsMark() : !this.$editor.selection.isEmpty();\n if (found) {\n if (options.backwards) found = Range.fromPoints(found.end, found.start);\n this.$editor.selection.setRange(Range.fromPoints(shouldSelect ? this.$startPos : found.end, found.end));\n if (moveToNext) this.$currentPos = found.end;\n this.highlight(options.re);\n }\n\n this.statusMessage(found);\n\n return found;\n };\n\n this.addString = function(s) {\n return this.highlightAndFindWithNeedle(false, function(needle) {\n if (!isRegExp(needle))\n return needle + s;\n var reObj = regExpToObject(needle);\n reObj.expression += s;\n return objectToRegExp(reObj);\n });\n };\n\n this.removeChar = function(c) {\n return this.highlightAndFindWithNeedle(false, function(needle) {\n if (!isRegExp(needle))\n return needle.substring(0, needle.length-1);\n var reObj = regExpToObject(needle);\n reObj.expression = reObj.expression.substring(0, reObj.expression.length-1);\n return objectToRegExp(reObj);\n });\n };\n\n this.next = function(options) {\n options = options || {};\n this.$options.backwards = !!options.backwards;\n this.$currentPos = this.$editor.getCursorPosition();\n return this.highlightAndFindWithNeedle(true, function(needle) {\n return options.useCurrentOrPrevSearch && needle.length === 0 ?\n this.$prevNeedle || '' : needle;\n });\n };\n\n this.onMouseDown = function(evt) {\n this.deactivate();\n return true;\n };\n\n this.onPaste = function(text) {\n this.addString(text);\n };\n\n this.convertNeedleToRegExp = function() {\n return this.highlightAndFindWithNeedle(false, function(needle) {\n return isRegExp(needle) ? needle : stringToRegExp(needle, 'ig');\n });\n };\n\n this.convertNeedleToString = function() {\n return this.highlightAndFindWithNeedle(false, function(needle) {\n return isRegExp(needle) ? regExpToObject(needle).expression : needle;\n });\n };\n\n this.statusMessage = function(found) {\n var options = this.$options, msg = '';\n msg += options.backwards ? 'reverse-' : '';\n msg += 'isearch: ' + options.needle;\n msg += found ? '' : ' (not found)';\n this.message(msg);\n };\n\n this.message = function(msg) {\n if (this.$editor.showCommandLine) {\n this.$editor.showCommandLine(msg);\n this.$editor.focus();\n } else {\n console.log(msg);\n }\n };\n\n}).call(IncrementalSearch.prototype);\n\n\nexports.IncrementalSearch = IncrementalSearch;\n\nvar dom = require('./lib/dom');\ndom.importCssString && dom.importCssString(\"\\\n.ace_marker-layer .ace_isearch-result {\\\n position: absolute;\\\n z-index: 6;\\\n box-sizing: border-box;\\\n}\\\ndiv.ace_isearch-result {\\\n border-radius: 4px;\\\n background-color: rgba(255, 200, 0, 0.5);\\\n box-shadow: 0 0 4px rgb(255, 200, 0);\\\n}\\\n.ace_dark div.ace_isearch-result {\\\n background-color: rgb(100, 110, 160);\\\n box-shadow: 0 0 4px rgb(80, 90, 140);\\\n}\", \"incremental-search-highlighting\");\nvar commands = require(\"./commands/command_manager\");\n(function() {\n this.setupIncrementalSearch = function(editor, val) {\n if (this.usesIncrementalSearch == val) return;\n this.usesIncrementalSearch = val;\n var iSearchCommands = iSearchCommandModule.iSearchStartCommands;\n var method = val ? 'addCommands' : 'removeCommands';\n this[method](iSearchCommands);\n };\n}).call(commands.CommandManager.prototype);\nvar Editor = require(\"./editor\").Editor;\nrequire(\"./config\").defineOptions(Editor.prototype, \"editor\", {\n useIncrementalSearch: {\n set: function(val) {\n this.keyBinding.$handlers.forEach(function(handler) {\n if (handler.setupIncrementalSearch) {\n handler.setupIncrementalSearch(this, val);\n }\n });\n this._emit('incrementalSearchSettingChanged', {isEnabled: val});\n }\n }\n});\n\n});\n\nace.define(\"ace/keyboard/emacs\",[\"require\",\"exports\",\"module\",\"ace/lib/dom\",\"ace/incremental_search\",\"ace/commands/incremental_search_commands\",\"ace/keyboard/hash_handler\",\"ace/lib/keys\"], function(require, exports, module) {\n\"use strict\";\n\nvar dom = require(\"../lib/dom\");\nrequire(\"../incremental_search\");\nvar iSearchCommandModule = require(\"../commands/incremental_search_commands\");\n\n\nvar HashHandler = require(\"./hash_handler\").HashHandler;\nexports.handler = new HashHandler();\n\nexports.handler.isEmacs = true;\nexports.handler.$id = \"ace/keyboard/emacs\";\n\nvar initialized = false;\nvar $formerLongWords;\nvar $formerLineStart;\n\nexports.handler.attach = function(editor) {\n if (!initialized) {\n initialized = true;\n dom.importCssString('\\\n .emacs-mode .ace_cursor{\\\n border: 1px rgba(50,250,50,0.8) solid!important;\\\n box-sizing: border-box!important;\\\n background-color: rgba(0,250,0,0.9);\\\n opacity: 0.5;\\\n }\\\n .emacs-mode .ace_hidden-cursors .ace_cursor{\\\n opacity: 1;\\\n background-color: transparent;\\\n }\\\n .emacs-mode .ace_overwrite-cursors .ace_cursor {\\\n opacity: 1;\\\n background-color: transparent;\\\n border-width: 0 0 2px 2px !important;\\\n }\\\n .emacs-mode .ace_text-layer {\\\n z-index: 4\\\n }\\\n .emacs-mode .ace_cursor-layer {\\\n z-index: 2\\\n }', 'emacsMode'\n );\n }\n $formerLongWords = editor.session.$selectLongWords;\n editor.session.$selectLongWords = true;\n $formerLineStart = editor.session.$useEmacsStyleLineStart;\n editor.session.$useEmacsStyleLineStart = true;\n\n editor.session.$emacsMark = null; // the active mark\n editor.session.$emacsMarkRing = editor.session.$emacsMarkRing || [];\n\n editor.emacsMark = function() {\n return this.session.$emacsMark;\n };\n\n editor.setEmacsMark = function(p) {\n this.session.$emacsMark = p;\n };\n\n editor.pushEmacsMark = function(p, activate) {\n var prevMark = this.session.$emacsMark;\n if (prevMark)\n this.session.$emacsMarkRing.push(prevMark);\n if (!p || activate) this.setEmacsMark(p);\n else this.session.$emacsMarkRing.push(p);\n };\n\n editor.popEmacsMark = function() {\n var mark = this.emacsMark();\n if (mark) { this.setEmacsMark(null); return mark; }\n return this.session.$emacsMarkRing.pop();\n };\n\n editor.getLastEmacsMark = function(p) {\n return this.session.$emacsMark || this.session.$emacsMarkRing.slice(-1)[0];\n };\n\n editor.emacsMarkForSelection = function(replacement) {\n var sel = this.selection,\n multiRangeLength = this.multiSelect ?\n this.multiSelect.getAllRanges().length : 1,\n selIndex = sel.index || 0,\n markRing = this.session.$emacsMarkRing,\n markIndex = markRing.length - (multiRangeLength - selIndex),\n lastMark = markRing[markIndex] || sel.anchor;\n if (replacement) {\n markRing.splice(markIndex, 1,\n \"row\" in replacement && \"column\" in replacement ?\n replacement : undefined);\n }\n return lastMark;\n };\n\n editor.on(\"click\", $resetMarkMode);\n editor.on(\"changeSession\", $kbSessionChange);\n editor.renderer.$blockCursor = true;\n editor.setStyle(\"emacs-mode\");\n editor.commands.addCommands(commands);\n exports.handler.platform = editor.commands.platform;\n editor.$emacsModeHandler = this;\n editor.addEventListener('copy', this.onCopy);\n editor.addEventListener('paste', this.onPaste);\n};\n\nexports.handler.detach = function(editor) {\n editor.renderer.$blockCursor = false;\n editor.session.$selectLongWords = $formerLongWords;\n editor.session.$useEmacsStyleLineStart = $formerLineStart;\n editor.removeEventListener(\"click\", $resetMarkMode);\n editor.removeEventListener(\"changeSession\", $kbSessionChange);\n editor.unsetStyle(\"emacs-mode\");\n editor.commands.removeCommands(commands);\n editor.removeEventListener('copy', this.onCopy);\n editor.removeEventListener('paste', this.onPaste);\n editor.$emacsModeHandler = null;\n};\n\nvar $kbSessionChange = function(e) {\n if (e.oldSession) {\n e.oldSession.$selectLongWords = $formerLongWords;\n e.oldSession.$useEmacsStyleLineStart = $formerLineStart;\n }\n\n $formerLongWords = e.session.$selectLongWords;\n e.session.$selectLongWords = true;\n $formerLineStart = e.session.$useEmacsStyleLineStart;\n e.session.$useEmacsStyleLineStart = true;\n\n if (!e.session.hasOwnProperty('$emacsMark'))\n e.session.$emacsMark = null;\n if (!e.session.hasOwnProperty('$emacsMarkRing'))\n e.session.$emacsMarkRing = [];\n};\n\nvar $resetMarkMode = function(e) {\n e.editor.session.$emacsMark = null;\n};\n\nvar keys = require(\"../lib/keys\").KEY_MODS;\nvar eMods = {C: \"ctrl\", S: \"shift\", M: \"alt\", CMD: \"command\"};\nvar combinations = [\"C-S-M-CMD\",\n \"S-M-CMD\", \"C-M-CMD\", \"C-S-CMD\", \"C-S-M\",\n \"M-CMD\", \"S-CMD\", \"S-M\", \"C-CMD\", \"C-M\", \"C-S\",\n \"CMD\", \"M\", \"S\", \"C\"];\ncombinations.forEach(function(c) {\n var hashId = 0;\n c.split(\"-\").forEach(function(c) {\n hashId = hashId | keys[eMods[c]];\n });\n eMods[hashId] = c.toLowerCase() + \"-\";\n});\n\nexports.handler.onCopy = function(e, editor) {\n if (editor.$handlesEmacsOnCopy) return;\n editor.$handlesEmacsOnCopy = true;\n exports.handler.commands.killRingSave.exec(editor);\n editor.$handlesEmacsOnCopy = false;\n};\n\nexports.handler.onPaste = function(e, editor) {\n editor.pushEmacsMark(editor.getCursorPosition());\n};\n\nexports.handler.bindKey = function(key, command) {\n if (typeof key == \"object\")\n key = key[this.platform];\n if (!key)\n return;\n\n var ckb = this.commandKeyBinding;\n key.split(\"|\").forEach(function(keyPart) {\n keyPart = keyPart.toLowerCase();\n ckb[keyPart] = command;\n var keyParts = keyPart.split(\" \").slice(0,-1);\n keyParts.reduce(function(keyMapKeys, keyPart, i) {\n var prefix = keyMapKeys[i-1] ? keyMapKeys[i-1] + ' ' : '';\n return keyMapKeys.concat([prefix + keyPart]);\n }, []).forEach(function(keyPart) {\n if (!ckb[keyPart]) ckb[keyPart] = \"null\";\n });\n }, this);\n};\n\nexports.handler.getStatusText = function(editor, data) {\n var str = \"\";\n if (data.count)\n str += data.count;\n if (data.keyChain)\n str += \" \" + data.keyChain;\n return str;\n};\n\nexports.handler.handleKeyboard = function(data, hashId, key, keyCode) {\n if (keyCode === -1) return undefined;\n\n var editor = data.editor;\n editor._signal(\"changeStatus\");\n if (hashId == -1) {\n editor.pushEmacsMark();\n if (data.count) {\n var str = new Array(data.count + 1).join(key);\n data.count = null;\n return {command: \"insertstring\", args: str};\n }\n }\n\n var modifier = eMods[hashId];\n if (modifier == \"c-\" || data.count) {\n var count = parseInt(key[key.length - 1]);\n if (typeof count === 'number' && !isNaN(count)) {\n data.count = Math.max(data.count, 0) || 0;\n data.count = 10 * data.count + count;\n return {command: \"null\"};\n }\n }\n if (modifier) key = modifier + key;\n if (data.keyChain) key = data.keyChain += \" \" + key;\n var command = this.commandKeyBinding[key];\n data.keyChain = command == \"null\" ? key : \"\";\n if (!command) return undefined;\n if (command === \"null\") return {command: \"null\"};\n\n if (command === \"universalArgument\") {\n data.count = -4;\n return {command: \"null\"};\n }\n var args;\n if (typeof command !== \"string\") {\n args = command.args;\n if (command.command) command = command.command;\n if (command === \"goorselect\") {\n command = editor.emacsMark() ? args[1] : args[0];\n args = null;\n }\n }\n\n if (typeof command === \"string\") {\n if (command === \"insertstring\" ||\n command === \"splitline\" ||\n command === \"togglecomment\") {\n editor.pushEmacsMark();\n }\n command = this.commands[command] || editor.commands.commands[command];\n if (!command) return undefined;\n }\n\n if (!command.readOnly && !command.isYank)\n data.lastCommand = null;\n\n if (!command.readOnly && editor.emacsMark())\n editor.setEmacsMark(null);\n \n if (data.count) {\n var count = data.count;\n data.count = 0;\n if (!command || !command.handlesCount) {\n return {\n args: args,\n command: {\n exec: function(editor, args) {\n for (var i = 0; i < count; i++)\n command.exec(editor, args);\n },\n multiSelectAction: command.multiSelectAction\n }\n };\n } else {\n if (!args) args = {};\n if (typeof args === 'object') args.count = count;\n }\n }\n\n return {command: command, args: args};\n};\n\nexports.emacsKeys = {\n \"Up|C-p\" : {command: \"goorselect\", args: [\"golineup\",\"selectup\"]},\n \"Down|C-n\" : {command: \"goorselect\", args: [\"golinedown\",\"selectdown\"]},\n \"Left|C-b\" : {command: \"goorselect\", args: [\"gotoleft\",\"selectleft\"]},\n \"Right|C-f\" : {command: \"goorselect\", args: [\"gotoright\",\"selectright\"]},\n \"C-Left|M-b\" : {command: \"goorselect\", args: [\"gotowordleft\",\"selectwordleft\"]},\n \"C-Right|M-f\" : {command: \"goorselect\", args: [\"gotowordright\",\"selectwordright\"]},\n \"Home|C-a\" : {command: \"goorselect\", args: [\"gotolinestart\",\"selecttolinestart\"]},\n \"End|C-e\" : {command: \"goorselect\", args: [\"gotolineend\",\"selecttolineend\"]},\n \"C-Home|S-M-,\": {command: \"goorselect\", args: [\"gotostart\",\"selecttostart\"]},\n \"C-End|S-M-.\" : {command: \"goorselect\", args: [\"gotoend\",\"selecttoend\"]},\n \"S-Up|S-C-p\" : \"selectup\",\n \"S-Down|S-C-n\" : \"selectdown\",\n \"S-Left|S-C-b\" : \"selectleft\",\n \"S-Right|S-C-f\" : \"selectright\",\n \"S-C-Left|S-M-b\" : \"selectwordleft\",\n \"S-C-Right|S-M-f\" : \"selectwordright\",\n \"S-Home|S-C-a\" : \"selecttolinestart\",\n \"S-End|S-C-e\" : \"selecttolineend\",\n \"S-C-Home\" : \"selecttostart\",\n \"S-C-End\" : \"selecttoend\",\n\n \"C-l\" : \"recenterTopBottom\",\n \"M-s\" : \"centerselection\",\n \"M-g\": \"gotoline\",\n \"C-x C-p\": \"selectall\",\n \"C-Down\": {command: \"goorselect\", args: [\"gotopagedown\",\"selectpagedown\"]},\n \"C-Up\": {command: \"goorselect\", args: [\"gotopageup\",\"selectpageup\"]},\n \"PageDown|C-v\": {command: \"goorselect\", args: [\"gotopagedown\",\"selectpagedown\"]},\n \"PageUp|M-v\": {command: \"goorselect\", args: [\"gotopageup\",\"selectpageup\"]},\n \"S-C-Down\": \"selectpagedown\",\n \"S-C-Up\": \"selectpageup\",\n\n \"C-s\": \"iSearch\",\n \"C-r\": \"iSearchBackwards\",\n\n \"M-C-s\": \"findnext\",\n \"M-C-r\": \"findprevious\",\n \"S-M-5\": \"replace\",\n \"Backspace\": \"backspace\",\n \"Delete|C-d\": \"del\",\n \"Return|C-m\": {command: \"insertstring\", args: \"\\n\"}, // \"newline\"\n \"C-o\": \"splitline\",\n\n \"M-d|C-Delete\": {command: \"killWord\", args: \"right\"},\n \"C-Backspace|M-Backspace|M-Delete\": {command: \"killWord\", args: \"left\"},\n \"C-k\": \"killLine\",\n\n \"C-y|S-Delete\": \"yank\",\n \"M-y\": \"yankRotate\",\n \"C-g\": \"keyboardQuit\",\n\n \"C-w|C-S-W\": \"killRegion\",\n \"M-w\": \"killRingSave\",\n \"C-Space\": \"setMark\",\n \"C-x C-x\": \"exchangePointAndMark\",\n\n \"C-t\": \"transposeletters\",\n \"M-u\": \"touppercase\", // Doesn't work\n \"M-l\": \"tolowercase\",\n \"M-/\": \"autocomplete\", // Doesn't work\n \"C-u\": \"universalArgument\",\n\n \"M-;\": \"togglecomment\",\n\n \"C-/|C-x u|S-C--|C-z\": \"undo\",\n \"S-C-/|S-C-x u|C--|S-C-z\": \"redo\", // infinite undo?\n \"C-x r\": \"selectRectangularRegion\",\n \"M-x\": {command: \"focusCommandLine\", args: \"M-x \"}\n};\n\n\nexports.handler.bindKeys(exports.emacsKeys);\n\nexports.handler.addCommands({\n recenterTopBottom: function(editor) {\n var renderer = editor.renderer;\n var pos = renderer.$cursorLayer.getPixelPosition();\n var h = renderer.$size.scrollerHeight - renderer.lineHeight;\n var scrollTop = renderer.scrollTop;\n if (Math.abs(pos.top - scrollTop) < 2) {\n scrollTop = pos.top - h;\n } else if (Math.abs(pos.top - scrollTop - h * 0.5) < 2) {\n scrollTop = pos.top;\n } else {\n scrollTop = pos.top - h * 0.5;\n }\n editor.session.setScrollTop(scrollTop);\n },\n selectRectangularRegion: function(editor) {\n editor.multiSelect.toggleBlockSelection();\n },\n setMark: {\n exec: function(editor, args) {\n\n if (args && args.count) {\n if (editor.inMultiSelectMode) editor.forEachSelection(moveToMark);\n else moveToMark();\n moveToMark();\n return;\n }\n\n var mark = editor.emacsMark(),\n ranges = editor.selection.getAllRanges(),\n rangePositions = ranges.map(function(r) { return {row: r.start.row, column: r.start.column}; }),\n transientMarkModeActive = true,\n hasNoSelection = ranges.every(function(range) { return range.isEmpty(); });\n if (transientMarkModeActive && (mark || !hasNoSelection)) {\n if (editor.inMultiSelectMode) editor.forEachSelection({exec: editor.clearSelection.bind(editor)});\n else editor.clearSelection();\n if (mark) editor.pushEmacsMark(null);\n return;\n }\n\n if (!mark) {\n rangePositions.forEach(function(pos) { editor.pushEmacsMark(pos); });\n editor.setEmacsMark(rangePositions[rangePositions.length-1]);\n return;\n }\n\n function moveToMark() {\n var mark = editor.popEmacsMark();\n mark && editor.moveCursorToPosition(mark);\n }\n\n },\n readOnly: true,\n handlesCount: true\n },\n exchangePointAndMark: {\n exec: function exchangePointAndMark$exec(editor, args) {\n var sel = editor.selection;\n if (!args.count && !sel.isEmpty()) { // just invert selection\n sel.setSelectionRange(sel.getRange(), !sel.isBackwards());\n return;\n }\n\n if (args.count) { // replace mark and point\n var pos = {row: sel.lead.row, column: sel.lead.column};\n sel.clearSelection();\n sel.moveCursorToPosition(editor.emacsMarkForSelection(pos));\n } else { // create selection to last mark\n sel.selectToPosition(editor.emacsMarkForSelection());\n }\n },\n readOnly: true,\n handlesCount: true,\n multiSelectAction: \"forEach\"\n },\n killWord: {\n exec: function(editor, dir) {\n editor.clearSelection();\n if (dir == \"left\")\n editor.selection.selectWordLeft();\n else\n editor.selection.selectWordRight();\n\n var range = editor.getSelectionRange();\n var text = editor.session.getTextRange(range);\n exports.killRing.add(text);\n\n editor.session.remove(range);\n editor.clearSelection();\n },\n multiSelectAction: \"forEach\"\n },\n killLine: function(editor) {\n editor.pushEmacsMark(null);\n editor.clearSelection();\n var range = editor.getSelectionRange();\n var line = editor.session.getLine(range.start.row);\n range.end.column = line.length;\n line = line.substr(range.start.column);\n \n var foldLine = editor.session.getFoldLine(range.start.row);\n if (foldLine && range.end.row != foldLine.end.row) {\n range.end.row = foldLine.end.row;\n line = \"x\";\n }\n if (/^\\s*$/.test(line)) {\n range.end.row++;\n line = editor.session.getLine(range.end.row);\n range.end.column = /^\\s*$/.test(line) ? line.length : 0;\n }\n var text = editor.session.getTextRange(range);\n if (editor.prevOp.command == this)\n exports.killRing.append(text);\n else\n exports.killRing.add(text);\n\n editor.session.remove(range);\n editor.clearSelection();\n },\n yank: function(editor) {\n editor.onPaste(exports.killRing.get() || '');\n editor.keyBinding.$data.lastCommand = \"yank\";\n },\n yankRotate: function(editor) {\n if (editor.keyBinding.$data.lastCommand != \"yank\")\n return;\n editor.undo();\n editor.session.$emacsMarkRing.pop(); // also undo recording mark\n editor.onPaste(exports.killRing.rotate());\n editor.keyBinding.$data.lastCommand = \"yank\";\n },\n killRegion: {\n exec: function(editor) {\n exports.killRing.add(editor.getCopyText());\n editor.commands.byName.cut.exec(editor);\n editor.setEmacsMark(null);\n },\n readOnly: true,\n multiSelectAction: \"forEach\"\n },\n killRingSave: {\n exec: function(editor) {\n\n editor.$handlesEmacsOnCopy = true;\n var marks = editor.session.$emacsMarkRing.slice(),\n deselectedMarks = [];\n exports.killRing.add(editor.getCopyText());\n\n setTimeout(function() {\n function deselect() {\n var sel = editor.selection, range = sel.getRange(),\n pos = sel.isBackwards() ? range.end : range.start;\n deselectedMarks.push({row: pos.row, column: pos.column});\n sel.clearSelection();\n }\n editor.$handlesEmacsOnCopy = false;\n if (editor.inMultiSelectMode) editor.forEachSelection({exec: deselect});\n else deselect();\n editor.session.$emacsMarkRing = marks.concat(deselectedMarks.reverse());\n }, 0);\n },\n readOnly: true\n },\n keyboardQuit: function(editor) {\n editor.selection.clearSelection();\n editor.setEmacsMark(null);\n editor.keyBinding.$data.count = null;\n },\n focusCommandLine: function(editor, arg) {\n if (editor.showCommandLine)\n editor.showCommandLine(arg);\n }\n});\n\nexports.handler.addCommands(iSearchCommandModule.iSearchStartCommands);\n\nvar commands = exports.handler.commands;\ncommands.yank.isYank = true;\ncommands.yankRotate.isYank = true;\n\nexports.killRing = {\n $data: [],\n add: function(str) {\n str && this.$data.push(str);\n if (this.$data.length > 30)\n this.$data.shift();\n },\n append: function(str) {\n var idx = this.$data.length - 1;\n var text = this.$data[idx] || \"\";\n if (str) text += str;\n if (text) this.$data[idx] = text;\n },\n get: function(n) {\n n = n || 1;\n return this.$data.slice(this.$data.length-n, this.$data.length).reverse().join('\\n');\n },\n pop: function() {\n if (this.$data.length > 1)\n this.$data.pop();\n return this.get();\n },\n rotate: function() {\n this.$data.unshift(this.$data.pop());\n return this.get();\n }\n};\n\n}); (function() {\n ace.require([\"ace/keyboard/emacs\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file3n := &embedded.EmbeddedFile{ Filename: "5540bb93f39dcb670a0f9b4e4b793d02.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/jack_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar JackHighlightRules = function() {\n this.$rules = {\n \"start\" : [\n {\n token : \"string\",\n regex : '\"',\n next : \"string2\"\n }, {\n token : \"string\",\n regex : \"'\",\n next : \"string1\"\n }, {\n token : \"constant.numeric\", // hex\n regex: \"-?0[xX][0-9a-fA-F]+\\\\b\"\n }, {\n token : \"constant.numeric\", // float\n regex : \"(?:0|[-+]?[1-9][0-9]*)\\\\b\"\n }, {\n token : \"constant.binary\",\n regex : \"<[0-9A-Fa-f][0-9A-Fa-f](\\\\s+[0-9A-Fa-f][0-9A-Fa-f])*>\"\n }, {\n token : \"constant.language.boolean\",\n regex : \"(?:true|false)\\\\b\"\n }, {\n token : \"constant.language.null\",\n regex : \"null\\\\b\"\n }, {\n token : \"storage.type\",\n regex: \"(?:Integer|Boolean|Null|String|Buffer|Tuple|List|Object|Function|Coroutine|Form)\\\\b\"\n }, {\n token : \"keyword\",\n regex : \"(?:return|abort|vars|for|delete|in|is|escape|exec|split|and|if|elif|else|while)\\\\b\"\n }, {\n token : \"language.builtin\",\n regex : \"(?:lines|source|parse|read-stream|interval|substr|parseint|write|print|range|rand|inspect|bind|i-values|i-pairs|i-map|i-filter|i-chunk|i-all\\\\?|i-any\\\\?|i-collect|i-zip|i-merge|i-each)\\\\b\"\n }, {\n token : \"comment\",\n regex : \"--.*$\"\n }, {\n token : \"paren.lparen\",\n regex : \"[[({]\"\n }, {\n token : \"paren.rparen\",\n regex : \"[\\\\])}]\"\n }, {\n token : \"storage.form\",\n regex : \"@[a-z]+\"\n }, {\n token : \"constant.other.symbol\",\n regex : ':+[a-zA-Z_]([-]?[a-zA-Z0-9_])*[?!]?'\n }, {\n token : \"variable\",\n regex : '[a-zA-Z_]([-]?[a-zA-Z0-9_])*[?!]?'\n }, {\n token : \"keyword.operator\",\n regex : \"\\\\|\\\\||\\\\^\\\\^|&&|!=|==|<=|<|>=|>|\\\\+|-|\\\\*|\\\\/|\\\\^|\\\\%|\\\\#|\\\\!\"\n }, {\n token : \"text\",\n regex : \"\\\\s+\"\n }\n ],\n \"string1\" : [\n {\n token : \"constant.language.escape\",\n regex : /\\\\(?:x[0-9a-fA-F]{2}|u[0-9a-fA-F]{4}|['\"\\\\\\/bfnrt])/\n }, {\n token : \"string\",\n regex : \"[^'\\\\\\\\]+\"\n }, {\n token : \"string\",\n regex : \"'\",\n next : \"start\"\n }, {\n token : \"string\",\n regex : \"\",\n next : \"start\"\n }\n ],\n \"string2\" : [\n {\n token : \"constant.language.escape\",\n regex : /\\\\(?:x[0-9a-fA-F]{2}|u[0-9a-fA-F]{4}|['\"\\\\\\/bfnrt])/\n }, {\n token : \"string\",\n regex : '[^\"\\\\\\\\]+'\n }, {\n token : \"string\",\n regex : '\"',\n next : \"start\"\n }, {\n token : \"string\",\n regex : \"\",\n next : \"start\"\n }\n ]\n };\n \n};\n\noop.inherits(JackHighlightRules, TextHighlightRules);\n\nexports.JackHighlightRules = JackHighlightRules;\n});\n\nace.define(\"ace/mode/matching_brace_outdent\",[\"require\",\"exports\",\"module\",\"ace/range\"], function(require, exports, module) {\n\"use strict\";\n\nvar Range = require(\"../range\").Range;\n\nvar MatchingBraceOutdent = function() {};\n\n(function() {\n\n this.checkOutdent = function(line, input) {\n if (! /^\\s+$/.test(line))\n return false;\n\n return /^\\s*\\}/.test(input);\n };\n\n this.autoOutdent = function(doc, row) {\n var line = doc.getLine(row);\n var match = line.match(/^(\\s*\\})/);\n\n if (!match) return 0;\n\n var column = match[1].length;\n var openBracePos = doc.findMatchingBracket({row: row, column: column});\n\n if (!openBracePos || openBracePos.row == row) return 0;\n\n var indent = this.$getIndent(doc.getLine(openBracePos.row));\n doc.replace(new Range(row, 0, row, column-1), indent);\n };\n\n this.$getIndent = function(line) {\n return line.match(/^\\s*/)[0];\n };\n\n}).call(MatchingBraceOutdent.prototype);\n\nexports.MatchingBraceOutdent = MatchingBraceOutdent;\n});\n\nace.define(\"ace/mode/folding/cstyle\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/range\",\"ace/mode/folding/fold_mode\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Range = require(\"../../range\").Range;\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function(commentRegex) {\n if (commentRegex) {\n this.foldingStartMarker = new RegExp(\n this.foldingStartMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.start)\n );\n this.foldingStopMarker = new RegExp(\n this.foldingStopMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.end)\n );\n }\n};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n \n this.foldingStartMarker = /([\\{\\[\\(])[^\\}\\]\\)]*$|^\\s*(\\/\\*)/;\n this.foldingStopMarker = /^[^\\[\\{\\(]*([\\}\\]\\)])|^[\\s\\*]*(\\*\\/)/;\n this.singleLineBlockCommentRe= /^\\s*(\\/\\*).*\\*\\/\\s*$/;\n this.tripleStarBlockCommentRe = /^\\s*(\\/\\*\\*\\*).*\\*\\/\\s*$/;\n this.startRegionRe = /^\\s*(\\/\\*|\\/\\/)#?region\\b/;\n this._getFoldWidgetBase = this.getFoldWidget;\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n \n if (this.singleLineBlockCommentRe.test(line)) {\n if (!this.startRegionRe.test(line) && !this.tripleStarBlockCommentRe.test(line))\n return \"\";\n }\n \n var fw = this._getFoldWidgetBase(session, foldStyle, row);\n \n if (!fw && this.startRegionRe.test(line))\n return \"start\"; // lineCommentRegionStart\n \n return fw;\n };\n\n this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {\n var line = session.getLine(row);\n \n if (this.startRegionRe.test(line))\n return this.getCommentRegionBlock(session, line, row);\n \n var match = line.match(this.foldingStartMarker);\n if (match) {\n var i = match.index;\n\n if (match[1])\n return this.openingBracketBlock(session, match[1], row, i);\n \n var range = session.getCommentFoldRange(row, i + match[0].length, 1);\n \n if (range && !range.isMultiLine()) {\n if (forceMultiline) {\n range = this.getSectionRange(session, row);\n } else if (foldStyle != \"all\")\n range = null;\n }\n \n return range;\n }\n\n if (foldStyle === \"markbegin\")\n return;\n\n var match = line.match(this.foldingStopMarker);\n if (match) {\n var i = match.index + match[0].length;\n\n if (match[1])\n return this.closingBracketBlock(session, match[1], row, i);\n\n return session.getCommentFoldRange(row, i, -1);\n }\n };\n \n this.getSectionRange = function(session, row) {\n var line = session.getLine(row);\n var startIndent = line.search(/\\S/);\n var startRow = row;\n var startColumn = line.length;\n row = row + 1;\n var endRow = row;\n var maxRow = session.getLength();\n while (++row < maxRow) {\n line = session.getLine(row);\n var indent = line.search(/\\S/);\n if (indent === -1)\n continue;\n if (startIndent > indent)\n break;\n var subRange = this.getFoldWidgetRange(session, \"all\", row);\n \n if (subRange) {\n if (subRange.start.row <= startRow) {\n break;\n } else if (subRange.isMultiLine()) {\n row = subRange.end.row;\n } else if (startIndent == indent) {\n break;\n }\n }\n endRow = row;\n }\n \n return new Range(startRow, startColumn, endRow, session.getLine(endRow).length);\n };\n this.getCommentRegionBlock = function(session, line, row) {\n var startColumn = line.search(/\\s*$/);\n var maxRow = session.getLength();\n var startRow = row;\n \n var re = /^\\s*(?:\\/\\*|\\/\\/|--)#?(end)?region\\b/;\n var depth = 1;\n while (++row < maxRow) {\n line = session.getLine(row);\n var m = re.exec(line);\n if (!m) continue;\n if (m[1]) depth--;\n else depth++;\n\n if (!depth) break;\n }\n\n var endRow = row;\n if (endRow > startRow) {\n return new Range(startRow, startColumn, endRow, line.length);\n }\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/jack\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/jack_highlight_rules\",\"ace/mode/matching_brace_outdent\",\"ace/mode/behaviour/cstyle\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar HighlightRules = require(\"./jack_highlight_rules\").JackHighlightRules;\nvar MatchingBraceOutdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\nvar CstyleBehaviour = require(\"./behaviour/cstyle\").CstyleBehaviour;\nvar CStyleFoldMode = require(\"./folding/cstyle\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = HighlightRules;\n this.$outdent = new MatchingBraceOutdent();\n this.$behaviour = new CstyleBehaviour();\n this.foldingRules = new CStyleFoldMode();\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.lineCommentStart = \"--\";\n\n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n\n if (state == \"start\") {\n var match = line.match(/^.*[\\{\\(\\[]\\s*$/);\n if (match) {\n indent += tab;\n }\n }\n\n return indent;\n };\n\n this.checkOutdent = function(state, line, input) {\n return this.$outdent.checkOutdent(line, input);\n };\n\n this.autoOutdent = function(state, doc, row) {\n this.$outdent.autoOutdent(doc, row);\n };\n\n\n this.$id = \"ace/mode/jack\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/jack\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file3o := &embedded.EmbeddedFile{ Filename: "5639547cd21c08cbc1681d6328459f73.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("\"no use strict\";\n!(function(window) {\nif (typeof window.window != \"undefined\" && window.document)\n return;\nif (window.require && window.define)\n return;\n\nif (!window.console) {\n window.console = function() {\n var msgs = Array.prototype.slice.call(arguments, 0);\n postMessage({type: \"log\", data: msgs});\n };\n window.console.error =\n window.console.warn = \n window.console.log =\n window.console.trace = window.console;\n}\nwindow.window = window;\nwindow.ace = window;\n\nwindow.onerror = function(message, file, line, col, err) {\n postMessage({type: \"error\", data: {\n message: message,\n data: err.data,\n file: file,\n line: line, \n col: col,\n stack: err.stack\n }});\n};\n\nwindow.normalizeModule = function(parentId, moduleName) {\n // normalize plugin requires\n if (moduleName.indexOf(\"!\") !== -1) {\n var chunks = moduleName.split(\"!\");\n return window.normalizeModule(parentId, chunks[0]) + \"!\" + window.normalizeModule(parentId, chunks[1]);\n }\n // normalize relative requires\n if (moduleName.charAt(0) == \".\") {\n var base = parentId.split(\"/\").slice(0, -1).join(\"/\");\n moduleName = (base ? base + \"/\" : \"\") + moduleName;\n \n while (moduleName.indexOf(\".\") !== -1 && previous != moduleName) {\n var previous = moduleName;\n moduleName = moduleName.replace(/^\\.\\//, \"\").replace(/\\/\\.\\//, \"/\").replace(/[^\\/]+\\/\\.\\.\\//, \"\");\n }\n }\n \n return moduleName;\n};\n\nwindow.require = function require(parentId, id) {\n if (!id) {\n id = parentId;\n parentId = null;\n }\n if (!id.charAt)\n throw new Error(\"worker.js require() accepts only (parentId, id) as arguments\");\n\n id = window.normalizeModule(parentId, id);\n\n var module = window.require.modules[id];\n if (module) {\n if (!module.initialized) {\n module.initialized = true;\n module.exports = module.factory().exports;\n }\n return module.exports;\n }\n \n if (!window.require.tlns)\n return console.log(\"unable to load \" + id);\n \n var path = resolveModuleId(id, window.require.tlns);\n if (path.slice(-3) != \".js\") path += \".js\";\n \n window.require.id = id;\n window.require.modules[id] = {}; // prevent infinite loop on broken modules\n importScripts(path);\n return window.require(parentId, id);\n};\nfunction resolveModuleId(id, paths) {\n var testPath = id, tail = \"\";\n while (testPath) {\n var alias = paths[testPath];\n if (typeof alias == \"string\") {\n return alias + tail;\n } else if (alias) {\n return alias.location.replace(/\\/*$/, \"/\") + (tail || alias.main || alias.name);\n } else if (alias === false) {\n return \"\";\n }\n var i = testPath.lastIndexOf(\"/\");\n if (i === -1) break;\n tail = testPath.substr(i) + tail;\n testPath = testPath.slice(0, i);\n }\n return id;\n}\nwindow.require.modules = {};\nwindow.require.tlns = {};\n\nwindow.define = function(id, deps, factory) {\n if (arguments.length == 2) {\n factory = deps;\n if (typeof id != \"string\") {\n deps = id;\n id = window.require.id;\n }\n } else if (arguments.length == 1) {\n factory = id;\n deps = [];\n id = window.require.id;\n }\n \n if (typeof factory != \"function\") {\n window.require.modules[id] = {\n exports: factory,\n initialized: true\n };\n return;\n }\n\n if (!deps.length)\n // If there is no dependencies, we inject \"require\", \"exports\" and\n // \"module\" as dependencies, to provide CommonJS compatibility.\n deps = [\"require\", \"exports\", \"module\"];\n\n var req = function(childId) {\n return window.require(id, childId);\n };\n\n window.require.modules[id] = {\n exports: {},\n factory: function() {\n var module = this;\n var returnExports = factory.apply(this, deps.slice(0, factory.length).map(function(dep) {\n switch (dep) {\n // Because \"require\", \"exports\" and \"module\" aren't actual\n // dependencies, we must handle them seperately.\n case \"require\": return req;\n case \"exports\": return module.exports;\n case \"module\": return module;\n // But for all other dependencies, we can just go ahead and\n // require them.\n default: return req(dep);\n }\n }));\n if (returnExports)\n module.exports = returnExports;\n return module;\n }\n };\n};\nwindow.define.amd = {};\nrequire.tlns = {};\nwindow.initBaseUrls = function initBaseUrls(topLevelNamespaces) {\n for (var i in topLevelNamespaces)\n require.tlns[i] = topLevelNamespaces[i];\n};\n\nwindow.initSender = function initSender() {\n\n var EventEmitter = window.require(\"ace/lib/event_emitter\").EventEmitter;\n var oop = window.require(\"ace/lib/oop\");\n \n var Sender = function() {};\n \n (function() {\n \n oop.implement(this, EventEmitter);\n \n this.callback = function(data, callbackId) {\n postMessage({\n type: \"call\",\n id: callbackId,\n data: data\n });\n };\n \n this.emit = function(name, data) {\n postMessage({\n type: \"event\",\n name: name,\n data: data\n });\n };\n \n }).call(Sender.prototype);\n \n return new Sender();\n};\n\nvar main = window.main = null;\nvar sender = window.sender = null;\n\nwindow.onmessage = function(e) {\n var msg = e.data;\n if (msg.event && sender) {\n sender._signal(msg.event, msg.data);\n }\n else if (msg.command) {\n if (main[msg.command])\n main[msg.command].apply(main, msg.args);\n else if (window[msg.command])\n window[msg.command].apply(window, msg.args);\n else\n throw new Error(\"Unknown command:\" + msg.command);\n }\n else if (msg.init) {\n window.initBaseUrls(msg.tlns);\n require(\"ace/lib/es5-shim\");\n sender = window.sender = window.initSender();\n var clazz = require(msg.module)[msg.classname];\n main = window.main = new clazz(sender);\n }\n};\n})(this);\n\nace.define(\"ace/lib/oop\",[], function(require, exports, module) {\n\"use strict\";\n\nexports.inherits = function(ctor, superCtor) {\n ctor.super_ = superCtor;\n ctor.prototype = Object.create(superCtor.prototype, {\n constructor: {\n value: ctor,\n enumerable: false,\n writable: true,\n configurable: true\n }\n });\n};\n\nexports.mixin = function(obj, mixin) {\n for (var key in mixin) {\n obj[key] = mixin[key];\n }\n return obj;\n};\n\nexports.implement = function(proto, mixin) {\n exports.mixin(proto, mixin);\n};\n\n});\n\nace.define(\"ace/range\",[], function(require, exports, module) {\n\"use strict\";\nvar comparePoints = function(p1, p2) {\n return p1.row - p2.row || p1.column - p2.column;\n};\nvar Range = function(startRow, startColumn, endRow, endColumn) {\n this.start = {\n row: startRow,\n column: startColumn\n };\n\n this.end = {\n row: endRow,\n column: endColumn\n };\n};\n\n(function() {\n this.isEqual = function(range) {\n return this.start.row === range.start.row &&\n this.end.row === range.end.row &&\n this.start.column === range.start.column &&\n this.end.column === range.end.column;\n };\n this.toString = function() {\n return (\"Range: [\" + this.start.row + \"/\" + this.start.column +\n \"] -> [\" + this.end.row + \"/\" + this.end.column + \"]\");\n };\n\n this.contains = function(row, column) {\n return this.compare(row, column) == 0;\n };\n this.compareRange = function(range) {\n var cmp,\n end = range.end,\n start = range.start;\n\n cmp = this.compare(end.row, end.column);\n if (cmp == 1) {\n cmp = this.compare(start.row, start.column);\n if (cmp == 1) {\n return 2;\n } else if (cmp == 0) {\n return 1;\n } else {\n return 0;\n }\n } else if (cmp == -1) {\n return -2;\n } else {\n cmp = this.compare(start.row, start.column);\n if (cmp == -1) {\n return -1;\n } else if (cmp == 1) {\n return 42;\n } else {\n return 0;\n }\n }\n };\n this.comparePoint = function(p) {\n return this.compare(p.row, p.column);\n };\n this.containsRange = function(range) {\n return this.comparePoint(range.start) == 0 && this.comparePoint(range.end) == 0;\n };\n this.intersects = function(range) {\n var cmp = this.compareRange(range);\n return (cmp == -1 || cmp == 0 || cmp == 1);\n };\n this.isEnd = function(row, column) {\n return this.end.row == row && this.end.column == column;\n };\n this.isStart = function(row, column) {\n return this.start.row == row && this.start.column == column;\n };\n this.setStart = function(row, column) {\n if (typeof row == \"object\") {\n this.start.column = row.column;\n this.start.row = row.row;\n } else {\n this.start.row = row;\n this.start.column = column;\n }\n };\n this.setEnd = function(row, column) {\n if (typeof row == \"object\") {\n this.end.column = row.column;\n this.end.row = row.row;\n } else {\n this.end.row = row;\n this.end.column = column;\n }\n };\n this.inside = function(row, column) {\n if (this.compare(row, column) == 0) {\n if (this.isEnd(row, column) || this.isStart(row, column)) {\n return false;\n } else {\n return true;\n }\n }\n return false;\n };\n this.insideStart = function(row, column) {\n if (this.compare(row, column) == 0) {\n if (this.isEnd(row, column)) {\n return false;\n } else {\n return true;\n }\n }\n return false;\n };\n this.insideEnd = function(row, column) {\n if (this.compare(row, column) == 0) {\n if (this.isStart(row, column)) {\n return false;\n } else {\n return true;\n }\n }\n return false;\n };\n this.compare = function(row, column) {\n if (!this.isMultiLine()) {\n if (row === this.start.row) {\n return column < this.start.column ? -1 : (column > this.end.column ? 1 : 0);\n }\n }\n\n if (row < this.start.row)\n return -1;\n\n if (row > this.end.row)\n return 1;\n\n if (this.start.row === row)\n return column >= this.start.column ? 0 : -1;\n\n if (this.end.row === row)\n return column <= this.end.column ? 0 : 1;\n\n return 0;\n };\n this.compareStart = function(row, column) {\n if (this.start.row == row && this.start.column == column) {\n return -1;\n } else {\n return this.compare(row, column);\n }\n };\n this.compareEnd = function(row, column) {\n if (this.end.row == row && this.end.column == column) {\n return 1;\n } else {\n return this.compare(row, column);\n }\n };\n this.compareInside = function(row, column) {\n if (this.end.row == row && this.end.column == column) {\n return 1;\n } else if (this.start.row == row && this.start.column == column) {\n return -1;\n } else {\n return this.compare(row, column);\n }\n };\n this.clipRows = function(firstRow, lastRow) {\n if (this.end.row > lastRow)\n var end = {row: lastRow + 1, column: 0};\n else if (this.end.row < firstRow)\n var end = {row: firstRow, column: 0};\n\n if (this.start.row > lastRow)\n var start = {row: lastRow + 1, column: 0};\n else if (this.start.row < firstRow)\n var start = {row: firstRow, column: 0};\n\n return Range.fromPoints(start || this.start, end || this.end);\n };\n this.extend = function(row, column) {\n var cmp = this.compare(row, column);\n\n if (cmp == 0)\n return this;\n else if (cmp == -1)\n var start = {row: row, column: column};\n else\n var end = {row: row, column: column};\n\n return Range.fromPoints(start || this.start, end || this.end);\n };\n\n this.isEmpty = function() {\n return (this.start.row === this.end.row && this.start.column === this.end.column);\n };\n this.isMultiLine = function() {\n return (this.start.row !== this.end.row);\n };\n this.clone = function() {\n return Range.fromPoints(this.start, this.end);\n };\n this.collapseRows = function() {\n if (this.end.column == 0)\n return new Range(this.start.row, 0, Math.max(this.start.row, this.end.row-1), 0);\n else\n return new Range(this.start.row, 0, this.end.row, 0);\n };\n this.toScreenRange = function(session) {\n var screenPosStart = session.documentToScreenPosition(this.start);\n var screenPosEnd = session.documentToScreenPosition(this.end);\n\n return new Range(\n screenPosStart.row, screenPosStart.column,\n screenPosEnd.row, screenPosEnd.column\n );\n };\n this.moveBy = function(row, column) {\n this.start.row += row;\n this.start.column += column;\n this.end.row += row;\n this.end.column += column;\n };\n\n}).call(Range.prototype);\nRange.fromPoints = function(start, end) {\n return new Range(start.row, start.column, end.row, end.column);\n};\nRange.comparePoints = comparePoints;\n\nRange.comparePoints = function(p1, p2) {\n return p1.row - p2.row || p1.column - p2.column;\n};\n\n\nexports.Range = Range;\n});\n\nace.define(\"ace/apply_delta\",[], function(require, exports, module) {\n\"use strict\";\n\nfunction throwDeltaError(delta, errorText){\n console.log(\"Invalid Delta:\", delta);\n throw \"Invalid Delta: \" + errorText;\n}\n\nfunction positionInDocument(docLines, position) {\n return position.row >= 0 && position.row < docLines.length &&\n position.column >= 0 && position.column <= docLines[position.row].length;\n}\n\nfunction validateDelta(docLines, delta) {\n if (delta.action != \"insert\" && delta.action != \"remove\")\n throwDeltaError(delta, \"delta.action must be 'insert' or 'remove'\");\n if (!(delta.lines instanceof Array))\n throwDeltaError(delta, \"delta.lines must be an Array\");\n if (!delta.start || !delta.end)\n throwDeltaError(delta, \"delta.start/end must be an present\");\n var start = delta.start;\n if (!positionInDocument(docLines, delta.start))\n throwDeltaError(delta, \"delta.start must be contained in document\");\n var end = delta.end;\n if (delta.action == \"remove\" && !positionInDocument(docLines, end))\n throwDeltaError(delta, \"delta.end must contained in document for 'remove' actions\");\n var numRangeRows = end.row - start.row;\n var numRangeLastLineChars = (end.column - (numRangeRows == 0 ? start.column : 0));\n if (numRangeRows != delta.lines.length - 1 || delta.lines[numRangeRows].length != numRangeLastLineChars)\n throwDeltaError(delta, \"delta.range must match delta lines\");\n}\n\nexports.applyDelta = function(docLines, delta, doNotValidate) {\n \n var row = delta.start.row;\n var startColumn = delta.start.column;\n var line = docLines[row] || \"\";\n switch (delta.action) {\n case \"insert\":\n var lines = delta.lines;\n if (lines.length === 1) {\n docLines[row] = line.substring(0, startColumn) + delta.lines[0] + line.substring(startColumn);\n } else {\n var args = [row, 1].concat(delta.lines);\n docLines.splice.apply(docLines, args);\n docLines[row] = line.substring(0, startColumn) + docLines[row];\n docLines[row + delta.lines.length - 1] += line.substring(startColumn);\n }\n break;\n case \"remove\":\n var endColumn = delta.end.column;\n var endRow = delta.end.row;\n if (row === endRow) {\n docLines[row] = line.substring(0, startColumn) + line.substring(endColumn);\n } else {\n docLines.splice(\n row, endRow - row + 1,\n line.substring(0, startColumn) + docLines[endRow].substring(endColumn)\n );\n }\n break;\n }\n};\n});\n\nace.define(\"ace/lib/event_emitter\",[], function(require, exports, module) {\n\"use strict\";\n\nvar EventEmitter = {};\nvar stopPropagation = function() { this.propagationStopped = true; };\nvar preventDefault = function() { this.defaultPrevented = true; };\n\nEventEmitter._emit =\nEventEmitter._dispatchEvent = function(eventName, e) {\n this._eventRegistry || (this._eventRegistry = {});\n this._defaultHandlers || (this._defaultHandlers = {});\n\n var listeners = this._eventRegistry[eventName] || [];\n var defaultHandler = this._defaultHandlers[eventName];\n if (!listeners.length && !defaultHandler)\n return;\n\n if (typeof e != \"object\" || !e)\n e = {};\n\n if (!e.type)\n e.type = eventName;\n if (!e.stopPropagation)\n e.stopPropagation = stopPropagation;\n if (!e.preventDefault)\n e.preventDefault = preventDefault;\n\n listeners = listeners.slice();\n for (var i=0; i this.row)\n return;\n \n var point = $getTransformedPoint(delta, {row: this.row, column: this.column}, this.$insertRight);\n this.setPosition(point.row, point.column, true);\n };\n \n function $pointsInOrder(point1, point2, equalPointsInOrder) {\n var bColIsAfter = equalPointsInOrder ? point1.column <= point2.column : point1.column < point2.column;\n return (point1.row < point2.row) || (point1.row == point2.row && bColIsAfter);\n }\n \n function $getTransformedPoint(delta, point, moveIfEqual) {\n var deltaIsInsert = delta.action == \"insert\";\n var deltaRowShift = (deltaIsInsert ? 1 : -1) * (delta.end.row - delta.start.row);\n var deltaColShift = (deltaIsInsert ? 1 : -1) * (delta.end.column - delta.start.column);\n var deltaStart = delta.start;\n var deltaEnd = deltaIsInsert ? deltaStart : delta.end; // Collapse insert range.\n if ($pointsInOrder(point, deltaStart, moveIfEqual)) {\n return {\n row: point.row,\n column: point.column\n };\n }\n if ($pointsInOrder(deltaEnd, point, !moveIfEqual)) {\n return {\n row: point.row + deltaRowShift,\n column: point.column + (point.row == deltaEnd.row ? deltaColShift : 0)\n };\n }\n \n return {\n row: deltaStart.row,\n column: deltaStart.column\n };\n }\n this.setPosition = function(row, column, noClip) {\n var pos;\n if (noClip) {\n pos = {\n row: row,\n column: column\n };\n } else {\n pos = this.$clipPositionToDocument(row, column);\n }\n\n if (this.row == pos.row && this.column == pos.column)\n return;\n\n var old = {\n row: this.row,\n column: this.column\n };\n\n this.row = pos.row;\n this.column = pos.column;\n this._signal(\"change\", {\n old: old,\n value: pos\n });\n };\n this.detach = function() {\n this.document.removeEventListener(\"change\", this.$onChange);\n };\n this.attach = function(doc) {\n this.document = doc || this.document;\n this.document.on(\"change\", this.$onChange);\n };\n this.$clipPositionToDocument = function(row, column) {\n var pos = {};\n\n if (row >= this.document.getLength()) {\n pos.row = Math.max(0, this.document.getLength() - 1);\n pos.column = this.document.getLine(pos.row).length;\n }\n else if (row < 0) {\n pos.row = 0;\n pos.column = 0;\n }\n else {\n pos.row = row;\n pos.column = Math.min(this.document.getLine(pos.row).length, Math.max(0, column));\n }\n\n if (column < 0)\n pos.column = 0;\n\n return pos;\n };\n\n}).call(Anchor.prototype);\n\n});\n\nace.define(\"ace/document\",[], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"./lib/oop\");\nvar applyDelta = require(\"./apply_delta\").applyDelta;\nvar EventEmitter = require(\"./lib/event_emitter\").EventEmitter;\nvar Range = require(\"./range\").Range;\nvar Anchor = require(\"./anchor\").Anchor;\n\nvar Document = function(textOrLines) {\n this.$lines = [\"\"];\n if (textOrLines.length === 0) {\n this.$lines = [\"\"];\n } else if (Array.isArray(textOrLines)) {\n this.insertMergedLines({row: 0, column: 0}, textOrLines);\n } else {\n this.insert({row: 0, column:0}, textOrLines);\n }\n};\n\n(function() {\n\n oop.implement(this, EventEmitter);\n this.setValue = function(text) {\n var len = this.getLength() - 1;\n this.remove(new Range(0, 0, len, this.getLine(len).length));\n this.insert({row: 0, column: 0}, text);\n };\n this.getValue = function() {\n return this.getAllLines().join(this.getNewLineCharacter());\n };\n this.createAnchor = function(row, column) {\n return new Anchor(this, row, column);\n };\n if (\"aaa\".split(/a/).length === 0) {\n this.$split = function(text) {\n return text.replace(/\\r\\n|\\r/g, \"\\n\").split(\"\\n\");\n };\n } else {\n this.$split = function(text) {\n return text.split(/\\r\\n|\\r|\\n/);\n };\n }\n\n\n this.$detectNewLine = function(text) {\n var match = text.match(/^.*?(\\r\\n|\\r|\\n)/m);\n this.$autoNewLine = match ? match[1] : \"\\n\";\n this._signal(\"changeNewLineMode\");\n };\n this.getNewLineCharacter = function() {\n switch (this.$newLineMode) {\n case \"windows\":\n return \"\\r\\n\";\n case \"unix\":\n return \"\\n\";\n default:\n return this.$autoNewLine || \"\\n\";\n }\n };\n\n this.$autoNewLine = \"\";\n this.$newLineMode = \"auto\";\n this.setNewLineMode = function(newLineMode) {\n if (this.$newLineMode === newLineMode)\n return;\n\n this.$newLineMode = newLineMode;\n this._signal(\"changeNewLineMode\");\n };\n this.getNewLineMode = function() {\n return this.$newLineMode;\n };\n this.isNewLine = function(text) {\n return (text == \"\\r\\n\" || text == \"\\r\" || text == \"\\n\");\n };\n this.getLine = function(row) {\n return this.$lines[row] || \"\";\n };\n this.getLines = function(firstRow, lastRow) {\n return this.$lines.slice(firstRow, lastRow + 1);\n };\n this.getAllLines = function() {\n return this.getLines(0, this.getLength());\n };\n this.getLength = function() {\n return this.$lines.length;\n };\n this.getTextRange = function(range) {\n return this.getLinesForRange(range).join(this.getNewLineCharacter());\n };\n this.getLinesForRange = function(range) {\n var lines;\n if (range.start.row === range.end.row) {\n lines = [this.getLine(range.start.row).substring(range.start.column, range.end.column)];\n } else {\n lines = this.getLines(range.start.row, range.end.row);\n lines[0] = (lines[0] || \"\").substring(range.start.column);\n var l = lines.length - 1;\n if (range.end.row - range.start.row == l)\n lines[l] = lines[l].substring(0, range.end.column);\n }\n return lines;\n };\n this.insertLines = function(row, lines) {\n console.warn(\"Use of document.insertLines is deprecated. Use the insertFullLines method instead.\");\n return this.insertFullLines(row, lines);\n };\n this.removeLines = function(firstRow, lastRow) {\n console.warn(\"Use of document.removeLines is deprecated. Use the removeFullLines method instead.\");\n return this.removeFullLines(firstRow, lastRow);\n };\n this.insertNewLine = function(position) {\n console.warn(\"Use of document.insertNewLine is deprecated. Use insertMergedLines(position, ['', '']) instead.\");\n return this.insertMergedLines(position, [\"\", \"\"]);\n };\n this.insert = function(position, text) {\n if (this.getLength() <= 1)\n this.$detectNewLine(text);\n \n return this.insertMergedLines(position, this.$split(text));\n };\n this.insertInLine = function(position, text) {\n var start = this.clippedPos(position.row, position.column);\n var end = this.pos(position.row, position.column + text.length);\n \n this.applyDelta({\n start: start,\n end: end,\n action: \"insert\",\n lines: [text]\n }, true);\n \n return this.clonePos(end);\n };\n \n this.clippedPos = function(row, column) {\n var length = this.getLength();\n if (row === undefined) {\n row = length;\n } else if (row < 0) {\n row = 0;\n } else if (row >= length) {\n row = length - 1;\n column = undefined;\n }\n var line = this.getLine(row);\n if (column == undefined)\n column = line.length;\n column = Math.min(Math.max(column, 0), line.length);\n return {row: row, column: column};\n };\n \n this.clonePos = function(pos) {\n return {row: pos.row, column: pos.column};\n };\n \n this.pos = function(row, column) {\n return {row: row, column: column};\n };\n \n this.$clipPosition = function(position) {\n var length = this.getLength();\n if (position.row >= length) {\n position.row = Math.max(0, length - 1);\n position.column = this.getLine(length - 1).length;\n } else {\n position.row = Math.max(0, position.row);\n position.column = Math.min(Math.max(position.column, 0), this.getLine(position.row).length);\n }\n return position;\n };\n this.insertFullLines = function(row, lines) {\n row = Math.min(Math.max(row, 0), this.getLength());\n var column = 0;\n if (row < this.getLength()) {\n lines = lines.concat([\"\"]);\n column = 0;\n } else {\n lines = [\"\"].concat(lines);\n row--;\n column = this.$lines[row].length;\n }\n this.insertMergedLines({row: row, column: column}, lines);\n }; \n this.insertMergedLines = function(position, lines) {\n var start = this.clippedPos(position.row, position.column);\n var end = {\n row: start.row + lines.length - 1,\n column: (lines.length == 1 ? start.column : 0) + lines[lines.length - 1].length\n };\n \n this.applyDelta({\n start: start,\n end: end,\n action: \"insert\",\n lines: lines\n });\n \n return this.clonePos(end);\n };\n this.remove = function(range) {\n var start = this.clippedPos(range.start.row, range.start.column);\n var end = this.clippedPos(range.end.row, range.end.column);\n this.applyDelta({\n start: start,\n end: end,\n action: \"remove\",\n lines: this.getLinesForRange({start: start, end: end})\n });\n return this.clonePos(start);\n };\n this.removeInLine = function(row, startColumn, endColumn) {\n var start = this.clippedPos(row, startColumn);\n var end = this.clippedPos(row, endColumn);\n \n this.applyDelta({\n start: start,\n end: end,\n action: \"remove\",\n lines: this.getLinesForRange({start: start, end: end})\n }, true);\n \n return this.clonePos(start);\n };\n this.removeFullLines = function(firstRow, lastRow) {\n firstRow = Math.min(Math.max(0, firstRow), this.getLength() - 1);\n lastRow = Math.min(Math.max(0, lastRow ), this.getLength() - 1);\n var deleteFirstNewLine = lastRow == this.getLength() - 1 && firstRow > 0;\n var deleteLastNewLine = lastRow < this.getLength() - 1;\n var startRow = ( deleteFirstNewLine ? firstRow - 1 : firstRow );\n var startCol = ( deleteFirstNewLine ? this.getLine(startRow).length : 0 );\n var endRow = ( deleteLastNewLine ? lastRow + 1 : lastRow );\n var endCol = ( deleteLastNewLine ? 0 : this.getLine(endRow).length ); \n var range = new Range(startRow, startCol, endRow, endCol);\n var deletedLines = this.$lines.slice(firstRow, lastRow + 1);\n \n this.applyDelta({\n start: range.start,\n end: range.end,\n action: \"remove\",\n lines: this.getLinesForRange(range)\n });\n return deletedLines;\n };\n this.removeNewLine = function(row) {\n if (row < this.getLength() - 1 && row >= 0) {\n this.applyDelta({\n start: this.pos(row, this.getLine(row).length),\n end: this.pos(row + 1, 0),\n action: \"remove\",\n lines: [\"\", \"\"]\n });\n }\n };\n this.replace = function(range, text) {\n if (!(range instanceof Range))\n range = Range.fromPoints(range.start, range.end);\n if (text.length === 0 && range.isEmpty())\n return range.start;\n if (text == this.getTextRange(range))\n return range.end;\n\n this.remove(range);\n var end;\n if (text) {\n end = this.insert(range.start, text);\n }\n else {\n end = range.start;\n }\n \n return end;\n };\n this.applyDeltas = function(deltas) {\n for (var i=0; i=0; i--) {\n this.revertDelta(deltas[i]);\n }\n };\n this.applyDelta = function(delta, doNotValidate) {\n var isInsert = delta.action == \"insert\";\n if (isInsert ? delta.lines.length <= 1 && !delta.lines[0]\n : !Range.comparePoints(delta.start, delta.end)) {\n return;\n }\n \n if (isInsert && delta.lines.length > 20000) {\n this.$splitAndapplyLargeDelta(delta, 20000);\n }\n else {\n applyDelta(this.$lines, delta, doNotValidate);\n this._signal(\"change\", delta);\n }\n };\n \n this.$splitAndapplyLargeDelta = function(delta, MAX) {\n var lines = delta.lines;\n var l = lines.length - MAX + 1;\n var row = delta.start.row; \n var column = delta.start.column;\n for (var from = 0, to = 0; from < l; from = to) {\n to += MAX - 1;\n var chunk = lines.slice(from, to);\n chunk.push(\"\");\n this.applyDelta({\n start: this.pos(row + from, column),\n end: this.pos(row + to, column = 0),\n action: delta.action,\n lines: chunk\n }, true);\n }\n delta.lines = lines.slice(from);\n delta.start.row = row + from;\n delta.start.column = column;\n this.applyDelta(delta, true);\n };\n this.revertDelta = function(delta) {\n this.applyDelta({\n start: this.clonePos(delta.start),\n end: this.clonePos(delta.end),\n action: (delta.action == \"insert\" ? \"remove\" : \"insert\"),\n lines: delta.lines.slice()\n });\n };\n this.indexToPosition = function(index, startRow) {\n var lines = this.$lines || this.getAllLines();\n var newlineLength = this.getNewLineCharacter().length;\n for (var i = startRow || 0, l = lines.length; i < l; i++) {\n index -= lines[i].length + newlineLength;\n if (index < 0)\n return {row: i, column: index + lines[i].length + newlineLength};\n }\n return {row: l-1, column: index + lines[l-1].length + newlineLength};\n };\n this.positionToIndex = function(pos, startRow) {\n var lines = this.$lines || this.getAllLines();\n var newlineLength = this.getNewLineCharacter().length;\n var index = 0;\n var row = Math.min(pos.row, lines.length);\n for (var i = startRow || 0; i < row; ++i)\n index += lines[i].length + newlineLength;\n\n return index + pos.column;\n };\n\n}).call(Document.prototype);\n\nexports.Document = Document;\n});\n\nace.define(\"ace/lib/lang\",[], function(require, exports, module) {\n\"use strict\";\n\nexports.last = function(a) {\n return a[a.length - 1];\n};\n\nexports.stringReverse = function(string) {\n return string.split(\"\").reverse().join(\"\");\n};\n\nexports.stringRepeat = function (string, count) {\n var result = '';\n while (count > 0) {\n if (count & 1)\n result += string;\n\n if (count >>= 1)\n string += string;\n }\n return result;\n};\n\nvar trimBeginRegexp = /^\\s\\s*/;\nvar trimEndRegexp = /\\s\\s*$/;\n\nexports.stringTrimLeft = function (string) {\n return string.replace(trimBeginRegexp, '');\n};\n\nexports.stringTrimRight = function (string) {\n return string.replace(trimEndRegexp, '');\n};\n\nexports.copyObject = function(obj) {\n var copy = {};\n for (var key in obj) {\n copy[key] = obj[key];\n }\n return copy;\n};\n\nexports.copyArray = function(array){\n var copy = [];\n for (var i=0, l=array.length; i=6\"},directories:{lib:\"./lib/coffeescript\"},main:\"./lib/coffeescript/index\",browser:\"./lib/coffeescript/browser\",bin:{coffee:\"./bin/coffee\",cake:\"./bin/cake\"},files:[\"bin\",\"lib\",\"register.js\",\"repl.js\"],scripts:{test:\"node ./bin/cake test\",\"test-harmony\":\"node --harmony ./bin/cake test\"},homepage:\"http://coffeescript.org\",bugs:\"https://github.com/jashkenas/coffeescript/issues\",repository:{type:\"git\",url:\"git://github.com/jashkenas/coffeescript.git\"},devDependencies:{\"babel-core\":\"~6.26.0\",\"babel-preset-babili\":\"~0.1.4\",\"babel-preset-env\":\"~1.6.1\",\"babel-preset-minify\":\"^0.3.0\",codemirror:\"^5.32.0\",docco:\"~0.8.0\",\"highlight.js\":\"~9.12.0\",jison:\">=0.4.18\",\"markdown-it\":\"~8.4.0\",underscore:\"~1.8.3\",webpack:\"~3.10.0\"},dependencies:{}}}(),require[\"./helpers\"]=function(){var e={};return function(){var a,t,o,n,r,l,s,i;e.starts=function(e,a,t){return a===e.substr(t,a.length)},e.ends=function(e,a,t){var o;return o=a.length,a===e.substr(e.length-o-(t||0),o)},e.repeat=s=function(e,a){var t;for(t=\"\";0>>=1,e+=e;return t},e.compact=function(e){var a,t,o,n;for(n=[],a=0,o=e.length;ar)return n.returnOnNegativeLevel?void 0:o.call(this,i,e);e+=1}return e-1}},{key:\"removeLeadingNewlines\",value:function removeLeadingNewlines(){var e,a,t,o,n,r,l,s,i;for(l=this.tokens,e=a=0,n=l.length;a=n&&n>r;o=0<=r?++n:--n)if(null!=i[o]&&(\"string\"==typeof i[o]&&(i[o]=[i[o]]),l=this.tag(e+o+t),0>a.call(i[o],l)))return-1;return e+o+t-1}},{key:\"looksObjectish\",value:function looksObjectish(e){var t,o;return-1!==this.indexOfTag(e,\"@\",null,\":\")||-1!==this.indexOfTag(e,null,\":\")||(o=this.indexOfTag(e,c),!!(-1!==o&&(t=null,this.detectEnd(o+1,function(e){var t;return t=e[0],0<=a.call(d,t)},function(e,a){return t=a}),\":\"===this.tag(t+1))))}},{key:\"findTagsBackwards\",value:function findTagsBackwards(e,t){var o,n,r,l,s,i,p;for(o=[];0<=e&&(o.length||(l=this.tag(e),0>a.call(t,l))&&((s=this.tag(e),0>a.call(c,s))||this.tokens[e].generated)&&(i=this.tag(e),0>a.call(g,i)));)(n=this.tag(e),0<=a.call(d,n))&&o.push(this.tag(e)),(r=this.tag(e),0<=a.call(c,r))&&o.length&&o.pop(),e-=1;return p=this.tag(e),0<=a.call(t,p)}},{key:\"addImplicitBracesAndParens\",value:function addImplicitBracesAndParens(){var e,t;return e=[],t=null,this.scanTokens(function(o,l,f){var i=this,y=_slicedToArray(o,1),T,v,b,$,_,C,D,E,x,I,S,A,R,k,O,L,F,w,P,j,M,U,V,s,B,G,H,W,X,Y,q,z,J;J=y[0];var K=P=0\"!==w&&\"->\"!==w&&\"[\"!==w&&\"(\"!==w&&\",\"!==w&&\"{\"!==w&&\"ELSE\"!==w&&\"=\"!==w)for(;D()||x()&&\":\"!==w;)D()?T():v();return E()&&e.pop(),e.push([J,l]),b(1)}if(0<=a.call(c,J))return e.push([J,l]),b(1);if(0<=a.call(d,J)){for(;C();)D()?T():x()?v():e.pop();t=e.pop()}if(_=function(){var e,t,n,r;return(n=i.findTagsBackwards(l,[\"FOR\"])&&i.findTagsBackwards(l,[\"FORIN\",\"FOROF\",\"FORFROM\"]),e=n||i.findTagsBackwards(l,[\"WHILE\",\"UNTIL\",\"LOOP\",\"LEADING_WHEN\"]),!!e)&&(t=!1,r=o[2].first_line,i.detectEnd(l,function(e){var t;return t=e[0],0<=a.call(g,t)},function(e,a){var o=f[a-1]||[],n=_slicedToArray(o,3),l;return w=n[0],l=n[2].first_line,t=r===l&&(\"->\"===w||\"=>\"===w)},{returnOnNegativeLevel:!0}),t)},(0<=a.call(m,J)&&o.spaced||\"?\"===J&&0a.call(d,e):return t[1];case\"@\"!==this.tag(l-2):return l-2;default:return l-1}}.call(this),z=0>=V||(M=this.tag(V-1),0<=a.call(g,M))||f[V-1].newLine,W()){var ae=W(),te=_slicedToArray(ae,2);if(H=te[0],B=te[1],(\"{\"===H||\"INDENT\"===H&&\"{\"===this.tag(B-1))&&(z||\",\"===this.tag(V-1)||\"{\"===this.tag(V-1)))return b(1)}return q(V,!!z),b(2)}if(0<=a.call(g,J))for(R=e.length-1;0<=R&&(G=e[R],!!I(G));R+=-1)A(G)&&(G[2].sameLine=!1);if(k=\"OUTDENT\"===w||P.newLine,0<=a.call(u,J)||0<=a.call(n,J)&&k||(\"..\"===J||\"...\"===J)&&this.findTagsBackwards(l,[\"INDEX_START\"]))for(;C();){var oe=W(),ne=_slicedToArray(oe,3);H=ne[0],B=ne[1];var re=ne[2];if(s=re.sameLine,z=re.startsLine,D()&&\",\"!==w||\",\"===w&&\"TERMINATOR\"===J&&null==O)T();else if(x()&&s&&\"TERMINATOR\"!==J&&\":\"!==w&&!((\"POST_IF\"===J||\"FOR\"===J||\"WHILE\"===J||\"UNTIL\"===J)&&z&&$(l+1)))v();else if(x()&&\"TERMINATOR\"===J&&\",\"!==w&&!(z&&this.looksObjectish(l+1)))v();else break}if(\",\"===J&&!this.looksObjectish(l+1)&&x()&&\"FOROF\"!==(U=this.tag(l+2))&&\"FORIN\"!==U&&(\"TERMINATOR\"!==O||!this.looksObjectish(l+2)))for(F=\"OUTDENT\"===O?1:0;x();)v(l+F);return b(1)})}},{key:\"enforceValidCSXAttributes\",value:function enforceValidCSXAttributes(){return this.scanTokens(function(e,a,t){var o,n;return e.csxColon&&(o=t[a+1],\"STRING_START\"!==(n=o[0])&&\"STRING\"!==n&&\"(\"!==n&&C(\"expected wrapped or quoted JSX attribute\",o[2])),1})}},{key:\"rescueStowawayComments\",value:function rescueStowawayComments(){var e,t,o;return e=function(e,a,t,o){return\"TERMINATOR\"!==t[a][0]&&t[o](N(\"TERMINATOR\",\"\\n\",t[a])),t[o](N(\"JS\",\"\",t[a],e))},o=function(t,o,n){var r,s,i,d,c,p,u;for(s=o;s!==n.length&&(c=n[s][0],0<=a.call(l,c));)s++;if(!(s===n.length||(p=n[s][0],0<=a.call(l,p)))){for(u=t.comments,i=0,d=u.length;ia.call(n,r)))return this.tokens.splice(o,0,N(\"(\",\"(\",this.tokens[o])),this.tokens.splice(t+1,0,N(\")\",\")\",this.tokens[t]))},o=null,this.scanTokens(function(a,n){var r,l;return\"do\"===a[1]?(o=n,r=n+1,\"PARAM_START\"===this.tag(n+1)&&(r=null,this.detectEnd(n+1,function(e,a){return\"PARAM_END\"===this.tag(a-1)},function(e,a){return r=a})),null==r||\"->\"!==(l=this.tag(r))&&\"=>\"!==l||\"INDENT\"!==this.tag(r+1))?1:(this.detectEnd(r+1,t,e),2):1})}},{key:\"normalizeLines\",value:function normalizeLines(){var e=this,t,o,r,l,d,c,p,u,m;return m=d=u=null,p=null,c=null,l=[],r=function(e,t){var o,r,l,i;return\";\"!==e[1]&&(o=e[0],0<=a.call(y,o))&&!(\"TERMINATOR\"===e[0]&&(r=this.tag(t+1),0<=a.call(s,r)))&&!(\"ELSE\"===e[0]&&(\"THEN\"!==m||c||p))&&(\"CATCH\"!==(l=e[0])&&\"FINALLY\"!==l||\"->\"!==m&&\"=>\"!==m)||(i=e[0],0<=a.call(n,i))&&(this.tokens[t-1].newLine||\"OUTDENT\"===this.tokens[t-1][0])},t=function(e,a){return\"ELSE\"===e[0]&&\"THEN\"===m&&l.pop(),this.tokens.splice(\",\"===this.tag(a-1)?a-1:a,0,u)},o=function(a,t){var o,n,r;if(r=l.length,!(0\"===v||\"=>\"===v)&&this.findTagsBackwards(n,[\"IF\",\"WHILE\",\"FOR\",\"UNTIL\",\"SWITCH\",\"WHEN\",\"LEADING_WHEN\",\"[\",\"INDEX_START\"])&&!this.findTagsBackwards(n,[\"THEN\",\"..\",\"...\"]),\"TERMINATOR\"===v){if(\"ELSE\"===this.tag(n+1)&&\"OUTDENT\"!==this.tag(n-1))return i.splice.apply(i,[n,1].concat(_toConsumableArray(this.indentation()))),1;if(k=this.tag(n+1),0<=a.call(s,k))return i.splice(n,1),0}if(\"CATCH\"===v)for(f=y=1;2>=y;f=++y)if(\"OUTDENT\"===(N=this.tag(n+f))||\"TERMINATOR\"===N||\"FINALLY\"===N)return i.splice.apply(i,[n+f,0].concat(_toConsumableArray(this.indentation()))),2+f;if((\"->\"===v||\"=>\"===v)&&(\",\"===this.tag(n+1)||\".\"===this.tag(n+1)&&e.newLine)){var b=this.indentation(i[n]),$=_slicedToArray(b,2);return d=$[0],u=$[1],i.splice(n+1,0,d,u),1}if(0<=a.call(T,v)&&\"INDENT\"!==this.tag(n+1)&&(\"ELSE\"!==v||\"IF\"!==this.tag(n+1))&&!g){m=v;var _=this.indentation(i[n]),C=_slicedToArray(_,2);return d=C[0],u=C[1],\"THEN\"===m&&(d.fromThen=!0),\"THEN\"===v&&(p=this.findTagsBackwards(n,[\"LEADING_WHEN\"])&&\"IF\"===this.tag(n+1),c=this.findTagsBackwards(n,[\"IF\"])&&\"IF\"===this.tag(n+1)),\"THEN\"===v&&this.findTagsBackwards(n,[\"IF\"])&&l.push(n),\"ELSE\"===v&&\"OUTDENT\"!==this.tag(n-1)&&(n=o(i,n)),i.splice(n+1,0,d),this.detectEnd(n+2,r,t),\"THEN\"===v&&i.splice(n,1),1}return 1})}},{key:\"tagPostfixConditionals\",value:function tagPostfixConditionals(){var e,t,o;return o=null,t=function(e,t){var o=_slicedToArray(e,1),n,r;r=o[0];var l=_slicedToArray(this.tokens[t-1],1);return n=l[0],\"TERMINATOR\"===r||\"INDENT\"===r&&0>a.call(T,n)},e=function(e){if(\"INDENT\"!==e[0]||e.generated&&!e.fromThen)return o[0]=\"POST_\"+o[0]},this.scanTokens(function(a,n){return\"IF\"===a[0]?(o=a,this.detectEnd(n+1,t,e),1):1})}},{key:\"indentation\",value:function indentation(e){var a,t;return a=[\"INDENT\",2],t=[\"OUTDENT\",2],e?(a.generated=t.generated=!0,a.origin=t.origin=e):a.explicit=t.explicit=!0,[a,t]}},{key:\"tag\",value:function tag(e){var a;return null==(a=this.tokens[e])?void 0:a[0]}}]),e}();return e.prototype.generate=N,e}.call(this),o=[[\"(\",\")\"],[\"[\",\"]\"],[\"{\",\"}\"],[\"INDENT\",\"OUTDENT\"],[\"CALL_START\",\"CALL_END\"],[\"PARAM_START\",\"PARAM_END\"],[\"INDEX_START\",\"INDEX_END\"],[\"STRING_START\",\"STRING_END\"],[\"REGEX_START\",\"REGEX_END\"]],e.INVERSES=i={},c=[],d=[],v=0,b=o.length;v\",\"=>\",\"[\",\"(\",\"{\",\"--\",\"++\"],h=[\"+\",\"-\"],u=[\"POST_IF\",\"FOR\",\"WHILE\",\"UNTIL\",\"WHEN\",\"BY\",\"LOOP\",\"TERMINATOR\"],T=[\"ELSE\",\"->\",\"=>\",\"TRY\",\"FINALLY\",\"THEN\"],y=[\"TERMINATOR\",\"CATCH\",\"FINALLY\",\"ELSE\",\"OUTDENT\",\"LEADING_WHEN\"],g=[\"TERMINATOR\",\"INDENT\",\"OUTDENT\"],n=[\".\",\"?.\",\"::\",\"?::\"],r=[\"IF\",\"TRY\",\"FINALLY\",\"CATCH\",\"CLASS\",\"SWITCH\"],l=[\"(\",\")\",\"[\",\"]\",\"{\",\"}\",\".\",\"..\",\"...\",\",\",\"=\",\"++\",\"--\",\"?\",\"AS\",\"AWAIT\",\"CALL_START\",\"CALL_END\",\"DEFAULT\",\"ELSE\",\"EXTENDS\",\"EXPORT\",\"FORIN\",\"FOROF\",\"FORFROM\",\"IMPORT\",\"INDENT\",\"INDEX_SOAK\",\"LEADING_WHEN\",\"OUTDENT\",\"PARAM_END\",\"REGEX_START\",\"REGEX_END\",\"RETURN\",\"STRING_END\",\"THROW\",\"UNARY\",\"YIELD\"].concat(h.concat(u.concat(n.concat(r))))}.call(this),{exports:e}.exports}(),require[\"./lexer\"]=function(){var e={};return function(){var a=[].indexOf,t=[].slice,o=require(\"./rewriter\"),n,r,l,s,i,d,c,p,u,m,h,g,f,y,k,T,N,v,b,$,_,C,D,E,x,I,S,A,R,O,L,F,w,P,j,M,U,V,B,G,H,W,X,Y,q,z,J,K,Z,Q,ee,ae,te,oe,ne,re,le,se,ie,de,ce,pe,ue,me,he,ge,fe,ye,ke,Te,Ne,ve,be,$e;z=o.Rewriter,S=o.INVERSES;var _e=require(\"./helpers\");he=_e.count,be=_e.starts,me=_e.compact,ve=_e.repeat,ge=_e.invertLiterate,Ne=_e.merge,ue=_e.attachCommentsToNode,Te=_e.locationDataToString,$e=_e.throwSyntaxError,e.Lexer=w=function(){function e(){_classCallCheck(this,e)}return _createClass(e,[{key:\"tokenize\",value:function tokenize(e){var a=1this.indent){if(s)return this.indebt=d-this.indent,this.suppressNewlines(),o.length;if(!this.tokens.length)return this.baseIndent=this.indent=d,this.indentLiteral=l,o.length;t=d-this.indent+this.outdebt,this.token(\"INDENT\",t,o.length-d,d),this.indents.push(t),this.ends.push({tag:\"OUTDENT\"}),this.outdebt=this.indebt=0,this.indent=d,this.indentLiteral=l}else da.call(u,h)))))return 0;var N=d,v=_slicedToArray(N,3);return i=v[0],s=v[1],o=v[2],c=this.token(\"CSX_TAG\",s,1,s.length),this.token(\"CALL_START\",\"(\"),this.token(\"[\",\"[\"),this.ends.push({tag:\"/>\",origin:c,name:s}),this.csxDepth++,s.length+1}if(n=this.atCSXTag()){if(\"/>\"===this.chunk.slice(0,2))return this.pair(\"/>\"),this.token(\"]\",\"]\",0,2),this.token(\"CALL_END\",\")\",0,2),this.csxDepth--,2;if(\"{\"===l)return\":\"===m?(g=this.token(\"(\",\"(\"),this.csxObjAttribute[this.csxDepth]=!1):(g=this.token(\"{\",\"{\"),this.csxObjAttribute[this.csxDepth]=!0),this.ends.push({tag:\"}\",origin:g}),1;if(\">\"===l){this.pair(\"/>\"),c=this.token(\"]\",\"]\"),this.token(\",\",\",\");var b=this.matchWithInterpolations(I,\">\",\"\"})}),d=y.exec(this.chunk.slice(r))||f.exec(this.chunk.slice(r)),d&&d[1]===n.name||this.error(\"expected corresponding CSX closing tag for \"+n.name,n.origin[2]),t=r+n.name.length,\">\"!==this.chunk[t]&&this.error(\"missing closing > after tag name\",{offset:t,length:1}),this.token(\"CALL_END\",\")\",r,n.name.length+1),this.csxDepth--,t+1}return 0}return this.atCSXTag(1)?\"}\"===l?(this.pair(l),this.csxObjAttribute[this.csxDepth]?(this.token(\"}\",\"}\"),this.csxObjAttribute[this.csxDepth]=!1):this.token(\")\",\")\"),this.token(\",\",\",\"),1):0:0}},{key:\"atCSXTag\",value:function atCSXTag(){var e=0\"===(null==t?void 0:t.tag)&&t}},{key:\"literalToken\",value:function literalToken(){var e,t,o,n,r,i,d,c,p,u,g,f,y;if(e=V.exec(this.chunk)){var k=e,T=_slicedToArray(k,1);y=T[0],s.test(y)&&this.tagParameters()}else y=this.chunk.charAt(0);if(g=y,n=this.prev(),n&&0<=a.call([\"=\"].concat(_toConsumableArray(h)),y)&&(u=!1,\"=\"!==y||\"||\"!==(r=n[1])&&\"&&\"!==r||n.spaced||(n[0]=\"COMPOUND_ASSIGN\",n[1]+=\"=\",n=this.tokens[this.tokens.length-2],u=!0),n&&\"PROPERTY\"!==n[0]&&(o=null==(i=n.origin)?n:i,t=ye(n[1],o[1]),t&&this.error(t,o[2])),u))return y.length;if(\"{\"===y&&this.seenImport?this.importSpecifierList=!0:this.importSpecifierList&&\"}\"===y?this.importSpecifierList=!1:\"{\"===y&&\"EXPORT\"===(null==n?void 0:n[0])?this.exportSpecifierList=!0:this.exportSpecifierList&&\"}\"===y&&(this.exportSpecifierList=!1),\";\"===y)(d=null==n?void 0:n[0],0<=a.call([\"=\"].concat(_toConsumableArray(ie)),d))&&this.error(\"unexpected ;\"),this.seenFor=this.seenImport=this.seenExport=!1,g=\"TERMINATOR\";else if(\"*\"===y&&\"EXPORT\"===(null==n?void 0:n[0]))g=\"EXPORT_ALL\";else if(0<=a.call(P,y))g=\"MATH\";else if(0<=a.call(m,y))g=\"COMPARE\";else if(0<=a.call(h,y))g=\"COMPOUND_ASSIGN\";else if(0<=a.call(le,y))g=\"UNARY\";else if(0<=a.call(se,y))g=\"UNARY_MATH\";else if(0<=a.call(J,y))g=\"SHIFT\";else if(\"?\"===y&&(null==n?void 0:n.spaced))g=\"BIN?\";else if(n)if(\"(\"===y&&!n.spaced&&(c=n[0],0<=a.call(l,c)))\"?\"===n[0]&&(n[0]=\"FUNC_EXIST\"),g=\"CALL_START\";else if(\"[\"===y&&((p=n[0],0<=a.call(x,p))&&!n.spaced||\"::\"===n[0]))switch(g=\"INDEX_START\",n[0]){case\"?\":n[0]=\"INDEX_SOAK\"}return f=this.makeToken(g,y),\"(\"===y||\"{\"===y||\"[\"===y?this.ends.push({tag:S[y],origin:f}):\")\"===y||\"}\"===y||\"]\"===y?this.pair(y):void 0,this.tokens.push(this.makeToken(g,y)),y.length}},{key:\"tagParameters\",value:function tagParameters(){var e,a,t,o,n;if(\")\"!==this.tag())return this;for(t=[],n=this.tokens,e=n.length,a=n[--e],a[0]=\"PARAM_END\";o=n[--e];)switch(o[0]){case\")\":t.push(o);break;case\"(\":case\"CALL_START\":if(t.length)t.pop();else return\"(\"===o[0]?(o[0]=\"PARAM_START\",this):(a[0]=\"CALL_END\",this)}return this}},{key:\"closeIndentation\",value:function closeIndentation(){return this.outdentToken(this.indent)}},{key:\"matchWithInterpolations\",value:function matchWithInterpolations(a,o,n,r){var l,s,i,d,c,p,u,m,h,g,f,y,k,T,N,v,b,$,_,C,D,E;if(null==n&&(n=o),null==r&&(r=/^#\\{/),E=[],v=o.length,this.chunk.slice(0,v)!==o)return null;for(C=this.chunk.slice(v);;){var x=a.exec(C),I=_slicedToArray(x,1);if(D=I[0],this.validateEscapes(D,{isRegex:\"/\"===o.charAt(0),offsetInChunk:v}),E.push(this.makeToken(\"NEOSTRING\",D,v)),C=C.slice(D.length),v+=D.length,!(T=r.exec(C)))break;var S=T,A=_slicedToArray(S,1);f=A[0],g=f.length-1;var R=this.getLineAndColumnFromChunk(v+g),O=_slicedToArray(R,2);k=O[0],u=O[1],_=C.slice(g);var L=(new e).tokenize(_,{line:k,column:u,untilBalanced:!0});if(N=L.tokens,h=L.index,h+=g,c=\"}\"===C[h-1],c){var F,w,P,j;F=N,w=_slicedToArray(F,1),b=w[0],F,P=t.call(N,-1),j=_slicedToArray(P,1),p=j[0],P,b[0]=b[1]=\"(\",p[0]=p[1]=\")\",p.origin=[\"\",\"end of interpolation\",p[2]]}\"TERMINATOR\"===(null==($=N[1])?void 0:$[0])&&N.splice(1,1),c||(b=this.makeToken(\"(\",\"(\",v,0),p=this.makeToken(\")\",\")\",v+h,0),N=[b].concat(_toConsumableArray(N),[p])),E.push([\"TOKENS\",N]),C=C.slice(h),v+=h}return C.slice(0,n.length)!==n&&this.error(\"missing \"+n,{length:o.length}),l=E,s=_slicedToArray(l,1),m=s[0],l,i=t.call(E,-1),d=_slicedToArray(i,1),y=d[0],i,m[2].first_column-=o.length,\"\\n\"===y[1].substr(-1)?(y[2].last_line+=1,y[2].last_column=n.length-1):y[2].last_column+=n.length,0===y[1].length&&(y[2].last_column-=1),{tokens:E,index:v+n.length}}},{key:\"mergeInterpolationTokens\",value:function mergeInterpolationTokens(e,a,o){var n,r,l,s,i,d,c,p,u,m,h,g,f,y,k,T,N,v,b;for(1l&&(f=this.token(\"+\",\"+\"),f[2]={first_line:m[2].first_line,first_column:m[2].first_column,last_line:m[2].first_line,last_column:m[2].first_column}),($=this.tokens).push.apply($,_toConsumableArray(N))}if(h){var E=t.call(e,-1),x=_slicedToArray(E,1);return c=x[0],h.origin=[\"STRING\",null,{first_line:h[2].first_line,first_column:h[2].first_column,last_line:c[2].last_line,last_column:c[2].last_column}],h[2]=h.origin[2],y=this.token(\"STRING_END\",\")\"),y[2]={first_line:c[2].last_line,first_column:c[2].last_column,last_line:c[2].last_line,last_column:c[2].last_column}}}},{key:\"pair\",value:function pair(e){var a,o,n,r,l,s,i;if(l=this.ends,a=t.call(l,-1),o=_slicedToArray(a,1),r=o[0],a,e!==(i=null==r?void 0:r.tag)){var d,c;return\"OUTDENT\"!==i&&this.error(\"unmatched \"+e),s=this.indents,d=t.call(s,-1),c=_slicedToArray(d,1),n=c[0],d,this.outdentToken(n,!0),this.pair(e)}return this.ends.pop()}},{key:\"getLineAndColumnFromChunk\",value:function getLineAndColumnFromChunk(e){var a,o,n,r,l;if(0===e)return[this.chunkLine,this.chunkColumn];if(l=e>=this.chunk.length?this.chunk:this.chunk.slice(0,+(e-1)+1||9e9),n=he(l,\"\\n\"),a=this.chunkColumn,0e)?o(e):(a=_Mathfloor((e-65536)/1024)+55296,t=(e-65536)%1024+56320,\"\"+o(a)+o(t))}},{key:\"replaceUnicodeCodePointEscapes\",value:function replaceUnicodeCodePointEscapes(e,t){var o=this,n;return n=null!=t.flags&&0>a.call(t.flags,\"u\"),e.replace(de,function(e,a,r,l){var s;return a?a:(s=parseInt(r,16),1114111a.call([].concat(_toConsumableArray(R),_toConsumableArray(c)),e):return\"keyword '\"+t+\"' can't be assigned\";case 0>a.call(Z,e):return\"'\"+t+\"' can't be assigned\";case 0>a.call(q,e):return\"reserved word '\"+t+\"' can't be assigned\";default:return!1}},e.isUnassignable=ye,fe=function(e){var a;return\"IDENTIFIER\"===e[0]?(\"from\"===e[1]&&(e[1][0]=\"IDENTIFIER\",!0),!0):\"FOR\"!==e[0]&&\"{\"!==(a=e[1])&&\"[\"!==a&&\",\"!==a&&\":\"!==a},R=[\"true\",\"false\",\"null\",\"this\",\"new\",\"delete\",\"typeof\",\"in\",\"instanceof\",\"return\",\"throw\",\"break\",\"continue\",\"debugger\",\"yield\",\"await\",\"if\",\"else\",\"switch\",\"for\",\"while\",\"do\",\"try\",\"catch\",\"finally\",\"class\",\"extends\",\"super\",\"import\",\"export\",\"default\"],c=[\"undefined\",\"Infinity\",\"NaN\",\"then\",\"unless\",\"until\",\"loop\",\"of\",\"by\",\"when\"],d={and:\"&&\",or:\"||\",is:\"==\",isnt:\"!=\",not:\"!\",yes:\"true\",no:\"false\",on:\"true\",off:\"false\"},i=function(){var e;for(ke in e=[],d)e.push(ke);return e}(),c=c.concat(i),q=[\"case\",\"function\",\"var\",\"void\",\"with\",\"const\",\"let\",\"enum\",\"native\",\"implements\",\"interface\",\"package\",\"private\",\"protected\",\"public\",\"static\"],Z=[\"arguments\",\"eval\"],e.JS_FORBIDDEN=R.concat(q).concat(Z),n=65279,D=/^(?!\\d)((?:(?!\\s)[$\\w\\x7f-\\uffff])+)([^\\n\\S]*:(?!:))?/,y=/^(?![\\d<])((?:(?!\\s)[\\.\\-$\\w\\x7f-\\uffff])+)/,f=/^()>/,g=/^(?!\\d)((?:(?!\\s)[\\-$\\w\\x7f-\\uffff])+)([^\\S]*=(?!=))?/,U=/^0b[01]+|^0o[0-7]+|^0x[\\da-f]+|^\\d*\\.?\\d+(?:e[+-]?\\d+)?/i,V=/^(?:[-=]>|[-+*\\/%<>&|^!?=]=|>>>=?|([-+:])\\1|([&|<>*\\/%])\\2=?|\\?(\\.|::)|\\.{2,3})/,pe=/^[^\\n\\S]+/,p=/^\\s*###([^#][\\s\\S]*?)(?:###[^\\n\\S]*|###$)|^(?:\\s*#(?!##[^#]).*)+/,s=/^[-=]>/,j=/^(?:\\n[^\\n\\S]*)+/,A=/^`(?!``)((?:[^`\\\\]|\\\\[\\s\\S])*)`/,C=/^```((?:[^`\\\\]|\\\\[\\s\\S]|`(?!``))*)```/,oe=/^(?:'''|\"\"\"|'|\")/,te=/^(?:[^\\\\']|\\\\[\\s\\S])*/,Q=/^(?:[^\\\\\"#]|\\\\[\\s\\S]|\\#(?!\\{))*/,b=/^(?:[^\\\\']|\\\\[\\s\\S]|'(?!''))*/,N=/^(?:[^\\\\\"#]|\\\\[\\s\\S]|\"(?!\"\")|\\#(?!\\{))*/,I=/^(?:[^\\{<])*/,k=/^(?:\\{|<(?!\\/))/,ae=/((?:\\\\\\\\)+)|\\\\[^\\S\\n]*\\n\\s*/g,K=/\\s*\\n\\s*/g,v=/\\n+([^\\n\\S]*)(?=\\S)/g,G=/^\\/(?!\\/)((?:[^[\\/\\n\\\\]|\\\\[^\\n]|\\[(?:\\\\[^\\n]|[^\\]\\n\\\\])*\\])*)(\\/)?/,H=/^\\w*/,ce=/^(?!.*(.).*\\1)[imguy]*$/,$=/^(?:[^\\\\\\/#\\s]|\\\\[\\s\\S]|\\/(?!\\/\\/)|\\#(?!\\{)|\\s+(?:#(?!\\{).*)?)*/,_=/((?:\\\\\\\\)+)|\\\\(\\s)|\\s+(?:#.*)?/g,W=/^(\\/|\\/{3}\\s*)(\\*)/,B=/^\\/=?\\s/,T=/\\*\\//,F=/^\\s*(?:,|\\??\\.(?![.\\d])|::)/,ee=/((?:^|[^\\\\])(?:\\\\\\\\)*)\\\\(?:(0[0-7]|[1-7])|(x(?![\\da-fA-F]{2}).{0,2})|(u\\{(?![\\da-fA-F]{1,}\\})[^}]*\\}?)|(u(?!\\{|[\\da-fA-F]{4}).{0,4}))/,X=/((?:^|[^\\\\])(?:\\\\\\\\)*)\\\\(?:(0[0-7])|(x(?![\\da-fA-F]{2}).{0,2})|(u\\{(?![\\da-fA-F]{1,}\\})[^}]*\\}?)|(u(?!\\{|[\\da-fA-F]{4}).{0,4}))/,de=/(\\\\\\\\)|\\\\u\\{([\\da-fA-F]+)\\}/g,O=/^[^\\n\\S]*\\n/,ne=/\\n[^\\n\\S]*$/,re=/\\s+$/,h=[\"-=\",\"+=\",\"/=\",\"*=\",\"%=\",\"||=\",\"&&=\",\"?=\",\"<<=\",\">>=\",\">>>=\",\"&=\",\"^=\",\"|=\",\"**=\",\"//=\",\"%%=\"],le=[\"NEW\",\"TYPEOF\",\"DELETE\",\"DO\"],se=[\"!\",\"~\"],J=[\"<<\",\">>\",\">>>\"],m=[\"==\",\"!=\",\"<\",\">\",\"<=\",\">=\"],P=[\"*\",\"/\",\"%\",\"//\",\"%%\"],Y=[\"IN\",\"OF\",\"INSTANCEOF\"],r=[\"TRUE\",\"FALSE\"],l=[\"IDENTIFIER\",\"PROPERTY\",\")\",\"]\",\"?\",\"@\",\"THIS\",\"SUPER\"],x=l.concat([\"NUMBER\",\"INFINITY\",\"NAN\",\"STRING\",\"STRING_END\",\"REGEX\",\"REGEX_END\",\"BOOL\",\"NULL\",\"UNDEFINED\",\"}\",\"::\"]),u=[\"IDENTIFIER\",\")\",\"]\",\"NUMBER\"],M=x.concat([\"++\",\"--\"]),L=[\"INDENT\",\"OUTDENT\",\"TERMINATOR\"],E=[\")\",\"}\",\"]\"],ie=[\"\\\\\",\".\",\"?.\",\"?::\",\"UNARY\",\"MATH\",\"UNARY_MATH\",\"+\",\"-\",\"**\",\"SHIFT\",\"RELATION\",\"COMPARE\",\"&\",\"^\",\"|\",\"&&\",\"||\",\"BIN?\",\"EXTENDS\"]}.call(this),{exports:e}.exports}(),require[\"./parser\"]=function(){var e={},a={exports:e},t=function(){function e(){this.yy={}}var a=function(e,a,t,o){for(t=t||{},o=e.length;o--;t[e[o]]=a);return t},t=[1,24],o=[1,56],n=[1,91],r=[1,92],l=[1,87],s=[1,93],i=[1,94],d=[1,89],c=[1,90],p=[1,64],u=[1,66],m=[1,67],h=[1,68],g=[1,69],f=[1,70],y=[1,72],k=[1,73],T=[1,58],N=[1,42],v=[1,36],b=[1,76],$=[1,77],_=[1,86],C=[1,54],D=[1,59],E=[1,60],x=[1,74],I=[1,75],S=[1,47],A=[1,55],R=[1,71],O=[1,81],L=[1,82],F=[1,83],w=[1,84],P=[1,53],j=[1,80],M=[1,38],U=[1,39],V=[1,40],B=[1,41],G=[1,43],H=[1,44],W=[1,95],X=[1,6,36,47,146],Y=[1,6,35,36,47,69,70,93,127,135,146,149,157],q=[1,113],z=[1,114],J=[1,115],K=[1,110],Z=[1,98],Q=[1,97],ee=[1,96],ae=[1,99],te=[1,100],oe=[1,101],ne=[1,102],re=[1,103],le=[1,104],se=[1,105],ie=[1,106],de=[1,107],ce=[1,108],pe=[1,109],ue=[1,117],me=[1,6,35,36,47,69,70,83,88,93,109,127,135,146,148,149,150,156,157,174,178,179,182,183,184,185,186,187,188,189,190,191,192,193],he=[2,196],ge=[1,123],fe=[1,128],ye=[1,124],ke=[1,125],Te=[1,126],Ne=[1,129],ve=[1,122],be=[1,6,35,36,47,69,70,93,127,135,146,148,149,150,156,157,174],$e=[1,6,35,36,45,46,47,69,70,80,81,83,88,93,101,102,103,105,109,125,126,127,135,146,148,149,150,156,157,174,178,179,182,183,184,185,186,187,188,189,190,191,192,193],_e=[2,122],Ce=[2,126],De=[6,35,88,93],Ee=[2,99],xe=[1,141],Ie=[1,135],Se=[1,140],Ae=[1,144],Re=[1,149],Oe=[1,147],Le=[1,151],Fe=[1,155],we=[1,153],Pe=[1,6,35,36,45,46,47,61,69,70,80,81,83,88,93,101,102,103,105,109,125,126,127,135,146,148,149,150,156,157,174,178,179,182,183,184,185,186,187,188,189,190,191,192,193],je=[2,119],Me=[1,6,36,47,69,70,83,88,93,109,127,135,146,148,149,150,156,157,174,178,179,182,183,184,185,186,187,188,189,190,191,192,193],Ue=[2,31],Ve=[1,183],Be=[2,86],Ge=[1,187],He=[1,193],We=[1,208],Xe=[1,203],Ye=[1,212],qe=[1,209],ze=[1,214],Je=[1,215],Ke=[1,217],Ze=[14,32,35,38,39,43,45,46,49,50,54,55,56,57,58,59,68,77,84,85,86,90,91,107,110,112,120,129,130,140,144,145,148,150,153,156,167,173,176,177,178,179,180,181],Qe=[1,6,35,36,45,46,47,61,69,70,80,81,83,88,93,101,102,103,105,109,111,125,126,127,135,146,148,149,150,156,157,174,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194],ea=[1,228],aa=[2,142],ta=[1,250],oa=[1,245],na=[1,256],ra=[1,6,35,36,45,46,47,65,69,70,80,81,83,88,93,101,102,103,105,109,125,126,127,135,146,148,149,150,156,157,174,178,179,182,183,184,185,186,187,188,189,190,191,192,193],la=[1,6,33,35,36,45,46,47,61,65,69,70,80,81,83,88,93,101,102,103,105,109,111,117,125,126,127,135,146,148,149,150,156,157,164,165,166,174,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194],sa=[1,6,35,36,45,46,47,52,65,69,70,80,81,83,88,93,101,102,103,105,109,125,126,127,135,146,148,149,150,156,157,174,178,179,182,183,184,185,186,187,188,189,190,191,192,193],ia=[1,286],da=[45,46,126],ca=[1,297],pa=[1,296],ua=[6,35],ma=[2,97],ha=[1,303],ga=[6,35,36,88,93],fa=[6,35,36,61,70,88,93],ya=[1,6,35,36,47,69,70,80,81,83,88,93,101,102,103,105,109,127,135,146,148,149,150,156,157,174,178,179,182,183,184,185,186,187,188,189,190,191,192,193],ka=[1,6,35,36,47,69,70,83,88,93,109,127,135,146,148,149,150,156,157,174,178,179,183,184,185,186,187,188,189,190,191,192,193],Ta=[2,347],Na=[1,6,35,36,47,69,70,83,88,93,109,127,135,146,148,149,150,156,157,174,178,179,183,185,186,187,188,189,190,191,192,193],va=[45,46,80,81,101,102,103,105,125,126],ba=[1,330],$a=[1,6,35,36,47,69,70,83,88,93,109,127,135,146,148,149,150,156,157,174],_a=[2,84],Ca=[1,346],Da=[1,348],Ea=[1,353],xa=[1,355],Ia=[6,35,69,93],Sa=[2,221],Aa=[2,222],Ra=[1,6,35,36,45,46,47,61,69,70,80,81,83,88,93,101,102,103,105,109,125,126,127,135,146,148,149,150,156,157,164,165,166,174,178,179,182,183,184,185,186,187,188,189,190,191,192,193],Oa=[1,369],La=[6,14,32,35,36,38,39,43,45,46,49,50,54,55,56,57,58,59,68,69,70,77,84,85,86,90,91,93,107,110,112,120,129,130,140,144,145,148,150,153,156,167,173,176,177,178,179,180,181],Fa=[6,35,36,69,93],wa=[6,35,36,69,93,127],Pa=[1,6,35,36,45,46,47,61,65,69,70,80,81,83,88,93,101,102,103,105,109,111,125,126,127,135,146,148,149,150,156,157,164,165,166,174,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194],ja=[1,6,35,36,47,69,70,83,88,93,109,127,135,146,157,174],Ma=[1,6,35,36,47,69,70,83,88,93,109,127,135,146,149,157,174],Ua=[2,273],Va=[164,165,166],Ba=[93,164,165,166],Ga=[6,35,109],Ha=[1,393],Wa=[6,35,36,93,109],Xa=[6,35,36,65,93,109],Ya=[1,399],qa=[1,400],za=[6,35,36,61,65,70,80,81,93,109,126],Ja=[6,35,36,70,80,81,93,109,126],Ka=[1,6,35,36,47,69,70,83,88,93,109,127,135,146,148,149,150,156,157,174,178,179,185,186,187,188,189,190,191,192,193],Za=[2,339],Qa=[2,338],et=[1,6,35,36,45,46,47,52,69,70,80,81,83,88,93,101,102,103,105,109,125,126,127,135,146,148,149,150,156,157,174,178,179,182,183,184,185,186,187,188,189,190,191,192,193],at=[1,422],tt=[14,32,38,39,43,45,46,49,50,54,55,56,57,58,59,68,77,83,84,85,86,90,91,107,110,112,120,129,130,140,144,145,148,150,153,156,167,173,176,177,178,179,180,181],ot=[2,207],nt=[6,35,36],rt=[2,98],lt=[1,431],st=[1,432],it=[1,6,35,36,47,69,70,80,81,83,88,93,101,102,103,105,109,127,135,142,143,146,148,149,150,156,157,169,171,174,178,179,182,183,184,185,186,187,188,189,190,191,192,193],dt=[1,312],ct=[36,169,171],pt=[1,6,36,47,69,70,83,88,93,109,127,135,146,149,157,174],ut=[1,467],mt=[1,473],ht=[1,6,35,36,47,69,70,93,127,135,146,149,157,174],gt=[2,113],ft=[1,486],yt=[1,487],kt=[6,35,36,69],Tt=[1,6,35,36,47,69,70,83,88,93,109,127,135,146,148,149,150,156,157,169,174,178,179,182,183,184,185,186,187,188,189,190,191,192,193],Nt=[1,6,35,36,47,69,70,93,127,135,146,149,157,169],vt=[2,286],bt=[2,287],$t=[2,302],_t=[1,510],Ct=[1,511],Dt=[6,35,36,109],Et=[1,6,35,36,47,69,70,83,88,93,109,127,135,146,148,150,156,157,174],xt=[1,532],It=[6,35,36,93,127],St=[6,35,36,93],At=[1,6,35,36,47,69,70,83,88,93,109,127,135,142,146,148,149,150,156,157,174,178,179,182,183,184,185,186,187,188,189,190,191,192,193],Rt=[35,93],Ot=[1,560],Lt=[1,561],Ft=[1,567],wt=[1,568],Pt=[2,258],jt=[2,261],Mt=[2,274],Ut=[1,617],Vt=[1,618],Bt=[2,288],Gt=[2,292],Ht=[2,289],Wt=[2,293],Xt=[2,290],Yt=[2,291],qt=[2,303],zt=[2,304],Jt=[1,6,35,36,47,69,70,83,88,93,109,127,135,146,148,149,150,156,174],Kt=[2,294],Zt=[2,296],Qt=[2,298],eo=[2,300],ao=[2,295],to=[2,297],oo=[2,299],no=[2,301],ro={trace:function(){},yy:{},symbols_:{error:2,Root:3,Body:4,Line:5,TERMINATOR:6,Expression:7,ExpressionLine:8,Statement:9,FuncDirective:10,YieldReturn:11,AwaitReturn:12,Return:13,STATEMENT:14,Import:15,Export:16,Value:17,Code:18,Operation:19,Assign:20,If:21,Try:22,While:23,For:24,Switch:25,Class:26,Throw:27,Yield:28,CodeLine:29,IfLine:30,OperationLine:31,YIELD:32,FROM:33,Block:34,INDENT:35,OUTDENT:36,Identifier:37,IDENTIFIER:38,CSX_TAG:39,Property:40,PROPERTY:41,AlphaNumeric:42,NUMBER:43,String:44,STRING:45,STRING_START:46,STRING_END:47,Regex:48,REGEX:49,REGEX_START:50,Invocation:51,REGEX_END:52,Literal:53,JS:54,UNDEFINED:55,NULL:56,BOOL:57,INFINITY:58,NAN:59,Assignable:60,\"=\":61,AssignObj:62,ObjAssignable:63,ObjRestValue:64,\":\":65,SimpleObjAssignable:66,ThisProperty:67,\"[\":68,\"]\":69,\"...\":70,ObjSpreadExpr:71,ObjSpreadIdentifier:72,Object:73,Parenthetical:74,Super:75,This:76,SUPER:77,Arguments:78,ObjSpreadAccessor:79,\".\":80,INDEX_START:81,IndexValue:82,INDEX_END:83,RETURN:84,AWAIT:85,PARAM_START:86,ParamList:87,PARAM_END:88,FuncGlyph:89,\"->\":90,\"=>\":91,OptComma:92,\",\":93,Param:94,ParamVar:95,Array:96,Splat:97,SimpleAssignable:98,Accessor:99,Range:100,\"?.\":101,\"::\":102,\"?::\":103,Index:104,INDEX_SOAK:105,Slice:106,\"{\":107,AssignList:108,\"}\":109,CLASS:110,EXTENDS:111,IMPORT:112,ImportDefaultSpecifier:113,ImportNamespaceSpecifier:114,ImportSpecifierList:115,ImportSpecifier:116,AS:117,DEFAULT:118,IMPORT_ALL:119,EXPORT:120,ExportSpecifierList:121,EXPORT_ALL:122,ExportSpecifier:123,OptFuncExist:124,FUNC_EXIST:125,CALL_START:126,CALL_END:127,ArgList:128,THIS:129,\"@\":130,Elisions:131,ArgElisionList:132,OptElisions:133,RangeDots:134,\"..\":135,Arg:136,ArgElision:137,Elision:138,SimpleArgs:139,TRY:140,Catch:141,FINALLY:142,CATCH:143,THROW:144,\"(\":145,\")\":146,WhileLineSource:147,WHILE:148,WHEN:149,UNTIL:150,WhileSource:151,Loop:152,LOOP:153,ForBody:154,ForLineBody:155,FOR:156,BY:157,ForStart:158,ForSource:159,ForLineSource:160,ForVariables:161,OWN:162,ForValue:163,FORIN:164,FOROF:165,FORFROM:166,SWITCH:167,Whens:168,ELSE:169,When:170,LEADING_WHEN:171,IfBlock:172,IF:173,POST_IF:174,IfBlockLine:175,UNARY:176,UNARY_MATH:177,\"-\":178,\"+\":179,\"--\":180,\"++\":181,\"?\":182,MATH:183,\"**\":184,SHIFT:185,COMPARE:186,\"&\":187,\"^\":188,\"|\":189,\"&&\":190,\"||\":191,\"BIN?\":192,RELATION:193,COMPOUND_ASSIGN:194,$accept:0,$end:1},terminals_:{2:\"error\",6:\"TERMINATOR\",14:\"STATEMENT\",32:\"YIELD\",33:\"FROM\",35:\"INDENT\",36:\"OUTDENT\",38:\"IDENTIFIER\",39:\"CSX_TAG\",41:\"PROPERTY\",43:\"NUMBER\",45:\"STRING\",46:\"STRING_START\",47:\"STRING_END\",49:\"REGEX\",50:\"REGEX_START\",52:\"REGEX_END\",54:\"JS\",55:\"UNDEFINED\",56:\"NULL\",57:\"BOOL\",58:\"INFINITY\",59:\"NAN\",61:\"=\",65:\":\",68:\"[\",69:\"]\",70:\"...\",77:\"SUPER\",80:\".\",81:\"INDEX_START\",83:\"INDEX_END\",84:\"RETURN\",85:\"AWAIT\",86:\"PARAM_START\",88:\"PARAM_END\",90:\"->\",91:\"=>\",93:\",\",101:\"?.\",102:\"::\",103:\"?::\",105:\"INDEX_SOAK\",107:\"{\",109:\"}\",110:\"CLASS\",111:\"EXTENDS\",112:\"IMPORT\",117:\"AS\",118:\"DEFAULT\",119:\"IMPORT_ALL\",120:\"EXPORT\",122:\"EXPORT_ALL\",125:\"FUNC_EXIST\",126:\"CALL_START\",127:\"CALL_END\",129:\"THIS\",130:\"@\",135:\"..\",140:\"TRY\",142:\"FINALLY\",143:\"CATCH\",144:\"THROW\",145:\"(\",146:\")\",148:\"WHILE\",149:\"WHEN\",150:\"UNTIL\",153:\"LOOP\",156:\"FOR\",157:\"BY\",162:\"OWN\",164:\"FORIN\",165:\"FOROF\",166:\"FORFROM\",167:\"SWITCH\",169:\"ELSE\",171:\"LEADING_WHEN\",173:\"IF\",174:\"POST_IF\",176:\"UNARY\",177:\"UNARY_MATH\",178:\"-\",179:\"+\",180:\"--\",181:\"++\",182:\"?\",183:\"MATH\",184:\"**\",185:\"SHIFT\",186:\"COMPARE\",187:\"&\",188:\"^\",189:\"|\",190:\"&&\",191:\"||\",192:\"BIN?\",193:\"RELATION\",194:\"COMPOUND_ASSIGN\"},productions_:[0,[3,0],[3,1],[4,1],[4,3],[4,2],[5,1],[5,1],[5,1],[5,1],[10,1],[10,1],[9,1],[9,1],[9,1],[9,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[8,1],[8,1],[8,1],[28,1],[28,2],[28,3],[34,2],[34,3],[37,1],[37,1],[40,1],[42,1],[42,1],[44,1],[44,3],[48,1],[48,3],[53,1],[53,1],[53,1],[53,1],[53,1],[53,1],[53,1],[53,1],[20,3],[20,4],[20,5],[62,1],[62,1],[62,3],[62,5],[62,3],[62,5],[66,1],[66,1],[66,1],[66,3],[63,1],[63,1],[64,2],[64,2],[64,2],[64,2],[71,1],[71,1],[71,1],[71,1],[71,1],[71,2],[71,2],[71,2],[72,2],[72,2],[79,2],[79,3],[13,2],[13,4],[13,1],[11,3],[11,2],[12,3],[12,2],[18,5],[18,2],[29,5],[29,2],[89,1],[89,1],[92,0],[92,1],[87,0],[87,1],[87,3],[87,4],[87,6],[94,1],[94,2],[94,2],[94,3],[94,1],[95,1],[95,1],[95,1],[95,1],[97,2],[97,2],[98,1],[98,2],[98,2],[98,1],[60,1],[60,1],[60,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[75,3],[75,4],[99,2],[99,2],[99,2],[99,2],[99,1],[99,1],[104,3],[104,2],[82,1],[82,1],[73,4],[108,0],[108,1],[108,3],[108,4],[108,6],[26,1],[26,2],[26,3],[26,4],[26,2],[26,3],[26,4],[26,5],[15,2],[15,4],[15,4],[15,5],[15,7],[15,6],[15,9],[115,1],[115,3],[115,4],[115,4],[115,6],[116,1],[116,3],[116,1],[116,3],[113,1],[114,3],[16,3],[16,5],[16,2],[16,4],[16,5],[16,6],[16,3],[16,5],[16,4],[16,7],[121,1],[121,3],[121,4],[121,4],[121,6],[123,1],[123,3],[123,3],[123,1],[123,3],[51,3],[51,3],[51,3],[124,0],[124,1],[78,2],[78,4],[76,1],[76,1],[67,2],[96,2],[96,3],[96,4],[134,1],[134,1],[100,5],[100,5],[106,3],[106,2],[106,3],[106,2],[106,2],[106,1],[128,1],[128,3],[128,4],[128,4],[128,6],[136,1],[136,1],[136,1],[136,1],[132,1],[132,3],[132,4],[132,4],[132,6],[137,1],[137,2],[133,1],[133,2],[131,1],[131,2],[138,1],[139,1],[139,1],[139,3],[139,3],[22,2],[22,3],[22,4],[22,5],[141,3],[141,3],[141,2],[27,2],[27,4],[74,3],[74,5],[147,2],[147,4],[147,2],[147,4],[151,2],[151,4],[151,4],[151,2],[151,4],[151,4],[23,2],[23,2],[23,2],[23,2],[23,1],[152,2],[152,2],[24,2],[24,2],[24,2],[24,2],[154,2],[154,4],[154,2],[155,4],[155,2],[158,2],[158,3],[163,1],[163,1],[163,1],[163,1],[161,1],[161,3],[159,2],[159,2],[159,4],[159,4],[159,4],[159,4],[159,4],[159,4],[159,6],[159,6],[159,6],[159,6],[159,6],[159,6],[159,6],[159,6],[159,2],[159,4],[159,4],[160,2],[160,2],[160,4],[160,4],[160,4],[160,4],[160,4],[160,4],[160,6],[160,6],[160,6],[160,6],[160,6],[160,6],[160,6],[160,6],[160,2],[160,4],[160,4],[25,5],[25,5],[25,7],[25,7],[25,4],[25,6],[168,1],[168,2],[170,3],[170,4],[172,3],[172,5],[21,1],[21,3],[21,3],[21,3],[175,3],[175,5],[30,1],[30,3],[30,3],[30,3],[31,2],[19,2],[19,2],[19,2],[19,2],[19,2],[19,2],[19,2],[19,2],[19,2],[19,2],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,3],[19,5],[19,4]],performAction:function(e,a,t,o,n,r,l){var s=r.length-1;switch(n){case 1:return this.$=o.addDataToNode(o,l[s],l[s])(new o.Block);break;case 2:return this.$=r[s];break;case 3:this.$=o.addDataToNode(o,l[s],l[s])(o.Block.wrap([r[s]]));break;case 4:this.$=o.addDataToNode(o,l[s-2],l[s])(r[s-2].push(r[s]));break;case 5:this.$=r[s-1];break;case 6:case 7:case 8:case 9:case 10:case 11:case 12:case 14:case 15:case 16:case 17:case 18:case 19:case 20:case 21:case 22:case 23:case 24:case 25:case 26:case 27:case 28:case 29:case 30:case 40:case 45:case 47:case 57:case 62:case 63:case 64:case 66:case 67:case 72:case 73:case 74:case 75:case 76:case 97:case 98:case 109:case 110:case 111:case 112:case 118:case 119:case 122:case 127:case 136:case 221:case 222:case 223:case 225:case 237:case 238:case 280:case 281:case 330:case 336:case 342:this.$=r[s];break;case 13:this.$=o.addDataToNode(o,l[s],l[s])(new o.StatementLiteral(r[s]));break;case 31:this.$=o.addDataToNode(o,l[s],l[s])(new o.Op(r[s],new o.Value(new o.Literal(\"\"))));break;case 32:case 346:case 347:case 348:case 351:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.Op(r[s-1],r[s]));break;case 33:this.$=o.addDataToNode(o,l[s-2],l[s])(new o.Op(r[s-2].concat(r[s-1]),r[s]));break;case 34:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.Block);break;case 35:case 83:case 137:this.$=o.addDataToNode(o,l[s-2],l[s])(r[s-1]);break;case 36:this.$=o.addDataToNode(o,l[s],l[s])(new o.IdentifierLiteral(r[s]));break;case 37:this.$=o.addDataToNode(o,l[s],l[s])(new o.CSXTag(r[s]));break;case 38:this.$=o.addDataToNode(o,l[s],l[s])(new o.PropertyName(r[s]));break;case 39:this.$=o.addDataToNode(o,l[s],l[s])(new o.NumberLiteral(r[s]));break;case 41:this.$=o.addDataToNode(o,l[s],l[s])(new o.StringLiteral(r[s]));break;case 42:this.$=o.addDataToNode(o,l[s-2],l[s])(new o.StringWithInterpolations(r[s-1]));break;case 43:this.$=o.addDataToNode(o,l[s],l[s])(new o.RegexLiteral(r[s]));break;case 44:this.$=o.addDataToNode(o,l[s-2],l[s])(new o.RegexWithInterpolations(r[s-1].args));break;case 46:this.$=o.addDataToNode(o,l[s],l[s])(new o.PassthroughLiteral(r[s]));break;case 48:this.$=o.addDataToNode(o,l[s],l[s])(new o.UndefinedLiteral(r[s]));break;case 49:this.$=o.addDataToNode(o,l[s],l[s])(new o.NullLiteral(r[s]));break;case 50:this.$=o.addDataToNode(o,l[s],l[s])(new o.BooleanLiteral(r[s]));break;case 51:this.$=o.addDataToNode(o,l[s],l[s])(new o.InfinityLiteral(r[s]));break;case 52:this.$=o.addDataToNode(o,l[s],l[s])(new o.NaNLiteral(r[s]));break;case 53:this.$=o.addDataToNode(o,l[s-2],l[s])(new o.Assign(r[s-2],r[s]));break;case 54:this.$=o.addDataToNode(o,l[s-3],l[s])(new o.Assign(r[s-3],r[s]));break;case 55:this.$=o.addDataToNode(o,l[s-4],l[s])(new o.Assign(r[s-4],r[s-1]));break;case 56:case 115:case 120:case 121:case 123:case 124:case 125:case 126:case 128:case 282:case 283:this.$=o.addDataToNode(o,l[s],l[s])(new o.Value(r[s]));break;case 58:this.$=o.addDataToNode(o,l[s-2],l[s])(new o.Assign(o.addDataToNode(o,l[s-2])(new o.Value(r[s-2])),r[s],\"object\",{operatorToken:o.addDataToNode(o,l[s-1])(new o.Literal(r[s-1]))}));break;case 59:this.$=o.addDataToNode(o,l[s-4],l[s])(new o.Assign(o.addDataToNode(o,l[s-4])(new o.Value(r[s-4])),r[s-1],\"object\",{operatorToken:o.addDataToNode(o,l[s-3])(new o.Literal(r[s-3]))}));break;case 60:this.$=o.addDataToNode(o,l[s-2],l[s])(new o.Assign(o.addDataToNode(o,l[s-2])(new o.Value(r[s-2])),r[s],null,{operatorToken:o.addDataToNode(o,l[s-1])(new o.Literal(r[s-1]))}));break;case 61:this.$=o.addDataToNode(o,l[s-4],l[s])(new o.Assign(o.addDataToNode(o,l[s-4])(new o.Value(r[s-4])),r[s-1],null,{operatorToken:o.addDataToNode(o,l[s-3])(new o.Literal(r[s-3]))}));break;case 65:this.$=o.addDataToNode(o,l[s-2],l[s])(new o.Value(new o.ComputedPropertyName(r[s-1])));break;case 68:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.Splat(new o.Value(r[s-1])));break;case 69:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.Splat(new o.Value(r[s])));break;case 70:case 113:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.Splat(r[s-1]));break;case 71:case 114:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.Splat(r[s]));break;case 77:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.SuperCall(o.addDataToNode(o,l[s-1])(new o.Super),r[s],!1,r[s-1]));break;case 78:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.Call(new o.Value(r[s-1]),r[s]));break;case 79:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.Call(r[s-1],r[s]));break;case 80:case 81:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.Value(r[s-1]).add(r[s]));break;case 82:case 131:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.Access(r[s]));break;case 84:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.Return(r[s]));break;case 85:this.$=o.addDataToNode(o,l[s-3],l[s])(new o.Return(new o.Value(r[s-1])));break;case 86:this.$=o.addDataToNode(o,l[s],l[s])(new o.Return);break;case 87:this.$=o.addDataToNode(o,l[s-2],l[s])(new o.YieldReturn(r[s]));break;case 88:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.YieldReturn);break;case 89:this.$=o.addDataToNode(o,l[s-2],l[s])(new o.AwaitReturn(r[s]));break;case 90:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.AwaitReturn);break;case 91:this.$=o.addDataToNode(o,l[s-4],l[s])(new o.Code(r[s-3],r[s],r[s-1],o.addDataToNode(o,l[s-4])(new o.Literal(r[s-4]))));break;case 92:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.Code([],r[s],r[s-1]));break;case 93:this.$=o.addDataToNode(o,l[s-4],l[s])(new o.Code(r[s-3],o.addDataToNode(o,l[s])(o.Block.wrap([r[s]])),r[s-1],o.addDataToNode(o,l[s-4])(new o.Literal(r[s-4]))));break;case 94:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.Code([],o.addDataToNode(o,l[s])(o.Block.wrap([r[s]])),r[s-1]));break;case 95:case 96:this.$=o.addDataToNode(o,l[s],l[s])(new o.FuncGlyph(r[s]));break;case 99:case 142:case 232:this.$=o.addDataToNode(o,l[s],l[s])([]);break;case 100:case 143:case 162:case 183:case 216:case 230:case 234:case 284:this.$=o.addDataToNode(o,l[s],l[s])([r[s]]);break;case 101:case 144:case 163:case 184:case 217:case 226:this.$=o.addDataToNode(o,l[s-2],l[s])(r[s-2].concat(r[s]));break;case 102:case 145:case 164:case 185:case 218:this.$=o.addDataToNode(o,l[s-3],l[s])(r[s-3].concat(r[s]));break;case 103:case 146:case 166:case 187:case 220:this.$=o.addDataToNode(o,l[s-5],l[s])(r[s-5].concat(r[s-2]));break;case 104:this.$=o.addDataToNode(o,l[s],l[s])(new o.Param(r[s]));break;case 105:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.Param(r[s-1],null,!0));break;case 106:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.Param(r[s],null,!0));break;case 107:this.$=o.addDataToNode(o,l[s-2],l[s])(new o.Param(r[s-2],r[s]));break;case 108:case 224:this.$=o.addDataToNode(o,l[s],l[s])(new o.Expansion);break;case 116:this.$=o.addDataToNode(o,l[s-1],l[s])(r[s-1].add(r[s]));break;case 117:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.Value(r[s-1]).add(r[s]));break;case 129:this.$=o.addDataToNode(o,l[s-2],l[s])(new o.Super(o.addDataToNode(o,l[s])(new o.Access(r[s])),[],!1,r[s-2]));break;case 130:this.$=o.addDataToNode(o,l[s-3],l[s])(new o.Super(o.addDataToNode(o,l[s-1])(new o.Index(r[s-1])),[],!1,r[s-3]));break;case 132:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.Access(r[s],\"soak\"));break;case 133:this.$=o.addDataToNode(o,l[s-1],l[s])([o.addDataToNode(o,l[s-1])(new o.Access(new o.PropertyName(\"prototype\"))),o.addDataToNode(o,l[s])(new o.Access(r[s]))]);break;case 134:this.$=o.addDataToNode(o,l[s-1],l[s])([o.addDataToNode(o,l[s-1])(new o.Access(new o.PropertyName(\"prototype\"),\"soak\")),o.addDataToNode(o,l[s])(new o.Access(r[s]))]);break;case 135:this.$=o.addDataToNode(o,l[s],l[s])(new o.Access(new o.PropertyName(\"prototype\")));break;case 138:this.$=o.addDataToNode(o,l[s-1],l[s])(o.extend(r[s],{soak:!0}));break;case 139:this.$=o.addDataToNode(o,l[s],l[s])(new o.Index(r[s]));break;case 140:this.$=o.addDataToNode(o,l[s],l[s])(new o.Slice(r[s]));break;case 141:this.$=o.addDataToNode(o,l[s-3],l[s])(new o.Obj(r[s-2],r[s-3].generated));break;case 147:this.$=o.addDataToNode(o,l[s],l[s])(new o.Class);break;case 148:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.Class(null,null,r[s]));break;case 149:this.$=o.addDataToNode(o,l[s-2],l[s])(new o.Class(null,r[s]));break;case 150:this.$=o.addDataToNode(o,l[s-3],l[s])(new o.Class(null,r[s-1],r[s]));break;case 151:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.Class(r[s]));break;case 152:this.$=o.addDataToNode(o,l[s-2],l[s])(new o.Class(r[s-1],null,r[s]));break;case 153:this.$=o.addDataToNode(o,l[s-3],l[s])(new o.Class(r[s-2],r[s]));break;case 154:this.$=o.addDataToNode(o,l[s-4],l[s])(new o.Class(r[s-3],r[s-1],r[s]));break;case 155:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.ImportDeclaration(null,r[s]));break;case 156:this.$=o.addDataToNode(o,l[s-3],l[s])(new o.ImportDeclaration(new o.ImportClause(r[s-2],null),r[s]));break;case 157:this.$=o.addDataToNode(o,l[s-3],l[s])(new o.ImportDeclaration(new o.ImportClause(null,r[s-2]),r[s]));break;case 158:this.$=o.addDataToNode(o,l[s-4],l[s])(new o.ImportDeclaration(new o.ImportClause(null,new o.ImportSpecifierList([])),r[s]));break;case 159:this.$=o.addDataToNode(o,l[s-6],l[s])(new o.ImportDeclaration(new o.ImportClause(null,new o.ImportSpecifierList(r[s-4])),r[s]));break;case 160:this.$=o.addDataToNode(o,l[s-5],l[s])(new o.ImportDeclaration(new o.ImportClause(r[s-4],r[s-2]),r[s]));break;case 161:this.$=o.addDataToNode(o,l[s-8],l[s])(new o.ImportDeclaration(new o.ImportClause(r[s-7],new o.ImportSpecifierList(r[s-4])),r[s]));break;case 165:case 186:case 199:case 219:this.$=o.addDataToNode(o,l[s-3],l[s])(r[s-2]);break;case 167:this.$=o.addDataToNode(o,l[s],l[s])(new o.ImportSpecifier(r[s]));break;case 168:this.$=o.addDataToNode(o,l[s-2],l[s])(new o.ImportSpecifier(r[s-2],r[s]));break;case 169:this.$=o.addDataToNode(o,l[s],l[s])(new o.ImportSpecifier(new o.Literal(r[s])));break;case 170:this.$=o.addDataToNode(o,l[s-2],l[s])(new o.ImportSpecifier(new o.Literal(r[s-2]),r[s]));break;case 171:this.$=o.addDataToNode(o,l[s],l[s])(new o.ImportDefaultSpecifier(r[s]));break;case 172:this.$=o.addDataToNode(o,l[s-2],l[s])(new o.ImportNamespaceSpecifier(new o.Literal(r[s-2]),r[s]));break;case 173:this.$=o.addDataToNode(o,l[s-2],l[s])(new o.ExportNamedDeclaration(new o.ExportSpecifierList([])));break;case 174:this.$=o.addDataToNode(o,l[s-4],l[s])(new o.ExportNamedDeclaration(new o.ExportSpecifierList(r[s-2])));break;case 175:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.ExportNamedDeclaration(r[s]));break;case 176:this.$=o.addDataToNode(o,l[s-3],l[s])(new o.ExportNamedDeclaration(new o.Assign(r[s-2],r[s],null,{moduleDeclaration:\"export\"})));break;case 177:this.$=o.addDataToNode(o,l[s-4],l[s])(new o.ExportNamedDeclaration(new o.Assign(r[s-3],r[s],null,{moduleDeclaration:\"export\"})));break;case 178:this.$=o.addDataToNode(o,l[s-5],l[s])(new o.ExportNamedDeclaration(new o.Assign(r[s-4],r[s-1],null,{moduleDeclaration:\"export\"})));break;case 179:this.$=o.addDataToNode(o,l[s-2],l[s])(new o.ExportDefaultDeclaration(r[s]));break;case 180:this.$=o.addDataToNode(o,l[s-4],l[s])(new o.ExportDefaultDeclaration(new o.Value(r[s-1])));break;case 181:this.$=o.addDataToNode(o,l[s-3],l[s])(new o.ExportAllDeclaration(new o.Literal(r[s-2]),r[s]));break;case 182:this.$=o.addDataToNode(o,l[s-6],l[s])(new o.ExportNamedDeclaration(new o.ExportSpecifierList(r[s-4]),r[s]));break;case 188:this.$=o.addDataToNode(o,l[s],l[s])(new o.ExportSpecifier(r[s]));break;case 189:this.$=o.addDataToNode(o,l[s-2],l[s])(new o.ExportSpecifier(r[s-2],r[s]));break;case 190:this.$=o.addDataToNode(o,l[s-2],l[s])(new o.ExportSpecifier(r[s-2],new o.Literal(r[s])));break;case 191:this.$=o.addDataToNode(o,l[s],l[s])(new o.ExportSpecifier(new o.Literal(r[s])));break;case 192:this.$=o.addDataToNode(o,l[s-2],l[s])(new o.ExportSpecifier(new o.Literal(r[s-2]),r[s]));break;case 193:this.$=o.addDataToNode(o,l[s-2],l[s])(new o.TaggedTemplateCall(r[s-2],r[s],r[s-1]));break;case 194:this.$=o.addDataToNode(o,l[s-2],l[s])(new o.Call(r[s-2],r[s],r[s-1]));break;case 195:this.$=o.addDataToNode(o,l[s-2],l[s])(new o.SuperCall(o.addDataToNode(o,l[s-2])(new o.Super),r[s],r[s-1],r[s-2]));break;case 196:this.$=o.addDataToNode(o,l[s],l[s])(!1);break;case 197:this.$=o.addDataToNode(o,l[s],l[s])(!0);break;case 198:this.$=o.addDataToNode(o,l[s-1],l[s])([]);break;case 200:case 201:this.$=o.addDataToNode(o,l[s],l[s])(new o.Value(new o.ThisLiteral(r[s])));break;case 202:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.Value(o.addDataToNode(o,l[s-1])(new o.ThisLiteral(r[s-1])),[o.addDataToNode(o,l[s])(new o.Access(r[s]))],\"this\"));break;case 203:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.Arr([]));break;case 204:this.$=o.addDataToNode(o,l[s-2],l[s])(new o.Arr(r[s-1]));break;case 205:this.$=o.addDataToNode(o,l[s-3],l[s])(new o.Arr([].concat(r[s-2],r[s-1])));break;case 206:this.$=o.addDataToNode(o,l[s],l[s])(\"inclusive\");break;case 207:this.$=o.addDataToNode(o,l[s],l[s])(\"exclusive\");break;case 208:case 209:this.$=o.addDataToNode(o,l[s-4],l[s])(new o.Range(r[s-3],r[s-1],r[s-2]));break;case 210:case 212:this.$=o.addDataToNode(o,l[s-2],l[s])(new o.Range(r[s-2],r[s],r[s-1]));break;case 211:case 213:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.Range(r[s-1],null,r[s]));break;case 214:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.Range(null,r[s],r[s-1]));break;case 215:this.$=o.addDataToNode(o,l[s],l[s])(new o.Range(null,null,r[s]));break;case 227:this.$=o.addDataToNode(o,l[s-3],l[s])(r[s-3].concat(r[s-2],r[s]));break;case 228:this.$=o.addDataToNode(o,l[s-3],l[s])(r[s-2].concat(r[s-1]));break;case 229:this.$=o.addDataToNode(o,l[s-5],l[s])(r[s-5].concat(r[s-4],r[s-2],r[s-1]));break;case 231:case 235:case 331:this.$=o.addDataToNode(o,l[s-1],l[s])(r[s-1].concat(r[s]));break;case 233:this.$=o.addDataToNode(o,l[s-1],l[s])([].concat(r[s]));break;case 236:this.$=o.addDataToNode(o,l[s],l[s])(new o.Elision);break;case 239:case 240:this.$=o.addDataToNode(o,l[s-2],l[s])([].concat(r[s-2],r[s]));break;case 241:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.Try(r[s]));break;case 242:this.$=o.addDataToNode(o,l[s-2],l[s])(new o.Try(r[s-1],r[s][0],r[s][1]));break;case 243:this.$=o.addDataToNode(o,l[s-3],l[s])(new o.Try(r[s-2],null,null,r[s]));break;case 244:this.$=o.addDataToNode(o,l[s-4],l[s])(new o.Try(r[s-3],r[s-2][0],r[s-2][1],r[s]));break;case 245:this.$=o.addDataToNode(o,l[s-2],l[s])([r[s-1],r[s]]);break;case 246:this.$=o.addDataToNode(o,l[s-2],l[s])([o.addDataToNode(o,l[s-1])(new o.Value(r[s-1])),r[s]]);break;case 247:this.$=o.addDataToNode(o,l[s-1],l[s])([null,r[s]]);break;case 248:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.Throw(r[s]));break;case 249:this.$=o.addDataToNode(o,l[s-3],l[s])(new o.Throw(new o.Value(r[s-1])));break;case 250:this.$=o.addDataToNode(o,l[s-2],l[s])(new o.Parens(r[s-1]));break;case 251:this.$=o.addDataToNode(o,l[s-4],l[s])(new o.Parens(r[s-2]));break;case 252:case 256:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.While(r[s]));break;case 253:case 257:case 258:this.$=o.addDataToNode(o,l[s-3],l[s])(new o.While(r[s-2],{guard:r[s]}));break;case 254:case 259:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.While(r[s],{invert:!0}));break;case 255:case 260:case 261:this.$=o.addDataToNode(o,l[s-3],l[s])(new o.While(r[s-2],{invert:!0,guard:r[s]}));break;case 262:case 263:this.$=o.addDataToNode(o,l[s-1],l[s])(r[s-1].addBody(r[s]));break;case 264:case 265:this.$=o.addDataToNode(o,l[s-1],l[s])(r[s].addBody(o.addDataToNode(o,l[s-1])(o.Block.wrap([r[s-1]]))));break;case 266:this.$=o.addDataToNode(o,l[s],l[s])(r[s]);break;case 267:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.While(o.addDataToNode(o,l[s-1])(new o.BooleanLiteral(\"true\"))).addBody(r[s]));break;case 268:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.While(o.addDataToNode(o,l[s-1])(new o.BooleanLiteral(\"true\"))).addBody(o.addDataToNode(o,l[s])(o.Block.wrap([r[s]]))));break;case 269:case 270:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.For(r[s-1],r[s]));break;case 271:case 272:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.For(r[s],r[s-1]));break;case 273:this.$=o.addDataToNode(o,l[s-1],l[s])({source:o.addDataToNode(o,l[s])(new o.Value(r[s]))});break;case 274:case 276:this.$=o.addDataToNode(o,l[s-3],l[s])({source:o.addDataToNode(o,l[s-2])(new o.Value(r[s-2])),step:r[s]});break;case 275:case 277:this.$=o.addDataToNode(o,l[s-1],l[s])(function(){return r[s].own=r[s-1].own,r[s].ownTag=r[s-1].ownTag,r[s].name=r[s-1][0],r[s].index=r[s-1][1],r[s]}());break;case 278:this.$=o.addDataToNode(o,l[s-1],l[s])(r[s]);break;case 279:this.$=o.addDataToNode(o,l[s-2],l[s])(function(){return r[s].own=!0,r[s].ownTag=o.addDataToNode(o,l[s-1])(new o.Literal(r[s-1])),r[s]}());break;case 285:this.$=o.addDataToNode(o,l[s-2],l[s])([r[s-2],r[s]]);break;case 286:case 305:this.$=o.addDataToNode(o,l[s-1],l[s])({source:r[s]});break;case 287:case 306:this.$=o.addDataToNode(o,l[s-1],l[s])({source:r[s],object:!0});break;case 288:case 289:case 307:case 308:this.$=o.addDataToNode(o,l[s-3],l[s])({source:r[s-2],guard:r[s]});break;case 290:case 291:case 309:case 310:this.$=o.addDataToNode(o,l[s-3],l[s])({source:r[s-2],guard:r[s],object:!0});break;case 292:case 293:case 311:case 312:this.$=o.addDataToNode(o,l[s-3],l[s])({source:r[s-2],step:r[s]});break;case 294:case 295:case 296:case 297:case 313:case 314:case 315:case 316:this.$=o.addDataToNode(o,l[s-5],l[s])({source:r[s-4],guard:r[s-2],step:r[s]});break;case 298:case 299:case 300:case 301:case 317:case 318:case 319:case 320:this.$=o.addDataToNode(o,l[s-5],l[s])({source:r[s-4],step:r[s-2],guard:r[s]});break;case 302:case 321:this.$=o.addDataToNode(o,l[s-1],l[s])({source:r[s],from:!0});break;case 303:case 304:case 322:case 323:this.$=o.addDataToNode(o,l[s-3],l[s])({source:r[s-2],guard:r[s],from:!0});break;case 324:case 325:this.$=o.addDataToNode(o,l[s-4],l[s])(new o.Switch(r[s-3],r[s-1]));break;case 326:case 327:this.$=o.addDataToNode(o,l[s-6],l[s])(new o.Switch(r[s-5],r[s-3],r[s-1]));break;case 328:this.$=o.addDataToNode(o,l[s-3],l[s])(new o.Switch(null,r[s-1]));break;case 329:this.$=o.addDataToNode(o,l[s-5],l[s])(new o.Switch(null,r[s-3],r[s-1]));break;case 332:this.$=o.addDataToNode(o,l[s-2],l[s])([[r[s-1],r[s]]]);break;case 333:this.$=o.addDataToNode(o,l[s-3],l[s])([[r[s-2],r[s-1]]]);break;case 334:case 340:this.$=o.addDataToNode(o,l[s-2],l[s])(new o.If(r[s-1],r[s],{type:r[s-2]}));break;case 335:case 341:this.$=o.addDataToNode(o,l[s-4],l[s])(r[s-4].addElse(o.addDataToNode(o,l[s-2],l[s])(new o.If(r[s-1],r[s],{type:r[s-2]}))));break;case 337:case 343:this.$=o.addDataToNode(o,l[s-2],l[s])(r[s-2].addElse(r[s]));break;case 338:case 339:case 344:case 345:this.$=o.addDataToNode(o,l[s-2],l[s])(new o.If(r[s],o.addDataToNode(o,l[s-2])(o.Block.wrap([r[s-2]])),{type:r[s-1],statement:!0}));break;case 349:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.Op(\"-\",r[s]));break;case 350:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.Op(\"+\",r[s]));break;case 352:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.Op(\"--\",r[s]));break;case 353:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.Op(\"++\",r[s]));break;case 354:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.Op(\"--\",r[s-1],null,!0));break;case 355:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.Op(\"++\",r[s-1],null,!0));break;case 356:this.$=o.addDataToNode(o,l[s-1],l[s])(new o.Existence(r[s-1]));break;case 357:this.$=o.addDataToNode(o,l[s-2],l[s])(new o.Op(\"+\",r[s-2],r[s]));break;case 358:this.$=o.addDataToNode(o,l[s-2],l[s])(new o.Op(\"-\",r[s-2],r[s]));break;case 359:case 360:case 361:case 362:case 363:case 364:case 365:case 366:case 367:case 368:this.$=o.addDataToNode(o,l[s-2],l[s])(new o.Op(r[s-1],r[s-2],r[s]));break;case 369:this.$=o.addDataToNode(o,l[s-2],l[s])(function(){return\"!\"===r[s-1].charAt(0)?new o.Op(r[s-1].slice(1),r[s-2],r[s]).invert():new o.Op(r[s-1],r[s-2],r[s])}());break;case 370:this.$=o.addDataToNode(o,l[s-2],l[s])(new o.Assign(r[s-2],r[s],r[s-1]));break;case 371:this.$=o.addDataToNode(o,l[s-4],l[s])(new o.Assign(r[s-4],r[s-1],r[s-3]));break;case 372:this.$=o.addDataToNode(o,l[s-3],l[s])(new o.Assign(r[s-3],r[s],r[s-2]))}},table:[{1:[2,1],3:1,4:2,5:3,7:4,8:5,9:6,10:7,11:27,12:28,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:o,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:N,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{1:[3]},{1:[2,2],6:W},a(X,[2,3]),a(Y,[2,6],{151:111,154:112,158:116,148:q,150:z,156:J,174:K,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),a(Y,[2,7]),a(Y,[2,8],{158:116,151:118,154:119,148:q,150:z,156:J,174:ue}),a(Y,[2,9]),a(me,[2,16],{124:120,99:121,104:127,45:he,46:he,126:he,80:ge,81:fe,101:ye,102:ke,103:Te,105:Ne,125:ve}),a(me,[2,17],{104:127,99:130,80:ge,81:fe,101:ye,102:ke,103:Te,105:Ne}),a(me,[2,18]),a(me,[2,19]),a(me,[2,20]),a(me,[2,21]),a(me,[2,22]),a(me,[2,23]),a(me,[2,24]),a(me,[2,25]),a(me,[2,26]),a(me,[2,27]),a(Y,[2,28]),a(Y,[2,29]),a(Y,[2,30]),a(be,[2,12]),a(be,[2,13]),a(be,[2,14]),a(be,[2,15]),a(Y,[2,10]),a(Y,[2,11]),a($e,_e,{61:[1,131]}),a($e,[2,123]),a($e,[2,124]),a($e,[2,125]),a($e,Ce),a($e,[2,127]),a($e,[2,128]),a(De,Ee,{87:132,94:133,95:134,37:136,67:137,96:138,73:139,38:n,39:r,68:xe,70:Ie,107:_,130:Se}),{5:143,7:4,8:5,9:6,10:7,11:27,12:28,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:o,34:142,35:Ae,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:N,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{7:145,8:146,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{7:150,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{7:156,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{7:157,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{7:158,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:[1,159],85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{17:161,18:162,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:163,67:79,68:y,73:62,74:31,75:35,76:34,77:k,86:Le,89:152,90:b,91:$,96:61,98:160,100:32,107:_,129:x,130:I,145:R},{17:161,18:162,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:163,67:79,68:y,73:62,74:31,75:35,76:34,77:k,86:Le,89:152,90:b,91:$,96:61,98:164,100:32,107:_,129:x,130:I,145:R},a(Pe,je,{180:[1,165],181:[1,166],194:[1,167]}),a(me,[2,336],{169:[1,168]}),{34:169,35:Ae},{34:170,35:Ae},{34:171,35:Ae},a(me,[2,266]),{34:172,35:Ae},{34:173,35:Ae},{7:174,8:175,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,35:[1,176],37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},a(Me,[2,147],{53:30,74:31,100:32,51:33,76:34,75:35,96:61,73:62,42:63,48:65,37:78,67:79,44:88,89:152,17:161,18:162,60:163,34:177,98:179,35:Ae,38:n,39:r,43:l,45:s,46:i,49:d,50:c,54:p,55:u,56:m,57:h,58:g,59:f,68:y,77:k,86:Le,90:b,91:$,107:_,111:[1,178],129:x,130:I,145:R}),{7:180,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,35:[1,181],37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},a([1,6,35,36,47,69,70,93,127,135,146,148,149,150,156,157,174,182,183,184,185,186,187,188,189,190,191,192,193],Ue,{17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,13:23,15:25,16:26,60:29,53:30,74:31,100:32,51:33,76:34,75:35,98:45,172:46,151:48,147:49,152:50,154:51,155:52,96:61,73:62,42:63,48:65,37:78,67:79,158:85,44:88,89:152,9:154,7:182,14:t,32:Re,33:Ve,38:n,39:r,43:l,45:s,46:i,49:d,50:c,54:p,55:u,56:m,57:h,58:g,59:f,68:y,77:k,84:[1,184],85:Oe,86:Le,90:b,91:$,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,153:F,167:P,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H}),a(Y,[2,342],{169:[1,185]}),a([1,6,36,47,69,70,93,127,135,146,148,149,150,156,157,174],Be,{17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,13:23,15:25,16:26,60:29,53:30,74:31,100:32,51:33,76:34,75:35,98:45,172:46,151:48,147:49,152:50,154:51,155:52,96:61,73:62,42:63,48:65,37:78,67:79,158:85,44:88,89:152,9:154,7:186,14:t,32:Re,35:Ge,38:n,39:r,43:l,45:s,46:i,49:d,50:c,54:p,55:u,56:m,57:h,58:g,59:f,68:y,77:k,84:T,85:Oe,86:Le,90:b,91:$,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,153:F,167:P,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H}),{37:192,38:n,39:r,44:188,45:s,46:i,107:[1,191],113:189,114:190,119:He},{26:195,37:196,38:n,39:r,107:[1,194],110:C,118:[1,197],122:[1,198]},a(Pe,[2,120]),a(Pe,[2,121]),a($e,[2,45]),a($e,[2,46]),a($e,[2,47]),a($e,[2,48]),a($e,[2,49]),a($e,[2,50]),a($e,[2,51]),a($e,[2,52]),{4:199,5:3,7:4,8:5,9:6,10:7,11:27,12:28,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:o,35:[1,200],37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:N,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{7:201,8:202,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,35:We,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,69:Xe,70:Ye,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,93:qe,96:61,97:211,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,131:204,132:205,136:210,137:207,138:206,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{80:ze,81:Je,124:213,125:ve,126:he},a($e,[2,200]),a($e,[2,201],{40:216,41:Ke}),a(Ze,[2,95]),a(Ze,[2,96]),a(Qe,[2,115]),a(Qe,[2,118]),{7:218,8:219,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{7:220,8:221,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{7:222,8:223,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{7:225,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,34:224,35:Ae,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{37:230,38:n,39:r,67:231,68:y,73:233,96:232,100:226,107:_,130:Se,161:227,162:ea,163:229},{159:234,160:235,164:[1,236],165:[1,237],166:[1,238]},a([6,35,93,109],aa,{44:88,108:239,62:240,63:241,64:242,66:243,42:244,71:246,37:247,40:248,67:249,72:251,73:252,74:253,75:254,76:255,38:n,39:r,41:Ke,43:l,45:s,46:i,68:ta,70:oa,77:na,107:_,129:x,130:I,145:R}),a(ra,[2,39]),a(ra,[2,40]),a($e,[2,43]),{17:161,18:162,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:257,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:163,67:79,68:y,73:62,74:31,75:35,76:34,77:k,86:Le,89:152,90:b,91:$,96:61,98:258,100:32,107:_,129:x,130:I,145:R},a(la,[2,36]),a(la,[2,37]),a(sa,[2,41]),{4:259,5:3,7:4,8:5,9:6,10:7,11:27,12:28,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:o,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:N,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},a(X,[2,5],{7:4,8:5,9:6,10:7,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,13:23,15:25,16:26,11:27,12:28,60:29,53:30,74:31,100:32,51:33,76:34,75:35,89:37,98:45,172:46,151:48,147:49,152:50,154:51,155:52,175:57,96:61,73:62,42:63,48:65,37:78,67:79,158:85,44:88,5:260,14:t,32:o,38:n,39:r,43:l,45:s,46:i,49:d,50:c,54:p,55:u,56:m,57:h,58:g,59:f,68:y,77:k,84:T,85:N,86:v,90:b,91:$,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,148:O,150:L,153:F,156:w,167:P,173:j,176:M,177:U,178:V,179:B,180:G,181:H}),a(me,[2,356]),{7:261,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{7:262,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{7:263,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{7:264,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{7:265,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{7:266,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{7:267,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{7:268,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{7:269,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{7:270,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{7:271,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{7:272,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{7:273,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{7:274,8:275,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},a(me,[2,265]),a(me,[2,270]),{7:220,8:276,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{7:222,8:277,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{37:230,38:n,39:r,67:231,68:y,73:233,96:232,100:278,107:_,130:Se,161:227,162:ea,163:229},{159:234,164:[1,279],165:[1,280],166:[1,281]},{7:282,8:283,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},a(me,[2,264]),a(me,[2,269]),{44:284,45:s,46:i,78:285,126:ia},a(Qe,[2,116]),a(da,[2,197]),{40:287,41:Ke},{40:288,41:Ke},a(Qe,[2,135],{40:289,41:Ke}),{40:290,41:Ke},a(Qe,[2,136]),{7:292,8:294,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,70:ca,73:62,74:31,75:35,76:34,77:k,82:291,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,106:293,107:_,110:C,112:D,120:E,129:x,130:I,134:295,135:pa,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{81:fe,104:298,105:Ne},a(Qe,[2,117]),{6:[1,300],7:299,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,35:[1,301],37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},a(ua,ma,{92:304,88:[1,302],93:ha}),a(ga,[2,100]),a(ga,[2,104],{61:[1,306],70:[1,305]}),a(ga,[2,108],{37:136,67:137,96:138,73:139,95:307,38:n,39:r,68:xe,107:_,130:Se}),a(fa,[2,109]),a(fa,[2,110]),a(fa,[2,111]),a(fa,[2,112]),{40:216,41:Ke},{7:308,8:309,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,35:We,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,69:Xe,70:Ye,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,93:qe,96:61,97:211,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,131:204,132:205,136:210,137:207,138:206,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},a(ya,[2,92]),a(Y,[2,94]),{4:311,5:3,7:4,8:5,9:6,10:7,11:27,12:28,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:o,36:[1,310],37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:N,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},a(ka,Ta,{151:111,154:112,158:116,182:ee}),a(Y,[2,346]),{7:158,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{148:q,150:z,151:118,154:119,156:J,158:116,174:ue},a([1,6,35,36,47,69,70,83,88,93,109,127,135,146,148,149,150,156,157,174,182,183,184,185,186,187,188,189,190,191,192,193],Ue,{17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,13:23,15:25,16:26,60:29,53:30,74:31,100:32,51:33,76:34,75:35,98:45,172:46,151:48,147:49,152:50,154:51,155:52,96:61,73:62,42:63,48:65,37:78,67:79,158:85,44:88,89:152,9:154,7:182,14:t,32:Re,33:Ve,38:n,39:r,43:l,45:s,46:i,49:d,50:c,54:p,55:u,56:m,57:h,58:g,59:f,68:y,77:k,84:T,85:Oe,86:Le,90:b,91:$,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,153:F,167:P,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H}),a(Na,[2,348],{151:111,154:112,158:116,182:ee,184:te}),a(De,Ee,{94:133,95:134,37:136,67:137,96:138,73:139,87:313,38:n,39:r,68:xe,70:Ie,107:_,130:Se}),{34:142,35:Ae},{7:314,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{148:q,150:z,151:118,154:119,156:J,158:116,174:[1,315]},{7:316,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},a(Na,[2,349],{151:111,154:112,158:116,182:ee,184:te}),a(Na,[2,350],{151:111,154:112,158:116,182:ee,184:te}),a(ka,[2,351],{151:111,154:112,158:116,182:ee}),a(Y,[2,90],{17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,13:23,15:25,16:26,60:29,53:30,74:31,100:32,51:33,76:34,75:35,98:45,172:46,151:48,147:49,152:50,154:51,155:52,96:61,73:62,42:63,48:65,37:78,67:79,158:85,44:88,89:152,9:154,7:317,14:t,32:Re,38:n,39:r,43:l,45:s,46:i,49:d,50:c,54:p,55:u,56:m,57:h,58:g,59:f,68:y,77:k,84:T,85:Oe,86:Le,90:b,91:$,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,148:Be,150:Be,156:Be,174:Be,153:F,167:P,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H}),a(me,[2,352],{45:je,46:je,80:je,81:je,101:je,102:je,103:je,105:je,125:je,126:je}),a(da,he,{124:120,99:121,104:127,80:ge,81:fe,101:ye,102:ke,103:Te,105:Ne,125:ve}),{80:ge,81:fe,99:130,101:ye,102:ke,103:Te,104:127,105:Ne},a(va,_e),a(me,[2,353],{45:je,46:je,80:je,81:je,101:je,102:je,103:je,105:je,125:je,126:je}),a(me,[2,354]),a(me,[2,355]),{6:[1,320],7:318,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,35:[1,319],37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{34:321,35:Ae,173:[1,322]},a(me,[2,241],{141:323,142:[1,324],143:[1,325]}),a(me,[2,262]),a(me,[2,263]),a(me,[2,271]),a(me,[2,272]),{35:[1,326],148:q,150:z,151:111,154:112,156:J,158:116,174:K,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},{35:[1,327]},{168:328,170:329,171:ba},a(me,[2,148]),{7:331,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},a(Me,[2,151],{34:332,35:Ae,45:je,46:je,80:je,81:je,101:je,102:je,103:je,105:je,125:je,126:je,111:[1,333]}),a($a,[2,248],{151:111,154:112,158:116,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),{73:334,107:_},a($a,[2,32],{151:111,154:112,158:116,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),{7:335,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},a([1,6,36,47,69,70,93,127,135,146,149,157],[2,88],{17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,13:23,15:25,16:26,60:29,53:30,74:31,100:32,51:33,76:34,75:35,98:45,172:46,151:48,147:49,152:50,154:51,155:52,96:61,73:62,42:63,48:65,37:78,67:79,158:85,44:88,89:152,9:154,7:336,14:t,32:Re,35:Ge,38:n,39:r,43:l,45:s,46:i,49:d,50:c,54:p,55:u,56:m,57:h,58:g,59:f,68:y,77:k,84:T,85:Oe,86:Le,90:b,91:$,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,148:Be,150:Be,156:Be,174:Be,153:F,167:P,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H}),{34:337,35:Ae,173:[1,338]},a(be,_a,{151:111,154:112,158:116,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),{73:339,107:_},a(be,[2,155]),{33:[1,340],93:[1,341]},{33:[1,342]},{35:Ca,37:347,38:n,39:r,109:[1,343],115:344,116:345,118:Da},a([33,93],[2,171]),{117:[1,349]},{35:Ea,37:354,38:n,39:r,109:[1,350],118:xa,121:351,123:352},a(be,[2,175]),{61:[1,356]},{7:357,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,35:[1,358],37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{33:[1,359]},{6:W,146:[1,360]},{4:361,5:3,7:4,8:5,9:6,10:7,11:27,12:28,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:o,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:N,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},a(Ia,Sa,{151:111,154:112,158:116,134:362,70:[1,363],135:pa,148:q,150:z,156:J,174:K,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),a(Ia,Aa,{134:364,70:ca,135:pa}),a(Ra,[2,203]),{7:308,8:309,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,69:[1,365],70:Ye,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,93:qe,96:61,97:211,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,136:367,138:366,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},a([6,35,69],ma,{133:368,92:370,93:Oa}),a(La,[2,234]),a(Fa,[2,225]),{7:308,8:309,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,35:We,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,70:Ye,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,93:qe,96:61,97:211,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,131:372,132:371,136:210,137:207,138:206,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},a(La,[2,236]),a(Fa,[2,230]),a(wa,[2,223]),a(wa,[2,224],{17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,13:23,15:25,16:26,60:29,53:30,74:31,100:32,51:33,76:34,75:35,98:45,172:46,151:48,147:49,152:50,154:51,155:52,96:61,73:62,42:63,48:65,37:78,67:79,158:85,44:88,89:152,9:154,7:373,14:t,32:Re,38:n,39:r,43:l,45:s,46:i,49:d,50:c,54:p,55:u,56:m,57:h,58:g,59:f,68:y,77:k,84:T,85:Oe,86:Le,90:b,91:$,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,148:O,150:L,153:F,156:w,167:P,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H}),{78:374,126:ia},{40:375,41:Ke},{7:376,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},a(Pa,[2,202]),a(Pa,[2,38]),{34:377,35:Ae,148:q,150:z,151:111,154:112,156:J,158:116,174:K,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},{34:378,35:Ae},a(ja,[2,256],{151:111,154:112,158:116,148:q,149:[1,379],150:z,156:J,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),{35:[2,252],149:[1,380]},a(ja,[2,259],{151:111,154:112,158:116,148:q,149:[1,381],150:z,156:J,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),{35:[2,254],149:[1,382]},a(me,[2,267]),a(Ma,[2,268],{151:111,154:112,158:116,148:q,150:z,156:J,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),{35:Ua,157:[1,383]},a(Va,[2,278]),{37:230,38:n,39:r,67:231,68:xe,73:233,96:232,107:_,130:Se,161:384,163:229},a(Va,[2,284],{93:[1,385]}),a(Ba,[2,280]),a(Ba,[2,281]),a(Ba,[2,282]),a(Ba,[2,283]),a(me,[2,275]),{35:[2,277]},{7:386,8:387,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{7:388,8:389,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{7:390,8:391,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},a(Ga,ma,{92:392,93:Ha}),a(Wa,[2,143]),a(Wa,[2,56],{65:[1,394]}),a(Wa,[2,57]),a(Xa,[2,66],{78:397,79:398,61:[1,395],70:[1,396],80:Ya,81:qa,126:ia}),a(Xa,[2,67]),{37:247,38:n,39:r,40:248,41:Ke,66:401,67:249,68:ta,71:402,72:251,73:252,74:253,75:254,76:255,77:na,107:_,129:x,130:I,145:R},{70:[1,403],78:404,79:405,80:Ya,81:qa,126:ia},a(za,[2,62]),a(za,[2,63]),a(za,[2,64]),{7:406,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},a(Ja,[2,72]),a(Ja,[2,73]),a(Ja,[2,74]),a(Ja,[2,75]),a(Ja,[2,76]),{78:407,80:ze,81:Je,126:ia},a(va,Ce,{52:[1,408]}),a(va,je),{6:W,47:[1,409]},a(X,[2,4]),a(Ka,[2,357],{151:111,154:112,158:116,182:ee,183:ae,184:te}),a(Ka,[2,358],{151:111,154:112,158:116,182:ee,183:ae,184:te}),a(Na,[2,359],{151:111,154:112,158:116,182:ee,184:te}),a(Na,[2,360],{151:111,154:112,158:116,182:ee,184:te}),a([1,6,35,36,47,69,70,83,88,93,109,127,135,146,148,149,150,156,157,174,185,186,187,188,189,190,191,192,193],[2,361],{151:111,154:112,158:116,178:Z,179:Q,182:ee,183:ae,184:te}),a([1,6,35,36,47,69,70,83,88,93,109,127,135,146,148,149,150,156,157,174,186,187,188,189,190,191,192],[2,362],{151:111,154:112,158:116,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,193:pe}),a([1,6,35,36,47,69,70,83,88,93,109,127,135,146,148,149,150,156,157,174,187,188,189,190,191,192],[2,363],{151:111,154:112,158:116,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,193:pe}),a([1,6,35,36,47,69,70,83,88,93,109,127,135,146,148,149,150,156,157,174,188,189,190,191,192],[2,364],{151:111,154:112,158:116,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,193:pe}),a([1,6,35,36,47,69,70,83,88,93,109,127,135,146,148,149,150,156,157,174,189,190,191,192],[2,365],{151:111,154:112,158:116,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,193:pe}),a([1,6,35,36,47,69,70,83,88,93,109,127,135,146,148,149,150,156,157,174,190,191,192],[2,366],{151:111,154:112,158:116,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,193:pe}),a([1,6,35,36,47,69,70,83,88,93,109,127,135,146,148,149,150,156,157,174,191,192],[2,367],{151:111,154:112,158:116,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,193:pe}),a([1,6,35,36,47,69,70,83,88,93,109,127,135,146,148,149,150,156,157,174,192],[2,368],{151:111,154:112,158:116,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,193:pe}),a([1,6,35,36,47,69,70,83,88,93,109,127,135,146,148,149,150,156,157,174,186,187,188,189,190,191,192,193],[2,369],{151:111,154:112,158:116,178:Z,179:Q,182:ee,183:ae,184:te,185:oe}),a(Ma,Za,{151:111,154:112,158:116,148:q,150:z,156:J,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),a(Y,[2,345]),{149:[1,410]},{149:[1,411]},a([1,6,35,36,47,69,70,83,88,93,109,127,135,146,148,149,150,156,174,178,179,182,183,184,185,186,187,188,189,190,191,192,193],Ua,{157:[1,412]}),{7:413,8:414,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{7:415,8:416,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{7:417,8:418,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},a(Ma,Qa,{151:111,154:112,158:116,148:q,150:z,156:J,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),a(Y,[2,344]),a(et,[2,193]),a(et,[2,194]),{7:308,8:309,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,35:at,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,70:Ye,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,97:211,98:45,100:32,107:_,110:C,112:D,120:E,127:[1,419],128:420,129:x,130:I,136:421,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},a(Qe,[2,131]),a(Qe,[2,132]),a(Qe,[2,133]),a(Qe,[2,134]),{83:[1,423]},{70:ca,83:[2,139],134:424,135:pa,148:q,150:z,151:111,154:112,156:J,158:116,174:K,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},{83:[2,140]},{70:ca,134:425,135:pa},{7:426,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,83:[2,215],84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},a(tt,[2,206]),a(tt,ot),a(Qe,[2,138]),a($a,[2,53],{151:111,154:112,158:116,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),{7:427,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{7:428,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{89:429,90:b,91:$},a(nt,rt,{95:134,37:136,67:137,96:138,73:139,94:430,38:n,39:r,68:xe,70:Ie,107:_,130:Se}),{6:lt,35:st},a(ga,[2,105]),{7:433,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},a(ga,[2,106]),a(wa,Sa,{151:111,154:112,158:116,70:[1,434],148:q,150:z,156:J,174:K,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),a(wa,Aa),a(it,[2,34]),{6:W,36:[1,435]},{7:436,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},a(ua,ma,{92:304,88:[1,437],93:ha}),a(ka,Ta,{151:111,154:112,158:116,182:ee}),{7:438,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{34:377,35:Ae,148:q,150:z,151:111,154:112,156:J,158:116,174:dt,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},a(Y,[2,89],{151:111,154:112,158:116,148:_a,150:_a,156:_a,174:_a,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),a($a,[2,370],{151:111,154:112,158:116,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),{7:439,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{7:440,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},a(me,[2,337]),{7:441,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},a(me,[2,242],{142:[1,442]}),{34:443,35:Ae},{34:446,35:Ae,37:444,38:n,39:r,73:445,107:_},{168:447,170:329,171:ba},{168:448,170:329,171:ba},{36:[1,449],169:[1,450],170:451,171:ba},a(ct,[2,330]),{7:453,8:454,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,139:452,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},a(pt,[2,149],{151:111,154:112,158:116,34:455,35:Ae,148:q,150:z,156:J,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),a(me,[2,152]),{7:456,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{36:[1,457]},a($a,[2,33],{151:111,154:112,158:116,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),a(Y,[2,87],{151:111,154:112,158:116,148:_a,150:_a,156:_a,174:_a,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),a(Y,[2,343]),{7:459,8:458,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{36:[1,460]},{44:461,45:s,46:i},{107:[1,463],114:462,119:He},{44:464,45:s,46:i},{33:[1,465]},a(Ga,ma,{92:466,93:ut}),a(Wa,[2,162]),{35:Ca,37:347,38:n,39:r,115:468,116:345,118:Da},a(Wa,[2,167],{117:[1,469]}),a(Wa,[2,169],{117:[1,470]}),{37:471,38:n,39:r},a(be,[2,173]),a(Ga,ma,{92:472,93:mt}),a(Wa,[2,183]),{35:Ea,37:354,38:n,39:r,118:xa,121:474,123:352},a(Wa,[2,188],{117:[1,475]}),a(Wa,[2,191],{117:[1,476]}),{6:[1,478],7:477,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,35:[1,479],37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},a(ht,[2,179],{151:111,154:112,158:116,148:q,150:z,156:J,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),{73:480,107:_},{44:481,45:s,46:i},a($e,[2,250]),{6:W,36:[1,482]},{7:483,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},a([14,32,38,39,43,45,46,49,50,54,55,56,57,58,59,68,77,84,85,86,90,91,107,110,112,120,129,130,140,144,145,148,150,153,156,167,173,176,177,178,179,180,181],ot,{6:gt,35:gt,69:gt,93:gt}),{7:484,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},a(Ra,[2,204]),a(La,[2,235]),a(Fa,[2,231]),{6:ft,35:yt,69:[1,485]},a(kt,rt,{17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,13:23,15:25,16:26,60:29,53:30,74:31,100:32,51:33,76:34,75:35,89:37,98:45,172:46,151:48,147:49,152:50,154:51,155:52,175:57,96:61,73:62,42:63,48:65,37:78,67:79,158:85,44:88,9:148,138:206,136:210,97:211,7:308,8:309,137:488,131:489,14:t,32:Re,38:n,39:r,43:l,45:s,46:i,49:d,50:c,54:p,55:u,56:m,57:h,58:g,59:f,68:y,70:Ye,77:k,84:T,85:Oe,86:v,90:b,91:$,93:qe,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,148:O,150:L,153:F,156:w,167:P,173:j,176:M,177:U,178:V,179:B,180:G,181:H}),a(kt,[2,232]),a(nt,ma,{92:370,133:490,93:Oa}),{7:308,8:309,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,70:Ye,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,93:qe,96:61,97:211,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,136:367,138:366,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},a(wa,[2,114],{151:111,154:112,158:116,148:q,150:z,156:J,174:dt,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),a(et,[2,195]),a($e,[2,129]),{83:[1,491],148:q,150:z,151:111,154:112,156:J,158:116,174:dt,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},a(Tt,[2,334]),a(Nt,[2,340]),{7:492,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{7:493,8:494,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{7:495,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{7:496,8:497,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{7:498,8:499,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},a(Va,[2,279]),{37:230,38:n,39:r,67:231,68:xe,73:233,96:232,107:_,130:Se,163:500},{35:vt,148:q,149:[1,501],150:z,151:111,154:112,156:J,157:[1,502],158:116,174:K,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},{35:[2,305],149:[1,503],157:[1,504]},{35:bt,148:q,149:[1,505],150:z,151:111,154:112,156:J,158:116,174:K,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},{35:[2,306],149:[1,506]},{35:$t,148:q,149:[1,507],150:z,151:111,154:112,156:J,158:116,174:K,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},{35:[2,321],149:[1,508]},{6:_t,35:Ct,109:[1,509]},a(Dt,rt,{44:88,63:241,64:242,66:243,42:244,71:246,37:247,40:248,67:249,72:251,73:252,74:253,75:254,76:255,62:512,38:n,39:r,41:Ke,43:l,45:s,46:i,68:ta,70:oa,77:na,107:_,129:x,130:I,145:R}),{7:513,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,35:[1,514],37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{7:515,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,35:[1,516],37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},a(Wa,[2,68]),a(Ja,[2,78]),a(Ja,[2,80]),{40:517,41:Ke},{7:292,8:294,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,70:ca,73:62,74:31,75:35,76:34,77:k,82:518,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,106:293,107:_,110:C,112:D,120:E,129:x,130:I,134:295,135:pa,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},a(Wa,[2,69],{78:397,79:398,80:Ya,81:qa,126:ia}),a(Wa,[2,71],{78:404,79:405,80:Ya,81:qa,126:ia}),a(Wa,[2,70]),a(Ja,[2,79]),a(Ja,[2,81]),{69:[1,519],148:q,150:z,151:111,154:112,156:J,158:116,174:dt,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},a(Ja,[2,77]),a($e,[2,44]),a(sa,[2,42]),{7:520,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{7:521,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{7:522,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},a([1,6,35,36,47,69,70,83,88,93,109,127,135,146,148,150,156,174],vt,{151:111,154:112,158:116,149:[1,523],157:[1,524],178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),{149:[1,525],157:[1,526]},a(Et,bt,{151:111,154:112,158:116,149:[1,527],178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),{149:[1,528]},a(Et,$t,{151:111,154:112,158:116,149:[1,529],178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),{149:[1,530]},a(et,[2,198]),a([6,35,127],ma,{92:531,93:xt}),a(It,[2,216]),{7:308,8:309,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,35:at,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,70:Ye,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,97:211,98:45,100:32,107:_,110:C,112:D,120:E,128:533,129:x,130:I,136:421,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},a(Qe,[2,137]),{7:534,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,83:[2,211],84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{7:535,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,83:[2,213],84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{83:[2,214],148:q,150:z,151:111,154:112,156:J,158:116,174:dt,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},a($a,[2,54],{151:111,154:112,158:116,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),{36:[1,536],148:q,150:z,151:111,154:112,156:J,158:116,174:dt,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},{5:538,7:4,8:5,9:6,10:7,11:27,12:28,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:o,34:537,35:Ae,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:N,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},a(ga,[2,101]),{37:136,38:n,39:r,67:137,68:xe,70:Ie,73:139,94:539,95:134,96:138,107:_,130:Se},a(St,Ee,{94:133,95:134,37:136,67:137,96:138,73:139,87:540,38:n,39:r,68:xe,70:Ie,107:_,130:Se}),a(ga,[2,107],{151:111,154:112,158:116,148:q,150:z,156:J,174:dt,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),a(wa,gt),a(it,[2,35]),a(Ma,Za,{151:111,154:112,158:116,148:q,150:z,156:J,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),{89:541,90:b,91:$},a(Ma,Qa,{151:111,154:112,158:116,148:q,150:z,156:J,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),{36:[1,542],148:q,150:z,151:111,154:112,156:J,158:116,174:dt,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},a($a,[2,372],{151:111,154:112,158:116,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),{34:543,35:Ae,148:q,150:z,151:111,154:112,156:J,158:116,174:dt,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},{34:544,35:Ae},a(me,[2,243]),{34:545,35:Ae},{34:546,35:Ae},a(At,[2,247]),{36:[1,547],169:[1,548],170:451,171:ba},{36:[1,549],169:[1,550],170:451,171:ba},a(me,[2,328]),{34:551,35:Ae},a(ct,[2,331]),{34:552,35:Ae,93:[1,553]},a(Rt,[2,237],{151:111,154:112,158:116,148:q,150:z,156:J,174:K,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),a(Rt,[2,238]),a(me,[2,150]),a(pt,[2,153],{151:111,154:112,158:116,34:554,35:Ae,148:q,150:z,156:J,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),a(me,[2,249]),{34:555,35:Ae},{148:q,150:z,151:111,154:112,156:J,158:116,174:K,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},a(be,[2,85]),a(be,[2,156]),{33:[1,556]},{35:Ca,37:347,38:n,39:r,115:557,116:345,118:Da},a(be,[2,157]),{44:558,45:s,46:i},{6:Ot,35:Lt,109:[1,559]},a(Dt,rt,{37:347,116:562,38:n,39:r,118:Da}),a(nt,ma,{92:563,93:ut}),{37:564,38:n,39:r},{37:565,38:n,39:r},{33:[2,172]},{6:Ft,35:wt,109:[1,566]},a(Dt,rt,{37:354,123:569,38:n,39:r,118:xa}),a(nt,ma,{92:570,93:mt}),{37:571,38:n,39:r,118:[1,572]},{37:573,38:n,39:r},a(ht,[2,176],{151:111,154:112,158:116,148:q,150:z,156:J,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),{7:574,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{7:575,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{36:[1,576]},a(be,[2,181]),{146:[1,577]},{69:[1,578],148:q,150:z,151:111,154:112,156:J,158:116,174:dt,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},{69:[1,579],148:q,150:z,151:111,154:112,156:J,158:116,174:dt,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},a(Ra,[2,205]),{7:308,8:309,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,70:Ye,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,93:qe,96:61,97:211,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,131:372,136:210,137:580,138:206,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{7:308,8:309,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,35:We,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,70:Ye,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,93:qe,96:61,97:211,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,131:372,132:581,136:210,137:207,138:206,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},a(Fa,[2,226]),a(kt,[2,233],{17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,13:23,15:25,16:26,60:29,53:30,74:31,100:32,51:33,76:34,75:35,89:37,98:45,172:46,151:48,147:49,152:50,154:51,155:52,175:57,96:61,73:62,42:63,48:65,37:78,67:79,158:85,44:88,9:148,97:211,7:308,8:309,138:366,136:367,14:t,32:Re,38:n,39:r,43:l,45:s,46:i,49:d,50:c,54:p,55:u,56:m,57:h,58:g,59:f,68:y,70:Ye,77:k,84:T,85:Oe,86:v,90:b,91:$,93:qe,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,148:O,150:L,153:F,156:w,167:P,173:j,176:M,177:U,178:V,179:B,180:G,181:H}),{6:ft,35:yt,36:[1,582]},a($e,[2,130]),a(Ma,[2,257],{151:111,154:112,158:116,148:q,150:z,156:J,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),{35:Pt,148:q,150:z,151:111,154:112,156:J,158:116,174:K,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},{35:[2,253]},a(Ma,[2,260],{151:111,154:112,158:116,148:q,150:z,156:J,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),{35:jt,148:q,150:z,151:111,154:112,156:J,158:116,174:K,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},{35:[2,255]},{35:Mt,148:q,150:z,151:111,154:112,156:J,158:116,174:K,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},{35:[2,276]},a(Va,[2,285]),{7:583,8:584,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{7:585,8:586,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{7:587,8:588,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{7:589,8:590,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{7:591,8:592,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{7:593,8:594,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{7:595,8:596,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{7:597,8:598,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},a(Ra,[2,141]),{37:247,38:n,39:r,40:248,41:Ke,42:244,43:l,44:88,45:s,46:i,62:599,63:241,64:242,66:243,67:249,68:ta,70:oa,71:246,72:251,73:252,74:253,75:254,76:255,77:na,107:_,129:x,130:I,145:R},a(St,aa,{44:88,62:240,63:241,64:242,66:243,42:244,71:246,37:247,40:248,67:249,72:251,73:252,74:253,75:254,76:255,108:600,38:n,39:r,41:Ke,43:l,45:s,46:i,68:ta,70:oa,77:na,107:_,129:x,130:I,145:R}),a(Wa,[2,144]),a(Wa,[2,58],{151:111,154:112,158:116,148:q,150:z,156:J,174:dt,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),{7:601,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},a(Wa,[2,60],{151:111,154:112,158:116,148:q,150:z,156:J,174:dt,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),{7:602,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},a(Ja,[2,82]),{83:[1,603]},a(za,[2,65]),a(Ma,Pt,{151:111,154:112,158:116,148:q,150:z,156:J,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),a(Ma,jt,{151:111,154:112,158:116,148:q,150:z,156:J,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),a(Ma,Mt,{151:111,154:112,158:116,148:q,150:z,156:J,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),{7:604,8:605,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{7:606,8:607,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{7:608,8:609,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{7:610,8:611,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{7:612,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{7:613,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{7:614,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{7:615,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{6:Ut,35:Vt,127:[1,616]},a([6,35,36,127],rt,{17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,13:23,15:25,16:26,60:29,53:30,74:31,100:32,51:33,76:34,75:35,89:37,98:45,172:46,151:48,147:49,152:50,154:51,155:52,175:57,96:61,73:62,42:63,48:65,37:78,67:79,158:85,44:88,9:148,97:211,7:308,8:309,136:619,14:t,32:Re,38:n,39:r,43:l,45:s,46:i,49:d,50:c,54:p,55:u,56:m,57:h,58:g,59:f,68:y,70:Ye,77:k,84:T,85:Oe,86:v,90:b,91:$,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,148:O,150:L,153:F,156:w,167:P,173:j,176:M,177:U,178:V,179:B,180:G,181:H}),a(nt,ma,{92:620,93:xt}),{83:[2,210],148:q,150:z,151:111,154:112,156:J,158:116,174:dt,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},{83:[2,212],148:q,150:z,151:111,154:112,156:J,158:116,174:dt,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},a(me,[2,55]),a(ya,[2,91]),a(Y,[2,93]),a(ga,[2,102]),a(nt,ma,{92:621,93:ha}),{34:537,35:Ae},a(me,[2,371]),a(Tt,[2,335]),a(me,[2,244]),a(At,[2,245]),a(At,[2,246]),a(me,[2,324]),{34:622,35:Ae},a(me,[2,325]),{34:623,35:Ae},{36:[1,624]},a(ct,[2,332],{6:[1,625]}),{7:626,8:627,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},a(me,[2,154]),a(Nt,[2,341]),{44:628,45:s,46:i},a(Ga,ma,{92:629,93:ut}),a(be,[2,158]),{33:[1,630]},{37:347,38:n,39:r,116:631,118:Da},{35:Ca,37:347,38:n,39:r,115:632,116:345,118:Da},a(Wa,[2,163]),{6:Ot,35:Lt,36:[1,633]},a(Wa,[2,168]),a(Wa,[2,170]),a(be,[2,174],{33:[1,634]}),{37:354,38:n,39:r,118:xa,123:635},{35:Ea,37:354,38:n,39:r,118:xa,121:636,123:352},a(Wa,[2,184]),{6:Ft,35:wt,36:[1,637]},a(Wa,[2,189]),a(Wa,[2,190]),a(Wa,[2,192]),a(ht,[2,177],{151:111,154:112,158:116,148:q,150:z,156:J,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),{36:[1,638],148:q,150:z,151:111,154:112,156:J,158:116,174:dt,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},a(be,[2,180]),a($e,[2,251]),a($e,[2,208]),a($e,[2,209]),a(Fa,[2,227]),a(nt,ma,{92:370,133:639,93:Oa}),a(Fa,[2,228]),{35:Bt,148:q,150:z,151:111,154:112,156:J,157:[1,640],158:116,174:K,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},{35:[2,307],157:[1,641]},{35:Gt,148:q,149:[1,642],150:z,151:111,154:112,156:J,158:116,174:K,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},{35:[2,311],149:[1,643]},{35:Ht,148:q,150:z,151:111,154:112,156:J,157:[1,644],158:116,174:K,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},{35:[2,308],157:[1,645]},{35:Wt,148:q,149:[1,646],150:z,151:111,154:112,156:J,158:116,174:K,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},{35:[2,312],149:[1,647]},{35:Xt,148:q,150:z,151:111,154:112,156:J,158:116,174:K,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},{35:[2,309]},{35:Yt,148:q,150:z,151:111,154:112,156:J,158:116,174:K,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},{35:[2,310]},{35:qt,148:q,150:z,151:111,154:112,156:J,158:116,174:K,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},{35:[2,322]},{35:zt,148:q,150:z,151:111,154:112,156:J,158:116,174:K,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},{35:[2,323]},a(Wa,[2,145]),a(nt,ma,{92:648,93:Ha}),{36:[1,649],148:q,150:z,151:111,154:112,156:J,158:116,174:dt,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},{36:[1,650],148:q,150:z,151:111,154:112,156:J,158:116,174:dt,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},a(Ja,[2,83]),a(Jt,Bt,{151:111,154:112,158:116,157:[1,651],178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),{157:[1,652]},a(Et,Gt,{151:111,154:112,158:116,149:[1,653],178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),{149:[1,654]},a(Jt,Ht,{151:111,154:112,158:116,157:[1,655],178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),{157:[1,656]},a(Et,Wt,{151:111,154:112,158:116,149:[1,657],178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),{149:[1,658]},a($a,Xt,{151:111,154:112,158:116,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),a($a,Yt,{151:111,154:112,158:116,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),a($a,qt,{151:111,154:112,158:116,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),a($a,zt,{151:111,154:112,158:116,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),a(et,[2,199]),{7:308,8:309,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,70:Ye,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,97:211,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,136:659,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{7:308,8:309,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,35:at,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,70:Ye,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,97:211,98:45,100:32,107:_,110:C,112:D,120:E,128:660,129:x,130:I,136:421,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},a(It,[2,217]),{6:Ut,35:Vt,36:[1,661]},{6:lt,35:st,36:[1,662]},{36:[1,663]},{36:[1,664]},a(me,[2,329]),a(ct,[2,333]),a(Rt,[2,239],{151:111,154:112,158:116,148:q,150:z,156:J,174:K,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),a(Rt,[2,240]),a(be,[2,160]),{6:Ot,35:Lt,109:[1,665]},{44:666,45:s,46:i},a(Wa,[2,164]),a(nt,ma,{92:667,93:ut}),a(Wa,[2,165]),{44:668,45:s,46:i},a(Wa,[2,185]),a(nt,ma,{92:669,93:mt}),a(Wa,[2,186]),a(be,[2,178]),{6:ft,35:yt,36:[1,670]},{7:671,8:672,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{7:673,8:674,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{7:675,8:676,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{7:677,8:678,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{7:679,8:680,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{7:681,8:682,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{7:683,8:684,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{7:685,8:686,9:148,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,29:20,30:21,31:22,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:v,89:37,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:j,175:57,176:M,177:U,178:V,179:B,180:G,181:H},{6:_t,35:Ct,36:[1,687]},a(Wa,[2,59]),a(Wa,[2,61]),{7:688,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{7:689,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{7:690,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{7:691,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{7:692,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{7:693,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{7:694,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},{7:695,9:154,13:23,14:t,15:25,16:26,17:8,18:9,19:10,20:11,21:12,22:13,23:14,24:15,25:16,26:17,27:18,28:19,32:Re,37:78,38:n,39:r,42:63,43:l,44:88,45:s,46:i,48:65,49:d,50:c,51:33,53:30,54:p,55:u,56:m,57:h,58:g,59:f,60:29,67:79,68:y,73:62,74:31,75:35,76:34,77:k,84:T,85:Oe,86:Le,89:152,90:b,91:$,96:61,98:45,100:32,107:_,110:C,112:D,120:E,129:x,130:I,140:S,144:A,145:R,147:49,148:O,150:L,151:48,152:50,153:F,154:51,155:52,156:w,158:85,167:P,172:46,173:Fe,176:we,177:U,178:V,179:B,180:G,181:H},a(It,[2,218]),a(nt,ma,{92:696,93:xt}),a(It,[2,219]),a(ga,[2,103]),a(me,[2,326]),a(me,[2,327]),{33:[1,697]},a(be,[2,159]),{6:Ot,35:Lt,36:[1,698]},a(be,[2,182]),{6:Ft,35:wt,36:[1,699]},a(Fa,[2,229]),{35:Kt,148:q,150:z,151:111,154:112,156:J,158:116,174:K,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},{35:[2,313]},{35:Zt,148:q,150:z,151:111,154:112,156:J,158:116,174:K,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},{35:[2,315]},{35:Qt,148:q,150:z,151:111,154:112,156:J,158:116,174:K,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},{35:[2,317]},{35:eo,148:q,150:z,151:111,154:112,156:J,158:116,174:K,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},{35:[2,319]},{35:ao,148:q,150:z,151:111,154:112,156:J,158:116,174:K,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},{35:[2,314]},{35:to,148:q,150:z,151:111,154:112,156:J,158:116,174:K,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},{35:[2,316]},{35:oo,148:q,150:z,151:111,154:112,156:J,158:116,174:K,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},{35:[2,318]},{35:no,148:q,150:z,151:111,154:112,156:J,158:116,174:K,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe},{35:[2,320]},a(Wa,[2,146]),a($a,Kt,{151:111,154:112,158:116,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),a($a,Zt,{151:111,154:112,158:116,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),a($a,Qt,{151:111,154:112,158:116,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),a($a,eo,{151:111,154:112,158:116,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),a($a,ao,{151:111,154:112,158:116,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),a($a,to,{151:111,154:112,158:116,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),a($a,oo,{151:111,154:112,158:116,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),a($a,no,{151:111,154:112,158:116,178:Z,179:Q,182:ee,183:ae,184:te,185:oe,186:ne,187:re,188:le,189:se,190:ie,191:de,192:ce,193:pe}),{6:Ut,35:Vt,36:[1,700]},{44:701,45:s,46:i},a(Wa,[2,166]),a(Wa,[2,187]),a(It,[2,220]),a(be,[2,161])],defaultActions:{235:[2,277],293:[2,140],471:[2,172],494:[2,253],497:[2,255],499:[2,276],592:[2,309],594:[2,310],596:[2,322],598:[2,323],672:[2,313],674:[2,315],676:[2,317],678:[2,319],680:[2,314],682:[2,316],684:[2,318],686:[2,320]},parseError:function(e,a){if(a.recoverable)this.trace(e);else{var t=new Error(e);throw t.hash=a,t}},parse:function(e){var a=this,t=[0],o=[null],n=[],l=this.table,s=\"\",i=0,d=0,c=0,u=1,m=n.slice.call(arguments,1),h=Object.create(this.lexer),g={yy:{}};for(var f in this.yy)Object.prototype.hasOwnProperty.call(this.yy,f)&&(g.yy[f]=this.yy[f]);h.setInput(e,g.yy),g.yy.lexer=h,g.yy.parser=this,\"undefined\"==typeof h.yylloc&&(h.yylloc={});var y=h.yylloc;n.push(y);var k=h.options&&h.options.ranges;this.parseError=\"function\"==typeof g.yy.parseError?g.yy.parseError:Object.getPrototypeOf(this).parseError;_token_stack:var T=function(){var e;return e=h.lex()||u,\"number\"!=typeof e&&(e=a.symbols_[e]||e),e};for(var N={},v,b,$,_,C,D,p,E,x;;){if($=t[t.length-1],this.defaultActions[$]?_=this.defaultActions[$]:((null===v||\"undefined\"==typeof v)&&(v=T()),_=l[$]&&l[$][v]),\"undefined\"==typeof _||!_.length||!_[0]){var I=\"\";for(D in x=[],l[$])this.terminals_[D]&&D>2&&x.push(\"'\"+this.terminals_[D]+\"'\");I=h.showPosition?\"Parse error on line \"+(i+1)+\":\\n\"+h.showPosition()+\"\\nExpecting \"+x.join(\", \")+\", got '\"+(this.terminals_[v]||v)+\"'\":\"Parse error on line \"+(i+1)+\": Unexpected \"+(v==u?\"end of input\":\"'\"+(this.terminals_[v]||v)+\"'\"),this.parseError(I,{text:h.match,token:this.terminals_[v]||v,line:h.yylineno,loc:y,expected:x})}if(_[0]instanceof Array&&1<_.length)throw new Error(\"Parse Error: multiple actions possible at state: \"+$+\", token: \"+v);switch(_[0]){case 1:t.push(v),o.push(h.yytext),n.push(h.yylloc),t.push(_[1]),v=null,b?(v=b,b=null):(d=h.yyleng,s=h.yytext,i=h.yylineno,y=h.yylloc,0a.call(this.compiledComments,l)))&&(this.compiledComments.push(l),s=l.here?new S(l).compileNode(e):new J(l).compileNode(e),s.isHereComment&&!s.newLine||t.includeCommentFragments()?p(s):(0===o.length&&o.push(this.makeCode(\"\")),s.unshift?(null==(n=o[0]).precedingComments&&(n.precedingComments=[]),o[0].precedingComments.push(s)):(null==(r=o[o.length-1]).followingComments&&(r.followingComments=[]),o[o.length-1].followingComments.push(s))));return o}},{key:\"cache\",value:function cache(e,a,t){var o,n,r;return o=null==t?this.shouldCache():t(this),o?(n=new R(e.scope.freeVariable(\"ref\")),r=new d(n,this),a?[r.compileToFragments(e,a),[this.makeCode(n.value)]]:[r,n]):(n=a?this.compileToFragments(e,a):this,[n,n])}},{key:\"hoist\",value:function hoist(){var e,a,t;return this.hoisted=!0,t=new A(this),e=this.compileNode,a=this.compileToFragments,this.compileNode=function(a){return t.update(e,a)},this.compileToFragments=function(e){return t.update(a,e)},t}},{key:\"cacheToCodeFragments\",value:function cacheToCodeFragments(e){return[We(e[0]),We(e[1])]}},{key:\"makeReturn\",value:function makeReturn(e){var a;return a=this.unwrapAll(),e?new u(new K(e+\".push\"),[a]):new ge(a)}},{key:\"contains\",value:function contains(e){var a;return a=void 0,this.traverseChildren(!1,function(t){if(e(t))return a=t,!1}),a}},{key:\"lastNode\",value:function lastNode(e){return 0===e.length?null:e[e.length-1]}},{key:\"toString\",value:function toString(){var e=0=X?this.wrapInParentheses(a):a)}},{key:\"compileRoot\",value:function compileRoot(e){var a,t,o,n,r,l;for(e.indent=e.bare?\"\":De,e.level=z,this.spaced=!0,e.scope=new ye(null,this,null,null==(r=e.referencedVars)?[]:r),l=e.locals||[],t=0,o=l.length;t=Y?this.wrapInParentheses(a):a}}]),a}(re),e.StringLiteral=ve=function(e){function a(){return _classCallCheck(this,a),_possibleConstructorReturn(this,(a.__proto__||Object.getPrototypeOf(a)).apply(this,arguments))}return _inherits(a,e),_createClass(a,[{key:\"compileNode\",value:function compileNode(){var e;return e=this.csx?[this.makeCode(this.unquote(!0,!0))]:_get(a.prototype.__proto__||Object.getPrototypeOf(a.prototype),\"compileNode\",this).call(this)}},{key:\"unquote\",value:function unquote(){var e=!!(0=H?\"(void 0)\":\"void 0\")]}}]),a}(K),e.NullLiteral=ne=function(e){function a(){return _classCallCheck(this,a),_possibleConstructorReturn(this,(a.__proto__||Object.getPrototypeOf(a)).call(this,\"null\"))}return _inherits(a,e),a}(K),e.BooleanLiteral=i=function(e){function a(){return _classCallCheck(this,a),_possibleConstructorReturn(this,(a.__proto__||Object.getPrototypeOf(a)).apply(this,arguments))}return _inherits(a,e),a}(K),e.Return=ge=function(){var e=function(e){function t(e){_classCallCheck(this,t);var a=_possibleConstructorReturn(this,(t.__proto__||Object.getPrototypeOf(t)).call(this));return a.expression=e,a}return _inherits(t,e),_createClass(t,[{key:\"compileToFragments\",value:function compileToFragments(e,a){var o,n;return o=null==(n=this.expression)?void 0:n.makeReturn(),o&&!(o instanceof t)?o.compileToFragments(e,a):_get(t.prototype.__proto__||Object.getPrototypeOf(t.prototype),\"compileToFragments\",this).call(this,e,a)}},{key:\"compileNode\",value:function compileNode(e){var t,o,n,r;if(t=[],this.expression){for(t=this.expression.compileToFragments(e,q),la(t,this.makeCode(this.tab+\"return \")),n=0,r=t.length;nthis.properties.length&&!this.base.shouldCache()&&(null==s||!s.shouldCache()))?[this,this]:(r=new a(this.base,this.properties.slice(0,-1)),r.shouldCache()&&(l=new R(e.scope.freeVariable(\"base\")),r=new a(new de(new d(l,r)))),!s)?[r,l]:(s.shouldCache()&&(i=new R(e.scope.freeVariable(\"name\")),s=new V(new d(i,s.index)),i=new V(i)),[r.add(s),new a(l||r.base,[i||s])])}},{key:\"compileNode\",value:function compileNode(e){var a,t,o,n,r;for(this.base.front=this.front,r=this.properties,a=r.length&&null!=this.base.cached?this.base.cached:this.base.compileToFragments(e,r.length?H:null),r.length&&fe.test(We(a))&&a.push(this.makeCode(\".\")),t=0,o=r.length;tn.length&&(n=r);this.content=this.content.replace(RegExp(\"^(\"+r+\")\",\"gm\"),\"\")}return this.content=\"/*\"+this.content+(t?\" \":\"\")+\"*/\",e=this.makeCode(this.content),e.newLine=this.newLine,e.unshift=this.unshift,e.multiline=i,e.isComment=e.isHereComment=!0,e}}]),t}(l),e.LineComment=J=function(e){function a(e){var t=e.content,o=e.newLine,n=e.unshift;_classCallCheck(this,a);var r=_possibleConstructorReturn(this,(a.__proto__||Object.getPrototypeOf(a)).call(this));return r.content=t,r.newLine=o,r.unshift=n,r}return _inherits(a,e),_createClass(a,[{key:\"compileNode\",value:function compileNode(){var e;return e=this.makeCode(/^\\s*$/.test(this.content)?\"\":\"//\"+this.content),e.newLine=this.newLine,e.unshift=this.unshift,e.trail=!this.newLine&&!this.unshift,e.isComment=e.isLineComment=!0,e}}]),a}(l),e.Call=u=function(){var e=function(e){function a(e){var t=1\")),(g=i).push.apply(g,_toConsumableArray(l.compileNode(e,X))),(f=i).push.apply(f,[this.makeCode(\"\")]))}else i.push(this.makeCode(\" />\"));return i}}]),a}(l);return e.prototype.children=[\"variable\",\"args\"],e}.call(this),e.SuperCall=_e=function(){var e=function(e){function a(){return _classCallCheck(this,a),_possibleConstructorReturn(this,(a.__proto__||Object.getPrototypeOf(a)).apply(this,arguments))}return _inherits(a,e),_createClass(a,[{key:\"isStatement\",value:function isStatement(e){var a;return(null==(a=this.expressions)?void 0:a.length)&&e.level===z}},{key:\"compileNode\",value:function compileNode(e){var t,o,n,r;if(null==(o=this.expressions)||!o.length)return _get(a.prototype.__proto__||Object.getPrototypeOf(a.prototype),\"compileNode\",this).call(this,e);if(r=new K(We(_get(a.prototype.__proto__||Object.getPrototypeOf(a.prototype),\"compileNode\",this).call(this,e))),n=new c(this.expressions.slice()),e.level>z){var l=r.cache(e,null,we),s=_slicedToArray(l,2);r=s[0],t=s[1],n.push(t)}return n.unshift(r),n.compileToFragments(e,e.level===z?e.level:X)}}]),a}(u);return e.prototype.children=u.prototype.children.concat([\"expressions\"]),e}.call(this),e.Super=$e=function(){var e=function(e){function a(e){_classCallCheck(this,a);var t=_possibleConstructorReturn(this,(a.__proto__||Object.getPrototypeOf(a)).call(this));return t.accessor=e,t}return _inherits(a,e),_createClass(a,[{key:\"compileNode\",value:function compileNode(e){var a,t,o,n,r,l,s,i;if(t=e.scope.namedMethod(),(null==t?void 0:t.isMethod)||this.error(\"cannot use super outside of an instance method\"),null==t.ctor&&null==this.accessor){var c=t;o=c.name,i=c.variable,(o.shouldCache()||o instanceof V&&o.index.isAssignable())&&(n=new R(e.scope.parent.freeVariable(\"name\")),o.index=new d(n,o.index)),this.accessor=null==n?o:new V(n)}return(null==(r=this.accessor)||null==(l=r.name)?void 0:l.comments)&&(s=this.accessor.name.comments,delete this.accessor.name.comments),a=new Le(new K(\"super\"),this.accessor?[this.accessor]:[]).compileToFragments(e),s&&Me(s,this.accessor.name),a}}]),a}(l);return e.prototype.children=[\"accessor\"],e}.call(this),e.RegexWithInterpolations=he=function(e){function a(){var e=0\"+this.equals;var f=[this.fromNum,this.toNum];return o=f[0],m=f[1],p=this.stepNum?this.stepNum+\" !== 0\":this.stepVar+\" !== 0\",t=s?null==this.step?o<=m?d+\" \"+m:n+\" \"+m:(i=o+\" <= \"+r+\" && \"+d+\" \"+m,h=o+\" >= \"+r+\" && \"+n+\" \"+m,o<=m?p+\" && \"+i:p+\" && \"+h):(i=this.fromVar+\" <= \"+r+\" && \"+d+\" \"+this.toVar,h=this.fromVar+\" >= \"+r+\" && \"+n+\" \"+this.toVar,p+\" && (\"+this.fromVar+\" <= \"+this.toVar+\" ? \"+i+\" : \"+h+\")\"),a=this.stepVar?this.stepVar+\" > 0\":this.fromVar+\" <= \"+this.toVar,u=this.stepVar?r+\" += \"+this.stepVar:s?c?o<=m?\"++\"+r:\"--\"+r:o<=m?r+\"++\":r+\"--\":c?a+\" ? ++\"+r+\" : --\"+r:a+\" ? \"+r+\"++ : \"+r+\"--\",c&&(g=l+\" = \"+g),c&&(u=l+\" = \"+u),[this.makeCode(g+\"; \"+t+\"; \"+u)]}},{key:\"compileArray\",value:function compileArray(e){var a,t,o,n,r,l,s,i,d,c,p,u,m;return(s=null!=this.fromNum&&null!=this.toNum,s&&20>=_Mathabs(this.fromNum-this.toNum))?(c=function(){for(var e=[],a=p=this.fromNum,t=this.toNum;p<=t?a<=t:a>=t;p<=t?a++:a--)e.push(a);return e}.apply(this),this.exclusive&&c.pop(),[this.makeCode(\"[\"+c.join(\", \")+\"]\")]):(l=this.tab+De,r=e.scope.freeVariable(\"i\",{single:!0,reserve:!1}),u=e.scope.freeVariable(\"results\",{reserve:!1}),d=\"\\n\"+l+\"var \"+u+\" = [];\",s?(e.index=r,t=We(this.compileNode(e))):(m=r+\" = \"+this.fromC+(this.toC===this.toVar?\"\":\", \"+this.toC),o=this.fromVar+\" <= \"+this.toVar,t=\"var \"+m+\"; \"+o+\" ? \"+r+\" <\"+this.equals+\" \"+this.toVar+\" : \"+r+\" >\"+this.equals+\" \"+this.toVar+\"; \"+o+\" ? \"+r+\"++ : \"+r+\"--\"),i=\"{ \"+u+\".push(\"+r+\"); }\\n\"+l+\"return \"+u+\";\\n\"+e.indent,n=function(e){return null==e?void 0:e.contains(qe)},(n(this.from)||n(this.to))&&(a=\", arguments\"),[this.makeCode(\"(function() {\"+d+\"\\n\"+l+\"for (\"+t+\")\"+i+\"}).apply(this\"+(null==a?\"\":a)+\")\")])}}]),a}(l);return e.prototype.children=[\"from\",\"to\"],e}.call(this),e.Slice=ke=function(){var e=function(e){function a(e){_classCallCheck(this,a);var t=_possibleConstructorReturn(this,(a.__proto__||Object.getPrototypeOf(a)).call(this));return t.range=e,t}return _inherits(a,e),_createClass(a,[{key:\"compileNode\",value:function compileNode(e){var a=this.range,t,o,n,r,l,s;return l=a.to,n=a.from,(null==n?void 0:n.shouldCache())&&(n=new Le(new de(n))),(null==l?void 0:l.shouldCache())&&(l=new Le(new de(l))),r=(null==n?void 0:n.compileToFragments(e,q))||[this.makeCode(\"0\")],l&&(t=l.compileToFragments(e,q),o=We(t),(this.range.exclusive||-1!=+o)&&(s=\", \"+(this.range.exclusive?o:l.isNumber()?\"\"+(+o+1):(t=l.compileToFragments(e,H),\"+\"+We(t)+\" + 1 || 9e9\")))),[this.makeCode(\".slice(\"+We(r)+(s||\"\")+\")\")]}}]),a}(l);return e.prototype.children=[\"range\"],e}.call(this),e.Obj=le=function(){var e=function(e){function a(e){var t=!!(1N)return l.push(new Le(new le(y.slice(N,a),!0)))};e=y[a];)(d=this.addInitializerExpression(e))&&(k(),l.push(d),i.push(d),N=a+1),a++;k(),t.apply(r,[s,s-s+1].concat(l)),l,s+=l.length}else(d=this.addInitializerExpression(n))&&(i.push(d),r[s]=d),s+=1;for(u=0,g=i.length;uX||l&&this.variable.base instanceof le&&!this.nestedLhs&&!0!==this.param?this.wrapInParentheses(o):o)}},{key:\"compileObjectDestruct\",value:function compileObjectDestruct(e){var a,t,o,l,i,d,p,m,h,g,f,y;if(t=function(a){var t;if(a instanceof n){var o=a.variable.cache(e),r=_slicedToArray(o,2);return a.variable=r[0],t=r[1],t}return a},o=function(a){var o,r;return r=t(a),o=a instanceof n&&a.variable!==r,o||!r.isAssignable()?r:new K(\"'\"+r.compileWithoutComments(e)+\"'\")},h=function traverseRest(a,l){var i,d,c,u,m,g,f,y,p,k,T;for(k=[],T=void 0,null==l.properties&&(l=new Le(l)),d=c=0,u=a.length;c=Y?this.wrapInParentheses(d):d;var W=I,q=_slicedToArray(W,1);return E=q[0],1===S&&E instanceof N&&E.error(\"Destructuring assignment has no target\"),j=function(){var e,a,t;for(t=[],v=e=0,a=I.length;ea.call(g,v):return new Le(E.base);default:return E}}(),k=function(){switch(!1){case!(E instanceof Te):return c(i,v);default:return new Le(new K(i),[new V(new re(v))])}}();h=Je(s.unwrap().value),h&&s.error(h),f.push(l.push(new n(s,k,null,{param:t.param,subpattern:!0}).compileToFragments(e,X)))}return f},o=function(a,o,r){var i;return o=new Le(new s(a,!0)),i=r instanceof Le?r:new Le(new K(r)),l.push(new n(o,i,null,{param:t.param,subpattern:!0}).compileToFragments(e,X))},A=function(e,a,t){return m(e)?D(e,a,t):o(e,a,t)},M.length?(h=M[0],C=I.slice(0,h+(_?1:0)),w=I.slice(h+1),0!==C.length&&A(C,G,H),0!==w.length&&(L=function(){switch(!1){case!_:return p(I[h].unwrapAll().value,-1*w.length);case!b:return c(H,-1*w.length)}}(),m(w)&&(F=L,L=e.scope.freeVariable(\"ref\"),l.push([this.makeCode(L+\" = \")].concat(_toConsumableArray(F.compileToFragments(e,X))))),A(w,G,L))):A(I,G,H),U||this.subpattern||l.push(G),f=this.joinFragmentArrays(l,\", \"),e.levelz?this.wrapInParentheses(o):o}},{key:\"eachName\",value:function eachName(e){return this.variable.unwrapAll().eachName(e)}}]),n}(l);return e.prototype.children=[\"variable\",\"value\"],e.prototype.isAssignable=we,e}.call(this),e.FuncGlyph=I=function(e){function a(e){_classCallCheck(this,a);var t=_possibleConstructorReturn(this,(a.__proto__||Object.getPrototypeOf(a)).call(this));return t.glyph=e,t}return _inherits(a,e),a}(l),e.Code=h=function(){var e=function(e){function t(e,a,n,r){_classCallCheck(this,t);var l=_possibleConstructorReturn(this,(t.__proto__||Object.getPrototypeOf(t)).call(this)),s;return l.funcGlyph=n,l.paramStart=r,l.params=e||[],l.body=a||new c,l.bound=\"=>\"===(null==(s=l.funcGlyph)?void 0:s.glyph),l.isGenerator=!1,l.isAsync=!1,l.isMethod=!1,l.body.traverseChildren(!1,function(e){if((e instanceof se&&e.isYield()||e instanceof Pe)&&(l.isGenerator=!0),(e instanceof se&&e.isAwait()||e instanceof o)&&(l.isAsync=!0),l.isGenerator&&l.isAsync)return e.error(\"function can't contain both yield and await\")}),l}return _inherits(t,e),_createClass(t,[{key:\"isStatement\",value:function isStatement(){return this.isMethod}},{key:\"makeScope\",value:function makeScope(e){return new ye(e,this.body,this)}},{key:\"compileNode\",value:function compileNode(e){var t,o,n,r,c,p,h,g,f,y,T,v,i,b,$,k,l,_,C,D,m,E,x,I,S,A,L,F,w,P,j,M,U,V,B,W,X,Y,q,z,J,Z,Q;for(this.ctor&&(this.isAsync&&this.name.error(\"Class constructor may not be async\"),this.isGenerator&&this.name.error(\"Class constructor may not be a generator\")),this.bound&&((null==(P=e.scope.method)?void 0:P.bound)&&(this.context=e.scope.method.context),!this.context&&(this.context=\"this\")),e.scope=Ve(e,\"classScope\")||this.makeScope(e.scope),e.scope.shared=Ve(e,\"sharedScope\"),e.indent+=De,delete e.bare,delete e.isExistentialEquals,L=[],g=[],J=null==(j=null==(M=this.thisAssignments)?void 0:M.slice())?[]:j,F=[],T=!1,y=!1,S=[],this.eachParamName(function(t,o,n,r){var l,s;if(0<=a.call(S,t)&&o.error(\"multiple parameters named '\"+t+\"'\"),S.push(t),o.this)return t=o.properties[0].name.value,0<=a.call(G,t)&&(t=\"_\"+t),s=new R(e.scope.freeVariable(t,{reserve:!1})),l=n.name instanceof le&&r instanceof d&&\"=\"===r.operatorToken.value?new d(new R(t),s,\"object\"):s,n.renameParam(o,l),J.push(new d(o,s))}),U=this.params,v=b=0,l=U.length;b\")),n.push(this.makeCode(\" {\")),null==r?void 0:r.length){var re;(re=n).push.apply(re,[this.makeCode(\"\\n\")].concat(_toConsumableArray(r),[this.makeCode(\"\\n\"+this.tab)]))}return n.push(this.makeCode(\"}\")),this.isMethod?Ye(n,this):this.front||e.level>=H?this.wrapInParentheses(n):n}},{key:\"eachParamName\",value:function eachParamName(e){var a,t,o,n,r;for(n=this.params,r=[],a=0,t=n.length;a\"===e||\">=\"===e||\"<=\"===e||\"===\"===e||\"!==\"===e}},{key:\"invert\",value:function invert(){var e,a,t,r,l;if(this.isChainable()&&this.first.isChainable()){for(e=!0,a=this;a&&a.operator;)e&&(e=a.operator in o),a=a.first;if(!e)return new de(this).invert();for(a=this;a&&a.operator;)a.invert=!a.invert,a.operator=o[a.operator],a=a.first;return this}return(r=o[this.operator])?(this.operator=r,this.first.unwrap()instanceof n&&this.first.invert(),this):this.second?new de(this).invert():\"!\"===this.operator&&(t=this.first.unwrap())instanceof n&&(\"!\"===(l=t.operator)||\"in\"===l||\"instanceof\"===l)?t:new n(\"!\",this)}},{key:\"unfoldSoak\",value:function unfoldSoak(e){var a;return(\"++\"===(a=this.operator)||\"--\"===a||\"delete\"===a)&&ra(e,this,\"first\")}},{key:\"generateDo\",value:function generateDo(e){var a,t,o,n,r,l,s,i;for(l=[],t=e instanceof d&&(s=e.value.unwrap())instanceof h?s:e,i=t.params||[],o=0,n=i.length;o=H?new de(this).compileToFragments(e):(o=\"+\"===a||\"-\"===a,(\"new\"===a||\"typeof\"===a||\"delete\"===a||o&&this.first instanceof n&&this.first.operator===a)&&t.push([this.makeCode(\" \")]),(o&&this.first instanceof n||\"new\"===a&&this.first.isStatement(e))&&(this.first=new de(this.first)),t.push(this.first.compileToFragments(e,Y)),this.flip&&t.reverse(),this.joinFragmentArrays(t,\"\"))}},{key:\"compileContinuation\",value:function compileContinuation(e){var t,o,n,r;return o=[],t=this.operator,null==e.scope.parent&&this.error(this.operator+\" can only occur inside functions\"),(null==(n=e.scope.method)?void 0:n.bound)&&e.scope.method.isGenerator&&this.error(\"yield cannot occur inside bound (fat arrow) functions\"),0<=a.call(Object.keys(this.first),\"expression\")&&!(this.first instanceof Se)?null!=this.first.expression&&o.push(this.first.expression.compileToFragments(e,Y)):(e.level>=q&&o.push([this.makeCode(\"(\")]),o.push([this.makeCode(t)]),\"\"!==(null==(r=this.first.base)?void 0:r.value)&&o.push([this.makeCode(\" \")]),o.push(this.first.compileToFragments(e,Y)),e.level>=q&&o.push([this.makeCode(\")\")])),this.joinFragmentArrays(o,\"\")}},{key:\"compilePower\",value:function compilePower(e){var a;return a=new Le(new R(\"Math\"),[new r(new pe(\"pow\"))]),new u(a,[this.first,this.second]).compileToFragments(e)}},{key:\"compileFloorDivision\",value:function compileFloorDivision(e){var a,t,o;return t=new Le(new R(\"Math\"),[new r(new pe(\"floor\"))]),o=this.second.shouldCache()?new de(this.second):this.second,a=new n(\"/\",this.first,o),new u(t,[a]).compileToFragments(e)}},{key:\"compileModulo\",value:function compileModulo(e){var a;return a=new Le(new K(sa(\"modulo\",e))),new u(a,[this.first,this.second]).compileToFragments(e)}},{key:\"toString\",value:function toString(e){return _get(n.prototype.__proto__||Object.getPrototypeOf(n.prototype),\"toString\",this).call(this,e,this.constructor.name+\" \"+this.operator)}}]),n}(l),t,o;return t={\"==\":\"===\",\"!=\":\"!==\",of:\"in\",yieldfrom:\"yield*\"},o={\"!==\":\"===\",\"===\":\"!==\"},e.prototype.children=[\"first\",\"second\"],e}.call(this),e.In=U=function(){var e=function(e){function a(e,t){_classCallCheck(this,a);var o=_possibleConstructorReturn(this,(a.__proto__||Object.getPrototypeOf(a)).call(this));return o.object=e,o.array=t,o}return _inherits(a,e),_createClass(a,[{key:\"compileNode\",value:function compileNode(e){var a,t,o,n,r;if(this.array instanceof Le&&this.array.isArray()&&this.array.base.objects.length){for(r=this.array.base.objects,t=0,o=r.length;t= 0\"))),We(r)===We(n))?o:(o=r.concat(this.makeCode(\", \"),o),e.levela.call(r,t)&&r.push(t);return delete e.comments}}),Me(r,n),Qe(n.expression,n),n}return _inherits(t,e),_createClass(t,[{key:\"compileNode\",value:function compileNode(e){var a,t,o;if(this.expression.front=this.front,o=this.expression.compile(e,Y),this.expression.unwrap()instanceof R&&!e.scope.check(o)){var n=this.negated?[\"===\",\"||\"]:[\"!==\",\"&&\"],r=_slicedToArray(n,2);a=r[0],t=r[1],o=\"typeof \"+o+\" \"+a+' \"undefined\"'+(\"undefined\"===this.comparisonTarget?\"\":\" \"+t+\" \"+o+\" \"+a+\" \"+this.comparisonTarget)}else a=\"null\"===this.comparisonTarget?this.negated?\"==\":\"!=\":this.negated?\"===\":\"!==\",o=o+\" \"+a+\" \"+this.comparisonTarget;return[this.makeCode(e.level<=W?o:\"(\"+o+\")\")]}}]),t}(l);return e.prototype.children=[\"expression\"],e.prototype.invert=ae,e}.call(this),e.Parens=de=function(){var e=function(e){function a(e){_classCallCheck(this,a);var t=_possibleConstructorReturn(this,(a.__proto__||Object.getPrototypeOf(a)).call(this));return t.body=e,t}return _inherits(a,e),_createClass(a,[{key:\"unwrap\",value:function unwrap(){return this.body}},{key:\"shouldCache\",value:function shouldCache(){return this.body.shouldCache()}},{key:\"compileNode\",value:function compileNode(e){var a,t,o,n,r;return(t=this.body.unwrap(),r=null==(n=t.comments)?void 0:n.some(function(e){return e.here&&!e.unshift&&!e.newLine}),t instanceof Le&&t.isAtomic()&&!this.csxAttribute&&!r)?(t.front=this.front,t.compileToFragments(e)):(o=t.compileToFragments(e,q),a=e.level=o.length),this.csxAttribute?this.wrapInBraces(o):a?o:this.wrapInParentheses(o))}}]),a}(l);return e.prototype.children=[\"body\"],e}.call(this),e.StringWithInterpolations=be=function(){var e=function(e){function a(e){_classCallCheck(this,a);var t=_possibleConstructorReturn(this,(a.__proto__||Object.getPrototypeOf(a)).call(this));return t.body=e,t}return _inherits(a,e),_createClass(a,[{key:\"unwrap\",value:function unwrap(){return this}},{key:\"shouldCache\",value:function shouldCache(){return this.body.shouldCache()}},{key:\"compileNode\",value:function compileNode(e){var t,o,n,r,l,s,i,d,c;if(this.csxAttribute)return c=new de(new a(this.body)),c.csxAttribute=!0,c.compileNode(e);for(r=this.body.unwrap(),n=[],d=[],r.traverseChildren(!1,function(e){var a,t,o,r,l,s;if(e instanceof ve){if(e.comments){var i;(i=d).push.apply(i,_toConsumableArray(e.comments)),delete e.comments}return n.push(e),!0}if(e instanceof de){if(0!==d.length){for(t=0,r=d.length;tP,!(this.step&&null!=P&&m)&&(_=L.freeVariable(\"len\")),i=\"\"+b+N+\" = 0, \"+_+\" = \"+M+\".length\",p=\"\"+b+N+\" = \"+M+\".length - 1\",l=N+\" < \"+_,s=N+\" >= 0\",this.step?(null==P?(l=j+\" > 0 ? \"+l+\" : \"+s,i=\"(\"+j+\" > 0 ? (\"+i+\") : \"+p+\")\"):m&&(l=s,i=p),k=N+\" += \"+j):k=\"\"+(v===N?N+\"++\":\"++\"+N),h=[this.makeCode(i+\"; \"+l+\"; \"+b+k)])),this.returns&&(I=\"\"+this.tab+A+\" = [];\\n\",S=\"\\n\"+this.tab+\"return \"+A+\";\",o.makeReturn(A)),this.guard&&(1=W?this.wrapInParentheses(n):n}},{key:\"unfoldSoak\",value:function unfoldSoak(){return this.soak&&this}}]),a}(l);return e.prototype.children=[\"condition\",\"body\",\"elseBody\"],e}.call(this),Re={modulo:function modulo(){return\"function(a, b) { return (+a % (b = +b) + b) % b; }\"},objectWithoutKeys:function objectWithoutKeys(){return\"function(o, ks) { var res = {}; for (var k in o) ([].indexOf.call(ks, k) < 0 && {}.hasOwnProperty.call(o, k)) && (res[k] = o[k]); return res; }\"},boundMethodCheck:function boundMethodCheck(){return\"function(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new Error('Bound instance method accessed before binding'); } }\"},_extends:function _extends(){return\"Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }\"},hasProp:function hasProp(){return\"{}.hasOwnProperty\"},indexOf:function(){return\"[].indexOf\"},slice:function slice(){return\"[].slice\"},splice:function(){return\"[].splice\"}},z=1,q=2,X=3,W=4,Y=5,H=6,De=\" \",fe=/^[+-]?\\d+$/,sa=function(e,a){var t,o;return o=a.scope.root,e in o.utilities?o.utilities[e]:(t=o.freeVariable(e),o.assign(t,Re[e](a)),o.utilities[e]=t)},ea=function(e,a){var t=!(2=e);)e--;return a&&[a.sourceLine,a.sourceColumn]}}]),e}(),t=function(){var e=function(){function e(){_classCallCheck(this,e),this.lines=[]}return _createClass(e,[{key:\"add\",value:function add(e,t){var o=2=t);)t--;return n&&n.sourceLocation(o)}},{key:\"generate\",value:function generate(){var e=0\"],y={version:3,file:e.generatedFile||\"\",sourceRoot:e.sourceRoot||\"\",sources:f,names:[],mappings:t},(e.sourceMap||e.inlineMap)&&(y.sourcesContent=[a]),y}},{key:\"encodeVlq\",value:function encodeVlq(e){var a,t,l,s;for(a=\"\",l=0>e?1:0,s=(_Mathabs(e)<<1)+l;s||!a;)t=s&r,s>>=n,s&&(t|=o),a+=this.encodeBase64(t);return a}},{key:\"encodeBase64\",value:function encodeBase64(e){return t[e]||function(){throw new Error(\"Cannot Base64 encode value: \"+e)}()}}]),e}(),t,o,n,r;return n=5,o=1<\",s(d,e),null==f[d]&&(f[d]=[]),f[d].push(e),y&&($=new r),S=u.tokenize(e,a),a.referencedVars=function(){var e,a,t;for(t=[],e=0,a=S.length;e\"),d=e.getLineNumber(),o=e.getColumnNumber(),p=a(r,d,o),n=p?r+\":\"+p[0]+\":\"+p[1]:r+\":\"+d+\":\"+o),l=e.getFunctionName(),s=e.isConstructor(),i=!(e.isToplevel()||s),i?(c=e.getMethodName(),m=e.getTypeName(),l?(u=t=\"\",m&&l.indexOf(m)&&(u=m+\".\"),c&&l.indexOf(\".\"+c)!==l.length-c.length-1&&(t=\" [as \"+c+\"]\"),\"\"+u+l+t+\" (\"+n+\")\"):m+\".\"+(c||\"\")+\" (\"+n+\")\"):s?\"new \"+(l||\"\")+\" (\"+n+\")\":l?l+\" (\"+n+\")\":n},i=function(e,t,n){var r,l,s,i,c,u;if(!(\"\"===e||(i=e.slice(e.lastIndexOf(\".\")),0<=a.call(o,i))))return null;if(\"\"!==e&&null!=g[e])return g[e][g[e].length-1];if(null!=g[\"\"])for(c=g[\"\"],l=c.length-1;0<=l;l+=-1)if(s=c[l],u=s.sourceLocation([t-1,n-1]),null!=(null==u?void 0:u[0])&&null!=u[1])return s;return null==f[e]?null:(r=d(f[e][f[e].length-1],{filename:e,sourceMap:!0,literate:p.isLiterate(e)}),r.sourceMap)},Error.prepareStackTrace=function(a,t){var o,n,r;return r=function(e,a,t){var o,n;return n=i(e,a,t),null!=n&&(o=n.sourceLocation([a-1,t-1])),null==o?null:[o[0]+1,o[1]+1]},n=function(){var a,n,l;for(l=[],a=0,n=t.length;a 0) {\n if (pos > length)\n pos = length;\n } else if (pos == void 0) {\n pos = 0;\n } else if (pos < 0) {\n pos = Math.max(length + pos, 0);\n }\n\n if (!(pos+removeCount < length))\n removeCount = length - pos;\n\n var removed = this.slice(pos, pos+removeCount);\n var insert = slice.call(arguments, 2);\n var add = insert.length; \n if (pos === length) {\n if (add) {\n this.push.apply(this, insert);\n }\n } else {\n var remove = Math.min(removeCount, length - pos);\n var tailOldPos = pos + remove;\n var tailNewPos = tailOldPos + add - remove;\n var tailCount = length - tailOldPos;\n var lengthAfterRemove = length - remove;\n\n if (tailNewPos < tailOldPos) { // case A\n for (var i = 0; i < tailCount; ++i) {\n this[tailNewPos+i] = this[tailOldPos+i];\n }\n } else if (tailNewPos > tailOldPos) { // case B\n for (i = tailCount; i--; ) {\n this[tailNewPos+i] = this[tailOldPos+i];\n }\n } // else, add == remove (nothing to do)\n\n if (add && pos === lengthAfterRemove) {\n this.length = lengthAfterRemove; // truncate array\n this.push.apply(this, insert);\n } else {\n this.length = lengthAfterRemove + add; // reserves space\n for (i = 0; i < add; ++i) {\n this[pos+i] = insert[i];\n }\n }\n }\n return removed;\n };\n }\n}\nif (!Array.isArray) {\n Array.isArray = function isArray(obj) {\n return _toString(obj) == \"[object Array]\";\n };\n}\nvar boxedString = Object(\"a\"),\n splitString = boxedString[0] != \"a\" || !(0 in boxedString);\n\nif (!Array.prototype.forEach) {\n Array.prototype.forEach = function forEach(fun /*, thisp*/) {\n var object = toObject(this),\n self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n object,\n thisp = arguments[1],\n i = -1,\n length = self.length >>> 0;\n if (_toString(fun) != \"[object Function]\") {\n throw new TypeError(); // TODO message\n }\n\n while (++i < length) {\n if (i in self) {\n fun.call(thisp, self[i], i, object);\n }\n }\n };\n}\nif (!Array.prototype.map) {\n Array.prototype.map = function map(fun /*, thisp*/) {\n var object = toObject(this),\n self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n object,\n length = self.length >>> 0,\n result = Array(length),\n thisp = arguments[1];\n if (_toString(fun) != \"[object Function]\") {\n throw new TypeError(fun + \" is not a function\");\n }\n\n for (var i = 0; i < length; i++) {\n if (i in self)\n result[i] = fun.call(thisp, self[i], i, object);\n }\n return result;\n };\n}\nif (!Array.prototype.filter) {\n Array.prototype.filter = function filter(fun /*, thisp */) {\n var object = toObject(this),\n self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n object,\n length = self.length >>> 0,\n result = [],\n value,\n thisp = arguments[1];\n if (_toString(fun) != \"[object Function]\") {\n throw new TypeError(fun + \" is not a function\");\n }\n\n for (var i = 0; i < length; i++) {\n if (i in self) {\n value = self[i];\n if (fun.call(thisp, value, i, object)) {\n result.push(value);\n }\n }\n }\n return result;\n };\n}\nif (!Array.prototype.every) {\n Array.prototype.every = function every(fun /*, thisp */) {\n var object = toObject(this),\n self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n object,\n length = self.length >>> 0,\n thisp = arguments[1];\n if (_toString(fun) != \"[object Function]\") {\n throw new TypeError(fun + \" is not a function\");\n }\n\n for (var i = 0; i < length; i++) {\n if (i in self && !fun.call(thisp, self[i], i, object)) {\n return false;\n }\n }\n return true;\n };\n}\nif (!Array.prototype.some) {\n Array.prototype.some = function some(fun /*, thisp */) {\n var object = toObject(this),\n self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n object,\n length = self.length >>> 0,\n thisp = arguments[1];\n if (_toString(fun) != \"[object Function]\") {\n throw new TypeError(fun + \" is not a function\");\n }\n\n for (var i = 0; i < length; i++) {\n if (i in self && fun.call(thisp, self[i], i, object)) {\n return true;\n }\n }\n return false;\n };\n}\nif (!Array.prototype.reduce) {\n Array.prototype.reduce = function reduce(fun /*, initial*/) {\n var object = toObject(this),\n self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n object,\n length = self.length >>> 0;\n if (_toString(fun) != \"[object Function]\") {\n throw new TypeError(fun + \" is not a function\");\n }\n if (!length && arguments.length == 1) {\n throw new TypeError(\"reduce of empty array with no initial value\");\n }\n\n var i = 0;\n var result;\n if (arguments.length >= 2) {\n result = arguments[1];\n } else {\n do {\n if (i in self) {\n result = self[i++];\n break;\n }\n if (++i >= length) {\n throw new TypeError(\"reduce of empty array with no initial value\");\n }\n } while (true);\n }\n\n for (; i < length; i++) {\n if (i in self) {\n result = fun.call(void 0, result, self[i], i, object);\n }\n }\n\n return result;\n };\n}\nif (!Array.prototype.reduceRight) {\n Array.prototype.reduceRight = function reduceRight(fun /*, initial*/) {\n var object = toObject(this),\n self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n object,\n length = self.length >>> 0;\n if (_toString(fun) != \"[object Function]\") {\n throw new TypeError(fun + \" is not a function\");\n }\n if (!length && arguments.length == 1) {\n throw new TypeError(\"reduceRight of empty array with no initial value\");\n }\n\n var result, i = length - 1;\n if (arguments.length >= 2) {\n result = arguments[1];\n } else {\n do {\n if (i in self) {\n result = self[i--];\n break;\n }\n if (--i < 0) {\n throw new TypeError(\"reduceRight of empty array with no initial value\");\n }\n } while (true);\n }\n\n do {\n if (i in this) {\n result = fun.call(void 0, result, self[i], i, object);\n }\n } while (i--);\n\n return result;\n };\n}\nif (!Array.prototype.indexOf || ([0, 1].indexOf(1, 2) != -1)) {\n Array.prototype.indexOf = function indexOf(sought /*, fromIndex */ ) {\n var self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n toObject(this),\n length = self.length >>> 0;\n\n if (!length) {\n return -1;\n }\n\n var i = 0;\n if (arguments.length > 1) {\n i = toInteger(arguments[1]);\n }\n i = i >= 0 ? i : Math.max(0, length + i);\n for (; i < length; i++) {\n if (i in self && self[i] === sought) {\n return i;\n }\n }\n return -1;\n };\n}\nif (!Array.prototype.lastIndexOf || ([0, 1].lastIndexOf(0, -3) != -1)) {\n Array.prototype.lastIndexOf = function lastIndexOf(sought /*, fromIndex */) {\n var self = splitString && _toString(this) == \"[object String]\" ?\n this.split(\"\") :\n toObject(this),\n length = self.length >>> 0;\n\n if (!length) {\n return -1;\n }\n var i = length - 1;\n if (arguments.length > 1) {\n i = Math.min(i, toInteger(arguments[1]));\n }\n i = i >= 0 ? i : length - Math.abs(i);\n for (; i >= 0; i--) {\n if (i in self && sought === self[i]) {\n return i;\n }\n }\n return -1;\n };\n}\nif (!Object.getPrototypeOf) {\n Object.getPrototypeOf = function getPrototypeOf(object) {\n return object.__proto__ || (\n object.constructor ?\n object.constructor.prototype :\n prototypeOfObject\n );\n };\n}\nif (!Object.getOwnPropertyDescriptor) {\n var ERR_NON_OBJECT = \"Object.getOwnPropertyDescriptor called on a \" +\n \"non-object: \";\n Object.getOwnPropertyDescriptor = function getOwnPropertyDescriptor(object, property) {\n if ((typeof object != \"object\" && typeof object != \"function\") || object === null)\n throw new TypeError(ERR_NON_OBJECT + object);\n if (!owns(object, property))\n return;\n\n var descriptor, getter, setter;\n descriptor = { enumerable: true, configurable: true };\n if (supportsAccessors) {\n var prototype = object.__proto__;\n object.__proto__ = prototypeOfObject;\n\n var getter = lookupGetter(object, property);\n var setter = lookupSetter(object, property);\n object.__proto__ = prototype;\n\n if (getter || setter) {\n if (getter) descriptor.get = getter;\n if (setter) descriptor.set = setter;\n return descriptor;\n }\n }\n descriptor.value = object[property];\n return descriptor;\n };\n}\nif (!Object.getOwnPropertyNames) {\n Object.getOwnPropertyNames = function getOwnPropertyNames(object) {\n return Object.keys(object);\n };\n}\nif (!Object.create) {\n var createEmpty;\n if (Object.prototype.__proto__ === null) {\n createEmpty = function () {\n return { \"__proto__\": null };\n };\n } else {\n createEmpty = function () {\n var empty = {};\n for (var i in empty)\n empty[i] = null;\n empty.constructor =\n empty.hasOwnProperty =\n empty.propertyIsEnumerable =\n empty.isPrototypeOf =\n empty.toLocaleString =\n empty.toString =\n empty.valueOf =\n empty.__proto__ = null;\n return empty;\n }\n }\n\n Object.create = function create(prototype, properties) {\n var object;\n if (prototype === null) {\n object = createEmpty();\n } else {\n if (typeof prototype != \"object\")\n throw new TypeError(\"typeof prototype[\"+(typeof prototype)+\"] != 'object'\");\n var Type = function () {};\n Type.prototype = prototype;\n object = new Type();\n object.__proto__ = prototype;\n }\n if (properties !== void 0)\n Object.defineProperties(object, properties);\n return object;\n };\n}\n\nfunction doesDefinePropertyWork(object) {\n try {\n Object.defineProperty(object, \"sentinel\", {});\n return \"sentinel\" in object;\n } catch (exception) {\n }\n}\nif (Object.defineProperty) {\n var definePropertyWorksOnObject = doesDefinePropertyWork({});\n var definePropertyWorksOnDom = typeof document == \"undefined\" ||\n doesDefinePropertyWork(document.createElement(\"div\"));\n if (!definePropertyWorksOnObject || !definePropertyWorksOnDom) {\n var definePropertyFallback = Object.defineProperty;\n }\n}\n\nif (!Object.defineProperty || definePropertyFallback) {\n var ERR_NON_OBJECT_DESCRIPTOR = \"Property description must be an object: \";\n var ERR_NON_OBJECT_TARGET = \"Object.defineProperty called on non-object: \"\n var ERR_ACCESSORS_NOT_SUPPORTED = \"getters & setters can not be defined \" +\n \"on this javascript engine\";\n\n Object.defineProperty = function defineProperty(object, property, descriptor) {\n if ((typeof object != \"object\" && typeof object != \"function\") || object === null)\n throw new TypeError(ERR_NON_OBJECT_TARGET + object);\n if ((typeof descriptor != \"object\" && typeof descriptor != \"function\") || descriptor === null)\n throw new TypeError(ERR_NON_OBJECT_DESCRIPTOR + descriptor);\n if (definePropertyFallback) {\n try {\n return definePropertyFallback.call(Object, object, property, descriptor);\n } catch (exception) {\n }\n }\n if (owns(descriptor, \"value\")) {\n\n if (supportsAccessors && (lookupGetter(object, property) ||\n lookupSetter(object, property)))\n {\n var prototype = object.__proto__;\n object.__proto__ = prototypeOfObject;\n delete object[property];\n object[property] = descriptor.value;\n object.__proto__ = prototype;\n } else {\n object[property] = descriptor.value;\n }\n } else {\n if (!supportsAccessors)\n throw new TypeError(ERR_ACCESSORS_NOT_SUPPORTED);\n if (owns(descriptor, \"get\"))\n defineGetter(object, property, descriptor.get);\n if (owns(descriptor, \"set\"))\n defineSetter(object, property, descriptor.set);\n }\n\n return object;\n };\n}\nif (!Object.defineProperties) {\n Object.defineProperties = function defineProperties(object, properties) {\n for (var property in properties) {\n if (owns(properties, property))\n Object.defineProperty(object, property, properties[property]);\n }\n return object;\n };\n}\nif (!Object.seal) {\n Object.seal = function seal(object) {\n return object;\n };\n}\nif (!Object.freeze) {\n Object.freeze = function freeze(object) {\n return object;\n };\n}\ntry {\n Object.freeze(function () {});\n} catch (exception) {\n Object.freeze = (function freeze(freezeObject) {\n return function freeze(object) {\n if (typeof object == \"function\") {\n return object;\n } else {\n return freezeObject(object);\n }\n };\n })(Object.freeze);\n}\nif (!Object.preventExtensions) {\n Object.preventExtensions = function preventExtensions(object) {\n return object;\n };\n}\nif (!Object.isSealed) {\n Object.isSealed = function isSealed(object) {\n return false;\n };\n}\nif (!Object.isFrozen) {\n Object.isFrozen = function isFrozen(object) {\n return false;\n };\n}\nif (!Object.isExtensible) {\n Object.isExtensible = function isExtensible(object) {\n if (Object(object) === object) {\n throw new TypeError(); // TODO message\n }\n var name = '';\n while (owns(object, name)) {\n name += '?';\n }\n object[name] = true;\n var returnValue = owns(object, name);\n delete object[name];\n return returnValue;\n };\n}\nif (!Object.keys) {\n var hasDontEnumBug = true,\n dontEnums = [\n \"toString\",\n \"toLocaleString\",\n \"valueOf\",\n \"hasOwnProperty\",\n \"isPrototypeOf\",\n \"propertyIsEnumerable\",\n \"constructor\"\n ],\n dontEnumsLength = dontEnums.length;\n\n for (var key in {\"toString\": null}) {\n hasDontEnumBug = false;\n }\n\n Object.keys = function keys(object) {\n\n if (\n (typeof object != \"object\" && typeof object != \"function\") ||\n object === null\n ) {\n throw new TypeError(\"Object.keys called on a non-object\");\n }\n\n var keys = [];\n for (var name in object) {\n if (owns(object, name)) {\n keys.push(name);\n }\n }\n\n if (hasDontEnumBug) {\n for (var i = 0, ii = dontEnumsLength; i < ii; i++) {\n var dontEnum = dontEnums[i];\n if (owns(object, dontEnum)) {\n keys.push(dontEnum);\n }\n }\n }\n return keys;\n };\n\n}\nif (!Date.now) {\n Date.now = function now() {\n return new Date().getTime();\n };\n}\nvar ws = \"\\x09\\x0A\\x0B\\x0C\\x0D\\x20\\xA0\\u1680\\u180E\\u2000\\u2001\\u2002\\u2003\" +\n \"\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200A\\u202F\\u205F\\u3000\\u2028\" +\n \"\\u2029\\uFEFF\";\nif (!String.prototype.trim || ws.trim()) {\n ws = \"[\" + ws + \"]\";\n var trimBeginRegexp = new RegExp(\"^\" + ws + ws + \"*\"),\n trimEndRegexp = new RegExp(ws + ws + \"*$\");\n String.prototype.trim = function trim() {\n return String(this).replace(trimBeginRegexp, \"\").replace(trimEndRegexp, \"\");\n };\n}\n\nfunction toInteger(n) {\n n = +n;\n if (n !== n) { // isNaN\n n = 0;\n } else if (n !== 0 && n !== (1/0) && n !== -(1/0)) {\n n = (n > 0 || -1) * Math.floor(Math.abs(n));\n }\n return n;\n}\n\nfunction isPrimitive(input) {\n var type = typeof input;\n return (\n input === null ||\n type === \"undefined\" ||\n type === \"boolean\" ||\n type === \"number\" ||\n type === \"string\"\n );\n}\n\nfunction toPrimitive(input) {\n var val, valueOf, toString;\n if (isPrimitive(input)) {\n return input;\n }\n valueOf = input.valueOf;\n if (typeof valueOf === \"function\") {\n val = valueOf.call(input);\n if (isPrimitive(val)) {\n return val;\n }\n }\n toString = input.toString;\n if (typeof toString === \"function\") {\n val = toString.call(input);\n if (isPrimitive(val)) {\n return val;\n }\n }\n throw new TypeError();\n}\nvar toObject = function (o) {\n if (o == null) { // this matches both null and undefined\n throw new TypeError(\"can't convert \"+o+\" to object\");\n }\n return Object(o);\n};\n\n});\n"), } file3p := &embedded.EmbeddedFile{ Filename: "5683c8e2b4781ac5373747e5e6268216.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/snippets/csharp\",[\"require\",\"exports\",\"module\"], function(require, exports, module) {\n\"use strict\";\n\nexports.snippetText =undefined;\nexports.scope = \"csharp\";\n\n}); (function() {\n ace.require([\"ace/snippets/csharp\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file3q := &embedded.EmbeddedFile{ Filename: "56b2667feae224aa570e7989124cf63d.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/css_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar supportType = exports.supportType = \"align-content|align-items|align-self|all|animation|animation-delay|animation-direction|animation-duration|animation-fill-mode|animation-iteration-count|animation-name|animation-play-state|animation-timing-function|backface-visibility|background|background-attachment|background-blend-mode|background-clip|background-color|background-image|background-origin|background-position|background-repeat|background-size|border|border-bottom|border-bottom-color|border-bottom-left-radius|border-bottom-right-radius|border-bottom-style|border-bottom-width|border-collapse|border-color|border-image|border-image-outset|border-image-repeat|border-image-slice|border-image-source|border-image-width|border-left|border-left-color|border-left-style|border-left-width|border-radius|border-right|border-right-color|border-right-style|border-right-width|border-spacing|border-style|border-top|border-top-color|border-top-left-radius|border-top-right-radius|border-top-style|border-top-width|border-width|bottom|box-shadow|box-sizing|caption-side|clear|clip|color|column-count|column-fill|column-gap|column-rule|column-rule-color|column-rule-style|column-rule-width|column-span|column-width|columns|content|counter-increment|counter-reset|cursor|direction|display|empty-cells|filter|flex|flex-basis|flex-direction|flex-flow|flex-grow|flex-shrink|flex-wrap|float|font|font-family|font-size|font-size-adjust|font-stretch|font-style|font-variant|font-weight|hanging-punctuation|height|justify-content|left|letter-spacing|line-height|list-style|list-style-image|list-style-position|list-style-type|margin|margin-bottom|margin-left|margin-right|margin-top|max-height|max-width|max-zoom|min-height|min-width|min-zoom|nav-down|nav-index|nav-left|nav-right|nav-up|opacity|order|outline|outline-color|outline-offset|outline-style|outline-width|overflow|overflow-x|overflow-y|padding|padding-bottom|padding-left|padding-right|padding-top|page-break-after|page-break-before|page-break-inside|perspective|perspective-origin|position|quotes|resize|right|tab-size|table-layout|text-align|text-align-last|text-decoration|text-decoration-color|text-decoration-line|text-decoration-style|text-indent|text-justify|text-overflow|text-shadow|text-transform|top|transform|transform-origin|transform-style|transition|transition-delay|transition-duration|transition-property|transition-timing-function|unicode-bidi|user-select|user-zoom|vertical-align|visibility|white-space|width|word-break|word-spacing|word-wrap|z-index\";\nvar supportFunction = exports.supportFunction = \"rgb|rgba|url|attr|counter|counters\";\nvar supportConstant = exports.supportConstant = \"absolute|after-edge|after|all-scroll|all|alphabetic|always|antialiased|armenian|auto|avoid-column|avoid-page|avoid|balance|baseline|before-edge|before|below|bidi-override|block-line-height|block|bold|bolder|border-box|both|bottom|box|break-all|break-word|capitalize|caps-height|caption|center|central|char|circle|cjk-ideographic|clone|close-quote|col-resize|collapse|column|consider-shifts|contain|content-box|cover|crosshair|cubic-bezier|dashed|decimal-leading-zero|decimal|default|disabled|disc|disregard-shifts|distribute-all-lines|distribute-letter|distribute-space|distribute|dotted|double|e-resize|ease-in|ease-in-out|ease-out|ease|ellipsis|end|exclude-ruby|fill|fixed|georgian|glyphs|grid-height|groove|hand|hanging|hebrew|help|hidden|hiragana-iroha|hiragana|horizontal|icon|ideograph-alpha|ideograph-numeric|ideograph-parenthesis|ideograph-space|ideographic|inactive|include-ruby|inherit|initial|inline-block|inline-box|inline-line-height|inline-table|inline|inset|inside|inter-ideograph|inter-word|invert|italic|justify|katakana-iroha|katakana|keep-all|last|left|lighter|line-edge|line-through|line|linear|list-item|local|loose|lower-alpha|lower-greek|lower-latin|lower-roman|lowercase|lr-tb|ltr|mathematical|max-height|max-size|medium|menu|message-box|middle|move|n-resize|ne-resize|newspaper|no-change|no-close-quote|no-drop|no-open-quote|no-repeat|none|normal|not-allowed|nowrap|nw-resize|oblique|open-quote|outset|outside|overline|padding-box|page|pointer|pre-line|pre-wrap|pre|preserve-3d|progress|relative|repeat-x|repeat-y|repeat|replaced|reset-size|ridge|right|round|row-resize|rtl|s-resize|scroll|se-resize|separate|slice|small-caps|small-caption|solid|space|square|start|static|status-bar|step-end|step-start|steps|stretch|strict|sub|super|sw-resize|table-caption|table-cell|table-column-group|table-column|table-footer-group|table-header-group|table-row-group|table-row|table|tb-rl|text-after-edge|text-before-edge|text-bottom|text-size|text-top|text|thick|thin|transparent|underline|upper-alpha|upper-latin|upper-roman|uppercase|use-script|vertical-ideographic|vertical-text|visible|w-resize|wait|whitespace|z-index|zero|zoom\";\nvar supportConstantColor = exports.supportConstantColor = \"aliceblue|antiquewhite|aqua|aquamarine|azure|beige|bisque|black|blanchedalmond|blue|blueviolet|brown|burlywood|cadetblue|chartreuse|chocolate|coral|cornflowerblue|cornsilk|crimson|cyan|darkblue|darkcyan|darkgoldenrod|darkgray|darkgreen|darkgrey|darkkhaki|darkmagenta|darkolivegreen|darkorange|darkorchid|darkred|darksalmon|darkseagreen|darkslateblue|darkslategray|darkslategrey|darkturquoise|darkviolet|deeppink|deepskyblue|dimgray|dimgrey|dodgerblue|firebrick|floralwhite|forestgreen|fuchsia|gainsboro|ghostwhite|gold|goldenrod|gray|green|greenyellow|grey|honeydew|hotpink|indianred|indigo|ivory|khaki|lavender|lavenderblush|lawngreen|lemonchiffon|lightblue|lightcoral|lightcyan|lightgoldenrodyellow|lightgray|lightgreen|lightgrey|lightpink|lightsalmon|lightseagreen|lightskyblue|lightslategray|lightslategrey|lightsteelblue|lightyellow|lime|limegreen|linen|magenta|maroon|mediumaquamarine|mediumblue|mediumorchid|mediumpurple|mediumseagreen|mediumslateblue|mediumspringgreen|mediumturquoise|mediumvioletred|midnightblue|mintcream|mistyrose|moccasin|navajowhite|navy|oldlace|olive|olivedrab|orange|orangered|orchid|palegoldenrod|palegreen|paleturquoise|palevioletred|papayawhip|peachpuff|peru|pink|plum|powderblue|purple|rebeccapurple|red|rosybrown|royalblue|saddlebrown|salmon|sandybrown|seagreen|seashell|sienna|silver|skyblue|slateblue|slategray|slategrey|snow|springgreen|steelblue|tan|teal|thistle|tomato|turquoise|violet|wheat|white|whitesmoke|yellow|yellowgreen\";\nvar supportConstantFonts = exports.supportConstantFonts = \"arial|century|comic|courier|cursive|fantasy|garamond|georgia|helvetica|impact|lucida|symbol|system|tahoma|times|trebuchet|utopia|verdana|webdings|sans-serif|serif|monospace\";\n\nvar numRe = exports.numRe = \"\\\\-?(?:(?:[0-9]+(?:\\\\.[0-9]+)?)|(?:\\\\.[0-9]+))\";\nvar pseudoElements = exports.pseudoElements = \"(\\\\:+)\\\\b(after|before|first-letter|first-line|moz-selection|selection)\\\\b\";\nvar pseudoClasses = exports.pseudoClasses = \"(:)\\\\b(active|checked|disabled|empty|enabled|first-child|first-of-type|focus|hover|indeterminate|invalid|last-child|last-of-type|link|not|nth-child|nth-last-child|nth-last-of-type|nth-of-type|only-child|only-of-type|required|root|target|valid|visited)\\\\b\";\n\nvar CssHighlightRules = function() {\n\n var keywordMapper = this.createKeywordMapper({\n \"support.function\": supportFunction,\n \"support.constant\": supportConstant,\n \"support.type\": supportType,\n \"support.constant.color\": supportConstantColor,\n \"support.constant.fonts\": supportConstantFonts\n }, \"text\", true);\n\n this.$rules = {\n \"start\" : [{\n include : [\"strings\", \"url\", \"comments\"]\n }, {\n token: \"paren.lparen\",\n regex: \"\\\\{\",\n next: \"ruleset\"\n }, {\n token: \"paren.rparen\",\n regex: \"\\\\}\"\n }, {\n token: \"string\",\n regex: \"@(?!viewport)\",\n next: \"media\"\n }, {\n token: \"keyword\",\n regex: \"#[a-z0-9-_]+\"\n }, {\n token: \"keyword\",\n regex: \"%\"\n }, {\n token: \"variable\",\n regex: \"\\\\.[a-z0-9-_]+\"\n }, {\n token: \"string\",\n regex: \":[a-z0-9-_]+\"\n }, {\n token : \"constant.numeric\",\n regex : numRe\n }, {\n token: \"constant\",\n regex: \"[a-z0-9-_]+\"\n }, {\n caseInsensitive: true\n }],\n\n \"media\": [{\n include : [\"strings\", \"url\", \"comments\"]\n }, {\n token: \"paren.lparen\",\n regex: \"\\\\{\",\n next: \"start\"\n }, {\n token: \"paren.rparen\",\n regex: \"\\\\}\",\n next: \"start\"\n }, {\n token: \"string\",\n regex: \";\",\n next: \"start\"\n }, {\n token: \"keyword\",\n regex: \"(?:media|supports|document|charset|import|namespace|media|supports|document\"\n + \"|page|font|keyframes|viewport|counter-style|font-feature-values\"\n + \"|swash|ornaments|annotation|stylistic|styleset|character-variant)\"\n }],\n\n \"comments\" : [{\n token: \"comment\", // multi line comment\n regex: \"\\\\/\\\\*\",\n push: [{\n token : \"comment\",\n regex : \"\\\\*\\\\/\",\n next : \"pop\"\n }, {\n defaultToken : \"comment\"\n }]\n }],\n\n \"ruleset\" : [{\n regex : \"-(webkit|ms|moz|o)-\",\n token : \"text\"\n }, {\n token : \"punctuation.operator\",\n regex : \"[:;]\"\n }, {\n token : \"paren.rparen\",\n regex : \"\\\\}\",\n next : \"start\"\n }, {\n include : [\"strings\", \"url\", \"comments\"]\n }, {\n token : [\"constant.numeric\", \"keyword\"],\n regex : \"(\" + numRe + \")(ch|cm|deg|em|ex|fr|gd|grad|Hz|in|kHz|mm|ms|pc|pt|px|rad|rem|s|turn|vh|vmax|vmin|vm|vw|%)\"\n }, {\n token : \"constant.numeric\",\n regex : numRe\n }, {\n token : \"constant.numeric\", // hex6 color\n regex : \"#[a-f0-9]{6}\"\n }, {\n token : \"constant.numeric\", // hex3 color\n regex : \"#[a-f0-9]{3}\"\n }, {\n token : [\"punctuation\", \"entity.other.attribute-name.pseudo-element.css\"],\n regex : pseudoElements\n }, {\n token : [\"punctuation\", \"entity.other.attribute-name.pseudo-class.css\"],\n regex : pseudoClasses\n }, {\n include: \"url\"\n }, {\n token : keywordMapper,\n regex : \"\\\\-?[a-zA-Z_][a-zA-Z0-9_\\\\-]*\"\n }, {\n caseInsensitive: true\n }],\n\n url: [{\n token : \"support.function\",\n regex : \"(?:url(:?-prefix)?|domain|regexp)\\\\(\",\n push: [{\n token : \"support.function\",\n regex : \"\\\\)\",\n next : \"pop\"\n }, {\n defaultToken: \"string\"\n }]\n }],\n\n strings: [{\n token : \"string.start\",\n regex : \"'\",\n push : [{\n token : \"string.end\",\n regex : \"'|$\",\n next: \"pop\"\n }, {\n include : \"escapes\"\n }, {\n token : \"constant.language.escape\",\n regex : /\\\\$/,\n consumeLineEnd: true\n }, {\n defaultToken: \"string\"\n }]\n }, {\n token : \"string.start\",\n regex : '\"',\n push : [{\n token : \"string.end\",\n regex : '\"|$',\n next: \"pop\"\n }, {\n include : \"escapes\"\n }, {\n token : \"constant.language.escape\",\n regex : /\\\\$/,\n consumeLineEnd: true\n }, {\n defaultToken: \"string\"\n }]\n }],\n escapes: [{\n token : \"constant.language.escape\",\n regex : /\\\\([a-fA-F\\d]{1,6}|[^a-fA-F\\d])/\n }]\n\n };\n\n this.normalizeRules();\n};\n\noop.inherits(CssHighlightRules, TextHighlightRules);\n\nexports.CssHighlightRules = CssHighlightRules;\n\n});\n\nace.define(\"ace/mode/doc_comment_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar DocCommentHighlightRules = function() {\n this.$rules = {\n \"start\" : [ {\n token : \"comment.doc.tag\",\n regex : \"@[\\\\w\\\\d_]+\" // TODO: fix email addresses\n }, \n DocCommentHighlightRules.getTagRule(),\n {\n defaultToken : \"comment.doc\",\n caseInsensitive: true\n }]\n };\n};\n\noop.inherits(DocCommentHighlightRules, TextHighlightRules);\n\nDocCommentHighlightRules.getTagRule = function(start) {\n return {\n token : \"comment.doc.tag.storage.type\",\n regex : \"\\\\b(?:TODO|FIXME|XXX|HACK)\\\\b\"\n };\n};\n\nDocCommentHighlightRules.getStartRule = function(start) {\n return {\n token : \"comment.doc\", // doc comment\n regex : \"\\\\/\\\\*(?=\\\\*)\",\n next : start\n };\n};\n\nDocCommentHighlightRules.getEndRule = function (start) {\n return {\n token : \"comment.doc\", // closing comment\n regex : \"\\\\*\\\\/\",\n next : start\n };\n};\n\n\nexports.DocCommentHighlightRules = DocCommentHighlightRules;\n\n});\n\nace.define(\"ace/mode/javascript_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/doc_comment_highlight_rules\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar DocCommentHighlightRules = require(\"./doc_comment_highlight_rules\").DocCommentHighlightRules;\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar identifierRe = \"[a-zA-Z\\\\$_\\u00a1-\\uffff][a-zA-Z\\\\d\\\\$_\\u00a1-\\uffff]*\";\n\nvar JavaScriptHighlightRules = function(options) {\n var keywordMapper = this.createKeywordMapper({\n \"variable.language\":\n \"Array|Boolean|Date|Function|Iterator|Number|Object|RegExp|String|Proxy|\" + // Constructors\n \"Namespace|QName|XML|XMLList|\" + // E4X\n \"ArrayBuffer|Float32Array|Float64Array|Int16Array|Int32Array|Int8Array|\" +\n \"Uint16Array|Uint32Array|Uint8Array|Uint8ClampedArray|\" +\n \"Error|EvalError|InternalError|RangeError|ReferenceError|StopIteration|\" + // Errors\n \"SyntaxError|TypeError|URIError|\" +\n \"decodeURI|decodeURIComponent|encodeURI|encodeURIComponent|eval|isFinite|\" + // Non-constructor functions\n \"isNaN|parseFloat|parseInt|\" +\n \"JSON|Math|\" + // Other\n \"this|arguments|prototype|window|document\" , // Pseudo\n \"keyword\":\n \"const|yield|import|get|set|async|await|\" +\n \"break|case|catch|continue|default|delete|do|else|finally|for|function|\" +\n \"if|in|of|instanceof|new|return|switch|throw|try|typeof|let|var|while|with|debugger|\" +\n \"__parent__|__count__|escape|unescape|with|__proto__|\" +\n \"class|enum|extends|super|export|implements|private|public|interface|package|protected|static\",\n \"storage.type\":\n \"const|let|var|function\",\n \"constant.language\":\n \"null|Infinity|NaN|undefined\",\n \"support.function\":\n \"alert\",\n \"constant.language.boolean\": \"true|false\"\n }, \"identifier\");\n var kwBeforeRe = \"case|do|else|finally|in|instanceof|return|throw|try|typeof|yield|void\";\n\n var escapedRe = \"\\\\\\\\(?:x[0-9a-fA-F]{2}|\" + // hex\n \"u[0-9a-fA-F]{4}|\" + // unicode\n \"u{[0-9a-fA-F]{1,6}}|\" + // es6 unicode\n \"[0-2][0-7]{0,2}|\" + // oct\n \"3[0-7][0-7]?|\" + // oct\n \"[4-7][0-7]?|\" + //oct\n \".)\";\n\n this.$rules = {\n \"no_regex\" : [\n DocCommentHighlightRules.getStartRule(\"doc-start\"),\n comments(\"no_regex\"),\n {\n token : \"string\",\n regex : \"'(?=.)\",\n next : \"qstring\"\n }, {\n token : \"string\",\n regex : '\"(?=.)',\n next : \"qqstring\"\n }, {\n token : \"constant.numeric\", // hexadecimal, octal and binary\n regex : /0(?:[xX][0-9a-fA-F]+|[oO][0-7]+|[bB][01]+)\\b/\n }, {\n token : \"constant.numeric\", // decimal integers and floats\n regex : /(?:\\d\\d*(?:\\.\\d*)?|\\.\\d+)(?:[eE][+-]?\\d+\\b)?/\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"support.function\",\n \"punctuation.operator\", \"entity.name.function\", \"text\",\"keyword.operator\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(prototype)(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"entity.name.function\", \"text\", \"keyword.operator\", \"text\", \"storage.type\",\n \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\",\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(\\\\s+)(\\\\w+)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(function)(\\\\s+)(\" + identifierRe + \")(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"entity.name.function\", \"text\", \"punctuation.operator\",\n \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\s*)(:)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : [\n \"text\", \"text\", \"storage.type\", \"text\", \"paren.lparen\"\n ],\n regex : \"(:)(\\\\s*)(function)(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : \"keyword\",\n regex : \"from(?=\\\\s*('|\\\"))\"\n }, {\n token : \"keyword\",\n regex : \"(?:\" + kwBeforeRe + \")\\\\b\",\n next : \"start\"\n }, {\n token : [\"support.constant\"],\n regex : /that\\b/\n }, {\n token : [\"storage.type\", \"punctuation.operator\", \"support.function.firebug\"],\n regex : /(console)(\\.)(warn|info|log|error|time|trace|timeEnd|assert)\\b/\n }, {\n token : keywordMapper,\n regex : identifierRe\n }, {\n token : \"punctuation.operator\",\n regex : /[.](?![.])/,\n next : \"property\"\n }, {\n token : \"storage.type\",\n regex : /=>/,\n next : \"start\"\n }, {\n token : \"keyword.operator\",\n regex : /--|\\+\\+|\\.{3}|===|==|=|!=|!==|<+=?|>+=?|!|&&|\\|\\||\\?:|[!$%&*+\\-~\\/^]=?/,\n next : \"start\"\n }, {\n token : \"punctuation.operator\",\n regex : /[?:,;.]/,\n next : \"start\"\n }, {\n token : \"paren.lparen\",\n regex : /[\\[({]/,\n next : \"start\"\n }, {\n token : \"paren.rparen\",\n regex : /[\\])}]/\n }, {\n token: \"comment\",\n regex: /^#!.*$/\n }\n ],\n property: [{\n token : \"text\",\n regex : \"\\\\s+\"\n }, {\n token : [\n \"storage.type\", \"punctuation.operator\", \"entity.name.function\", \"text\",\n \"keyword.operator\", \"text\",\n \"storage.type\", \"text\", \"entity.name.function\", \"text\", \"paren.lparen\"\n ],\n regex : \"(\" + identifierRe + \")(\\\\.)(\" + identifierRe +\")(\\\\s*)(=)(\\\\s*)(function)(?:(\\\\s+)(\\\\w+))?(\\\\s*)(\\\\()\",\n next: \"function_arguments\"\n }, {\n token : \"punctuation.operator\",\n regex : /[.](?![.])/\n }, {\n token : \"support.function\",\n regex : /(s(?:h(?:ift|ow(?:Mod(?:elessDialog|alDialog)|Help))|croll(?:X|By(?:Pages|Lines)?|Y|To)?|t(?:op|rike)|i(?:n|zeToContent|debar|gnText)|ort|u(?:p|b(?:str(?:ing)?)?)|pli(?:ce|t)|e(?:nd|t(?:Re(?:sizable|questHeader)|M(?:i(?:nutes|lliseconds)|onth)|Seconds|Ho(?:tKeys|urs)|Year|Cursor|Time(?:out)?|Interval|ZOptions|Date|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Date|FullYear)|FullYear|Active)|arch)|qrt|lice|avePreferences|mall)|h(?:ome|andleEvent)|navigate|c(?:har(?:CodeAt|At)|o(?:s|n(?:cat|textual|firm)|mpile)|eil|lear(?:Timeout|Interval)?|a(?:ptureEvents|ll)|reate(?:StyleSheet|Popup|EventObject))|t(?:o(?:GMTString|S(?:tring|ource)|U(?:TCString|pperCase)|Lo(?:caleString|werCase))|est|a(?:n|int(?:Enabled)?))|i(?:s(?:NaN|Finite)|ndexOf|talics)|d(?:isableExternalCapture|ump|etachEvent)|u(?:n(?:shift|taint|escape|watch)|pdateCommands)|j(?:oin|avaEnabled)|p(?:o(?:p|w)|ush|lugins.refresh|a(?:ddings|rse(?:Int|Float)?)|r(?:int|ompt|eference))|e(?:scape|nableExternalCapture|val|lementFromPoint|x(?:p|ec(?:Script|Command)?))|valueOf|UTC|queryCommand(?:State|Indeterm|Enabled|Value)|f(?:i(?:nd|le(?:ModifiedDate|Size|CreatedDate|UpdatedDate)|xed)|o(?:nt(?:size|color)|rward)|loor|romCharCode)|watch|l(?:ink|o(?:ad|g)|astIndexOf)|a(?:sin|nchor|cos|t(?:tachEvent|ob|an(?:2)?)|pply|lert|b(?:s|ort))|r(?:ou(?:nd|teEvents)|e(?:size(?:By|To)|calc|turnValue|place|verse|l(?:oad|ease(?:Capture|Events)))|andom)|g(?:o|et(?:ResponseHeader|M(?:i(?:nutes|lliseconds)|onth)|Se(?:conds|lection)|Hours|Year|Time(?:zoneOffset)?|Da(?:y|te)|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Da(?:y|te)|FullYear)|FullYear|A(?:ttention|llResponseHeaders)))|m(?:in|ove(?:B(?:y|elow)|To(?:Absolute)?|Above)|ergeAttributes|a(?:tch|rgins|x))|b(?:toa|ig|o(?:ld|rderWidths)|link|ack))\\b(?=\\()/\n }, {\n token : \"support.function.dom\",\n regex : /(s(?:ub(?:stringData|mit)|plitText|e(?:t(?:NamedItem|Attribute(?:Node)?)|lect))|has(?:ChildNodes|Feature)|namedItem|c(?:l(?:ick|o(?:se|neNode))|reate(?:C(?:omment|DATASection|aption)|T(?:Head|extNode|Foot)|DocumentFragment|ProcessingInstruction|E(?:ntityReference|lement)|Attribute))|tabIndex|i(?:nsert(?:Row|Before|Cell|Data)|tem)|open|delete(?:Row|C(?:ell|aption)|T(?:Head|Foot)|Data)|focus|write(?:ln)?|a(?:dd|ppend(?:Child|Data))|re(?:set|place(?:Child|Data)|move(?:NamedItem|Child|Attribute(?:Node)?)?)|get(?:NamedItem|Element(?:sBy(?:Name|TagName|ClassName)|ById)|Attribute(?:Node)?)|blur)\\b(?=\\()/\n }, {\n token : \"support.constant\",\n regex : /(s(?:ystemLanguage|cr(?:ipts|ollbars|een(?:X|Y|Top|Left))|t(?:yle(?:Sheets)?|atus(?:Text|bar)?)|ibling(?:Below|Above)|ource|uffixes|e(?:curity(?:Policy)?|l(?:ection|f)))|h(?:istory|ost(?:name)?|as(?:h|Focus))|y|X(?:MLDocument|SLDocument)|n(?:ext|ame(?:space(?:s|URI)|Prop))|M(?:IN_VALUE|AX_VALUE)|c(?:haracterSet|o(?:n(?:structor|trollers)|okieEnabled|lorDepth|mp(?:onents|lete))|urrent|puClass|l(?:i(?:p(?:boardData)?|entInformation)|osed|asses)|alle(?:e|r)|rypto)|t(?:o(?:olbar|p)|ext(?:Transform|Indent|Decoration|Align)|ags)|SQRT(?:1_2|2)|i(?:n(?:ner(?:Height|Width)|put)|ds|gnoreCase)|zIndex|o(?:scpu|n(?:readystatechange|Line)|uter(?:Height|Width)|p(?:sProfile|ener)|ffscreenBuffering)|NEGATIVE_INFINITY|d(?:i(?:splay|alog(?:Height|Top|Width|Left|Arguments)|rectories)|e(?:scription|fault(?:Status|Ch(?:ecked|arset)|View)))|u(?:ser(?:Profile|Language|Agent)|n(?:iqueID|defined)|pdateInterval)|_content|p(?:ixelDepth|ort|ersonalbar|kcs11|l(?:ugins|atform)|a(?:thname|dding(?:Right|Bottom|Top|Left)|rent(?:Window|Layer)?|ge(?:X(?:Offset)?|Y(?:Offset)?))|r(?:o(?:to(?:col|type)|duct(?:Sub)?|mpter)|e(?:vious|fix)))|e(?:n(?:coding|abledPlugin)|x(?:ternal|pando)|mbeds)|v(?:isibility|endor(?:Sub)?|Linkcolor)|URLUnencoded|P(?:I|OSITIVE_INFINITY)|f(?:ilename|o(?:nt(?:Size|Family|Weight)|rmName)|rame(?:s|Element)|gColor)|E|whiteSpace|l(?:i(?:stStyleType|n(?:eHeight|kColor))|o(?:ca(?:tion(?:bar)?|lName)|wsrc)|e(?:ngth|ft(?:Context)?)|a(?:st(?:M(?:odified|atch)|Index|Paren)|yer(?:s|X)|nguage))|a(?:pp(?:MinorVersion|Name|Co(?:deName|re)|Version)|vail(?:Height|Top|Width|Left)|ll|r(?:ity|guments)|Linkcolor|bove)|r(?:ight(?:Context)?|e(?:sponse(?:XML|Text)|adyState))|global|x|m(?:imeTypes|ultiline|enubar|argin(?:Right|Bottom|Top|Left))|L(?:N(?:10|2)|OG(?:10E|2E))|b(?:o(?:ttom|rder(?:Width|RightWidth|BottomWidth|Style|Color|TopWidth|LeftWidth))|ufferDepth|elow|ackground(?:Color|Image)))\\b/\n }, {\n token : \"identifier\",\n regex : identifierRe\n }, {\n regex: \"\",\n token: \"empty\",\n next: \"no_regex\"\n }\n ],\n \"start\": [\n DocCommentHighlightRules.getStartRule(\"doc-start\"),\n comments(\"start\"),\n {\n token: \"string.regexp\",\n regex: \"\\\\/\",\n next: \"regex\"\n }, {\n token : \"text\",\n regex : \"\\\\s+|^$\",\n next : \"start\"\n }, {\n token: \"empty\",\n regex: \"\",\n next: \"no_regex\"\n }\n ],\n \"regex\": [\n {\n token: \"regexp.keyword.operator\",\n regex: \"\\\\\\\\(?:u[\\\\da-fA-F]{4}|x[\\\\da-fA-F]{2}|.)\"\n }, {\n token: \"string.regexp\",\n regex: \"/[sxngimy]*\",\n next: \"no_regex\"\n }, {\n token : \"invalid\",\n regex: /\\{\\d+\\b,?\\d*\\}[+*]|[+*$^?][+*]|[$^][?]|\\?{3,}/\n }, {\n token : \"constant.language.escape\",\n regex: /\\(\\?[:=!]|\\)|\\{\\d+\\b,?\\d*\\}|[+*]\\?|[()$^+*?.]/\n }, {\n token : \"constant.language.delimiter\",\n regex: /\\|/\n }, {\n token: \"constant.language.escape\",\n regex: /\\[\\^?/,\n next: \"regex_character_class\"\n }, {\n token: \"empty\",\n regex: \"$\",\n next: \"no_regex\"\n }, {\n defaultToken: \"string.regexp\"\n }\n ],\n \"regex_character_class\": [\n {\n token: \"regexp.charclass.keyword.operator\",\n regex: \"\\\\\\\\(?:u[\\\\da-fA-F]{4}|x[\\\\da-fA-F]{2}|.)\"\n }, {\n token: \"constant.language.escape\",\n regex: \"]\",\n next: \"regex\"\n }, {\n token: \"constant.language.escape\",\n regex: \"-\"\n }, {\n token: \"empty\",\n regex: \"$\",\n next: \"no_regex\"\n }, {\n defaultToken: \"string.regexp.charachterclass\"\n }\n ],\n \"function_arguments\": [\n {\n token: \"variable.parameter\",\n regex: identifierRe\n }, {\n token: \"punctuation.operator\",\n regex: \"[, ]+\"\n }, {\n token: \"punctuation.operator\",\n regex: \"$\"\n }, {\n token: \"empty\",\n regex: \"\",\n next: \"no_regex\"\n }\n ],\n \"qqstring\" : [\n {\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"string\",\n regex : \"\\\\\\\\$\",\n consumeLineEnd : true\n }, {\n token : \"string\",\n regex : '\"|$',\n next : \"no_regex\"\n }, {\n defaultToken: \"string\"\n }\n ],\n \"qstring\" : [\n {\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"string\",\n regex : \"\\\\\\\\$\",\n consumeLineEnd : true\n }, {\n token : \"string\",\n regex : \"'|$\",\n next : \"no_regex\"\n }, {\n defaultToken: \"string\"\n }\n ]\n };\n\n\n if (!options || !options.noES6) {\n this.$rules.no_regex.unshift({\n regex: \"[{}]\", onMatch: function(val, state, stack) {\n this.next = val == \"{\" ? this.nextState : \"\";\n if (val == \"{\" && stack.length) {\n stack.unshift(\"start\", state);\n }\n else if (val == \"}\" && stack.length) {\n stack.shift();\n this.next = stack.shift();\n if (this.next.indexOf(\"string\") != -1 || this.next.indexOf(\"jsx\") != -1)\n return \"paren.quasi.end\";\n }\n return val == \"{\" ? \"paren.lparen\" : \"paren.rparen\";\n },\n nextState: \"start\"\n }, {\n token : \"string.quasi.start\",\n regex : /`/,\n push : [{\n token : \"constant.language.escape\",\n regex : escapedRe\n }, {\n token : \"paren.quasi.start\",\n regex : /\\${/,\n push : \"start\"\n }, {\n token : \"string.quasi.end\",\n regex : /`/,\n next : \"pop\"\n }, {\n defaultToken: \"string.quasi\"\n }]\n });\n\n if (!options || options.jsx != false)\n JSX.call(this);\n }\n\n this.embedRules(DocCommentHighlightRules, \"doc-\",\n [ DocCommentHighlightRules.getEndRule(\"no_regex\") ]);\n\n this.normalizeRules();\n};\n\noop.inherits(JavaScriptHighlightRules, TextHighlightRules);\n\nfunction JSX() {\n var tagRegex = identifierRe.replace(\"\\\\d\", \"\\\\d\\\\-\");\n var jsxTag = {\n onMatch : function(val, state, stack) {\n var offset = val.charAt(1) == \"/\" ? 2 : 1;\n if (offset == 1) {\n if (state != this.nextState)\n stack.unshift(this.next, this.nextState, 0);\n else\n stack.unshift(this.next);\n stack[2]++;\n } else if (offset == 2) {\n if (state == this.nextState) {\n stack[1]--;\n if (!stack[1] || stack[1] < 0) {\n stack.shift();\n stack.shift();\n }\n }\n }\n return [{\n type: \"meta.tag.punctuation.\" + (offset == 1 ? \"\" : \"end-\") + \"tag-open.xml\",\n value: val.slice(0, offset)\n }, {\n type: \"meta.tag.tag-name.xml\",\n value: val.substr(offset)\n }];\n },\n regex : \"\",\n onMatch : function(value, currentState, stack) {\n if (currentState == stack[0])\n stack.shift();\n if (value.length == 2) {\n if (stack[0] == this.nextState)\n stack[1]--;\n if (!stack[1] || stack[1] < 0) {\n stack.splice(0, 2);\n }\n }\n this.next = stack[0] || \"start\";\n return [{type: this.token, value: value}];\n },\n nextState: \"jsx\"\n },\n jsxJsRule,\n comments(\"jsxAttributes\"),\n {\n token : \"entity.other.attribute-name.xml\",\n regex : tagRegex\n }, {\n token : \"keyword.operator.attribute-equals.xml\",\n regex : \"=\"\n }, {\n token : \"text.tag-whitespace.xml\",\n regex : \"\\\\s+\"\n }, {\n token : \"string.attribute-value.xml\",\n regex : \"'\",\n stateName : \"jsx_attr_q\",\n push : [\n {token : \"string.attribute-value.xml\", regex: \"'\", next: \"pop\"},\n {include : \"reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n }, {\n token : \"string.attribute-value.xml\",\n regex : '\"',\n stateName : \"jsx_attr_qq\",\n push : [\n {token : \"string.attribute-value.xml\", regex: '\"', next: \"pop\"},\n {include : \"reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n },\n jsxTag\n ];\n this.$rules.reference = [{\n token : \"constant.language.escape.reference.xml\",\n regex : \"(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\\\.-]+;)\"\n }];\n}\n\nfunction comments(next) {\n return [\n {\n token : \"comment\", // multi line comment\n regex : /\\/\\*/,\n next: [\n DocCommentHighlightRules.getTagRule(),\n {token : \"comment\", regex : \"\\\\*\\\\/\", next : next || \"pop\"},\n {defaultToken : \"comment\", caseInsensitive: true}\n ]\n }, {\n token : \"comment\",\n regex : \"\\\\/\\\\/\",\n next: [\n DocCommentHighlightRules.getTagRule(),\n {token : \"comment\", regex : \"$|^\", next : next || \"pop\"},\n {defaultToken : \"comment\", caseInsensitive: true}\n ]\n }\n ];\n}\nexports.JavaScriptHighlightRules = JavaScriptHighlightRules;\n});\n\nace.define(\"ace/mode/xml_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar XmlHighlightRules = function(normalize) {\n var tagRegex = \"[_:a-zA-Z\\xc0-\\uffff][-_:.a-zA-Z0-9\\xc0-\\uffff]*\";\n\n this.$rules = {\n start : [\n {token : \"string.cdata.xml\", regex : \"<\\\\!\\\\[CDATA\\\\[\", next : \"cdata\"},\n {\n token : [\"punctuation.instruction.xml\", \"keyword.instruction.xml\"],\n regex : \"(<\\\\?)(\" + tagRegex + \")\", next : \"processing_instruction\"\n },\n {token : \"comment.start.xml\", regex : \"<\\\\!--\", next : \"comment\"},\n {\n token : [\"xml-pe.doctype.xml\", \"xml-pe.doctype.xml\"],\n regex : \"(<\\\\!)(DOCTYPE)(?=[\\\\s])\", next : \"doctype\", caseInsensitive: true\n },\n {include : \"tag\"},\n {token : \"text.end-tag-open.xml\", regex: \"\",\n next : \"start\"\n }],\n\n doctype : [\n {include : \"whitespace\"},\n {include : \"string\"},\n {token : \"xml-pe.doctype.xml\", regex : \">\", next : \"start\"},\n {token : \"xml-pe.xml\", regex : \"[-_a-zA-Z0-9:]+\"},\n {token : \"punctuation.int-subset\", regex : \"\\\\[\", push : \"int_subset\"}\n ],\n\n int_subset : [{\n token : \"text.xml\",\n regex : \"\\\\s+\"\n }, {\n token: \"punctuation.int-subset.xml\",\n regex: \"]\",\n next: \"pop\"\n }, {\n token : [\"punctuation.markup-decl.xml\", \"keyword.markup-decl.xml\"],\n regex : \"(<\\\\!)(\" + tagRegex + \")\",\n push : [{\n token : \"text\",\n regex : \"\\\\s+\"\n },\n {\n token : \"punctuation.markup-decl.xml\",\n regex : \">\",\n next : \"pop\"\n },\n {include : \"string\"}]\n }],\n\n cdata : [\n {token : \"string.cdata.xml\", regex : \"\\\\]\\\\]>\", next : \"start\"},\n {token : \"text.xml\", regex : \"\\\\s+\"},\n {token : \"text.xml\", regex : \"(?:[^\\\\]]|\\\\](?!\\\\]>))+\"}\n ],\n\n comment : [\n {token : \"comment.end.xml\", regex : \"-->\", next : \"start\"},\n {defaultToken : \"comment.xml\"}\n ],\n\n reference : [{\n token : \"constant.language.escape.reference.xml\",\n regex : \"(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\\\.-]+;)\"\n }],\n\n attr_reference : [{\n token : \"constant.language.escape.reference.attribute-value.xml\",\n regex : \"(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\\\.-]+;)\"\n }],\n\n tag : [{\n token : [\"meta.tag.punctuation.tag-open.xml\", \"meta.tag.punctuation.end-tag-open.xml\", \"meta.tag.tag-name.xml\"],\n regex : \"(?:(<)|(\", next : \"start\"}\n ]\n }],\n\n tag_whitespace : [\n {token : \"text.tag-whitespace.xml\", regex : \"\\\\s+\"}\n ],\n whitespace : [\n {token : \"text.whitespace.xml\", regex : \"\\\\s+\"}\n ],\n string: [{\n token : \"string.xml\",\n regex : \"'\",\n push : [\n {token : \"string.xml\", regex: \"'\", next: \"pop\"},\n {defaultToken : \"string.xml\"}\n ]\n }, {\n token : \"string.xml\",\n regex : '\"',\n push : [\n {token : \"string.xml\", regex: '\"', next: \"pop\"},\n {defaultToken : \"string.xml\"}\n ]\n }],\n\n attributes: [{\n token : \"entity.other.attribute-name.xml\",\n regex : tagRegex\n }, {\n token : \"keyword.operator.attribute-equals.xml\",\n regex : \"=\"\n }, {\n include: \"tag_whitespace\"\n }, {\n include: \"attribute_value\"\n }],\n\n attribute_value: [{\n token : \"string.attribute-value.xml\",\n regex : \"'\",\n push : [\n {token : \"string.attribute-value.xml\", regex: \"'\", next: \"pop\"},\n {include : \"attr_reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n }, {\n token : \"string.attribute-value.xml\",\n regex : '\"',\n push : [\n {token : \"string.attribute-value.xml\", regex: '\"', next: \"pop\"},\n {include : \"attr_reference\"},\n {defaultToken : \"string.attribute-value.xml\"}\n ]\n }]\n };\n\n if (this.constructor === XmlHighlightRules)\n this.normalizeRules();\n};\n\n\n(function() {\n\n this.embedTagRules = function(HighlightRules, prefix, tag){\n this.$rules.tag.unshift({\n token : [\"meta.tag.punctuation.tag-open.xml\", \"meta.tag.\" + tag + \".tag-name.xml\"],\n regex : \"(<)(\" + tag + \"(?=\\\\s|>|$))\",\n next: [\n {include : \"attributes\"},\n {token : \"meta.tag.punctuation.tag-close.xml\", regex : \"/?>\", next : prefix + \"start\"}\n ]\n });\n\n this.$rules[tag + \"-end\"] = [\n {include : \"attributes\"},\n {token : \"meta.tag.punctuation.tag-close.xml\", regex : \"/?>\", next: \"start\",\n onMatch : function(value, currentState, stack) {\n stack.splice(0);\n return this.token;\n }}\n ];\n\n this.embedRules(HighlightRules, prefix, [{\n token: [\"meta.tag.punctuation.end-tag-open.xml\", \"meta.tag.\" + tag + \".tag-name.xml\"],\n regex : \"(|$))\",\n next: tag + \"-end\"\n }, {\n token: \"string.cdata.xml\",\n regex : \"<\\\\!\\\\[CDATA\\\\[\"\n }, {\n token: \"string.cdata.xml\",\n regex : \"\\\\]\\\\]>\"\n }]);\n };\n\n}).call(TextHighlightRules.prototype);\n\noop.inherits(XmlHighlightRules, TextHighlightRules);\n\nexports.XmlHighlightRules = XmlHighlightRules;\n});\n\nace.define(\"ace/mode/html_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/css_highlight_rules\",\"ace/mode/javascript_highlight_rules\",\"ace/mode/xml_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar CssHighlightRules = require(\"./css_highlight_rules\").CssHighlightRules;\nvar JavaScriptHighlightRules = require(\"./javascript_highlight_rules\").JavaScriptHighlightRules;\nvar XmlHighlightRules = require(\"./xml_highlight_rules\").XmlHighlightRules;\n\nvar tagMap = lang.createMap({\n a : 'anchor',\n button \t : 'form',\n form : 'form',\n img : 'image',\n input : 'form',\n label : 'form',\n option : 'form',\n script : 'script',\n select : 'form',\n textarea : 'form',\n style : 'style',\n table : 'table',\n tbody : 'table',\n td : 'table',\n tfoot : 'table',\n th : 'table',\n tr : 'table'\n});\n\nvar HtmlHighlightRules = function() {\n XmlHighlightRules.call(this);\n\n this.addRules({\n attributes: [{\n include : \"tag_whitespace\"\n }, {\n token : \"entity.other.attribute-name.xml\",\n regex : \"[-_a-zA-Z0-9:.]+\"\n }, {\n token : \"keyword.operator.attribute-equals.xml\",\n regex : \"=\",\n push : [{\n include: \"tag_whitespace\"\n }, {\n token : \"string.unquoted.attribute-value.html\",\n regex : \"[^<>='\\\"`\\\\s]+\",\n next : \"pop\"\n }, {\n token : \"empty\",\n regex : \"\",\n next : \"pop\"\n }]\n }, {\n include : \"attribute_value\"\n }],\n tag: [{\n token : function(start, tag) {\n var group = tagMap[tag];\n return [\"meta.tag.punctuation.\" + (start == \"<\" ? \"\" : \"end-\") + \"tag-open.xml\",\n \"meta.tag\" + (group ? \".\" + group : \"\") + \".tag-name.xml\"];\n },\n regex : \"(\", next : \"start\"}\n ]\n });\n\n this.embedTagRules(CssHighlightRules, \"css-\", \"style\");\n this.embedTagRules(new JavaScriptHighlightRules({jsx: false}).getRules(), \"js-\", \"script\");\n\n if (this.constructor === HtmlHighlightRules)\n this.normalizeRules();\n};\n\noop.inherits(HtmlHighlightRules, XmlHighlightRules);\n\nexports.HtmlHighlightRules = HtmlHighlightRules;\n});\n\nace.define(\"ace/mode/java_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/doc_comment_highlight_rules\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar DocCommentHighlightRules = require(\"./doc_comment_highlight_rules\").DocCommentHighlightRules;\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nvar JavaHighlightRules = function() {\n var keywords = (\n \"abstract|continue|for|new|switch|\" +\n \"assert|default|goto|package|synchronized|\" +\n \"boolean|do|if|private|this|\" +\n \"break|double|implements|protected|throw|\" +\n \"byte|else|import|public|throws|\" +\n \"case|enum|instanceof|return|transient|\" +\n \"catch|extends|int|short|try|\" +\n \"char|final|interface|static|void|\" +\n \"class|finally|long|strictfp|volatile|\" +\n \"const|float|native|super|while|\" +\n \"var\"\n );\n\n var buildinConstants = (\"null|Infinity|NaN|undefined\");\n\n\n var langClasses = (\n \"AbstractMethodError|AssertionError|ClassCircularityError|\"+\n \"ClassFormatError|Deprecated|EnumConstantNotPresentException|\"+\n \"ExceptionInInitializerError|IllegalAccessError|\"+\n \"IllegalThreadStateException|InstantiationError|InternalError|\"+\n \"NegativeArraySizeException|NoSuchFieldError|Override|Process|\"+\n \"ProcessBuilder|SecurityManager|StringIndexOutOfBoundsException|\"+\n \"SuppressWarnings|TypeNotPresentException|UnknownError|\"+\n \"UnsatisfiedLinkError|UnsupportedClassVersionError|VerifyError|\"+\n \"InstantiationException|IndexOutOfBoundsException|\"+\n \"ArrayIndexOutOfBoundsException|CloneNotSupportedException|\"+\n \"NoSuchFieldException|IllegalArgumentException|NumberFormatException|\"+\n \"SecurityException|Void|InheritableThreadLocal|IllegalStateException|\"+\n \"InterruptedException|NoSuchMethodException|IllegalAccessException|\"+\n \"UnsupportedOperationException|Enum|StrictMath|Package|Compiler|\"+\n \"Readable|Runtime|StringBuilder|Math|IncompatibleClassChangeError|\"+\n \"NoSuchMethodError|ThreadLocal|RuntimePermission|ArithmeticException|\"+\n \"NullPointerException|Long|Integer|Short|Byte|Double|Number|Float|\"+\n \"Character|Boolean|StackTraceElement|Appendable|StringBuffer|\"+\n \"Iterable|ThreadGroup|Runnable|Thread|IllegalMonitorStateException|\"+\n \"StackOverflowError|OutOfMemoryError|VirtualMachineError|\"+\n \"ArrayStoreException|ClassCastException|LinkageError|\"+\n \"NoClassDefFoundError|ClassNotFoundException|RuntimeException|\"+\n \"Exception|ThreadDeath|Error|Throwable|System|ClassLoader|\"+\n \"Cloneable|Class|CharSequence|Comparable|String|Object\"\n );\n\n var keywordMapper = this.createKeywordMapper({\n \"variable.language\": \"this\",\n \"keyword\": keywords,\n \"constant.language\": buildinConstants,\n \"support.function\": langClasses\n }, \"identifier\");\n\n this.$rules = {\n \"start\" : [\n {\n token : \"comment\",\n regex : \"\\\\/\\\\/.*$\"\n },\n DocCommentHighlightRules.getStartRule(\"doc-start\"),\n {\n token : \"comment\", // multi line comment\n regex : \"\\\\/\\\\*\",\n next : \"comment\"\n }, {\n token : \"string\", // single line\n regex : '[\"](?:(?:\\\\\\\\.)|(?:[^\"\\\\\\\\]))*?[\"]'\n }, {\n token : \"string\", // single line\n regex : \"['](?:(?:\\\\\\\\.)|(?:[^'\\\\\\\\]))*?[']\"\n }, {\n token : \"constant.numeric\", // hex\n regex : /0(?:[xX][0-9a-fA-F][0-9a-fA-F_]*|[bB][01][01_]*)[LlSsDdFfYy]?\\b/\n }, {\n token : \"constant.numeric\", // float\n regex : /[+-]?\\d[\\d_]*(?:(?:\\.[\\d_]*)?(?:[eE][+-]?[\\d_]+)?)?[LlSsDdFfYy]?\\b/\n }, {\n token : \"constant.language.boolean\",\n regex : \"(?:true|false)\\\\b\"\n }, {\n regex: \"(open(?:\\\\s+))?module(?=\\\\s*\\\\w)\",\n token: \"keyword\",\n next: [{\n regex: \"{\",\n token: \"paren.lparen\",\n next: [{\n regex: \"}\",\n token: \"paren.rparen\",\n next: \"start\"\n }, {\n regex: \"\\\\b(requires|transitive|exports|opens|to|uses|provides|with)\\\\b\",\n token: \"keyword\" \n }]\n }, {\n token : \"text\",\n regex : \"\\\\s+\"\n }, {\n token : \"identifier\",\n regex : \"\\\\w+\"\n }, {\n token : \"punctuation.operator\",\n regex : \".\"\n }, {\n token : \"text\",\n regex : \"\\\\s+\"\n }, {\n regex: \"\", // exit if there is anything else\n next: \"start\"\n }]\n }, {\n token : keywordMapper,\n regex : \"[a-zA-Z_$][a-zA-Z0-9_$]*\\\\b\"\n }, {\n token : \"keyword.operator\",\n regex : \"!|\\\\$|%|&|\\\\*|\\\\-\\\\-|\\\\-|\\\\+\\\\+|\\\\+|~|===|==|=|!=|!==|<=|>=|<<=|>>=|>>>=|<>|<|>|!|&&|\\\\|\\\\||\\\\?\\\\:|\\\\*=|%=|\\\\+=|\\\\-=|&=|\\\\^=|\\\\b(?:in|instanceof|new|delete|typeof|void)\"\n }, {\n token : \"lparen\",\n regex : \"[[({]\"\n }, {\n token : \"rparen\",\n regex : \"[\\\\])}]\"\n }, {\n token : \"text\",\n regex : \"\\\\s+\"\n }\n ],\n \"comment\" : [\n {\n token : \"comment\", // closing comment\n regex : \"\\\\*\\\\/\",\n next : \"start\"\n }, {\n defaultToken : \"comment\"\n }\n ]\n };\n\n \n this.embedRules(DocCommentHighlightRules, \"doc-\",\n [ DocCommentHighlightRules.getEndRule(\"start\") ]);\n this.normalizeRules();\n};\n\noop.inherits(JavaHighlightRules, TextHighlightRules);\n\nexports.JavaHighlightRules = JavaHighlightRules;\n});\n\nace.define(\"ace/mode/jsp_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/html_highlight_rules\",\"ace/mode/java_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar HtmlHighlightRules = require(\"./html_highlight_rules\").HtmlHighlightRules;\nvar JavaHighlightRules = require(\"./java_highlight_rules\").JavaHighlightRules;\n\nvar JspHighlightRules = function() {\n HtmlHighlightRules.call(this);\n\n var builtinVariables = 'request|response|out|session|' +\n 'application|config|pageContext|page|Exception';\n\n var keywords = 'page|include|taglib';\n\n var startRules = [\n {\n token : \"comment\",\n regex : \"<%--\",\n push : \"jsp-dcomment\"\n }, {\n token : \"meta.tag\", // jsp open tag\n regex : \"<%@?|<%=?|<%!?|]+>\",\n push : \"jsp-start\"\n }\n ];\n\n var endRules = [\n {\n token : \"meta.tag\", // jsp close tag\n regex : \"%>|<\\\\/jsp:[^>]+>\",\n next : \"pop\"\n }, {\n token: \"variable.language\",\n regex : builtinVariables\n }, {\n token: \"keyword\",\n regex : keywords\n }\n ];\n\n for (var key in this.$rules)\n this.$rules[key].unshift.apply(this.$rules[key], startRules);\n\n this.embedRules(JavaHighlightRules, \"jsp-\", endRules, [\"start\"]);\n\n this.addRules({\n \"jsp-dcomment\" : [{\n token : \"comment\",\n regex : \".*?--%>\",\n next : \"pop\"\n }]\n });\n\n this.normalizeRules();\n};\n\noop.inherits(JspHighlightRules, HtmlHighlightRules);\n\nexports.JspHighlightRules = JspHighlightRules;\n});\n\nace.define(\"ace/mode/matching_brace_outdent\",[\"require\",\"exports\",\"module\",\"ace/range\"], function(require, exports, module) {\n\"use strict\";\n\nvar Range = require(\"../range\").Range;\n\nvar MatchingBraceOutdent = function() {};\n\n(function() {\n\n this.checkOutdent = function(line, input) {\n if (! /^\\s+$/.test(line))\n return false;\n\n return /^\\s*\\}/.test(input);\n };\n\n this.autoOutdent = function(doc, row) {\n var line = doc.getLine(row);\n var match = line.match(/^(\\s*\\})/);\n\n if (!match) return 0;\n\n var column = match[1].length;\n var openBracePos = doc.findMatchingBracket({row: row, column: column});\n\n if (!openBracePos || openBracePos.row == row) return 0;\n\n var indent = this.$getIndent(doc.getLine(openBracePos.row));\n doc.replace(new Range(row, 0, row, column-1), indent);\n };\n\n this.$getIndent = function(line) {\n return line.match(/^\\s*/)[0];\n };\n\n}).call(MatchingBraceOutdent.prototype);\n\nexports.MatchingBraceOutdent = MatchingBraceOutdent;\n});\n\nace.define(\"ace/mode/folding/cstyle\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/range\",\"ace/mode/folding/fold_mode\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Range = require(\"../../range\").Range;\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function(commentRegex) {\n if (commentRegex) {\n this.foldingStartMarker = new RegExp(\n this.foldingStartMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.start)\n );\n this.foldingStopMarker = new RegExp(\n this.foldingStopMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.end)\n );\n }\n};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n \n this.foldingStartMarker = /([\\{\\[\\(])[^\\}\\]\\)]*$|^\\s*(\\/\\*)/;\n this.foldingStopMarker = /^[^\\[\\{\\(]*([\\}\\]\\)])|^[\\s\\*]*(\\*\\/)/;\n this.singleLineBlockCommentRe= /^\\s*(\\/\\*).*\\*\\/\\s*$/;\n this.tripleStarBlockCommentRe = /^\\s*(\\/\\*\\*\\*).*\\*\\/\\s*$/;\n this.startRegionRe = /^\\s*(\\/\\*|\\/\\/)#?region\\b/;\n this._getFoldWidgetBase = this.getFoldWidget;\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n \n if (this.singleLineBlockCommentRe.test(line)) {\n if (!this.startRegionRe.test(line) && !this.tripleStarBlockCommentRe.test(line))\n return \"\";\n }\n \n var fw = this._getFoldWidgetBase(session, foldStyle, row);\n \n if (!fw && this.startRegionRe.test(line))\n return \"start\"; // lineCommentRegionStart\n \n return fw;\n };\n\n this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {\n var line = session.getLine(row);\n \n if (this.startRegionRe.test(line))\n return this.getCommentRegionBlock(session, line, row);\n \n var match = line.match(this.foldingStartMarker);\n if (match) {\n var i = match.index;\n\n if (match[1])\n return this.openingBracketBlock(session, match[1], row, i);\n \n var range = session.getCommentFoldRange(row, i + match[0].length, 1);\n \n if (range && !range.isMultiLine()) {\n if (forceMultiline) {\n range = this.getSectionRange(session, row);\n } else if (foldStyle != \"all\")\n range = null;\n }\n \n return range;\n }\n\n if (foldStyle === \"markbegin\")\n return;\n\n var match = line.match(this.foldingStopMarker);\n if (match) {\n var i = match.index + match[0].length;\n\n if (match[1])\n return this.closingBracketBlock(session, match[1], row, i);\n\n return session.getCommentFoldRange(row, i, -1);\n }\n };\n \n this.getSectionRange = function(session, row) {\n var line = session.getLine(row);\n var startIndent = line.search(/\\S/);\n var startRow = row;\n var startColumn = line.length;\n row = row + 1;\n var endRow = row;\n var maxRow = session.getLength();\n while (++row < maxRow) {\n line = session.getLine(row);\n var indent = line.search(/\\S/);\n if (indent === -1)\n continue;\n if (startIndent > indent)\n break;\n var subRange = this.getFoldWidgetRange(session, \"all\", row);\n \n if (subRange) {\n if (subRange.start.row <= startRow) {\n break;\n } else if (subRange.isMultiLine()) {\n row = subRange.end.row;\n } else if (startIndent == indent) {\n break;\n }\n }\n endRow = row;\n }\n \n return new Range(startRow, startColumn, endRow, session.getLine(endRow).length);\n };\n this.getCommentRegionBlock = function(session, line, row) {\n var startColumn = line.search(/\\s*$/);\n var maxRow = session.getLength();\n var startRow = row;\n \n var re = /^\\s*(?:\\/\\*|\\/\\/|--)#?(end)?region\\b/;\n var depth = 1;\n while (++row < maxRow) {\n line = session.getLine(row);\n var m = re.exec(line);\n if (!m) continue;\n if (m[1]) depth--;\n else depth++;\n\n if (!depth) break;\n }\n\n var endRow = row;\n if (endRow > startRow) {\n return new Range(startRow, startColumn, endRow, line.length);\n }\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/jsp\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/jsp_highlight_rules\",\"ace/mode/matching_brace_outdent\",\"ace/mode/behaviour/cstyle\",\"ace/mode/folding/cstyle\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar JspHighlightRules = require(\"./jsp_highlight_rules\").JspHighlightRules;\nvar MatchingBraceOutdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\nvar CstyleBehaviour = require(\"./behaviour/cstyle\").CstyleBehaviour;\nvar CStyleFoldMode = require(\"./folding/cstyle\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = JspHighlightRules;\n this.$outdent = new MatchingBraceOutdent();\n this.$behaviour = new CstyleBehaviour();\n this.foldingRules = new CStyleFoldMode();\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.$id = \"ace/mode/jsp\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/jsp\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file3r := &embedded.EmbeddedFile{ Filename: "57c7c145c720f31f3749b658e3769833.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/c9search_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\nfunction safeCreateRegexp(source, flag) {\n try {\n return new RegExp(source, flag);\n } catch(e) {}\n}\n\nvar C9SearchHighlightRules = function() {\n this.$rules = {\n \"start\" : [\n {\n tokenNames : [\"c9searchresults.constant.numeric\", \"c9searchresults.text\", \"c9searchresults.text\", \"c9searchresults.keyword\"],\n regex : /(^\\s+[0-9]+)(:)(\\d*\\s?)([^\\r\\n]+)/,\n onMatch : function(val, state, stack) {\n var values = this.splitRegex.exec(val);\n var types = this.tokenNames;\n var tokens = [{\n type: types[0],\n value: values[1]\n }, {\n type: types[1],\n value: values[2]\n }];\n \n if (values[3]) {\n if (values[3] == \" \")\n tokens[1] = { type: types[1], value: values[2] + \" \" };\n else\n tokens.push({ type: types[1], value: values[3] });\n }\n var regex = stack[1];\n var str = values[4];\n \n var m;\n var last = 0;\n if (regex && regex.exec) {\n regex.lastIndex = 0;\n while (m = regex.exec(str)) {\n var skipped = str.substring(last, m.index);\n last = regex.lastIndex;\n if (skipped)\n tokens.push({type: types[2], value: skipped});\n if (m[0])\n tokens.push({type: types[3], value: m[0]});\n else if (!skipped)\n break;\n }\n }\n if (last < str.length)\n tokens.push({type: types[2], value: str.substr(last)});\n return tokens;\n }\n },\n {\n regex : \"^Searching for [^\\\\r\\\\n]*$\",\n onMatch: function(val, state, stack) {\n var parts = val.split(\"\\x01\");\n if (parts.length < 3)\n return \"text\";\n\n var options, search;\n \n var i = 0;\n var tokens = [{\n value: parts[i++] + \"'\",\n type: \"text\"\n }, {\n value: search = parts[i++],\n type: \"text\" // \"c9searchresults.keyword\"\n }, {\n value: \"'\" + parts[i++],\n type: \"text\"\n }];\n if (parts[2] !== \" in\") {\n tokens.push({\n value: \"'\" + parts[i++] + \"'\",\n type: \"text\"\n }, {\n value: parts[i++],\n type: \"text\"\n });\n }\n tokens.push({\n value: \" \" + parts[i++] + \" \",\n type: \"text\"\n });\n if (parts[i+1]) {\n options = parts[i+1];\n tokens.push({\n value: \"(\" + parts[i+1] + \")\",\n type: \"text\"\n });\n i += 1;\n } else {\n i -= 1;\n }\n while (i++ < parts.length) {\n parts[i] && tokens.push({\n value: parts[i],\n type: \"text\"\n });\n }\n \n if (search) {\n if (!/regex/.test(options))\n search = lang.escapeRegExp(search);\n if (/whole/.test(options))\n search = \"\\\\b\" + search + \"\\\\b\";\n }\n \n var regex = search && safeCreateRegexp(\n \"(\" + search + \")\",\n / sensitive/.test(options) ? \"g\" : \"ig\"\n );\n if (regex) {\n stack[0] = state;\n stack[1] = regex;\n }\n \n return tokens;\n }\n },\n {\n regex : \"^(?=Found \\\\d+ matches)\",\n token : \"text\",\n next : \"numbers\"\n },\n {\n token : \"string\", // single line\n regex : \"^\\\\S:?[^:]+\",\n next : \"numbers\"\n }\n ],\n numbers:[{\n regex : \"\\\\d+\",\n token : \"constant.numeric\"\n }, {\n regex : \"$\",\n token : \"text\",\n next : \"start\"\n }]\n };\n this.normalizeRules();\n};\n\noop.inherits(C9SearchHighlightRules, TextHighlightRules);\n\nexports.C9SearchHighlightRules = C9SearchHighlightRules;\n\n});\n\nace.define(\"ace/mode/matching_brace_outdent\",[\"require\",\"exports\",\"module\",\"ace/range\"], function(require, exports, module) {\n\"use strict\";\n\nvar Range = require(\"../range\").Range;\n\nvar MatchingBraceOutdent = function() {};\n\n(function() {\n\n this.checkOutdent = function(line, input) {\n if (! /^\\s+$/.test(line))\n return false;\n\n return /^\\s*\\}/.test(input);\n };\n\n this.autoOutdent = function(doc, row) {\n var line = doc.getLine(row);\n var match = line.match(/^(\\s*\\})/);\n\n if (!match) return 0;\n\n var column = match[1].length;\n var openBracePos = doc.findMatchingBracket({row: row, column: column});\n\n if (!openBracePos || openBracePos.row == row) return 0;\n\n var indent = this.$getIndent(doc.getLine(openBracePos.row));\n doc.replace(new Range(row, 0, row, column-1), indent);\n };\n\n this.$getIndent = function(line) {\n return line.match(/^\\s*/)[0];\n };\n\n}).call(MatchingBraceOutdent.prototype);\n\nexports.MatchingBraceOutdent = MatchingBraceOutdent;\n});\n\nace.define(\"ace/mode/folding/c9search\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/range\",\"ace/mode/folding/fold_mode\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Range = require(\"../../range\").Range;\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function() {};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n\n this.foldingStartMarker = /^(\\S.*:|Searching for.*)$/;\n this.foldingStopMarker = /^(\\s+|Found.*)$/;\n \n this.getFoldWidgetRange = function(session, foldStyle, row) {\n var lines = session.doc.getAllLines(row);\n var line = lines[row];\n var level1 = /^(Found.*|Searching for.*)$/;\n var level2 = /^(\\S.*:|\\s*)$/;\n var re = level1.test(line) ? level1 : level2;\n \n var startRow = row;\n var endRow = row;\n\n if (this.foldingStartMarker.test(line)) {\n for (var i = row + 1, l = session.getLength(); i < l; i++) {\n if (re.test(lines[i]))\n break;\n }\n endRow = i;\n }\n else if (this.foldingStopMarker.test(line)) {\n for (var i = row - 1; i >= 0; i--) {\n line = lines[i];\n if (re.test(line))\n break;\n }\n startRow = i;\n }\n if (startRow != endRow) {\n var col = line.length;\n if (re === level1)\n col = line.search(/\\(Found[^)]+\\)$|$/);\n return new Range(startRow, col, endRow, 0);\n }\n };\n \n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/c9search\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/c9search_highlight_rules\",\"ace/mode/matching_brace_outdent\",\"ace/mode/folding/c9search\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar C9SearchHighlightRules = require(\"./c9search_highlight_rules\").C9SearchHighlightRules;\nvar MatchingBraceOutdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\nvar C9StyleFoldMode = require(\"./folding/c9search\").FoldMode;\n\nvar Mode = function() {\n this.HighlightRules = C9SearchHighlightRules;\n this.$outdent = new MatchingBraceOutdent();\n this.foldingRules = new C9StyleFoldMode();\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n \n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n return indent;\n };\n\n this.checkOutdent = function(state, line, input) {\n return this.$outdent.checkOutdent(line, input);\n };\n\n this.autoOutdent = function(state, doc, row) {\n this.$outdent.autoOutdent(doc, row);\n };\n\n this.$id = \"ace/mode/c9search\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n\n}); (function() {\n ace.require([\"ace/mode/c9search\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file3s := &embedded.EmbeddedFile{ Filename: "5840cca8419b74fa36b217f7d705802a.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("ace.define(\"ace/mode/lsl_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\n\noop.inherits(LSLHighlightRules, TextHighlightRules);\n\nfunction LSLHighlightRules() {\n var keywordMapper = this.createKeywordMapper({\n \"constant.language.float.lsl\" : \"DEG_TO_RAD|PI|PI_BY_TWO|RAD_TO_DEG|SQRT2|TWO_PI\",\n \"constant.language.integer.lsl\": \"ACTIVE|AGENT|AGENT_ALWAYS_RUN|AGENT_ATTACHMENTS|AGENT_AUTOPILOT|AGENT_AWAY|AGENT_BUSY|AGENT_BY_LEGACY_NAME|AGENT_BY_USERNAME|AGENT_CROUCHING|AGENT_FLYING|AGENT_IN_AIR|AGENT_LIST_PARCEL|AGENT_LIST_PARCEL_OWNER|AGENT_LIST_REGION|AGENT_MOUSELOOK|AGENT_ON_OBJECT|AGENT_SCRIPTED|AGENT_SITTING|AGENT_TYPING|AGENT_WALKING|ALL_SIDES|ANIM_ON|ATTACH_AVATAR_CENTER|ATTACH_BACK|ATTACH_BELLY|ATTACH_CHEST|ATTACH_CHIN|ATTACH_HEAD|ATTACH_HUD_BOTTOM|ATTACH_HUD_BOTTOM_LEFT|ATTACH_HUD_BOTTOM_RIGHT|ATTACH_HUD_CENTER_1|ATTACH_HUD_CENTER_2|ATTACH_HUD_TOP_CENTER|ATTACH_HUD_TOP_LEFT|ATTACH_HUD_TOP_RIGHT|ATTACH_LEAR|ATTACH_LEFT_PEC|ATTACH_LEYE|ATTACH_LFOOT|ATTACH_LHAND|ATTACH_LHIP|ATTACH_LLARM|ATTACH_LLLEG|ATTACH_LSHOULDER|ATTACH_LUARM|ATTACH_LULEG|ATTACH_MOUTH|ATTACH_NECK|ATTACH_NOSE|ATTACH_PELVIS|ATTACH_REAR|ATTACH_REYE|ATTACH_RFOOT|ATTACH_RHAND|ATTACH_RHIP|ATTACH_RIGHT_PEC|ATTACH_RLARM|ATTACH_RLLEG|ATTACH_RSHOULDER|ATTACH_RUARM|ATTACH_RULEG|AVOID_CHARACTERS|AVOID_DYNAMIC_OBSTACLES|AVOID_NONE|CAMERA_ACTIVE|CAMERA_BEHINDNESS_ANGLE|CAMERA_BEHINDNESS_LAG|CAMERA_DISTANCE|CAMERA_FOCUS|CAMERA_FOCUS_LAG|CAMERA_FOCUS_LOCKED|CAMERA_FOCUS_OFFSET|CAMERA_FOCUS_THRESHOLD|CAMERA_PITCH|CAMERA_POSITION|CAMERA_POSITION_LAG|CAMERA_POSITION_LOCKED|CAMERA_POSITION_THRESHOLD|CHANGED_ALLOWED_DROP|CHANGED_COLOR|CHANGED_INVENTORY|CHANGED_LINK|CHANGED_MEDIA|CHANGED_OWNER|CHANGED_REGION|CHANGED_REGION_START|CHANGED_SCALE|CHANGED_SHAPE|CHANGED_TELEPORT|CHANGED_TEXTURE|CHARACTER_ACCOUNT_FOR_SKIPPED_FRAMES|CHARACTER_AVOIDANCE_MODE|CHARACTER_CMD_JUMP|CHARACTER_CMD_SMOOTH_STOP|CHARACTER_CMD_STOP|CHARACTER_DESIRED_SPEED|CHARACTER_DESIRED_TURN_SPEED|CHARACTER_LENGTH|CHARACTER_MAX_ACCEL|CHARACTER_MAX_DECEL|CHARACTER_MAX_SPEED|CHARACTER_MAX_TURN_RADIUS|CHARACTER_ORIENTATION|CHARACTER_RADIUS|CHARACTER_STAY_WITHIN_PARCEL|CHARACTER_TYPE|CHARACTER_TYPE_A|CHARACTER_TYPE_B|CHARACTER_TYPE_C|CHARACTER_TYPE_D|CHARACTER_TYPE_NONE|CLICK_ACTION_BUY|CLICK_ACTION_NONE|CLICK_ACTION_OPEN|CLICK_ACTION_OPEN_MEDIA|CLICK_ACTION_PAY|CLICK_ACTION_PLAY|CLICK_ACTION_SIT|CLICK_ACTION_TOUCH|CONTENT_TYPE_ATOM|CONTENT_TYPE_FORM|CONTENT_TYPE_HTML|CONTENT_TYPE_JSON|CONTENT_TYPE_LLSD|CONTENT_TYPE_RSS|CONTENT_TYPE_TEXT|CONTENT_TYPE_XHTML|CONTENT_TYPE_XML|CONTROL_BACK|CONTROL_DOWN|CONTROL_FWD|CONTROL_LBUTTON|CONTROL_LEFT|CONTROL_ML_LBUTTON|CONTROL_RIGHT|CONTROL_ROT_LEFT|CONTROL_ROT_RIGHT|CONTROL_UP|DATA_BORN|DATA_NAME|DATA_ONLINE|DATA_PAYINFO|DATA_SIM_POS|DATA_SIM_RATING|DATA_SIM_STATUS|DEBUG_CHANNEL|DENSITY|ERR_GENERIC|ERR_MALFORMED_PARAMS|ERR_PARCEL_PERMISSIONS|ERR_RUNTIME_PERMISSIONS|ERR_THROTTLED|ESTATE_ACCESS_ALLOWED_AGENT_ADD|ESTATE_ACCESS_ALLOWED_AGENT_REMOVE|ESTATE_ACCESS_ALLOWED_GROUP_ADD|ESTATE_ACCESS_ALLOWED_GROUP_REMOVE|ESTATE_ACCESS_BANNED_AGENT_ADD|ESTATE_ACCESS_BANNED_AGENT_REMOVE|FALSE|FORCE_DIRECT_PATH|FRICTION|GCNP_RADIUS|GCNP_STATIC|GRAVITY_MULTIPLIER|HORIZONTAL|HTTP_BODY_MAXLENGTH|HTTP_BODY_TRUNCATED|HTTP_CUSTOM_HEADER|HTTP_METHOD|HTTP_MIMETYPE|HTTP_PRAGMA_NO_CACHE|HTTP_VERBOSE_THROTTLE|HTTP_VERIFY_CERT|INVENTORY_ALL|INVENTORY_ANIMATION|INVENTORY_BODYPART|INVENTORY_CLOTHING|INVENTORY_GESTURE|INVENTORY_LANDMARK|INVENTORY_NONE|INVENTORY_NOTECARD|INVENTORY_OBJECT|INVENTORY_SCRIPT|INVENTORY_SOUND|INVENTORY_TEXTURE|JSON_APPEND|KFM_CMD_PAUSE|KFM_CMD_PLAY|KFM_CMD_SET_MODE|KFM_CMD_STOP|KFM_COMMAND|KFM_DATA|KFM_FORWARD|KFM_LOOP|KFM_MODE|KFM_PING_PONG|KFM_REVERSE|KFM_ROTATION|KFM_TRANSLATION|LAND_LEVEL|LAND_LOWER|LAND_NOISE|LAND_RAISE|LAND_REVERT|LAND_SMOOTH|LINK_ALL_CHILDREN|LINK_ALL_OTHERS|LINK_ROOT|LINK_SET|LINK_THIS|LIST_STAT_GEOMETRIC_MEAN|LIST_STAT_MAX|LIST_STAT_MEAN|LIST_STAT_MEDIAN|LIST_STAT_MIN|LIST_STAT_NUM_COUNT|LIST_STAT_RANGE|LIST_STAT_STD_DEV|LIST_STAT_SUM|LIST_STAT_SUM_SQUARES|LOOP|MASK_BASE|MASK_EVERYONE|MASK_GROUP|MASK_NEXT|MASK_OWNER|OBJECT_ATTACHED_POINT|OBJECT_BODY_SHAPE_TYPE|OBJECT_CHARACTER_TIME|OBJECT_CLICK_ACTION|OBJECT_CREATOR|OBJECT_DESC|OBJECT_GROUP|OBJECT_HOVER_HEIGHT|OBJECT_LAST_OWNER_ID|OBJECT_NAME|OBJECT_OWNER|OBJECT_PATHFINDING_TYPE|OBJECT_PHANTOM|OBJECT_PHYSICS|OBJECT_PHYSICS_COST|OBJECT_POS|OBJECT_PRIM_EQUIVALENCE|OBJECT_RENDER_WEIGHT|OBJECT_RETURN_PARCEL|OBJECT_RETURN_PARCEL_OWNER|OBJECT_RETURN_REGION|OBJECT_ROOT|OBJECT_ROT|OBJECT_RUNNING_SCRIPT_COUNT|OBJECT_SCRIPT_MEMORY|OBJECT_SCRIPT_TIME|OBJECT_SERVER_COST|OBJECT_STREAMING_COST|OBJECT_TEMP_ON_REZ|OBJECT_TOTAL_SCRIPT_COUNT|OBJECT_UNKNOWN_DETAIL|OBJECT_VELOCITY|OPT_AVATAR|OPT_CHARACTER|OPT_EXCLUSION_VOLUME|OPT_LEGACY_LINKSET|OPT_MATERIAL_VOLUME|OPT_OTHER|OPT_STATIC_OBSTACLE|OPT_WALKABLE|PARCEL_COUNT_GROUP|PARCEL_COUNT_OTHER|PARCEL_COUNT_OWNER|PARCEL_COUNT_SELECTED|PARCEL_COUNT_TEMP|PARCEL_COUNT_TOTAL|PARCEL_DETAILS_AREA|PARCEL_DETAILS_DESC|PARCEL_DETAILS_GROUP|PARCEL_DETAILS_ID|PARCEL_DETAILS_NAME|PARCEL_DETAILS_OWNER|PARCEL_DETAILS_SEE_AVATARS|PARCEL_FLAG_ALLOW_ALL_OBJECT_ENTRY|PARCEL_FLAG_ALLOW_CREATE_GROUP_OBJECTS|PARCEL_FLAG_ALLOW_CREATE_OBJECTS|PARCEL_FLAG_ALLOW_DAMAGE|PARCEL_FLAG_ALLOW_FLY|PARCEL_FLAG_ALLOW_GROUP_OBJECT_ENTRY|PARCEL_FLAG_ALLOW_GROUP_SCRIPTS|PARCEL_FLAG_ALLOW_LANDMARK|PARCEL_FLAG_ALLOW_SCRIPTS|PARCEL_FLAG_ALLOW_TERRAFORM|PARCEL_FLAG_LOCAL_SOUND_ONLY|PARCEL_FLAG_RESTRICT_PUSHOBJECT|PARCEL_FLAG_USE_ACCESS_GROUP|PARCEL_FLAG_USE_ACCESS_LIST|PARCEL_FLAG_USE_BAN_LIST|PARCEL_FLAG_USE_LAND_PASS_LIST|PARCEL_MEDIA_COMMAND_AGENT|PARCEL_MEDIA_COMMAND_AUTO_ALIGN|PARCEL_MEDIA_COMMAND_DESC|PARCEL_MEDIA_COMMAND_LOOP|PARCEL_MEDIA_COMMAND_LOOP_SET|PARCEL_MEDIA_COMMAND_PAUSE|PARCEL_MEDIA_COMMAND_PLAY|PARCEL_MEDIA_COMMAND_SIZE|PARCEL_MEDIA_COMMAND_STOP|PARCEL_MEDIA_COMMAND_TEXTURE|PARCEL_MEDIA_COMMAND_TIME|PARCEL_MEDIA_COMMAND_TYPE|PARCEL_MEDIA_COMMAND_UNLOAD|PARCEL_MEDIA_COMMAND_URL|PASS_ALWAYS|PASS_IF_NOT_HANDLED|PASS_NEVER|PASSIVE|PATROL_PAUSE_AT_WAYPOINTS|PAYMENT_INFO_ON_FILE|PAYMENT_INFO_USED|PAY_DEFAULT|PAY_HIDE|PERMISSION_ATTACH|PERMISSION_CHANGE_LINKS|PERMISSION_CONTROL_CAMERA|PERMISSION_DEBIT|PERMISSION_OVERRIDE_ANIMATIONS|PERMISSION_RETURN_OBJECTS|PERMISSION_SILENT_ESTATE_MANAGEMENT|PERMISSION_TAKE_CONTROLS|PERMISSION_TELEPORT|PERMISSION_TRACK_CAMERA|PERMISSION_TRIGGER_ANIMATION|PERM_ALL|PERM_COPY|PERM_MODIFY|PERM_MOVE|PERM_TRANSFER|PING_PONG|PRIM_ALPHA_MODE|PRIM_ALPHA_MODE_BLEND|PRIM_ALPHA_MODE_EMISSIVE|PRIM_ALPHA_MODE_MASK|PRIM_ALPHA_MODE_NONE|PRIM_BUMP_BARK|PRIM_BUMP_BLOBS|PRIM_BUMP_BRICKS|PRIM_BUMP_BRIGHT|PRIM_BUMP_CHECKER|PRIM_BUMP_CONCRETE|PRIM_BUMP_DARK|PRIM_BUMP_DISKS|PRIM_BUMP_GRAVEL|PRIM_BUMP_LARGETILE|PRIM_BUMP_NONE|PRIM_BUMP_SHINY|PRIM_BUMP_SIDING|PRIM_BUMP_STONE|PRIM_BUMP_STUCCO|PRIM_BUMP_SUCTION|PRIM_BUMP_TILE|PRIM_BUMP_WEAVE|PRIM_BUMP_WOOD|PRIM_COLOR|PRIM_DESC|PRIM_FLEXIBLE|PRIM_FULLBRIGHT|PRIM_GLOW|PRIM_HOLE_CIRCLE|PRIM_HOLE_DEFAULT|PRIM_HOLE_SQUARE|PRIM_HOLE_TRIANGLE|PRIM_LINK_TARGET|PRIM_MATERIAL|PRIM_MATERIAL_FLESH|PRIM_MATERIAL_GLASS|PRIM_MATERIAL_METAL|PRIM_MATERIAL_PLASTIC|PRIM_MATERIAL_RUBBER|PRIM_MATERIAL_STONE|PRIM_MATERIAL_WOOD|PRIM_MEDIA_ALT_IMAGE_ENABLE|PRIM_MEDIA_AUTO_LOOP|PRIM_MEDIA_AUTO_PLAY|PRIM_MEDIA_AUTO_SCALE|PRIM_MEDIA_AUTO_ZOOM|PRIM_MEDIA_CONTROLS|PRIM_MEDIA_CONTROLS_MINI|PRIM_MEDIA_CONTROLS_STANDARD|PRIM_MEDIA_CURRENT_URL|PRIM_MEDIA_FIRST_CLICK_INTERACT|PRIM_MEDIA_HEIGHT_PIXELS|PRIM_MEDIA_HOME_URL|PRIM_MEDIA_MAX_HEIGHT_PIXELS|PRIM_MEDIA_MAX_URL_LENGTH|PRIM_MEDIA_MAX_WHITELIST_COUNT|PRIM_MEDIA_MAX_WHITELIST_SIZE|PRIM_MEDIA_MAX_WIDTH_PIXELS|PRIM_MEDIA_PARAM_MAX|PRIM_MEDIA_PERMS_CONTROL|PRIM_MEDIA_PERMS_INTERACT|PRIM_MEDIA_PERM_ANYONE|PRIM_MEDIA_PERM_GROUP|PRIM_MEDIA_PERM_NONE|PRIM_MEDIA_PERM_OWNER|PRIM_MEDIA_WHITELIST|PRIM_MEDIA_WHITELIST_ENABLE|PRIM_MEDIA_WIDTH_PIXELS|PRIM_NAME|PRIM_NORMAL|PRIM_OMEGA|PRIM_PHANTOM|PRIM_PHYSICS|PRIM_PHYSICS_SHAPE_CONVEX|PRIM_PHYSICS_SHAPE_NONE|PRIM_PHYSICS_SHAPE_PRIM|PRIM_PHYSICS_SHAPE_TYPE|PRIM_POINT_LIGHT|PRIM_POSITION|PRIM_POS_LOCAL|PRIM_ROTATION|PRIM_ROT_LOCAL|PRIM_SCULPT_FLAG_INVERT|PRIM_SCULPT_FLAG_MIRROR|PRIM_SCULPT_TYPE_CYLINDER|PRIM_SCULPT_TYPE_MASK|PRIM_SCULPT_TYPE_PLANE|PRIM_SCULPT_TYPE_SPHERE|PRIM_SCULPT_TYPE_TORUS|PRIM_SHINY_HIGH|PRIM_SHINY_LOW|PRIM_SHINY_MEDIUM|PRIM_SHINY_NONE|PRIM_SIZE|PRIM_SLICE|PRIM_SPECULAR|PRIM_TEMP_ON_REZ|PRIM_TEXGEN|PRIM_TEXGEN_DEFAULT|PRIM_TEXGEN_PLANAR|PRIM_TEXT|PRIM_TEXTURE|PRIM_TYPE|PRIM_TYPE_BOX|PRIM_TYPE_CYLINDER|PRIM_TYPE_PRISM|PRIM_TYPE_RING|PRIM_TYPE_SCULPT|PRIM_TYPE_SPHERE|PRIM_TYPE_TORUS|PRIM_TYPE_TUBE|PROFILE_NONE|PROFILE_SCRIPT_MEMORY|PSYS_PART_BF_DEST_COLOR|PSYS_PART_BF_ONE|PSYS_PART_BF_ONE_MINUS_DEST_COLOR|PSYS_PART_BF_ONE_MINUS_SOURCE_ALPHA|PSYS_PART_BF_ONE_MINUS_SOURCE_COLOR|PSYS_PART_BF_SOURCE_ALPHA|PSYS_PART_BF_SOURCE_COLOR|PSYS_PART_BF_ZERO|PSYS_PART_BLEND_FUNC_DEST|PSYS_PART_BLEND_FUNC_SOURCE|PSYS_PART_BOUNCE_MASK|PSYS_PART_EMISSIVE_MASK|PSYS_PART_END_ALPHA|PSYS_PART_END_COLOR|PSYS_PART_END_GLOW|PSYS_PART_END_SCALE|PSYS_PART_FLAGS|PSYS_PART_FOLLOW_SRC_MASK|PSYS_PART_FOLLOW_VELOCITY_MASK|PSYS_PART_INTERP_COLOR_MASK|PSYS_PART_INTERP_SCALE_MASK|PSYS_PART_MAX_AGE|PSYS_PART_RIBBON_MASK|PSYS_PART_START_ALPHA|PSYS_PART_START_COLOR|PSYS_PART_START_GLOW|PSYS_PART_START_SCALE|PSYS_PART_TARGET_LINEAR_MASK|PSYS_PART_TARGET_POS_MASK|PSYS_PART_WIND_MASK|PSYS_SRC_ACCEL|PSYS_SRC_ANGLE_BEGIN|PSYS_SRC_ANGLE_END|PSYS_SRC_BURST_PART_COUNT|PSYS_SRC_BURST_RADIUS|PSYS_SRC_BURST_RATE|PSYS_SRC_BURST_SPEED_MAX|PSYS_SRC_BURST_SPEED_MIN|PSYS_SRC_MAX_AGE|PSYS_SRC_OMEGA|PSYS_SRC_PATTERN|PSYS_SRC_PATTERN_ANGLE|PSYS_SRC_PATTERN_ANGLE_CONE|PSYS_SRC_PATTERN_ANGLE_CONE_EMPTY|PSYS_SRC_PATTERN_DROP|PSYS_SRC_PATTERN_EXPLODE|PSYS_SRC_TARGET_KEY|PSYS_SRC_TEXTURE|PUBLIC_CHANNEL|PURSUIT_FUZZ_FACTOR|PURSUIT_GOAL_TOLERANCE|PURSUIT_INTERCEPT|PURSUIT_OFFSET|PU_EVADE_HIDDEN|PU_EVADE_SPOTTED|PU_FAILURE_DYNAMIC_PATHFINDING_DISABLED|PU_FAILURE_INVALID_GOAL|PU_FAILURE_INVALID_START|PU_FAILURE_NO_NAVMESH|PU_FAILURE_NO_VALID_DESTINATION|PU_FAILURE_OTHER|PU_FAILURE_PARCEL_UNREACHABLE|PU_FAILURE_TARGET_GONE|PU_FAILURE_UNREACHABLE|PU_GOAL_REACHED|PU_SLOWDOWN_DISTANCE_REACHED|RCERR_CAST_TIME_EXCEEDED|RCERR_SIM_PERF_LOW|RCERR_UNKNOWN|RC_DATA_FLAGS|RC_DETECT_PHANTOM|RC_GET_LINK_NUM|RC_GET_NORMAL|RC_GET_ROOT_KEY|RC_MAX_HITS|RC_REJECT_AGENTS|RC_REJECT_LAND|RC_REJECT_NONPHYSICAL|RC_REJECT_PHYSICAL|RC_REJECT_TYPES|REGION_FLAG_ALLOW_DAMAGE|REGION_FLAG_ALLOW_DIRECT_TELEPORT|REGION_FLAG_BLOCK_FLY|REGION_FLAG_BLOCK_TERRAFORM|REGION_FLAG_DISABLE_COLLISIONS|REGION_FLAG_DISABLE_PHYSICS|REGION_FLAG_FIXED_SUN|REGION_FLAG_RESTRICT_PUSHOBJECT|REGION_FLAG_SANDBOX|REMOTE_DATA_CHANNEL|REMOTE_DATA_REPLY|REMOTE_DATA_REQUEST|REQUIRE_LINE_OF_SIGHT|RESTITUTION|REVERSE|ROTATE|SCALE|SCRIPTED|SIM_STAT_PCT_CHARS_STEPPED|SMOOTH|STATUS_BLOCK_GRAB|STATUS_BLOCK_GRAB_OBJECT|STATUS_BOUNDS_ERROR|STATUS_CAST_SHADOWS|STATUS_DIE_AT_EDGE|STATUS_INTERNAL_ERROR|STATUS_MALFORMED_PARAMS|STATUS_NOT_FOUND|STATUS_NOT_SUPPORTED|STATUS_OK|STATUS_PHANTOM|STATUS_PHYSICS|STATUS_RETURN_AT_EDGE|STATUS_ROTATE_X|STATUS_ROTATE_Y|STATUS_ROTATE_Z|STATUS_SANDBOX|STATUS_TYPE_MISMATCH|STATUS_WHITELIST_FAILED|STRING_TRIM|STRING_TRIM_HEAD|STRING_TRIM_TAIL|TOUCH_INVALID_FACE|TRAVERSAL_TYPE|TRAVERSAL_TYPE_FAST|TRAVERSAL_TYPE_NONE|TRAVERSAL_TYPE_SLOW|TRUE|TYPE_FLOAT|TYPE_INTEGER|TYPE_INVALID|TYPE_KEY|TYPE_ROTATION|TYPE_STRING|TYPE_VECTOR|VEHICLE_ANGULAR_DEFLECTION_EFFICIENCY|VEHICLE_ANGULAR_DEFLECTION_TIMESCALE|VEHICLE_ANGULAR_FRICTION_TIMESCALE|VEHICLE_ANGULAR_MOTOR_DECAY_TIMESCALE|VEHICLE_ANGULAR_MOTOR_DIRECTION|VEHICLE_ANGULAR_MOTOR_TIMESCALE|VEHICLE_BANKING_EFFICIENCY|VEHICLE_BANKING_MIX|VEHICLE_BANKING_TIMESCALE|VEHICLE_BUOYANCY|VEHICLE_FLAG_CAMERA_DECOUPLED|VEHICLE_FLAG_HOVER_GLOBAL_HEIGHT|VEHICLE_FLAG_HOVER_TERRAIN_ONLY|VEHICLE_FLAG_HOVER_UP_ONLY|VEHICLE_FLAG_HOVER_WATER_ONLY|VEHICLE_FLAG_LIMIT_MOTOR_UP|VEHICLE_FLAG_LIMIT_ROLL_ONLY|VEHICLE_FLAG_MOUSELOOK_BANK|VEHICLE_FLAG_MOUSELOOK_STEER|VEHICLE_FLAG_NO_DEFLECTION_UP|VEHICLE_HOVER_EFFICIENCY|VEHICLE_HOVER_HEIGHT|VEHICLE_HOVER_TIMESCALE|VEHICLE_LINEAR_DEFLECTION_EFFICIENCY|VEHICLE_LINEAR_DEFLECTION_TIMESCALE|VEHICLE_LINEAR_FRICTION_TIMESCALE|VEHICLE_LINEAR_MOTOR_DECAY_TIMESCALE|VEHICLE_LINEAR_MOTOR_DIRECTION|VEHICLE_LINEAR_MOTOR_OFFSET|VEHICLE_LINEAR_MOTOR_TIMESCALE|VEHICLE_REFERENCE_FRAME|VEHICLE_TYPE_AIRPLANE|VEHICLE_TYPE_BALLOON|VEHICLE_TYPE_BOAT|VEHICLE_TYPE_CAR|VEHICLE_TYPE_NONE|VEHICLE_TYPE_SLED|VEHICLE_VERTICAL_ATTRACTION_EFFICIENCY|VEHICLE_VERTICAL_ATTRACTION_TIMESCALE|VERTICAL|WANDER_PAUSE_AT_WAYPOINTS|XP_ERROR_EXPERIENCES_DISABLED|XP_ERROR_EXPERIENCE_DISABLED|XP_ERROR_EXPERIENCE_SUSPENDED|XP_ERROR_INVALID_EXPERIENCE|XP_ERROR_INVALID_PARAMETERS|XP_ERROR_KEY_NOT_FOUND|XP_ERROR_MATURITY_EXCEEDED|XP_ERROR_NONE|XP_ERROR_NOT_FOUND|XP_ERROR_NOT_PERMITTED|XP_ERROR_NO_EXPERIENCE|XP_ERROR_QUOTA_EXCEEDED|XP_ERROR_RETRY_UPDATE|XP_ERROR_STORAGE_EXCEPTION|XP_ERROR_STORE_DISABLED|XP_ERROR_THROTTLED|XP_ERROR_UNKNOWN_ERROR\",\n \"constant.language.integer.boolean.lsl\" : \"FALSE|TRUE\",\n \"constant.language.quaternion.lsl\" : \"ZERO_ROTATION\",\n \"constant.language.string.lsl\" : \"EOF|JSON_ARRAY|JSON_DELETE|JSON_FALSE|JSON_INVALID|JSON_NULL|JSON_NUMBER|JSON_OBJECT|JSON_STRING|JSON_TRUE|NULL_KEY|TEXTURE_BLANK|TEXTURE_DEFAULT|TEXTURE_MEDIA|TEXTURE_PLYWOOD|TEXTURE_TRANSPARENT|URL_REQUEST_DENIED|URL_REQUEST_GRANTED\",\n \"constant.language.vector.lsl\" : \"TOUCH_INVALID_TEXCOORD|TOUCH_INVALID_VECTOR|ZERO_VECTOR\",\n \"invalid.broken.lsl\": \"LAND_LARGE_BRUSH|LAND_MEDIUM_BRUSH|LAND_SMALL_BRUSH\",\n \"invalid.deprecated.lsl\" : \"ATTACH_LPEC|ATTACH_RPEC|DATA_RATING|OBJECT_ATTACHMENT_GEOMETRY_BYTES|OBJECT_ATTACHMENT_SURFACE_AREA|PRIM_CAST_SHADOWS|PRIM_MATERIAL_LIGHT|PRIM_TYPE_LEGACY|PSYS_SRC_INNERANGLE|PSYS_SRC_OUTERANGLE|VEHICLE_FLAG_NO_FLY_UP|llClearExperiencePermissions|llCloud|llGetExperienceList|llMakeExplosion|llMakeFire|llMakeFountain|llMakeSmoke|llRemoteDataSetRegion|llSound|llSoundPreload|llXorBase64Strings|llXorBase64StringsCorrect\",\n \"invalid.illegal.lsl\": \"event\",\n \"invalid.unimplemented.lsl\": \"CHARACTER_MAX_ANGULAR_ACCEL|CHARACTER_MAX_ANGULAR_SPEED|CHARACTER_TURN_SPEED_MULTIPLIER|PERMISSION_CHANGE_JOINTS|PERMISSION_CHANGE_PERMISSIONS|PERMISSION_EXPERIENCE|PERMISSION_RELEASE_OWNERSHIP|PERMISSION_REMAP_CONTROLS|PRIM_PHYSICS_MATERIAL|PSYS_SRC_OBJ_REL_MASK|llCollisionSprite|llPointAt|llRefreshPrimURL|llReleaseCamera|llRemoteLoadScript|llSetPrimURL|llStopPointAt|llTakeCamera\",\n \"reserved.godmode.lsl\": \"llGodLikeRezObject|llSetInventoryPermMask|llSetObjectPermMask\",\n \"reserved.log.lsl\" : \"print\",\n \"keyword.control.lsl\" : \"do|else|for|if|jump|return|while\",\n \"storage.type.lsl\" : \"float|integer|key|list|quaternion|rotation|string|vector\",\n \"support.function.lsl\": \"llAbs|llAcos|llAddToLandBanList|llAddToLandPassList|llAdjustSoundVolume|llAgentInExperience|llAllowInventoryDrop|llAngleBetween|llApplyImpulse|llApplyRotationalImpulse|llAsin|llAtan2|llAttachToAvatar|llAttachToAvatarTemp|llAvatarOnLinkSitTarget|llAvatarOnSitTarget|llAxes2Rot|llAxisAngle2Rot|llBase64ToInteger|llBase64ToString|llBreakAllLinks|llBreakLink|llCSV2List|llCastRay|llCeil|llClearCameraParams|llClearLinkMedia|llClearPrimMedia|llCloseRemoteDataChannel|llCollisionFilter|llCollisionSound|llCos|llCreateCharacter|llCreateKeyValue|llCreateLink|llDataSizeKeyValue|llDeleteCharacter|llDeleteKeyValue|llDeleteSubList|llDeleteSubString|llDetachFromAvatar|llDetectedGrab|llDetectedGroup|llDetectedKey|llDetectedLinkNumber|llDetectedName|llDetectedOwner|llDetectedPos|llDetectedRot|llDetectedTouchBinormal|llDetectedTouchFace|llDetectedTouchNormal|llDetectedTouchPos|llDetectedTouchST|llDetectedTouchUV|llDetectedType|llDetectedVel|llDialog|llDie|llDumpList2String|llEdgeOfWorld|llEjectFromLand|llEmail|llEscapeURL|llEuler2Rot|llEvade|llExecCharacterCmd|llFabs|llFleeFrom|llFloor|llForceMouselook|llFrand|llGenerateKey|llGetAccel|llGetAgentInfo|llGetAgentLanguage|llGetAgentList|llGetAgentSize|llGetAlpha|llGetAndResetTime|llGetAnimation|llGetAnimationList|llGetAnimationOverride|llGetAttached|llGetAttachedList|llGetBoundingBox|llGetCameraPos|llGetCameraRot|llGetCenterOfMass|llGetClosestNavPoint|llGetColor|llGetCreator|llGetDate|llGetDisplayName|llGetEnergy|llGetEnv|llGetExperienceDetails|llGetExperienceErrorMessage|llGetForce|llGetFreeMemory|llGetFreeURLs|llGetGMTclock|llGetGeometricCenter|llGetHTTPHeader|llGetInventoryCreator|llGetInventoryKey|llGetInventoryName|llGetInventoryNumber|llGetInventoryPermMask|llGetInventoryType|llGetKey|llGetLandOwnerAt|llGetLinkKey|llGetLinkMedia|llGetLinkName|llGetLinkNumber|llGetLinkNumberOfSides|llGetLinkPrimitiveParams|llGetListEntryType|llGetListLength|llGetLocalPos|llGetLocalRot|llGetMass|llGetMassMKS|llGetMaxScaleFactor|llGetMemoryLimit|llGetMinScaleFactor|llGetNextEmail|llGetNotecardLine|llGetNumberOfNotecardLines|llGetNumberOfPrims|llGetNumberOfSides|llGetObjectDesc|llGetObjectDetails|llGetObjectMass|llGetObjectName|llGetObjectPermMask|llGetObjectPrimCount|llGetOmega|llGetOwner|llGetOwnerKey|llGetParcelDetails|llGetParcelFlags|llGetParcelMaxPrims|llGetParcelMusicURL|llGetParcelPrimCount|llGetParcelPrimOwners|llGetPermissions|llGetPermissionsKey|llGetPhysicsMaterial|llGetPos|llGetPrimMediaParams|llGetPrimitiveParams|llGetRegionAgentCount|llGetRegionCorner|llGetRegionFPS|llGetRegionFlags|llGetRegionName|llGetRegionTimeDilation|llGetRootPosition|llGetRootRotation|llGetRot|llGetSPMaxMemory|llGetScale|llGetScriptName|llGetScriptState|llGetSimStats|llGetSimulatorHostname|llGetStartParameter|llGetStaticPath|llGetStatus|llGetSubString|llGetSunDirection|llGetTexture|llGetTextureOffset|llGetTextureRot|llGetTextureScale|llGetTime|llGetTimeOfDay|llGetTimestamp|llGetTorque|llGetUnixTime|llGetUsedMemory|llGetUsername|llGetVel|llGetWallclock|llGiveInventory|llGiveInventoryList|llGiveMoney|llGround|llGroundContour|llGroundNormal|llGroundRepel|llGroundSlope|llHTTPRequest|llHTTPResponse|llInsertString|llInstantMessage|llIntegerToBase64|llJson2List|llJsonGetValue|llJsonSetValue|llJsonValueType|llKey2Name|llKeyCountKeyValue|llKeysKeyValue|llLinkParticleSystem|llLinkSitTarget|llList2CSV|llList2Float|llList2Integer|llList2Json|llList2Key|llList2List|llList2ListStrided|llList2Rot|llList2String|llList2Vector|llListFindList|llListInsertList|llListRandomize|llListReplaceList|llListSort|llListStatistics|llListen|llListenControl|llListenRemove|llLoadURL|llLog|llLog10|llLookAt|llLoopSound|llLoopSoundMaster|llLoopSoundSlave|llMD5String|llManageEstateAccess|llMapDestination|llMessageLinked|llMinEventDelay|llModPow|llModifyLand|llMoveToTarget|llNavigateTo|llOffsetTexture|llOpenRemoteDataChannel|llOverMyLand|llOwnerSay|llParcelMediaCommandList|llParcelMediaQuery|llParseString2List|llParseStringKeepNulls|llParticleSystem|llPassCollisions|llPassTouches|llPatrolPoints|llPlaySound|llPlaySoundSlave|llPow|llPreloadSound|llPursue|llPushObject|llReadKeyValue|llRegionSay|llRegionSayTo|llReleaseControls|llReleaseURL|llRemoteDataReply|llRemoteLoadScriptPin|llRemoveFromLandBanList|llRemoveFromLandPassList|llRemoveInventory|llRemoveVehicleFlags|llRequestAgentData|llRequestDisplayName|llRequestExperiencePermissions|llRequestInventoryData|llRequestPermissions|llRequestSecureURL|llRequestSimulatorData|llRequestURL|llRequestUsername|llResetAnimationOverride|llResetLandBanList|llResetLandPassList|llResetOtherScript|llResetScript|llResetTime|llReturnObjectsByID|llReturnObjectsByOwner|llRezAtRoot|llRezObject|llRot2Angle|llRot2Axis|llRot2Euler|llRot2Fwd|llRot2Left|llRot2Up|llRotBetween|llRotLookAt|llRotTarget|llRotTargetRemove|llRotateTexture|llRound|llSHA1String|llSameGroup|llSay|llScaleByFactor|llScaleTexture|llScriptDanger|llScriptProfiler|llSendRemoteData|llSensor|llSensorRemove|llSensorRepeat|llSetAlpha|llSetAngularVelocity|llSetAnimationOverride|llSetBuoyancy|llSetCameraAtOffset|llSetCameraEyeOffset|llSetCameraParams|llSetClickAction|llSetColor|llSetContentType|llSetDamage|llSetForce|llSetForceAndTorque|llSetHoverHeight|llSetKeyframedMotion|llSetLinkAlpha|llSetLinkCamera|llSetLinkColor|llSetLinkMedia|llSetLinkPrimitiveParams|llSetLinkPrimitiveParamsFast|llSetLinkTexture|llSetLinkTextureAnim|llSetLocalRot|llSetMemoryLimit|llSetObjectDesc|llSetObjectName|llSetParcelMusicURL|llSetPayPrice|llSetPhysicsMaterial|llSetPos|llSetPrimMediaParams|llSetPrimitiveParams|llSetRegionPos|llSetRemoteScriptAccessPin|llSetRot|llSetScale|llSetScriptState|llSetSitText|llSetSoundQueueing|llSetSoundRadius|llSetStatus|llSetText|llSetTexture|llSetTextureAnim|llSetTimerEvent|llSetTorque|llSetTouchText|llSetVehicleFlags|llSetVehicleFloatParam|llSetVehicleRotationParam|llSetVehicleType|llSetVehicleVectorParam|llSetVelocity|llShout|llSin|llSitTarget|llSleep|llSqrt|llStartAnimation|llStopAnimation|llStopHover|llStopLookAt|llStopMoveToTarget|llStopSound|llStringLength|llStringToBase64|llStringTrim|llSubStringIndex|llTakeControls|llTan|llTarget|llTargetOmega|llTargetRemove|llTeleportAgent|llTeleportAgentGlobalCoords|llTeleportAgentHome|llTextBox|llToLower|llToUpper|llTransferLindenDollars|llTriggerSound|llTriggerSoundLimited|llUnSit|llUnescapeURL|llUpdateCharacter|llUpdateKeyValue|llVecDist|llVecMag|llVecNorm|llVolumeDetect|llWanderWithin|llWater|llWhisper|llWind|llXorBase64\",\n \"support.function.event.lsl\" : \"at_rot_target|at_target|attach|changed|collision|collision_end|collision_start|control|dataserver|email|experience_permissions|experience_permissions_denied|http_request|http_response|land_collision|land_collision_end|land_collision_start|link_message|listen|money|moving_end|moving_start|no_sensor|not_at_rot_target|not_at_target|object_rez|on_rez|path_update|remote_data|run_time_permissions|sensor|state_entry|state_exit|timer|touch|touch_end|touch_start|transaction_result\"\n }, \"identifier\");\n\n this.$rules = {\n \"start\" : [\n {\n token : \"comment.line.double-slash.lsl\",\n regex : \"\\\\/\\\\/.*$\"\n }, {\n token : \"comment.block.begin.lsl\",\n regex : \"\\\\/\\\\*\",\n next : \"comment\"\n }, {\n token : \"string.quoted.double.lsl\",\n start : '\"',\n end : '\"',\n next : [{\n token : \"constant.character.escape.lsl\",\n regex : /\\\\[tn\"\\\\]/\n }]\n }, {\n token : \"constant.numeric.lsl\",\n regex : \"(0[xX][0-9a-fA-F]+|[+-]?[0-9]+(?:(?:\\\\.[0-9]*)?(?:[eE][+-]?[0-9]+)?)?)\\\\b\"\n }, {\n token : \"entity.name.state.lsl\",\n regex : \"\\\\b((state)\\\\s+[A-Za-z_]\\\\w*|default)\\\\b\"\n }, {\n token : keywordMapper,\n regex : \"\\\\b[a-zA-Z_][a-zA-Z0-9_]*\\\\b\"\n }, {\n token : \"support.function.user-defined.lsl\",\n regex : /\\b([a-zA-Z_]\\w*)(?=\\(.*?\\))/\n }, {\n token : \"keyword.operator.lsl\",\n regex : \"\\\\+\\\\+|\\\\-\\\\-|<<|>>|&&?|\\\\|\\\\|?|\\\\^|~|[!%<>=*+\\\\-\\\\/]=?\"\n }, {\n token : \"invalid.illegal.keyword.operator.lsl\",\n regex : \":=?\"\n }, {\n token : \"punctuation.operator.lsl\",\n regex : \"\\\\,|\\\\;\"\n }, {\n token : \"paren.lparen.lsl\",\n regex : \"[\\\\[\\\\(\\\\{]\"\n }, {\n token : \"paren.rparen.lsl\",\n regex : \"[\\\\]\\\\)\\\\}]\"\n }, {\n token : \"text.lsl\",\n regex : \"\\\\s+\"\n }\n ],\n \"comment\" : [\n {\n token : \"comment.block.end.lsl\",\n regex : \"\\\\*\\\\/\",\n next : \"start\"\n }, {\n defaultToken : \"comment.block.lsl\"\n }\n ]\n };\n this.normalizeRules();\n}\n\nexports.LSLHighlightRules = LSLHighlightRules;\n});\n\nace.define(\"ace/mode/matching_brace_outdent\",[\"require\",\"exports\",\"module\",\"ace/range\"], function(require, exports, module) {\n\"use strict\";\n\nvar Range = require(\"../range\").Range;\n\nvar MatchingBraceOutdent = function() {};\n\n(function() {\n\n this.checkOutdent = function(line, input) {\n if (! /^\\s+$/.test(line))\n return false;\n\n return /^\\s*\\}/.test(input);\n };\n\n this.autoOutdent = function(doc, row) {\n var line = doc.getLine(row);\n var match = line.match(/^(\\s*\\})/);\n\n if (!match) return 0;\n\n var column = match[1].length;\n var openBracePos = doc.findMatchingBracket({row: row, column: column});\n\n if (!openBracePos || openBracePos.row == row) return 0;\n\n var indent = this.$getIndent(doc.getLine(openBracePos.row));\n doc.replace(new Range(row, 0, row, column-1), indent);\n };\n\n this.$getIndent = function(line) {\n return line.match(/^\\s*/)[0];\n };\n\n}).call(MatchingBraceOutdent.prototype);\n\nexports.MatchingBraceOutdent = MatchingBraceOutdent;\n});\n\nace.define(\"ace/mode/folding/cstyle\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/range\",\"ace/mode/folding/fold_mode\"], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"../../lib/oop\");\nvar Range = require(\"../../range\").Range;\nvar BaseFoldMode = require(\"./fold_mode\").FoldMode;\n\nvar FoldMode = exports.FoldMode = function(commentRegex) {\n if (commentRegex) {\n this.foldingStartMarker = new RegExp(\n this.foldingStartMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.start)\n );\n this.foldingStopMarker = new RegExp(\n this.foldingStopMarker.source.replace(/\\|[^|]*?$/, \"|\" + commentRegex.end)\n );\n }\n};\noop.inherits(FoldMode, BaseFoldMode);\n\n(function() {\n \n this.foldingStartMarker = /([\\{\\[\\(])[^\\}\\]\\)]*$|^\\s*(\\/\\*)/;\n this.foldingStopMarker = /^[^\\[\\{\\(]*([\\}\\]\\)])|^[\\s\\*]*(\\*\\/)/;\n this.singleLineBlockCommentRe= /^\\s*(\\/\\*).*\\*\\/\\s*$/;\n this.tripleStarBlockCommentRe = /^\\s*(\\/\\*\\*\\*).*\\*\\/\\s*$/;\n this.startRegionRe = /^\\s*(\\/\\*|\\/\\/)#?region\\b/;\n this._getFoldWidgetBase = this.getFoldWidget;\n this.getFoldWidget = function(session, foldStyle, row) {\n var line = session.getLine(row);\n \n if (this.singleLineBlockCommentRe.test(line)) {\n if (!this.startRegionRe.test(line) && !this.tripleStarBlockCommentRe.test(line))\n return \"\";\n }\n \n var fw = this._getFoldWidgetBase(session, foldStyle, row);\n \n if (!fw && this.startRegionRe.test(line))\n return \"start\"; // lineCommentRegionStart\n \n return fw;\n };\n\n this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {\n var line = session.getLine(row);\n \n if (this.startRegionRe.test(line))\n return this.getCommentRegionBlock(session, line, row);\n \n var match = line.match(this.foldingStartMarker);\n if (match) {\n var i = match.index;\n\n if (match[1])\n return this.openingBracketBlock(session, match[1], row, i);\n \n var range = session.getCommentFoldRange(row, i + match[0].length, 1);\n \n if (range && !range.isMultiLine()) {\n if (forceMultiline) {\n range = this.getSectionRange(session, row);\n } else if (foldStyle != \"all\")\n range = null;\n }\n \n return range;\n }\n\n if (foldStyle === \"markbegin\")\n return;\n\n var match = line.match(this.foldingStopMarker);\n if (match) {\n var i = match.index + match[0].length;\n\n if (match[1])\n return this.closingBracketBlock(session, match[1], row, i);\n\n return session.getCommentFoldRange(row, i, -1);\n }\n };\n \n this.getSectionRange = function(session, row) {\n var line = session.getLine(row);\n var startIndent = line.search(/\\S/);\n var startRow = row;\n var startColumn = line.length;\n row = row + 1;\n var endRow = row;\n var maxRow = session.getLength();\n while (++row < maxRow) {\n line = session.getLine(row);\n var indent = line.search(/\\S/);\n if (indent === -1)\n continue;\n if (startIndent > indent)\n break;\n var subRange = this.getFoldWidgetRange(session, \"all\", row);\n \n if (subRange) {\n if (subRange.start.row <= startRow) {\n break;\n } else if (subRange.isMultiLine()) {\n row = subRange.end.row;\n } else if (startIndent == indent) {\n break;\n }\n }\n endRow = row;\n }\n \n return new Range(startRow, startColumn, endRow, session.getLine(endRow).length);\n };\n this.getCommentRegionBlock = function(session, line, row) {\n var startColumn = line.search(/\\s*$/);\n var maxRow = session.getLength();\n var startRow = row;\n \n var re = /^\\s*(?:\\/\\*|\\/\\/|--)#?(end)?region\\b/;\n var depth = 1;\n while (++row < maxRow) {\n line = session.getLine(row);\n var m = re.exec(line);\n if (!m) continue;\n if (m[1]) depth--;\n else depth++;\n\n if (!depth) break;\n }\n\n var endRow = row;\n if (endRow > startRow) {\n return new Range(startRow, startColumn, endRow, line.length);\n }\n };\n\n}).call(FoldMode.prototype);\n\n});\n\nace.define(\"ace/mode/lsl\",[\"require\",\"exports\",\"module\",\"ace/mode/lsl_highlight_rules\",\"ace/mode/matching_brace_outdent\",\"ace/range\",\"ace/mode/text\",\"ace/mode/behaviour/cstyle\",\"ace/mode/folding/cstyle\",\"ace/lib/oop\"], function(require, exports, module) {\n\"use strict\";\n\nvar Rules = require(\"./lsl_highlight_rules\").LSLHighlightRules;\nvar Outdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\nvar Range = require(\"../range\").Range;\nvar TextMode = require(\"./text\").Mode;\nvar CstyleBehaviour = require(\"./behaviour/cstyle\").CstyleBehaviour;\nvar CStyleFoldMode = require(\"./folding/cstyle\").FoldMode;\nvar oop = require(\"../lib/oop\");\n\nvar Mode = function() {\n this.HighlightRules = Rules;\n this.$outdent = new Outdent();\n this.$behaviour = new CstyleBehaviour();\n this.foldingRules = new CStyleFoldMode();\n};\noop.inherits(Mode, TextMode);\n\n(function() {\n\n this.lineCommentStart = [\"//\"];\n\n this.blockComment = {\n start: \"/*\",\n end: \"*/\"\n };\n\n this.getNextLineIndent = function(state, line, tab) {\n var indent = this.$getIndent(line);\n\n var tokenizedLine = this.getTokenizer().getLineTokens(line, state);\n var tokens = tokenizedLine.tokens;\n var endState = tokenizedLine.state;\n\n if (tokens.length && tokens[tokens.length-1].type === \"comment.block.lsl\") {\n return indent;\n }\n\n if (state === \"start\") {\n var match = line.match(/^.*[\\{\\(\\[]\\s*$/);\n if (match) {\n indent += tab;\n }\n }\n\n return indent;\n };\n\n this.checkOutdent = function(state, line, input) {\n return this.$outdent.checkOutdent(line, input);\n };\n\n this.autoOutdent = function(state, doc, row) {\n this.$outdent.autoOutdent(doc, row);\n };\n\n this.$id = \"ace/mode/lsl\";\n}).call(Mode.prototype);\n\nexports.Mode = Mode;\n}); (function() {\n ace.require([\"ace/mode/lsl\"], function(m) {\n if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n module.exports = m;\n }\n });\n })();\n "), } file3t := &embedded.EmbeddedFile{ Filename: "5a2235c87d9b3e36326bd63460c03dfb.js", - FileModTime: time.Unix(1546995739, 0), + FileModTime: time.Unix(1547076096, 0), Content: string("\"no use strict\";\n!(function(window) {\nif (typeof window.window != \"undefined\" && window.document)\n return;\nif (window.require && window.define)\n return;\n\nif (!window.console) {\n window.console = function() {\n var msgs = Array.prototype.slice.call(arguments, 0);\n postMessage({type: \"log\", data: msgs});\n };\n window.console.error =\n window.console.warn = \n window.console.log =\n window.console.trace = window.console;\n}\nwindow.window = window;\nwindow.ace = window;\n\nwindow.onerror = function(message, file, line, col, err) {\n postMessage({type: \"error\", data: {\n message: message,\n data: err.data,\n file: file,\n line: line, \n col: col,\n stack: err.stack\n }});\n};\n\nwindow.normalizeModule = function(parentId, moduleName) {\n // normalize plugin requires\n if (moduleName.indexOf(\"!\") !== -1) {\n var chunks = moduleName.split(\"!\");\n return window.normalizeModule(parentId, chunks[0]) + \"!\" + window.normalizeModule(parentId, chunks[1]);\n }\n // normalize relative requires\n if (moduleName.charAt(0) == \".\") {\n var base = parentId.split(\"/\").slice(0, -1).join(\"/\");\n moduleName = (base ? base + \"/\" : \"\") + moduleName;\n \n while (moduleName.indexOf(\".\") !== -1 && previous != moduleName) {\n var previous = moduleName;\n moduleName = moduleName.replace(/^\\.\\//, \"\").replace(/\\/\\.\\//, \"/\").replace(/[^\\/]+\\/\\.\\.\\//, \"\");\n }\n }\n \n return moduleName;\n};\n\nwindow.require = function require(parentId, id) {\n if (!id) {\n id = parentId;\n parentId = null;\n }\n if (!id.charAt)\n throw new Error(\"worker.js require() accepts only (parentId, id) as arguments\");\n\n id = window.normalizeModule(parentId, id);\n\n var module = window.require.modules[id];\n if (module) {\n if (!module.initialized) {\n module.initialized = true;\n module.exports = module.factory().exports;\n }\n return module.exports;\n }\n \n if (!window.require.tlns)\n return console.log(\"unable to load \" + id);\n \n var path = resolveModuleId(id, window.require.tlns);\n if (path.slice(-3) != \".js\") path += \".js\";\n \n window.require.id = id;\n window.require.modules[id] = {}; // prevent infinite loop on broken modules\n importScripts(path);\n return window.require(parentId, id);\n};\nfunction resolveModuleId(id, paths) {\n var testPath = id, tail = \"\";\n while (testPath) {\n var alias = paths[testPath];\n if (typeof alias == \"string\") {\n return alias + tail;\n } else if (alias) {\n return alias.location.replace(/\\/*$/, \"/\") + (tail || alias.main || alias.name);\n } else if (alias === false) {\n return \"\";\n }\n var i = testPath.lastIndexOf(\"/\");\n if (i === -1) break;\n tail = testPath.substr(i) + tail;\n testPath = testPath.slice(0, i);\n }\n return id;\n}\nwindow.require.modules = {};\nwindow.require.tlns = {};\n\nwindow.define = function(id, deps, factory) {\n if (arguments.length == 2) {\n factory = deps;\n if (typeof id != \"string\") {\n deps = id;\n id = window.require.id;\n }\n } else if (arguments.length == 1) {\n factory = id;\n deps = [];\n id = window.require.id;\n }\n \n if (typeof factory != \"function\") {\n window.require.modules[id] = {\n exports: factory,\n initialized: true\n };\n return;\n }\n\n if (!deps.length)\n // If there is no dependencies, we inject \"require\", \"exports\" and\n // \"module\" as dependencies, to provide CommonJS compatibility.\n deps = [\"require\", \"exports\", \"module\"];\n\n var req = function(childId) {\n return window.require(id, childId);\n };\n\n window.require.modules[id] = {\n exports: {},\n factory: function() {\n var module = this;\n var returnExports = factory.apply(this, deps.slice(0, factory.length).map(function(dep) {\n switch (dep) {\n // Because \"require\", \"exports\" and \"module\" aren't actual\n // dependencies, we must handle them seperately.\n case \"require\": return req;\n case \"exports\": return module.exports;\n case \"module\": return module;\n // But for all other dependencies, we can just go ahead and\n // require them.\n default: return req(dep);\n }\n }));\n if (returnExports)\n module.exports = returnExports;\n return module;\n }\n };\n};\nwindow.define.amd = {};\nrequire.tlns = {};\nwindow.initBaseUrls = function initBaseUrls(topLevelNamespaces) {\n for (var i in topLevelNamespaces)\n require.tlns[i] = topLevelNamespaces[i];\n};\n\nwindow.initSender = function initSender() {\n\n var EventEmitter = window.require(\"ace/lib/event_emitter\").EventEmitter;\n var oop = window.require(\"ace/lib/oop\");\n \n var Sender = function() {};\n \n (function() {\n \n oop.implement(this, EventEmitter);\n \n this.callback = function(data, callbackId) {\n postMessage({\n type: \"call\",\n id: callbackId,\n data: data\n });\n };\n \n this.emit = function(name, data) {\n postMessage({\n type: \"event\",\n name: name,\n data: data\n });\n };\n \n }).call(Sender.prototype);\n \n return new Sender();\n};\n\nvar main = window.main = null;\nvar sender = window.sender = null;\n\nwindow.onmessage = function(e) {\n var msg = e.data;\n if (msg.event && sender) {\n sender._signal(msg.event, msg.data);\n }\n else if (msg.command) {\n if (main[msg.command])\n main[msg.command].apply(main, msg.args);\n else if (window[msg.command])\n window[msg.command].apply(window, msg.args);\n else\n throw new Error(\"Unknown command:\" + msg.command);\n }\n else if (msg.init) {\n window.initBaseUrls(msg.tlns);\n require(\"ace/lib/es5-shim\");\n sender = window.sender = window.initSender();\n var clazz = require(msg.module)[msg.classname];\n main = window.main = new clazz(sender);\n }\n};\n})(this);\n\nace.define(\"ace/lib/oop\",[], function(require, exports, module) {\n\"use strict\";\n\nexports.inherits = function(ctor, superCtor) {\n ctor.super_ = superCtor;\n ctor.prototype = Object.create(superCtor.prototype, {\n constructor: {\n value: ctor,\n enumerable: false,\n writable: true,\n configurable: true\n }\n });\n};\n\nexports.mixin = function(obj, mixin) {\n for (var key in mixin) {\n obj[key] = mixin[key];\n }\n return obj;\n};\n\nexports.implement = function(proto, mixin) {\n exports.mixin(proto, mixin);\n};\n\n});\n\nace.define(\"ace/lib/lang\",[], function(require, exports, module) {\n\"use strict\";\n\nexports.last = function(a) {\n return a[a.length - 1];\n};\n\nexports.stringReverse = function(string) {\n return string.split(\"\").reverse().join(\"\");\n};\n\nexports.stringRepeat = function (string, count) {\n var result = '';\n while (count > 0) {\n if (count & 1)\n result += string;\n\n if (count >>= 1)\n string += string;\n }\n return result;\n};\n\nvar trimBeginRegexp = /^\\s\\s*/;\nvar trimEndRegexp = /\\s\\s*$/;\n\nexports.stringTrimLeft = function (string) {\n return string.replace(trimBeginRegexp, '');\n};\n\nexports.stringTrimRight = function (string) {\n return string.replace(trimEndRegexp, '');\n};\n\nexports.copyObject = function(obj) {\n var copy = {};\n for (var key in obj) {\n copy[key] = obj[key];\n }\n return copy;\n};\n\nexports.copyArray = function(array){\n var copy = [];\n for (var i=0, l=array.length; i [\" + this.end.row + \"/\" + this.end.column + \"]\");\n };\n\n this.contains = function(row, column) {\n return this.compare(row, column) == 0;\n };\n this.compareRange = function(range) {\n var cmp,\n end = range.end,\n start = range.start;\n\n cmp = this.compare(end.row, end.column);\n if (cmp == 1) {\n cmp = this.compare(start.row, start.column);\n if (cmp == 1) {\n return 2;\n } else if (cmp == 0) {\n return 1;\n } else {\n return 0;\n }\n } else if (cmp == -1) {\n return -2;\n } else {\n cmp = this.compare(start.row, start.column);\n if (cmp == -1) {\n return -1;\n } else if (cmp == 1) {\n return 42;\n } else {\n return 0;\n }\n }\n };\n this.comparePoint = function(p) {\n return this.compare(p.row, p.column);\n };\n this.containsRange = function(range) {\n return this.comparePoint(range.start) == 0 && this.comparePoint(range.end) == 0;\n };\n this.intersects = function(range) {\n var cmp = this.compareRange(range);\n return (cmp == -1 || cmp == 0 || cmp == 1);\n };\n this.isEnd = function(row, column) {\n return this.end.row == row && this.end.column == column;\n };\n this.isStart = function(row, column) {\n return this.start.row == row && this.start.column == column;\n };\n this.setStart = function(row, column) {\n if (typeof row == \"object\") {\n this.start.column = row.column;\n this.start.row = row.row;\n } else {\n this.start.row = row;\n this.start.column = column;\n }\n };\n this.setEnd = function(row, column) {\n if (typeof row == \"object\") {\n this.end.column = row.column;\n this.end.row = row.row;\n } else {\n this.end.row = row;\n this.end.column = column;\n }\n };\n this.inside = function(row, column) {\n if (this.compare(row, column) == 0) {\n if (this.isEnd(row, column) || this.isStart(row, column)) {\n return false;\n } else {\n return true;\n }\n }\n return false;\n };\n this.insideStart = function(row, column) {\n if (this.compare(row, column) == 0) {\n if (this.isEnd(row, column)) {\n return false;\n } else {\n return true;\n }\n }\n return false;\n };\n this.insideEnd = function(row, column) {\n if (this.compare(row, column) == 0) {\n if (this.isStart(row, column)) {\n return false;\n } else {\n return true;\n }\n }\n return false;\n };\n this.compare = function(row, column) {\n if (!this.isMultiLine()) {\n if (row === this.start.row) {\n return column < this.start.column ? -1 : (column > this.end.column ? 1 : 0);\n }\n }\n\n if (row < this.start.row)\n return -1;\n\n if (row > this.end.row)\n return 1;\n\n if (this.start.row === row)\n return column >= this.start.column ? 0 : -1;\n\n if (this.end.row === row)\n return column <= this.end.column ? 0 : 1;\n\n return 0;\n };\n this.compareStart = function(row, column) {\n if (this.start.row == row && this.start.column == column) {\n return -1;\n } else {\n return this.compare(row, column);\n }\n };\n this.compareEnd = function(row, column) {\n if (this.end.row == row && this.end.column == column) {\n return 1;\n } else {\n return this.compare(row, column);\n }\n };\n this.compareInside = function(row, column) {\n if (this.end.row == row && this.end.column == column) {\n return 1;\n } else if (this.start.row == row && this.start.column == column) {\n return -1;\n } else {\n return this.compare(row, column);\n }\n };\n this.clipRows = function(firstRow, lastRow) {\n if (this.end.row > lastRow)\n var end = {row: lastRow + 1, column: 0};\n else if (this.end.row < firstRow)\n var end = {row: firstRow, column: 0};\n\n if (this.start.row > lastRow)\n var start = {row: lastRow + 1, column: 0};\n else if (this.start.row < firstRow)\n var start = {row: firstRow, column: 0};\n\n return Range.fromPoints(start || this.start, end || this.end);\n };\n this.extend = function(row, column) {\n var cmp = this.compare(row, column);\n\n if (cmp == 0)\n return this;\n else if (cmp == -1)\n var start = {row: row, column: column};\n else\n var end = {row: row, column: column};\n\n return Range.fromPoints(start || this.start, end || this.end);\n };\n\n this.isEmpty = function() {\n return (this.start.row === this.end.row && this.start.column === this.end.column);\n };\n this.isMultiLine = function() {\n return (this.start.row !== this.end.row);\n };\n this.clone = function() {\n return Range.fromPoints(this.start, this.end);\n };\n this.collapseRows = function() {\n if (this.end.column == 0)\n return new Range(this.start.row, 0, Math.max(this.start.row, this.end.row-1), 0);\n else\n return new Range(this.start.row, 0, this.end.row, 0);\n };\n this.toScreenRange = function(session) {\n var screenPosStart = session.documentToScreenPosition(this.start);\n var screenPosEnd = session.documentToScreenPosition(this.end);\n\n return new Range(\n screenPosStart.row, screenPosStart.column,\n screenPosEnd.row, screenPosEnd.column\n );\n };\n this.moveBy = function(row, column) {\n this.start.row += row;\n this.start.column += column;\n this.end.row += row;\n this.end.column += column;\n };\n\n}).call(Range.prototype);\nRange.fromPoints = function(start, end) {\n return new Range(start.row, start.column, end.row, end.column);\n};\nRange.comparePoints = comparePoints;\n\nRange.comparePoints = function(p1, p2) {\n return p1.row - p2.row || p1.column - p2.column;\n};\n\n\nexports.Range = Range;\n});\n\nace.define(\"ace/apply_delta\",[], function(require, exports, module) {\n\"use strict\";\n\nfunction throwDeltaError(delta, errorText){\n console.log(\"Invalid Delta:\", delta);\n throw \"Invalid Delta: \" + errorText;\n}\n\nfunction positionInDocument(docLines, position) {\n return position.row >= 0 && position.row < docLines.length &&\n position.column >= 0 && position.column <= docLines[position.row].length;\n}\n\nfunction validateDelta(docLines, delta) {\n if (delta.action != \"insert\" && delta.action != \"remove\")\n throwDeltaError(delta, \"delta.action must be 'insert' or 'remove'\");\n if (!(delta.lines instanceof Array))\n throwDeltaError(delta, \"delta.lines must be an Array\");\n if (!delta.start || !delta.end)\n throwDeltaError(delta, \"delta.start/end must be an present\");\n var start = delta.start;\n if (!positionInDocument(docLines, delta.start))\n throwDeltaError(delta, \"delta.start must be contained in document\");\n var end = delta.end;\n if (delta.action == \"remove\" && !positionInDocument(docLines, end))\n throwDeltaError(delta, \"delta.end must contained in document for 'remove' actions\");\n var numRangeRows = end.row - start.row;\n var numRangeLastLineChars = (end.column - (numRangeRows == 0 ? start.column : 0));\n if (numRangeRows != delta.lines.length - 1 || delta.lines[numRangeRows].length != numRangeLastLineChars)\n throwDeltaError(delta, \"delta.range must match delta lines\");\n}\n\nexports.applyDelta = function(docLines, delta, doNotValidate) {\n \n var row = delta.start.row;\n var startColumn = delta.start.column;\n var line = docLines[row] || \"\";\n switch (delta.action) {\n case \"insert\":\n var lines = delta.lines;\n if (lines.length === 1) {\n docLines[row] = line.substring(0, startColumn) + delta.lines[0] + line.substring(startColumn);\n } else {\n var args = [row, 1].concat(delta.lines);\n docLines.splice.apply(docLines, args);\n docLines[row] = line.substring(0, startColumn) + docLines[row];\n docLines[row + delta.lines.length - 1] += line.substring(startColumn);\n }\n break;\n case \"remove\":\n var endColumn = delta.end.column;\n var endRow = delta.end.row;\n if (row === endRow) {\n docLines[row] = line.substring(0, startColumn) + line.substring(endColumn);\n } else {\n docLines.splice(\n row, endRow - row + 1,\n line.substring(0, startColumn) + docLines[endRow].substring(endColumn)\n );\n }\n break;\n }\n};\n});\n\nace.define(\"ace/lib/event_emitter\",[], function(require, exports, module) {\n\"use strict\";\n\nvar EventEmitter = {};\nvar stopPropagation = function() { this.propagationStopped = true; };\nvar preventDefault = function() { this.defaultPrevented = true; };\n\nEventEmitter._emit =\nEventEmitter._dispatchEvent = function(eventName, e) {\n this._eventRegistry || (this._eventRegistry = {});\n this._defaultHandlers || (this._defaultHandlers = {});\n\n var listeners = this._eventRegistry[eventName] || [];\n var defaultHandler = this._defaultHandlers[eventName];\n if (!listeners.length && !defaultHandler)\n return;\n\n if (typeof e != \"object\" || !e)\n e = {};\n\n if (!e.type)\n e.type = eventName;\n if (!e.stopPropagation)\n e.stopPropagation = stopPropagation;\n if (!e.preventDefault)\n e.preventDefault = preventDefault;\n\n listeners = listeners.slice();\n for (var i=0; i this.row)\n return;\n \n var point = $getTransformedPoint(delta, {row: this.row, column: this.column}, this.$insertRight);\n this.setPosition(point.row, point.column, true);\n };\n \n function $pointsInOrder(point1, point2, equalPointsInOrder) {\n var bColIsAfter = equalPointsInOrder ? point1.column <= point2.column : point1.column < point2.column;\n return (point1.row < point2.row) || (point1.row == point2.row && bColIsAfter);\n }\n \n function $getTransformedPoint(delta, point, moveIfEqual) {\n var deltaIsInsert = delta.action == \"insert\";\n var deltaRowShift = (deltaIsInsert ? 1 : -1) * (delta.end.row - delta.start.row);\n var deltaColShift = (deltaIsInsert ? 1 : -1) * (delta.end.column - delta.start.column);\n var deltaStart = delta.start;\n var deltaEnd = deltaIsInsert ? deltaStart : delta.end; // Collapse insert range.\n if ($pointsInOrder(point, deltaStart, moveIfEqual)) {\n return {\n row: point.row,\n column: point.column\n };\n }\n if ($pointsInOrder(deltaEnd, point, !moveIfEqual)) {\n return {\n row: point.row + deltaRowShift,\n column: point.column + (point.row == deltaEnd.row ? deltaColShift : 0)\n };\n }\n \n return {\n row: deltaStart.row,\n column: deltaStart.column\n };\n }\n this.setPosition = function(row, column, noClip) {\n var pos;\n if (noClip) {\n pos = {\n row: row,\n column: column\n };\n } else {\n pos = this.$clipPositionToDocument(row, column);\n }\n\n if (this.row == pos.row && this.column == pos.column)\n return;\n\n var old = {\n row: this.row,\n column: this.column\n };\n\n this.row = pos.row;\n this.column = pos.column;\n this._signal(\"change\", {\n old: old,\n value: pos\n });\n };\n this.detach = function() {\n this.document.removeEventListener(\"change\", this.$onChange);\n };\n this.attach = function(doc) {\n this.document = doc || this.document;\n this.document.on(\"change\", this.$onChange);\n };\n this.$clipPositionToDocument = function(row, column) {\n var pos = {};\n\n if (row >= this.document.getLength()) {\n pos.row = Math.max(0, this.document.getLength() - 1);\n pos.column = this.document.getLine(pos.row).length;\n }\n else if (row < 0) {\n pos.row = 0;\n pos.column = 0;\n }\n else {\n pos.row = row;\n pos.column = Math.min(this.document.getLine(pos.row).length, Math.max(0, column));\n }\n\n if (column < 0)\n pos.column = 0;\n\n return pos;\n };\n\n}).call(Anchor.prototype);\n\n});\n\nace.define(\"ace/document\",[], function(require, exports, module) {\n\"use strict\";\n\nvar oop = require(\"./lib/oop\");\nvar applyDelta = require(\"./apply_delta\").applyDelta;\nvar EventEmitter = require(\"./lib/event_emitter\").EventEmitter;\nvar Range = require(\"./range\").Range;\nvar Anchor = require(\"./anchor\").Anchor;\n\nvar Document = function(textOrLines) {\n this.$lines = [\"\"];\n if (textOrLines.length === 0) {\n this.$lines = [\"\"];\n } else if (Array.isArray(textOrLines)) {\n this.insertMergedLines({row: 0, column: 0}, textOrLines);\n } else {\n this.insert({row: 0, column:0}, textOrLines);\n }\n};\n\n(function() {\n\n oop.implement(this, EventEmitter);\n this.setValue = function(text) {\n var len = this.getLength() - 1;\n this.remove(new Range(0, 0, len, this.getLine(len).length));\n this.insert({row: 0, column: 0}, text);\n };\n this.getValue = function() {\n return this.getAllLines().join(this.getNewLineCharacter());\n };\n this.createAnchor = function(row, column) {\n return new Anchor(this, row, column);\n };\n if (\"aaa\".split(/a/).length === 0) {\n this.$split = function(text) {\n return text.replace(/\\r\\n|\\r/g, \"\\n\").split(\"\\n\");\n };\n } else {\n this.$split = function(text) {\n return text.split(/\\r\\n|\\r|\\n/);\n };\n }\n\n\n this.$detectNewLine = function(text) {\n var match = text.match(/^.*?(\\r\\n|\\r|\\n)/m);\n this.$autoNewLine = match ? match[1] : \"\\n\";\n this._signal(\"changeNewLineMode\");\n };\n this.getNewLineCharacter = function() {\n switch (this.$newLineMode) {\n case \"windows\":\n return \"\\r\\n\";\n case \"unix\":\n return \"\\n\";\n default:\n return this.$autoNewLine || \"\\n\";\n }\n };\n\n this.$autoNewLine = \"\";\n this.$newLineMode = \"auto\";\n this.setNewLineMode = function(newLineMode) {\n if (this.$newLineMode === newLineMode)\n return;\n\n this.$newLineMode = newLineMode;\n this._signal(\"changeNewLineMode\");\n };\n this.getNewLineMode = function() {\n return this.$newLineMode;\n };\n this.isNewLine = function(text) {\n return (text == \"\\r\\n\" || text == \"\\r\" || text == \"\\n\");\n };\n this.getLine = function(row) {\n return this.$lines[row] || \"\";\n };\n this.getLines = function(firstRow, lastRow) {\n return this.$lines.slice(firstRow, lastRow + 1);\n };\n this.getAllLines = function() {\n return this.getLines(0, this.getLength());\n };\n this.getLength = function() {\n return this.$lines.length;\n };\n this.getTextRange = function(range) {\n return this.getLinesForRange(range).join(this.getNewLineCharacter());\n };\n this.getLinesForRange = function(range) {\n var lines;\n if (range.start.row === range.end.row) {\n lines = [this.getLine(range.start.row).substring(range.start.column, range.end.column)];\n } else {\n lines = this.getLines(range.start.row, range.end.row);\n lines[0] = (lines[0] || \"\").substring(range.start.column);\n var l = lines.length - 1;\n if (range.end.row - range.start.row == l)\n lines[l] = lines[l].substring(0, range.end.column);\n }\n return lines;\n };\n this.insertLines = function(row, lines) {\n console.warn(\"Use of document.insertLines is deprecated. Use the insertFullLines method instead.\");\n return this.insertFullLines(row, lines);\n };\n this.removeLines = function(firstRow, lastRow) {\n console.warn(\"Use of document.removeLines is deprecated. Use the removeFullLines method instead.\");\n return this.removeFullLines(firstRow, lastRow);\n };\n this.insertNewLine = function(position) {\n console.warn(\"Use of document.insertNewLine is deprecated. Use insertMergedLines(position, ['', '']) instead.\");\n return this.insertMergedLines(position, [\"\", \"\"]);\n };\n this.insert = function(position, text) {\n if (this.getLength() <= 1)\n this.$detectNewLine(text);\n \n return this.insertMergedLines(position, this.$split(text));\n };\n this.insertInLine = function(position, text) {\n var start = this.clippedPos(position.row, position.column);\n var end = this.pos(position.row, position.column + text.length);\n \n this.applyDelta({\n start: start,\n end: end,\n action: \"insert\",\n lines: [text]\n }, true);\n \n return this.clonePos(end);\n };\n \n this.clippedPos = function(row, column) {\n var length = this.getLength();\n if (row === undefined) {\n row = length;\n } else if (row < 0) {\n row = 0;\n } else if (row >= length) {\n row = length - 1;\n column = undefined;\n }\n var line = this.getLine(row);\n if (column == undefined)\n column = line.length;\n column = Math.min(Math.max(column, 0), line.length);\n return {row: row, column: column};\n };\n \n this.clonePos = function(pos) {\n return {row: pos.row, column: pos.column};\n };\n \n this.pos = function(row, column) {\n return {row: row, column: column};\n };\n \n this.$clipPosition = function(position) {\n var length = this.getLength();\n if (position.row >= length) {\n position.row = Math.max(0, length - 1);\n position.column = this.getLine(length - 1).length;\n } else {\n position.row = Math.max(0, position.row);\n position.column = Math.min(Math.max(position.column, 0), this.getLine(position.row).length);\n }\n return position;\n };\n this.insertFullLines = function(row, lines) {\n row = Math.min(Math.max(row, 0), this.getLength());\n var column = 0;\n if (row < this.getLength()) {\n lines = lines.concat([\"\"]);\n column = 0;\n } else {\n lines = [\"\"].concat(lines);\n row--;\n column = this.$lines[row].length;\n }\n this.insertMergedLines({row: row, column: column}, lines);\n }; \n this.insertMergedLines = function(position, lines) {\n var start = this.clippedPos(position.row, position.column);\n var end = {\n row: start.row + lines.length - 1,\n column: (lines.length == 1 ? start.column : 0) + lines[lines.length - 1].length\n };\n \n this.applyDelta({\n start: start,\n end: end,\n action: \"insert\",\n lines: lines\n });\n \n return this.clonePos(end);\n };\n this.remove = function(range) {\n var start = this.clippedPos(range.start.row, range.start.column);\n var end = this.clippedPos(range.end.row, range.end.column);\n this.applyDelta({\n start: start,\n end: end,\n action: \"remove\",\n lines: this.getLinesForRange({start: start, end: end})\n });\n return this.clonePos(start);\n };\n this.removeInLine = function(row, startColumn, endColumn) {\n var start = this.clippedPos(row, startColumn);\n var end = this.clippedPos(row, endColumn);\n \n this.applyDelta({\n start: start,\n end: end,\n action: \"remove\",\n lines: this.getLinesForRange({start: start, end: end})\n }, true);\n \n return this.clonePos(start);\n };\n this.removeFullLines = function(firstRow, lastRow) {\n firstRow = Math.min(Math.max(0, firstRow), this.getLength() - 1);\n lastRow = Math.min(Math.max(0, lastRow ), this.getLength() - 1);\n var deleteFirstNewLine = lastRow == this.getLength() - 1 && firstRow > 0;\n var deleteLastNewLine = lastRow < this.getLength() - 1;\n var startRow = ( deleteFirstNewLine ? firstRow - 1 : firstRow );\n var startCol = ( deleteFirstNewLine ? this.getLine(startRow).length : 0 );\n var endRow = ( deleteLastNewLine ? lastRow + 1 : lastRow );\n var endCol = ( deleteLastNewLine ? 0 : this.getLine(endRow).length ); \n var range = new Range(startRow, startCol, endRow, endCol);\n var deletedLines = this.$lines.slice(firstRow, lastRow + 1);\n \n this.applyDelta({\n start: range.start,\n end: range.end,\n action: \"remove\",\n lines: this.getLinesForRange(range)\n });\n return deletedLines;\n };\n this.removeNewLine = function(row) {\n if (row < this.getLength() - 1 && row >= 0) {\n this.applyDelta({\n start: this.pos(row, this.getLine(row).length),\n end: this.pos(row + 1, 0),\n action: \"remove\",\n lines: [\"\", \"\"]\n });\n }\n };\n this.replace = function(range, text) {\n if (!(range instanceof Range))\n range = Range.fromPoints(range.start, range.end);\n if (text.length === 0 && range.isEmpty())\n return range.start;\n if (text == this.getTextRange(range))\n return range.end;\n\n this.remove(range);\n var end;\n if (text) {\n end = this.insert(range.start, text);\n }\n else {\n end = range.start;\n }\n \n return end;\n };\n this.applyDeltas = function(deltas) {\n for (var i=0; i=0; i--) {\n this.revertDelta(deltas[i]);\n }\n };\n this.applyDelta = function(delta, doNotValidate) {\n var isInsert = delta.action == \"insert\";\n if (isInsert ? delta.lines.length <= 1 && !delta.lines[0]\n : !Range.comparePoints(delta.start, delta.end)) {\n return;\n }\n \n if (isInsert && delta.lines.length > 20000) {\n this.$splitAndapplyLargeDelta(delta, 20000);\n }\n else {\n applyDelta(this.$lines, delta, doNotValidate);\n this._signal(\"change\", delta);\n }\n };\n \n this.$splitAndapplyLargeDelta = function(delta, MAX) {\n var lines = delta.lines;\n var l = lines.length - MAX + 1;\n var row = delta.start.row; \n var column = delta.start.column;\n for (var from = 0, to = 0; from < l; from = to) {\n to += MAX - 1;\n var chunk = lines.slice(from, to);\n chunk.push(\"\");\n this.applyDelta({\n start: this.pos(row + from, column),\n end: this.pos(row + to, column = 0),\n action: delta.action,\n lines: chunk\n }, true);\n }\n delta.lines = lines.slice(from);\n delta.start.row = row + from;\n delta.start.column = column;\n this.applyDelta(delta, true);\n };\n this.revertDelta = function(delta) {\n this.applyDelta({\n start: this.clonePos(delta.start),\n end: this.clonePos(delta.end),\n action: (delta.action == \"insert\" ? \"remove\" : \"insert\"),\n lines: delta.lines.slice()\n });\n };\n this.indexToPosition = function(index, startRow) {\n var lines = this.$lines || this.getAllLines();\n var newlineLength = this.getNewLineCharacter().length;\n for (var i = startRow || 0, l = lines.length; i < l; i++) {\n index -= lines[i].length + newlineLength;\n if (index < 0)\n return {row: i, column: index + lines[i].length + newlineLength};\n }\n return {row: l-1, column: index + lines[l-1].length + newlineLength};\n };\n this.positionToIndex = function(pos, startRow) {\n var lines = this.$lines || this.getAllLines();\n var newlineLength = this.getNewLineCharacter().length;\n var index = 0;\n var row = Math.min(pos.row, lines.length);\n for (var i = startRow || 0; i < row; ++i)\n index += lines[i].length + newlineLength;\n\n return index + pos.column;\n };\n\n}).call(Document.prototype);\n\nexports.Document = Document;\n});\n\nace.define(\"ace/worker/mirror\",[], function(require, exports, module) {\n\"use strict\";\n\nvar Range = require(\"../range\").Range;\nvar Document = require(\"../document\").Document;\nvar lang = require(\"../lib/lang\");\n \nvar Mirror = exports.Mirror = function(sender) {\n this.sender = sender;\n var doc = this.doc = new Document(\"\");\n \n var deferredUpdate = this.deferredUpdate = lang.delayedCall(this.onUpdate.bind(this));\n \n var _self = this;\n sender.on(\"change\", function(e) {\n var data = e.data;\n if (data[0].start) {\n doc.applyDeltas(data);\n } else {\n for (var i = 0; i < data.length; i += 2) {\n if (Array.isArray(data[i+1])) {\n var d = {action: \"insert\", start: data[i], lines: data[i+1]};\n } else {\n var d = {action: \"remove\", start: data[i], end: data[i+1]};\n }\n doc.applyDelta(d, true);\n }\n }\n if (_self.$timeout)\n return deferredUpdate.schedule(_self.$timeout);\n _self.onUpdate();\n });\n};\n\n(function() {\n \n this.$timeout = 500;\n \n this.setTimeout = function(timeout) {\n this.$timeout = timeout;\n };\n \n this.setValue = function(value) {\n this.doc.setValue(value);\n this.deferredUpdate.schedule(this.$timeout);\n };\n \n this.getValue = function(callbackId) {\n this.sender.callback(this.doc.getValue(), callbackId);\n };\n \n this.onUpdate = function() {\n };\n \n this.isPending = function() {\n return this.deferredUpdate.isPending();\n };\n \n}).call(Mirror.prototype);\n\n});\n\nace.define(\"ace/mode/css/csslint\",[], function(require, exports, module) {\nvar parserlib = {};\n(function(){\nfunction EventTarget(){\n this._listeners = {};\n}\n\nEventTarget.prototype = {\n constructor: EventTarget,\n addListener: function(type, listener){\n if (!this._listeners[type]){\n this._listeners[type] = [];\n }\n\n this._listeners[type].push(listener);\n },\n fire: function(event){\n if (typeof event == \"string\"){\n event = { type: event };\n }\n if (typeof event.target != \"undefined\"){\n event.target = this;\n }\n\n if (typeof event.type == \"undefined\"){\n throw new Error(\"Event object missing 'type' property.\");\n }\n\n if (this._listeners[event.type]){\n var listeners = this._listeners[event.type].concat();\n for (var i=0, len=listeners.length; i < len; i++){\n listeners[i].call(this, event);\n }\n }\n },\n removeListener: function(type, listener){\n if (this._listeners[type]){\n var listeners = this._listeners[type];\n for (var i=0, len=listeners.length; i < len; i++){\n if (listeners[i] === listener){\n listeners.splice(i, 1);\n break;\n }\n }\n\n\n }\n }\n};\nfunction StringReader(text){\n this._input = text.replace(/\\n\\r?/g, \"\\n\");\n this._line = 1;\n this._col = 1;\n this._cursor = 0;\n}\n\nStringReader.prototype = {\n constructor: StringReader,\n getCol: function(){\n return this._col;\n },\n getLine: function(){\n return this._line ;\n },\n eof: function(){\n return (this._cursor == this._input.length);\n },\n peek: function(count){\n var c = null;\n count = (typeof count == \"undefined\" ? 1 : count);\n if (this._cursor < this._input.length){\n c = this._input.charAt(this._cursor + count - 1);\n }\n\n return c;\n },\n read: function(){\n var c = null;\n if (this._cursor < this._input.length){\n if (this._input.charAt(this._cursor) == \"\\n\"){\n this._line++;\n this._col=1;\n } else {\n this._col++;\n }\n c = this._input.charAt(this._cursor++);\n }\n\n return c;\n },\n mark: function(){\n this._bookmark = {\n cursor: this._cursor,\n line: this._line,\n col: this._col\n };\n },\n\n reset: function(){\n if (this._bookmark){\n this._cursor = this._bookmark.cursor;\n this._line = this._bookmark.line;\n this._col = this._bookmark.col;\n delete this._bookmark;\n }\n },\n readTo: function(pattern){\n\n var buffer = \"\",\n c;\n while (buffer.length < pattern.length || buffer.lastIndexOf(pattern) != buffer.length - pattern.length){\n c = this.read();\n if (c){\n buffer += c;\n } else {\n throw new Error(\"Expected \\\"\" + pattern + \"\\\" at line \" + this._line + \", col \" + this._col + \".\");\n }\n }\n\n return buffer;\n\n },\n readWhile: function(filter){\n\n var buffer = \"\",\n c = this.read();\n\n while(c !== null && filter(c)){\n buffer += c;\n c = this.read();\n }\n\n return buffer;\n\n },\n readMatch: function(matcher){\n\n var source = this._input.substring(this._cursor),\n value = null;\n if (typeof matcher == \"string\"){\n if (source.indexOf(matcher) === 0){\n value = this.readCount(matcher.length);\n }\n } else if (matcher instanceof RegExp){\n if (matcher.test(source)){\n value = this.readCount(RegExp.lastMatch.length);\n }\n }\n\n return value;\n },\n readCount: function(count){\n var buffer = \"\";\n\n while(count--){\n buffer += this.read();\n }\n\n return buffer;\n }\n\n};\nfunction SyntaxError(message, line, col){\n this.col = col;\n this.line = line;\n this.message = message;\n\n}\nSyntaxError.prototype = new Error();\nfunction SyntaxUnit(text, line, col, type){\n this.col = col;\n this.line = line;\n this.text = text;\n this.type = type;\n}\nSyntaxUnit.fromToken = function(token){\n return new SyntaxUnit(token.value, token.startLine, token.startCol);\n};\n\nSyntaxUnit.prototype = {\n constructor: SyntaxUnit,\n valueOf: function(){\n return this.text;\n },\n toString: function(){\n return this.text;\n }\n\n};\nfunction TokenStreamBase(input, tokenData){\n this._reader = input ? new StringReader(input.toString()) : null;\n this._token = null;\n this._tokenData = tokenData;\n this._lt = [];\n this._ltIndex = 0;\n\n this._ltIndexCache = [];\n}\nTokenStreamBase.createTokenData = function(tokens){\n\n var nameMap = [],\n typeMap = {},\n tokenData = tokens.concat([]),\n i = 0,\n len = tokenData.length+1;\n\n tokenData.UNKNOWN = -1;\n tokenData.unshift({name:\"EOF\"});\n\n for (; i < len; i++){\n nameMap.push(tokenData[i].name);\n tokenData[tokenData[i].name] = i;\n if (tokenData[i].text){\n typeMap[tokenData[i].text] = i;\n }\n }\n\n tokenData.name = function(tt){\n return nameMap[tt];\n };\n\n tokenData.type = function(c){\n return typeMap[c];\n };\n\n return tokenData;\n};\n\nTokenStreamBase.prototype = {\n constructor: TokenStreamBase,\n match: function(tokenTypes, channel){\n if (!(tokenTypes instanceof Array)){\n tokenTypes = [tokenTypes];\n }\n\n var tt = this.get(channel),\n i = 0,\n len = tokenTypes.length;\n\n while(i < len){\n if (tt == tokenTypes[i++]){\n return true;\n }\n }\n this.unget();\n return false;\n },\n mustMatch: function(tokenTypes, channel){\n\n var token;\n if (!(tokenTypes instanceof Array)){\n tokenTypes = [tokenTypes];\n }\n\n if (!this.match.apply(this, arguments)){\n token = this.LT(1);\n throw new SyntaxError(\"Expected \" + this._tokenData[tokenTypes[0]].name +\n \" at line \" + token.startLine + \", col \" + token.startCol + \".\", token.startLine, token.startCol);\n }\n },\n advance: function(tokenTypes, channel){\n\n while(this.LA(0) !== 0 && !this.match(tokenTypes, channel)){\n this.get();\n }\n\n return this.LA(0);\n },\n get: function(channel){\n\n var tokenInfo = this._tokenData,\n reader = this._reader,\n value,\n i =0,\n len = tokenInfo.length,\n found = false,\n token,\n info;\n if (this._lt.length && this._ltIndex >= 0 && this._ltIndex < this._lt.length){\n\n i++;\n this._token = this._lt[this._ltIndex++];\n info = tokenInfo[this._token.type];\n while((info.channel !== undefined && channel !== info.channel) &&\n this._ltIndex < this._lt.length){\n this._token = this._lt[this._ltIndex++];\n info = tokenInfo[this._token.type];\n i++;\n }\n if ((info.channel === undefined || channel === info.channel) &&\n this._ltIndex <= this._lt.length){\n this._ltIndexCache.push(i);\n return this._token.type;\n }\n }\n token = this._getToken();\n if (token.type > -1 && !tokenInfo[token.type].hide){\n token.channel = tokenInfo[token.type].channel;\n this._token = token;\n this._lt.push(token);\n this._ltIndexCache.push(this._lt.length - this._ltIndex + i);\n if (this._lt.length > 5){\n this._lt.shift();\n }\n if (this._ltIndexCache.length > 5){\n this._ltIndexCache.shift();\n }\n this._ltIndex = this._lt.length;\n }\n info = tokenInfo[token.type];\n if (info &&\n (info.hide ||\n (info.channel !== undefined && channel !== info.channel))){\n return this.get(channel);\n } else {\n return token.type;\n }\n },\n LA: function(index){\n var total = index,\n tt;\n if (index > 0){\n if (index > 5){\n throw new Error(\"Too much lookahead.\");\n }\n while(total){\n tt = this.get();\n total--;\n }\n while(total < index){\n this.unget();\n total++;\n }\n } else if (index < 0){\n\n if(this._lt[this._ltIndex+index]){\n tt = this._lt[this._ltIndex+index].type;\n } else {\n throw new Error(\"Too much lookbehind.\");\n }\n\n } else {\n tt = this._token.type;\n }\n\n return tt;\n\n },\n LT: function(index){\n this.LA(index);\n return this._lt[this._ltIndex+index-1];\n },\n peek: function(){\n return this.LA(1);\n },\n token: function(){\n return this._token;\n },\n tokenName: function(tokenType){\n if (tokenType < 0 || tokenType > this._tokenData.length){\n return \"UNKNOWN_TOKEN\";\n } else {\n return this._tokenData[tokenType].name;\n }\n },\n tokenType: function(tokenName){\n return this._tokenData[tokenName] || -1;\n },\n unget: function(){\n if (this._ltIndexCache.length){\n this._ltIndex -= this._ltIndexCache.pop();//--;\n this._token = this._lt[this._ltIndex - 1];\n } else {\n throw new Error(\"Too much lookahead.\");\n }\n }\n\n};\n\n\nparserlib.util = {\nStringReader: StringReader,\nSyntaxError : SyntaxError,\nSyntaxUnit : SyntaxUnit,\nEventTarget : EventTarget,\nTokenStreamBase : TokenStreamBase\n};\n})();\n(function(){\nvar EventTarget = parserlib.util.EventTarget,\nTokenStreamBase = parserlib.util.TokenStreamBase,\nStringReader = parserlib.util.StringReader,\nSyntaxError = parserlib.util.SyntaxError,\nSyntaxUnit = parserlib.util.SyntaxUnit;\n\nvar Colors = {\n aliceblue :\"#f0f8ff\",\n antiquewhite :\"#faebd7\",\n aqua :\"#00ffff\",\n aquamarine :\"#7fffd4\",\n azure :\"#f0ffff\",\n beige :\"#f5f5dc\",\n bisque :\"#ffe4c4\",\n black :\"#000000\",\n blanchedalmond :\"#ffebcd\",\n blue :\"#0000ff\",\n blueviolet :\"#8a2be2\",\n brown :\"#a52a2a\",\n burlywood :\"#deb887\",\n cadetblue :\"#5f9ea0\",\n chartreuse :\"#7fff00\",\n chocolate :\"#d2691e\",\n coral :\"#ff7f50\",\n cornflowerblue :\"#6495ed\",\n cornsilk :\"#fff8dc\",\n crimson :\"#dc143c\",\n cyan :\"#00ffff\",\n darkblue :\"#00008b\",\n darkcyan :\"#008b8b\",\n darkgoldenrod :\"#b8860b\",\n darkgray :\"#a9a9a9\",\n darkgrey :\"#a9a9a9\",\n darkgreen :\"#006400\",\n darkkhaki :\"#bdb76b\",\n darkmagenta :\"#8b008b\",\n darkolivegreen :\"#556b2f\",\n darkorange :\"#ff8c00\",\n darkorchid :\"#9932cc\",\n darkred :\"#8b0000\",\n darksalmon :\"#e9967a\",\n darkseagreen :\"#8fbc8f\",\n darkslateblue :\"#483d8b\",\n darkslategray :\"#2f4f4f\",\n darkslategrey :\"#2f4f4f\",\n darkturquoise :\"#00ced1\",\n darkviolet :\"#9400d3\",\n deeppink :\"#ff1493\",\n deepskyblue :\"#00bfff\",\n dimgray :\"#696969\",\n dimgrey :\"#696969\",\n dodgerblue :\"#1e90ff\",\n firebrick :\"#b22222\",\n floralwhite :\"#fffaf0\",\n forestgreen :\"#228b22\",\n fuchsia :\"#ff00ff\",\n gainsboro :\"#dcdcdc\",\n ghostwhite :\"#f8f8ff\",\n gold :\"#ffd700\",\n goldenrod :\"#daa520\",\n gray :\"#808080\",\n grey :\"#808080\",\n green :\"#008000\",\n greenyellow :\"#adff2f\",\n honeydew :\"#f0fff0\",\n hotpink :\"#ff69b4\",\n indianred :\"#cd5c5c\",\n indigo :\"#4b0082\",\n ivory :\"#fffff0\",\n khaki :\"#f0e68c\",\n lavender :\"#e6e6fa\",\n lavenderblush :\"#fff0f5\",\n lawngreen :\"#7cfc00\",\n lemonchiffon :\"#fffacd\",\n lightblue :\"#add8e6\",\n lightcoral :\"#f08080\",\n lightcyan :\"#e0ffff\",\n lightgoldenrodyellow :\"#fafad2\",\n lightgray :\"#d3d3d3\",\n lightgrey :\"#d3d3d3\",\n lightgreen :\"#90ee90\",\n lightpink :\"#ffb6c1\",\n lightsalmon :\"#ffa07a\",\n lightseagreen :\"#20b2aa\",\n lightskyblue :\"#87cefa\",\n lightslategray :\"#778899\",\n lightslategrey :\"#778899\",\n lightsteelblue :\"#b0c4de\",\n lightyellow :\"#ffffe0\",\n lime :\"#00ff00\",\n limegreen :\"#32cd32\",\n linen :\"#faf0e6\",\n magenta :\"#ff00ff\",\n maroon :\"#800000\",\n mediumaquamarine:\"#66cdaa\",\n mediumblue :\"#0000cd\",\n mediumorchid :\"#ba55d3\",\n mediumpurple :\"#9370d8\",\n mediumseagreen :\"#3cb371\",\n mediumslateblue :\"#7b68ee\",\n mediumspringgreen :\"#00fa9a\",\n mediumturquoise :\"#48d1cc\",\n mediumvioletred :\"#c71585\",\n midnightblue :\"#191970\",\n mintcream :\"#f5fffa\",\n mistyrose :\"#ffe4e1\",\n moccasin :\"#ffe4b5\",\n navajowhite :\"#ffdead\",\n navy :\"#000080\",\n oldlace :\"#fdf5e6\",\n olive :\"#808000\",\n olivedrab :\"#6b8e23\",\n orange :\"#ffa500\",\n orangered :\"#ff4500\",\n orchid :\"#da70d6\",\n palegoldenrod :\"#eee8aa\",\n palegreen :\"#98fb98\",\n paleturquoise :\"#afeeee\",\n palevioletred :\"#d87093\",\n papayawhip :\"#ffefd5\",\n peachpuff :\"#ffdab9\",\n peru :\"#cd853f\",\n pink :\"#ffc0cb\",\n plum :\"#dda0dd\",\n powderblue :\"#b0e0e6\",\n purple :\"#800080\",\n red :\"#ff0000\",\n rosybrown :\"#bc8f8f\",\n royalblue :\"#4169e1\",\n saddlebrown :\"#8b4513\",\n salmon :\"#fa8072\",\n sandybrown :\"#f4a460\",\n seagreen :\"#2e8b57\",\n seashell :\"#fff5ee\",\n sienna :\"#a0522d\",\n silver :\"#c0c0c0\",\n skyblue :\"#87ceeb\",\n slateblue :\"#6a5acd\",\n slategray :\"#708090\",\n slategrey :\"#708090\",\n snow :\"#fffafa\",\n springgreen :\"#00ff7f\",\n steelblue :\"#4682b4\",\n tan :\"#d2b48c\",\n teal :\"#008080\",\n thistle :\"#d8bfd8\",\n tomato :\"#ff6347\",\n turquoise :\"#40e0d0\",\n violet :\"#ee82ee\",\n wheat :\"#f5deb3\",\n white :\"#ffffff\",\n whitesmoke :\"#f5f5f5\",\n yellow :\"#ffff00\",\n yellowgreen :\"#9acd32\",\n activeBorder :\"Active window border.\",\n activecaption :\"Active window caption.\",\n appworkspace :\"Background color of multiple document interface.\",\n background :\"Desktop background.\",\n buttonface :\"The face background color for 3-D elements that appear 3-D due to one layer of surrounding border.\",\n buttonhighlight :\"The color of the border facing the light source for 3-D elements that appear 3-D due to one layer of surrounding border.\",\n buttonshadow :\"The color of the border away from the light source for 3-D elements that appear 3-D due to one layer of surrounding border.\",\n buttontext :\"Text on push buttons.\",\n captiontext :\"Text in caption, size box, and scrollbar arrow box.\",\n graytext :\"Grayed (disabled) text. This color is set to #000 if the current display driver does not support a solid gray color.\",\n greytext :\"Greyed (disabled) text. This color is set to #000 if the current display driver does not support a solid grey color.\",\n highlight :\"Item(s) selected in a control.\",\n highlighttext :\"Text of item(s) selected in a control.\",\n inactiveborder :\"Inactive window border.\",\n inactivecaption :\"Inactive window caption.\",\n inactivecaptiontext :\"Color of text in an inactive caption.\",\n infobackground :\"Background color for tooltip controls.\",\n infotext :\"Text color for tooltip controls.\",\n menu :\"Menu background.\",\n menutext :\"Text in menus.\",\n scrollbar :\"Scroll bar gray area.\",\n threeddarkshadow :\"The color of the darker (generally outer) of the two borders away from the light source for 3-D elements that appear 3-D due to two concentric layers of surrounding border.\",\n threedface :\"The face background color for 3-D elements that appear 3-D due to two concentric layers of surrounding border.\",\n threedhighlight :\"The color of the lighter (generally outer) of the two borders facing the light source for 3-D elements that appear 3-D due to two concentric layers of surrounding border.\",\n threedlightshadow :\"The color of the darker (generally inner) of the two borders facing the light source for 3-D elements that appear 3-D due to two concentric layers of surrounding border.\",\n threedshadow :\"The color of the lighter (generally inner) of the two borders away from the light source for 3-D elements that appear 3-D due to two concentric layers of surrounding border.\",\n window :\"Window background.\",\n windowframe :\"Window frame.\",\n windowtext :\"Text in windows.\"\n};\nfunction Combinator(text, line, col){\n\n SyntaxUnit.call(this, text, line, col, Parser.COMBINATOR_TYPE);\n this.type = \"unknown\";\n if (/^\\s+$/.test(text)){\n this.type = \"descendant\";\n } else if (text == \">\"){\n this.type = \"child\";\n } else if (text == \"+\"){\n this.type = \"adjacent-sibling\";\n } else if (text == \"~\"){\n this.type = \"sibling\";\n }\n\n}\n\nCombinator.prototype = new SyntaxUnit();\nCombinator.prototype.constructor = Combinator;\nfunction MediaFeature(name, value){\n\n SyntaxUnit.call(this, \"(\" + name + (value !== null ? \":\" + value : \"\") + \")\", name.startLine, name.startCol, Parser.MEDIA_FEATURE_TYPE);\n this.name = name;\n this.value = value;\n}\n\nMediaFeature.prototype = new SyntaxUnit();\nMediaFeature.prototype.constructor = MediaFeature;\nfunction MediaQuery(modifier, mediaType, features, line, col){\n\n SyntaxUnit.call(this, (modifier ? modifier + \" \": \"\") + (mediaType ? mediaType : \"\") + (mediaType && features.length > 0 ? \" and \" : \"\") + features.join(\" and \"), line, col, Parser.MEDIA_QUERY_TYPE);\n this.modifier = modifier;\n this.mediaType = mediaType;\n this.features = features;\n\n}\n\nMediaQuery.prototype = new SyntaxUnit();\nMediaQuery.prototype.constructor = MediaQuery;\nfunction Parser(options){\n EventTarget.call(this);\n\n\n this.options = options || {};\n\n this._tokenStream = null;\n}\nParser.DEFAULT_TYPE = 0;\nParser.COMBINATOR_TYPE = 1;\nParser.MEDIA_FEATURE_TYPE = 2;\nParser.MEDIA_QUERY_TYPE = 3;\nParser.PROPERTY_NAME_TYPE = 4;\nParser.PROPERTY_VALUE_TYPE = 5;\nParser.PROPERTY_VALUE_PART_TYPE = 6;\nParser.SELECTOR_TYPE = 7;\nParser.SELECTOR_PART_TYPE = 8;\nParser.SELECTOR_SUB_PART_TYPE = 9;\n\nParser.prototype = function(){\n\n var proto = new EventTarget(), //new prototype\n prop,\n additions = {\n constructor: Parser,\n DEFAULT_TYPE : 0,\n COMBINATOR_TYPE : 1,\n MEDIA_FEATURE_TYPE : 2,\n MEDIA_QUERY_TYPE : 3,\n PROPERTY_NAME_TYPE : 4,\n PROPERTY_VALUE_TYPE : 5,\n PROPERTY_VALUE_PART_TYPE : 6,\n SELECTOR_TYPE : 7,\n SELECTOR_PART_TYPE : 8,\n SELECTOR_SUB_PART_TYPE : 9,\n\n _stylesheet: function(){\n\n var tokenStream = this._tokenStream,\n charset = null,\n count,\n token,\n tt;\n\n this.fire(\"startstylesheet\");\n this._charset();\n\n this._skipCruft();\n while (tokenStream.peek() == Tokens.IMPORT_SYM){\n this._import();\n this._skipCruft();\n }\n while (tokenStream.peek() == Tokens.NAMESPACE_SYM){\n this._namespace();\n this._skipCruft();\n }\n tt = tokenStream.peek();\n while(tt > Tokens.EOF){\n\n try {\n\n switch(tt){\n case Tokens.MEDIA_SYM:\n this._media();\n this._skipCruft();\n break;\n case Tokens.PAGE_SYM:\n this._page();\n this._skipCruft();\n break;\n case Tokens.FONT_FACE_SYM:\n this._font_face();\n this._skipCruft();\n break;\n case Tokens.KEYFRAMES_SYM:\n this._keyframes();\n this._skipCruft();\n break;\n case Tokens.VIEWPORT_SYM:\n this._viewport();\n this._skipCruft();\n break;\n case Tokens.UNKNOWN_SYM: //unknown @ rule\n tokenStream.get();\n if (!this.options.strict){\n this.fire({\n type: \"error\",\n error: null,\n message: \"Unknown @ rule: \" + tokenStream.LT(0).value + \".\",\n line: tokenStream.LT(0).startLine,\n col: tokenStream.LT(0).startCol\n });\n count=0;\n while (tokenStream.advance([Tokens.LBRACE, Tokens.RBRACE]) == Tokens.LBRACE){\n count++; //keep track of nesting depth\n }\n\n while(count){\n tokenStream.advance([Tokens.RBRACE]);\n count--;\n }\n\n } else {\n throw new SyntaxError(\"Unknown @ rule.\", tokenStream.LT(0).startLine, tokenStream.LT(0).startCol);\n }\n break;\n case Tokens.S:\n this._readWhitespace();\n break;\n default:\n if(!this._ruleset()){\n switch(tt){\n case Tokens.CHARSET_SYM:\n token = tokenStream.LT(1);\n this._charset(false);\n throw new SyntaxError(\"@charset not allowed here.\", token.startLine, token.startCol);\n case Tokens.IMPORT_SYM:\n token = tokenStream.LT(1);\n this._import(false);\n throw new SyntaxError(\"@import not allowed here.\", token.startLine, token.startCol);\n case Tokens.NAMESPACE_SYM:\n token = tokenStream.LT(1);\n this._namespace(false);\n throw new SyntaxError(\"@namespace not allowed here.\", token.startLine, token.startCol);\n default:\n tokenStream.get(); //get the last token\n this._unexpectedToken(tokenStream.token());\n }\n\n }\n }\n } catch(ex) {\n if (ex instanceof SyntaxError && !this.options.strict){\n this.fire({\n type: \"error\",\n error: ex,\n message: ex.message,\n line: ex.line,\n col: ex.col\n });\n } else {\n throw ex;\n }\n }\n\n tt = tokenStream.peek();\n }\n\n if (tt != Tokens.EOF){\n this._unexpectedToken(tokenStream.token());\n }\n\n this.fire(\"endstylesheet\");\n },\n\n _charset: function(emit){\n var tokenStream = this._tokenStream,\n charset,\n token,\n line,\n col;\n\n if (tokenStream.match(Tokens.CHARSET_SYM)){\n line = tokenStream.token().startLine;\n col = tokenStream.token().startCol;\n\n this._readWhitespace();\n tokenStream.mustMatch(Tokens.STRING);\n\n token = tokenStream.token();\n charset = token.value;\n\n this._readWhitespace();\n tokenStream.mustMatch(Tokens.SEMICOLON);\n\n if (emit !== false){\n this.fire({\n type: \"charset\",\n charset:charset,\n line: line,\n col: col\n });\n }\n }\n },\n\n _import: function(emit){\n\n var tokenStream = this._tokenStream,\n tt,\n uri,\n importToken,\n mediaList = [];\n tokenStream.mustMatch(Tokens.IMPORT_SYM);\n importToken = tokenStream.token();\n this._readWhitespace();\n\n tokenStream.mustMatch([Tokens.STRING, Tokens.URI]);\n uri = tokenStream.token().value.replace(/^(?:url\\()?[\"']?([^\"']+?)[\"']?\\)?$/, \"$1\");\n\n this._readWhitespace();\n\n mediaList = this._media_query_list();\n tokenStream.mustMatch(Tokens.SEMICOLON);\n this._readWhitespace();\n\n if (emit !== false){\n this.fire({\n type: \"import\",\n uri: uri,\n media: mediaList,\n line: importToken.startLine,\n col: importToken.startCol\n });\n }\n\n },\n\n _namespace: function(emit){\n\n var tokenStream = this._tokenStream,\n line,\n col,\n prefix,\n uri;\n tokenStream.mustMatch(Tokens.NAMESPACE_SYM);\n line = tokenStream.token().startLine;\n col = tokenStream.token().startCol;\n this._readWhitespace();\n if (tokenStream.match(Tokens.IDENT)){\n prefix = tokenStream.token().value;\n this._readWhitespace();\n }\n\n tokenStream.mustMatch([Tokens.STRING, Tokens.URI]);\n uri = tokenStream.token().value.replace(/(?:url\\()?[\"']([^\"']+)[\"']\\)?/, \"$1\");\n\n this._readWhitespace();\n tokenStream.mustMatch(Tokens.SEMICOLON);\n this._readWhitespace();\n\n if (emit !== false){\n this.fire({\n type: \"namespace\",\n prefix: prefix,\n uri: uri,\n line: line,\n col: col\n });\n }\n\n },\n\n _media: function(){\n var tokenStream = this._tokenStream,\n line,\n col,\n mediaList;// = [];\n tokenStream.mustMatch(Tokens.MEDIA_SYM);\n line = tokenStream.token().startLine;\n col = tokenStream.token().startCol;\n\n this._readWhitespace();\n\n mediaList = this._media_query_list();\n\n tokenStream.mustMatch(Tokens.LBRACE);\n this._readWhitespace();\n\n this.fire({\n type: \"startmedia\",\n media: mediaList,\n line: line,\n col: col\n });\n\n while(true) {\n if (tokenStream.peek() == Tokens.PAGE_SYM){\n this._page();\n } else if (tokenStream.peek() == Tokens.FONT_FACE_SYM){\n this._font_face();\n } else if (tokenStream.peek() == Tokens.VIEWPORT_SYM){\n this._viewport();\n } else if (!this._ruleset()){\n break;\n }\n }\n\n tokenStream.mustMatch(Tokens.RBRACE);\n this._readWhitespace();\n\n this.fire({\n type: \"endmedia\",\n media: mediaList,\n line: line,\n col: col\n });\n },\n _media_query_list: function(){\n var tokenStream = this._tokenStream,\n mediaList = [];\n\n\n this._readWhitespace();\n\n if (tokenStream.peek() == Tokens.IDENT || tokenStream.peek() == Tokens.LPAREN){\n mediaList.push(this._media_query());\n }\n\n while(tokenStream.match(Tokens.COMMA)){\n this._readWhitespace();\n mediaList.push(this._media_query());\n }\n\n return mediaList;\n },\n _media_query: function(){\n var tokenStream = this._tokenStream,\n type = null,\n ident = null,\n token = null,\n expressions = [];\n\n if (tokenStream.match(Tokens.IDENT)){\n ident = tokenStream.token().value.toLowerCase();\n if (ident != \"only\" && ident != \"not\"){\n tokenStream.unget();\n ident = null;\n } else {\n token = tokenStream.token();\n }\n }\n\n this._readWhitespace();\n\n if (tokenStream.peek() == Tokens.IDENT){\n type = this._media_type();\n if (token === null){\n token = tokenStream.token();\n }\n } else if (tokenStream.peek() == Tokens.LPAREN){\n if (token === null){\n token = tokenStream.LT(1);\n }\n expressions.push(this._media_expression());\n }\n\n if (type === null && expressions.length === 0){\n return null;\n } else {\n this._readWhitespace();\n while (tokenStream.match(Tokens.IDENT)){\n if (tokenStream.token().value.toLowerCase() != \"and\"){\n this._unexpectedToken(tokenStream.token());\n }\n\n this._readWhitespace();\n expressions.push(this._media_expression());\n }\n }\n\n return new MediaQuery(ident, type, expressions, token.startLine, token.startCol);\n },\n _media_type: function(){\n return this._media_feature();\n },\n _media_expression: function(){\n var tokenStream = this._tokenStream,\n feature = null,\n token,\n expression = null;\n\n tokenStream.mustMatch(Tokens.LPAREN);\n this._readWhitespace();\n\n feature = this._media_feature();\n this._readWhitespace();\n\n if (tokenStream.match(Tokens.COLON)){\n this._readWhitespace();\n token = tokenStream.LT(1);\n expression = this._expression();\n }\n\n tokenStream.mustMatch(Tokens.RPAREN);\n this._readWhitespace();\n\n return new MediaFeature(feature, (expression ? new SyntaxUnit(expression, token.startLine, token.startCol) : null));\n },\n _media_feature: function(){\n var tokenStream = this._tokenStream;\n\n tokenStream.mustMatch(Tokens.IDENT);\n\n return SyntaxUnit.fromToken(tokenStream.token());\n },\n _page: function(){\n var tokenStream = this._tokenStream,\n line,\n col,\n identifier = null,\n pseudoPage = null;\n tokenStream.mustMatch(Tokens.PAGE_SYM);\n line = tokenStream.token().startLine;\n col = tokenStream.token().startCol;\n\n this._readWhitespace();\n\n if (tokenStream.match(Tokens.IDENT)){\n identifier = tokenStream.token().value;\n if (identifier.toLowerCase() === \"auto\"){\n this._unexpectedToken(tokenStream.token());\n }\n }\n if (tokenStream.peek() == Tokens.COLON){\n pseudoPage = this._pseudo_page();\n }\n\n this._readWhitespace();\n\n this.fire({\n type: \"startpage\",\n id: identifier,\n pseudo: pseudoPage,\n line: line,\n col: col\n });\n\n this._readDeclarations(true, true);\n\n this.fire({\n type: \"endpage\",\n id: identifier,\n pseudo: pseudoPage,\n line: line,\n col: col\n });\n\n },\n _margin: function(){\n var tokenStream = this._tokenStream,\n line,\n col,\n marginSym = this._margin_sym();\n\n if (marginSym){\n line = tokenStream.token().startLine;\n col = tokenStream.token().startCol;\n\n this.fire({\n type: \"startpagemargin\",\n margin: marginSym,\n line: line,\n col: col\n });\n\n this._readDeclarations(true);\n\n this.fire({\n type: \"endpagemargin\",\n margin: marginSym,\n line: line,\n col: col\n });\n return true;\n } else {\n return false;\n }\n },\n _margin_sym: function(){\n\n var tokenStream = this._tokenStream;\n\n if(tokenStream.match([Tokens.TOPLEFTCORNER_SYM, Tokens.TOPLEFT_SYM,\n Tokens.TOPCENTER_SYM, Tokens.TOPRIGHT_SYM, Tokens.TOPRIGHTCORNER_SYM,\n Tokens.BOTTOMLEFTCORNER_SYM, Tokens.BOTTOMLEFT_SYM,\n Tokens.BOTTOMCENTER_SYM, Tokens.BOTTOMRIGHT_SYM,\n Tokens.BOTTOMRIGHTCORNER_SYM, Tokens.LEFTTOP_SYM,\n Tokens.LEFTMIDDLE_SYM, Tokens.LEFTBOTTOM_SYM, Tokens.RIGHTTOP_SYM,\n Tokens.RIGHTMIDDLE_SYM, Tokens.RIGHTBOTTOM_SYM]))\n {\n return SyntaxUnit.fromToken(tokenStream.token());\n } else {\n return null;\n }\n\n },\n\n _pseudo_page: function(){\n\n var tokenStream = this._tokenStream;\n\n tokenStream.mustMatch(Tokens.COLON);\n tokenStream.mustMatch(Tokens.IDENT);\n\n return tokenStream.token().value;\n },\n\n _font_face: function(){\n var tokenStream = this._tokenStream,\n line,\n col;\n tokenStream.mustMatch(Tokens.FONT_FACE_SYM);\n line = tokenStream.token().startLine;\n col = tokenStream.token().startCol;\n\n this._readWhitespace();\n\n this.fire({\n type: \"startfontface\",\n line: line,\n col: col\n });\n\n this._readDeclarations(true);\n\n this.fire({\n type: \"endfontface\",\n line: line,\n col: col\n });\n },\n\n _viewport: function(){\n var tokenStream = this._tokenStream,\n line,\n col;\n\n tokenStream.mustMatch(Tokens.VIEWPORT_SYM);\n line = tokenStream.token().startLine;\n col = tokenStream.token().startCol;\n\n this._readWhitespace();\n\n this.fire({\n type: \"startviewport\",\n line: line,\n col: col\n });\n\n this._readDeclarations(true);\n\n this.fire({\n type: \"endviewport\",\n line: line,\n col: col\n });\n\n },\n\n _operator: function(inFunction){\n\n var tokenStream = this._tokenStream,\n token = null;\n\n if (tokenStream.match([Tokens.SLASH, Tokens.COMMA]) ||\n (inFunction && tokenStream.match([Tokens.PLUS, Tokens.STAR, Tokens.MINUS]))){\n token = tokenStream.token();\n this._readWhitespace();\n }\n return token ? PropertyValuePart.fromToken(token) : null;\n\n },\n\n _combinator: function(){\n\n var tokenStream = this._tokenStream,\n value = null,\n token;\n\n if(tokenStream.match([Tokens.PLUS, Tokens.GREATER, Tokens.TILDE])){\n token = tokenStream.token();\n value = new Combinator(token.value, token.startLine, token.startCol);\n this._readWhitespace();\n }\n\n return value;\n },\n\n _unary_operator: function(){\n\n var tokenStream = this._tokenStream;\n\n if (tokenStream.match([Tokens.MINUS, Tokens.PLUS])){\n return tokenStream.token().value;\n } else {\n return null;\n }\n },\n\n _property: function(){\n\n var tokenStream = this._tokenStream,\n value = null,\n hack = null,\n tokenValue,\n token,\n line,\n col;\n if (tokenStream.peek() == Tokens.STAR && this.options.starHack){\n tokenStream.get();\n token = tokenStream.token();\n hack = token.value;\n line = token.startLine;\n col = token.startCol;\n }\n\n if(tokenStream.match(Tokens.IDENT)){\n token = tokenStream.token();\n tokenValue = token.value;\n if (tokenValue.charAt(0) == \"_\" && this.options.underscoreHack){\n hack = \"_\";\n tokenValue = tokenValue.substring(1);\n }\n\n value = new PropertyName(tokenValue, hack, (line||token.startLine), (col||token.startCol));\n this._readWhitespace();\n }\n\n return value;\n },\n _ruleset: function(){\n\n var tokenStream = this._tokenStream,\n tt,\n selectors;\n try {\n selectors = this._selectors_group();\n } catch (ex){\n if (ex instanceof SyntaxError && !this.options.strict){\n this.fire({\n type: \"error\",\n error: ex,\n message: ex.message,\n line: ex.line,\n col: ex.col\n });\n tt = tokenStream.advance([Tokens.RBRACE]);\n if (tt == Tokens.RBRACE){\n } else {\n throw ex;\n }\n\n } else {\n throw ex;\n }\n return true;\n }\n if (selectors){\n\n this.fire({\n type: \"startrule\",\n selectors: selectors,\n line: selectors[0].line,\n col: selectors[0].col\n });\n\n this._readDeclarations(true);\n\n this.fire({\n type: \"endrule\",\n selectors: selectors,\n line: selectors[0].line,\n col: selectors[0].col\n });\n\n }\n\n return selectors;\n\n },\n _selectors_group: function(){\n var tokenStream = this._tokenStream,\n selectors = [],\n selector;\n\n selector = this._selector();\n if (selector !== null){\n\n selectors.push(selector);\n while(tokenStream.match(Tokens.COMMA)){\n this._readWhitespace();\n selector = this._selector();\n if (selector !== null){\n selectors.push(selector);\n } else {\n this._unexpectedToken(tokenStream.LT(1));\n }\n }\n }\n\n return selectors.length ? selectors : null;\n },\n _selector: function(){\n\n var tokenStream = this._tokenStream,\n selector = [],\n nextSelector = null,\n combinator = null,\n ws = null;\n nextSelector = this._simple_selector_sequence();\n if (nextSelector === null){\n return null;\n }\n\n selector.push(nextSelector);\n\n do {\n combinator = this._combinator();\n\n if (combinator !== null){\n selector.push(combinator);\n nextSelector = this._simple_selector_sequence();\n if (nextSelector === null){\n this._unexpectedToken(tokenStream.LT(1));\n } else {\n selector.push(nextSelector);\n }\n } else {\n if (this._readWhitespace()){\n ws = new Combinator(tokenStream.token().value, tokenStream.token().startLine, tokenStream.token().startCol);\n combinator = this._combinator();\n nextSelector = this._simple_selector_sequence();\n if (nextSelector === null){\n if (combinator !== null){\n this._unexpectedToken(tokenStream.LT(1));\n }\n } else {\n\n if (combinator !== null){\n selector.push(combinator);\n } else {\n selector.push(ws);\n }\n\n selector.push(nextSelector);\n }\n } else {\n break;\n }\n\n }\n } while(true);\n\n return new Selector(selector, selector[0].line, selector[0].col);\n },\n _simple_selector_sequence: function(){\n\n var tokenStream = this._tokenStream,\n elementName = null,\n modifiers = [],\n selectorText= \"\",\n components = [\n function(){\n return tokenStream.match(Tokens.HASH) ?\n new SelectorSubPart(tokenStream.token().value, \"id\", tokenStream.token().startLine, tokenStream.token().startCol) :\n null;\n },\n this._class,\n this._attrib,\n this._pseudo,\n this._negation\n ],\n i = 0,\n len = components.length,\n component = null,\n found = false,\n line,\n col;\n line = tokenStream.LT(1).startLine;\n col = tokenStream.LT(1).startCol;\n\n elementName = this._type_selector();\n if (!elementName){\n elementName = this._universal();\n }\n\n if (elementName !== null){\n selectorText += elementName;\n }\n\n while(true){\n if (tokenStream.peek() === Tokens.S){\n break;\n }\n while(i < len && component === null){\n component = components[i++].call(this);\n }\n\n if (component === null){\n if (selectorText === \"\"){\n return null;\n } else {\n break;\n }\n } else {\n i = 0;\n modifiers.push(component);\n selectorText += component.toString();\n component = null;\n }\n }\n\n\n return selectorText !== \"\" ?\n new SelectorPart(elementName, modifiers, selectorText, line, col) :\n null;\n },\n _type_selector: function(){\n\n var tokenStream = this._tokenStream,\n ns = this._namespace_prefix(),\n elementName = this._element_name();\n\n if (!elementName){\n if (ns){\n tokenStream.unget();\n if (ns.length > 1){\n tokenStream.unget();\n }\n }\n\n return null;\n } else {\n if (ns){\n elementName.text = ns + elementName.text;\n elementName.col -= ns.length;\n }\n return elementName;\n }\n },\n _class: function(){\n\n var tokenStream = this._tokenStream,\n token;\n\n if (tokenStream.match(Tokens.DOT)){\n tokenStream.mustMatch(Tokens.IDENT);\n token = tokenStream.token();\n return new SelectorSubPart(\".\" + token.value, \"class\", token.startLine, token.startCol - 1);\n } else {\n return null;\n }\n\n },\n _element_name: function(){\n\n var tokenStream = this._tokenStream,\n token;\n\n if (tokenStream.match(Tokens.IDENT)){\n token = tokenStream.token();\n return new SelectorSubPart(token.value, \"elementName\", token.startLine, token.startCol);\n\n } else {\n return null;\n }\n },\n _namespace_prefix: function(){\n var tokenStream = this._tokenStream,\n value = \"\";\n if (tokenStream.LA(1) === Tokens.PIPE || tokenStream.LA(2) === Tokens.PIPE){\n\n if(tokenStream.match([Tokens.IDENT, Tokens.STAR])){\n value += tokenStream.token().value;\n }\n\n tokenStream.mustMatch(Tokens.PIPE);\n value += \"|\";\n\n }\n\n return value.length ? value : null;\n },\n _universal: function(){\n var tokenStream = this._tokenStream,\n value = \"\",\n ns;\n\n ns = this._namespace_prefix();\n if(ns){\n value += ns;\n }\n\n if(tokenStream.match(Tokens.STAR)){\n value += \"*\";\n }\n\n return value.length ? value : null;\n\n },\n _attrib: function(){\n\n var tokenStream = this._tokenStream,\n value = null,\n ns,\n token;\n\n if (tokenStream.match(Tokens.LBRACKET)){\n token = tokenStream.token();\n value = token.value;\n value += this._readWhitespace();\n\n ns = this._namespace_prefix();\n\n if (ns){\n value += ns;\n }\n\n tokenStream.mustMatch(Tokens.IDENT);\n value += tokenStream.token().value;\n value += this._readWhitespace();\n\n if(tokenStream.match([Tokens.PREFIXMATCH, Tokens.SUFFIXMATCH, Tokens.SUBSTRINGMATCH,\n Tokens.EQUALS, Tokens.INCLUDES, Tokens.DASHMATCH])){\n\n value += tokenStream.token().value;\n value += this._readWhitespace();\n\n tokenStream.mustMatch([Tokens.IDENT, Tokens.STRING]);\n value += tokenStream.token().value;\n value += this._readWhitespace();\n }\n\n tokenStream.mustMatch(Tokens.RBRACKET);\n\n return new SelectorSubPart(value + \"]\", \"attribute\", token.startLine, token.startCol);\n } else {\n return null;\n }\n },\n _pseudo: function(){\n\n var tokenStream = this._tokenStream,\n pseudo = null,\n colons = \":\",\n line,\n col;\n\n if (tokenStream.match(Tokens.COLON)){\n\n if (tokenStream.match(Tokens.COLON)){\n colons += \":\";\n }\n\n if (tokenStream.match(Tokens.IDENT)){\n pseudo = tokenStream.token().value;\n line = tokenStream.token().startLine;\n col = tokenStream.token().startCol - colons.length;\n } else if (tokenStream.peek() == Tokens.FUNCTION){\n line = tokenStream.LT(1).startLine;\n col = tokenStream.LT(1).startCol - colons.length;\n pseudo = this._functional_pseudo();\n }\n\n if (pseudo){\n pseudo = new SelectorSubPart(colons + pseudo, \"pseudo\", line, col);\n }\n }\n\n return pseudo;\n },\n _functional_pseudo: function(){\n\n var tokenStream = this._tokenStream,\n value = null;\n\n if(tokenStream.match(Tokens.FUNCTION)){\n value = tokenStream.token().value;\n value += this._readWhitespace();\n value += this._expression();\n tokenStream.mustMatch(Tokens.RPAREN);\n value += \")\";\n }\n\n return value;\n },\n _expression: function(){\n\n var tokenStream = this._tokenStream,\n value = \"\";\n\n while(tokenStream.match([Tokens.PLUS, Tokens.MINUS, Tokens.DIMENSION,\n Tokens.NUMBER, Tokens.STRING, Tokens.IDENT, Tokens.LENGTH,\n Tokens.FREQ, Tokens.ANGLE, Tokens.TIME,\n Tokens.RESOLUTION, Tokens.SLASH])){\n\n value += tokenStream.token().value;\n value += this._readWhitespace();\n }\n\n return value.length ? value : null;\n\n },\n _negation: function(){\n\n var tokenStream = this._tokenStream,\n line,\n col,\n value = \"\",\n arg,\n subpart = null;\n\n if (tokenStream.match(Tokens.NOT)){\n value = tokenStream.token().value;\n line = tokenStream.token().startLine;\n col = tokenStream.token().startCol;\n value += this._readWhitespace();\n arg = this._negation_arg();\n value += arg;\n value += this._readWhitespace();\n tokenStream.match(Tokens.RPAREN);\n value += tokenStream.token().value;\n\n subpart = new SelectorSubPart(value, \"not\", line, col);\n subpart.args.push(arg);\n }\n\n return subpart;\n },\n _negation_arg: function(){\n\n var tokenStream = this._tokenStream,\n args = [\n this._type_selector,\n this._universal,\n function(){\n return tokenStream.match(Tokens.HASH) ?\n new SelectorSubPart(tokenStream.token().value, \"id\", tokenStream.token().startLine, tokenStream.token().startCol) :\n null;\n },\n this._class,\n this._attrib,\n this._pseudo\n ],\n arg = null,\n i = 0,\n len = args.length,\n elementName,\n line,\n col,\n part;\n\n line = tokenStream.LT(1).startLine;\n col = tokenStream.LT(1).startCol;\n\n while(i < len && arg === null){\n\n arg = args[i].call(this);\n i++;\n }\n if (arg === null){\n this._unexpectedToken(tokenStream.LT(1));\n }\n if (arg.type == \"elementName\"){\n part = new SelectorPart(arg, [], arg.toString(), line, col);\n } else {\n part = new SelectorPart(null, [arg], arg.toString(), line, col);\n }\n\n return part;\n },\n\n _declaration: function(){\n\n var tokenStream = this._tokenStream,\n property = null,\n expr = null,\n prio = null,\n error = null,\n invalid = null,\n propertyName= \"\";\n\n property = this._property();\n if (property !== null){\n\n tokenStream.mustMatch(Tokens.COLON);\n this._readWhitespace();\n\n expr = this._expr();\n if (!expr || expr.length === 0){\n this._unexpectedToken(tokenStream.LT(1));\n }\n\n prio = this._prio();\n propertyName = property.toString();\n if (this.options.starHack && property.hack == \"*\" ||\n this.options.underscoreHack && property.hack == \"_\") {\n\n propertyName = property.text;\n }\n\n try {\n this._validateProperty(propertyName, expr);\n } catch (ex) {\n invalid = ex;\n }\n\n this.fire({\n type: \"property\",\n property: property,\n value: expr,\n important: prio,\n line: property.line,\n col: property.col,\n invalid: invalid\n });\n\n return true;\n } else {\n return false;\n }\n },\n\n _prio: function(){\n\n var tokenStream = this._tokenStream,\n result = tokenStream.match(Tokens.IMPORTANT_SYM);\n\n this._readWhitespace();\n return result;\n },\n\n _expr: function(inFunction){\n\n var tokenStream = this._tokenStream,\n values = [],\n value = null,\n operator = null;\n\n value = this._term(inFunction);\n if (value !== null){\n\n values.push(value);\n\n do {\n operator = this._operator(inFunction);\n if (operator){\n values.push(operator);\n } /*else {\n values.push(new PropertyValue(valueParts, valueParts[0].line, valueParts[0].col));\n valueParts = [];\n }*/\n\n value = this._term(inFunction);\n\n if (value === null){\n break;\n } else {\n values.push(value);\n }\n } while(true);\n }\n\n return values.length > 0 ? new PropertyValue(values, values[0].line, values[0].col) : null;\n },\n\n _term: function(inFunction){\n\n var tokenStream = this._tokenStream,\n unary = null,\n value = null,\n endChar = null,\n token,\n line,\n col;\n unary = this._unary_operator();\n if (unary !== null){\n line = tokenStream.token().startLine;\n col = tokenStream.token().startCol;\n }\n if (tokenStream.peek() == Tokens.IE_FUNCTION && this.options.ieFilters){\n\n value = this._ie_function();\n if (unary === null){\n line = tokenStream.token().startLine;\n col = tokenStream.token().startCol;\n }\n } else if (inFunction && tokenStream.match([Tokens.LPAREN, Tokens.LBRACE, Tokens.LBRACKET])){\n\n token = tokenStream.token();\n endChar = token.endChar;\n value = token.value + this._expr(inFunction).text;\n if (unary === null){\n line = tokenStream.token().startLine;\n col = tokenStream.token().startCol;\n }\n tokenStream.mustMatch(Tokens.type(endChar));\n value += endChar;\n this._readWhitespace();\n } else if (tokenStream.match([Tokens.NUMBER, Tokens.PERCENTAGE, Tokens.LENGTH,\n Tokens.ANGLE, Tokens.TIME,\n Tokens.FREQ, Tokens.STRING, Tokens.IDENT, Tokens.URI, Tokens.UNICODE_RANGE])){\n\n value = tokenStream.token().value;\n if (unary === null){\n line = tokenStream.token().startLine;\n col = tokenStream.token().startCol;\n }\n this._readWhitespace();\n } else {\n token = this._hexcolor();\n if (token === null){\n if (unary === null){\n line = tokenStream.LT(1).startLine;\n col = tokenStream.LT(1).startCol;\n }\n if (value === null){\n if (tokenStream.LA(3) == Tokens.EQUALS && this.options.ieFilters){\n value = this._ie_function();\n } else {\n value = this._function();\n }\n }\n\n } else {\n value = token.value;\n if (unary === null){\n line = token.startLine;\n col = token.startCol;\n }\n }\n\n }\n\n return value !== null ?\n new PropertyValuePart(unary !== null ? unary + value : value, line, col) :\n null;\n\n },\n\n _function: function(){\n\n var tokenStream = this._tokenStream,\n functionText = null,\n expr = null,\n lt;\n\n if (tokenStream.match(Tokens.FUNCTION)){\n functionText = tokenStream.token().value;\n this._readWhitespace();\n expr = this._expr(true);\n functionText += expr;\n if (this.options.ieFilters && tokenStream.peek() == Tokens.EQUALS){\n do {\n\n if (this._readWhitespace()){\n functionText += tokenStream.token().value;\n }\n if (tokenStream.LA(0) == Tokens.COMMA){\n functionText += tokenStream.token().value;\n }\n\n tokenStream.match(Tokens.IDENT);\n functionText += tokenStream.token().value;\n\n tokenStream.match(Tokens.EQUALS);\n functionText += tokenStream.token().value;\n lt = tokenStream.peek();\n while(lt != Tokens.COMMA && lt != Tokens.S && lt != Tokens.RPAREN){\n tokenStream.get();\n functionText += tokenStream.token().value;\n lt = tokenStream.peek();\n }\n } while(tokenStream.match([Tokens.COMMA, Tokens.S]));\n }\n\n tokenStream.match(Tokens.RPAREN);\n functionText += \")\";\n this._readWhitespace();\n }\n\n return functionText;\n },\n\n _ie_function: function(){\n\n var tokenStream = this._tokenStream,\n functionText = null,\n expr = null,\n lt;\n if (tokenStream.match([Tokens.IE_FUNCTION, Tokens.FUNCTION])){\n functionText = tokenStream.token().value;\n\n do {\n\n if (this._readWhitespace()){\n functionText += tokenStream.token().value;\n }\n if (tokenStream.LA(0) == Tokens.COMMA){\n functionText += tokenStream.token().value;\n }\n\n tokenStream.match(Tokens.IDENT);\n functionText += tokenStream.token().value;\n\n tokenStream.match(Tokens.EQUALS);\n functionText += tokenStream.token().value;\n lt = tokenStream.peek();\n while(lt != Tokens.COMMA && lt != Tokens.S && lt != Tokens.RPAREN){\n tokenStream.get();\n functionText += tokenStream.token().value;\n lt = tokenStream.peek();\n }\n } while(tokenStream.match([Tokens.COMMA, Tokens.S]));\n\n tokenStream.match(Tokens.RPAREN);\n functionText += \")\";\n this._readWhitespace();\n }\n\n return functionText;\n },\n\n _hexcolor: function(){\n\n var tokenStream = this._tokenStream,\n token = null,\n color;\n\n if(tokenStream.match(Tokens.HASH)){\n\n token = tokenStream.token();\n color = token.value;\n if (!/#[a-f0-9]{3,6}/i.test(color)){\n throw new SyntaxError(\"Expected a hex color but found '\" + color + \"' at line \" + token.startLine + \", col \" + token.startCol + \".\", token.startLine, token.startCol);\n }\n this._readWhitespace();\n }\n\n return token;\n },\n\n _keyframes: function(){\n var tokenStream = this._tokenStream,\n token,\n tt,\n name,\n prefix = \"\";\n\n tokenStream.mustMatch(Tokens.KEYFRAMES_SYM);\n token = tokenStream.token();\n if (/^@\\-([^\\-]+)\\-/.test(token.value)) {\n prefix = RegExp.$1;\n }\n\n this._readWhitespace();\n name = this._keyframe_name();\n\n this._readWhitespace();\n tokenStream.mustMatch(Tokens.LBRACE);\n\n this.fire({\n type: \"startkeyframes\",\n name: name,\n prefix: prefix,\n line: token.startLine,\n col: token.startCol\n });\n\n this._readWhitespace();\n tt = tokenStream.peek();\n while(tt == Tokens.IDENT || tt == Tokens.PERCENTAGE) {\n this._keyframe_rule();\n this._readWhitespace();\n tt = tokenStream.peek();\n }\n\n this.fire({\n type: \"endkeyframes\",\n name: name,\n prefix: prefix,\n line: token.startLine,\n col: token.startCol\n });\n\n this._readWhitespace();\n tokenStream.mustMatch(Tokens.RBRACE);\n\n },\n\n _keyframe_name: function(){\n var tokenStream = this._tokenStream,\n token;\n\n tokenStream.mustMatch([Tokens.IDENT, Tokens.STRING]);\n return SyntaxUnit.fromToken(tokenStream.token());\n },\n\n _keyframe_rule: function(){\n var tokenStream = this._tokenStream,\n token,\n keyList = this._key_list();\n\n this.fire({\n type: \"startkeyframerule\",\n keys: keyList,\n line: keyList[0].line,\n col: keyList[0].col\n });\n\n this._readDeclarations(true);\n\n this.fire({\n type: \"endkeyframerule\",\n keys: keyList,\n line: keyList[0].line,\n col: keyList[0].col\n });\n\n },\n\n _key_list: function(){\n var tokenStream = this._tokenStream,\n token,\n key,\n keyList = [];\n keyList.push(this._key());\n\n this._readWhitespace();\n\n while(tokenStream.match(Tokens.COMMA)){\n this._readWhitespace();\n keyList.push(this._key());\n this._readWhitespace();\n }\n\n return keyList;\n },\n\n _key: function(){\n\n var tokenStream = this._tokenStream,\n token;\n\n if (tokenStream.match(Tokens.PERCENTAGE)){\n return SyntaxUnit.fromToken(tokenStream.token());\n } else if (tokenStream.match(Tokens.IDENT)){\n token = tokenStream.token();\n\n if (/from|to/i.test(token.value)){\n return SyntaxUnit.fromToken(token);\n }\n\n tokenStream.unget();\n }\n this._unexpectedToken(tokenStream.LT(1));\n },\n _skipCruft: function(){\n while(this._tokenStream.match([Tokens.S, Tokens.CDO, Tokens.CDC])){\n }\n },\n _readDeclarations: function(checkStart, readMargins){\n var tokenStream = this._tokenStream,\n tt;\n\n\n this._readWhitespace();\n\n if (checkStart){\n tokenStream.mustMatch(Tokens.LBRACE);\n }\n\n this._readWhitespace();\n\n try {\n\n while(true){\n\n if (tokenStream.match(Tokens.SEMICOLON) || (readMargins && this._margin())){\n } else if (this._declaration()){\n if (!tokenStream.match(Tokens.SEMICOLON)){\n break;\n }\n } else {\n break;\n }\n this._readWhitespace();\n }\n\n tokenStream.mustMatch(Tokens.RBRACE);\n this._readWhitespace();\n\n } catch (ex) {\n if (ex instanceof SyntaxError && !this.options.strict){\n this.fire({\n type: \"error\",\n error: ex,\n message: ex.message,\n line: ex.line,\n col: ex.col\n });\n tt = tokenStream.advance([Tokens.SEMICOLON, Tokens.RBRACE]);\n if (tt == Tokens.SEMICOLON){\n this._readDeclarations(false, readMargins);\n } else if (tt != Tokens.RBRACE){\n throw ex;\n }\n\n } else {\n throw ex;\n }\n }\n\n },\n _readWhitespace: function(){\n\n var tokenStream = this._tokenStream,\n ws = \"\";\n\n while(tokenStream.match(Tokens.S)){\n ws += tokenStream.token().value;\n }\n\n return ws;\n },\n _unexpectedToken: function(token){\n throw new SyntaxError(\"Unexpected token '\" + token.value + \"' at line \" + token.startLine + \", col \" + token.startCol + \".\", token.startLine, token.startCol);\n },\n _verifyEnd: function(){\n if (this._tokenStream.LA(1) != Tokens.EOF){\n this._unexpectedToken(this._tokenStream.LT(1));\n }\n },\n _validateProperty: function(property, value){\n Validation.validate(property, value);\n },\n\n parse: function(input){\n this._tokenStream = new TokenStream(input, Tokens);\n this._stylesheet();\n },\n\n parseStyleSheet: function(input){\n return this.parse(input);\n },\n\n parseMediaQuery: function(input){\n this._tokenStream = new TokenStream(input, Tokens);\n var result = this._media_query();\n this._verifyEnd();\n return result;\n },\n parsePropertyValue: function(input){\n\n this._tokenStream = new TokenStream(input, Tokens);\n this._readWhitespace();\n\n var result = this._expr();\n this._readWhitespace();\n this._verifyEnd();\n return result;\n },\n parseRule: function(input){\n this._tokenStream = new TokenStream(input, Tokens);\n this._readWhitespace();\n\n var result = this._ruleset();\n this._readWhitespace();\n this._verifyEnd();\n return result;\n },\n parseSelector: function(input){\n\n this._tokenStream = new TokenStream(input, Tokens);\n this._readWhitespace();\n\n var result = this._selector();\n this._readWhitespace();\n this._verifyEnd();\n return result;\n },\n parseStyleAttribute: function(input){\n input += \"}\"; // for error recovery in _readDeclarations()\n this._tokenStream = new TokenStream(input, Tokens);\n this._readDeclarations();\n }\n };\n for (prop in additions){\n if (additions.hasOwnProperty(prop)){\n proto[prop] = additions[prop];\n }\n }\n\n return proto;\n}();\nvar Properties = {\n \"align-items\" : \"flex-start | flex-end | center | baseline | stretch\",\n \"align-content\" : \"flex-start | flex-end | center | space-between | space-around | stretch\",\n \"align-self\" : \"auto | flex-start | flex-end | center | baseline | stretch\",\n \"-webkit-align-items\" : \"flex-start | flex-end | center | baseline | stretch\",\n \"-webkit-align-content\" : \"flex-start | flex-end | center | space-between | space-around | stretch\",\n \"-webkit-align-self\" : \"auto | flex-start | flex-end | center | baseline | stretch\",\n \"alignment-adjust\" : \"auto | baseline | before-edge | text-before-edge | middle | central | after-edge | text-after-edge | ideographic | alphabetic | hanging | mathematical | | \",\n \"alignment-baseline\" : \"baseline | use-script | before-edge | text-before-edge | after-edge | text-after-edge | central | middle | ideographic | alphabetic | hanging | mathematical\",\n \"animation\" : 1,\n \"animation-delay\" : { multi: \"