[
  {
    "path": ".gitignore",
    "content": "node_modules\ndest\nsess.txt\npics.json\ncron/pics\n"
  },
  {
    "path": "Gruntfile.js",
    "content": "module.exports = function (grunt) {\n\n\n\tgrunt.registerMultiTask('itemplet', '合并模板文件', function () {\n\t\n\t\tthis.files.forEach(function (file) {\n\n\t\t\tvar M={};\n\t\t\tvar key,value;\n\n\t\t\tvar src = file.src.filter(function (filepath) {\n\n\t\t\t\tif (!grunt.file.exists(filepath)) {\n\t\t\t\t\tgrunt.log.warn('Source file \"' + filepath + '\" not found.');\n\t\t\t\t\treturn false;\n\t\t\t\t}else if(filepath.match(/!/)){\n\t\t\t\t\tgrunt.log.writeln('跳过文件 ' + filepath);\n\t\t\t\t\treturn false;\n\t\t\t\t} else {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}).forEach(function (filepath) {\n\n\t\t\t\tkey=filepath.match(/\\/([^/]+?)\\.(templet|view)$/);\n\t\t\t\tif(!key)\n\t\t\t\t\treturn;\n\n\t\t\t\tkey=key[1];\n\n\t\t\t\tvalue=grunt.file.read(filepath)\n\t\t\t\t\t.replace(/\\t+/g,'\\t')\n\t\t\t\t\t.replace(/<!--.+?-->/g,'');\n\n\t\t\t\tM[key]=value;\n\t\t\t});\n\n\n\n\t\t\tM=JSON.stringify(M);\n\n\t\t\tvar \n\t\t\tobjs=file.dest.match(/\\/([^/]+?)s?\\.js$/);\n\n\t\t\tobjs=objs[1].replace(/(\\w)/,function(v){return v.toUpperCase()});\n\n\t\t\tM='var get'+objs+'=function(M){return function(key){return M[key]}}('+M+')';\n\n\t\t\tgrunt.file.write(file.dest,M);\n\t\n\t\t\tgrunt.log.writeln('文件 ' + file.dest + ' 生成成功');\n\t\t});\n\t});\n\n\tgrunt.registerMultiTask('suffixupdate', '版本号更新', function () {\n\t\t\n\t\t\n\t\tvar \n\t\tsuffix=Math.floor(+new Date()/1000).toString(36);\n\n\t\tthis.files.forEach(function (file) {\n\t\t\tvar src = file.src.forEach(function (filepath,b) {\n\n\t\t\t\tif (!grunt.file.exists(filepath)) {\n\t\t\t\t\tgrunt.log.warn('文件 ' + filepath + ' 不存在');\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\n\t\t\t\ttext=grunt.file.read(filepath);\n\n\t\t\t\ttext=text.replace(/suffix='\\w{3,20}'/g,'suffix=\\''+suffix+'\\'');\n\t\t\t\ttext=text.replace(/_r=\\w{3,20}/g,'_r='+suffix);\n\n\t\t\t\tgrunt.file.write(file.dest,text);\n\n\t\t\t\tgrunt.log.writeln('文件 ' + filepath+ ' 版本号更新成功');\n\n\t\t\t});\n\n\t\t});\n\t});\n\n\n\n\n\tgrunt.initConfig({\n\t\tpkg: grunt.file.readJSON('package.json'),\n\t\tsuffixupdate:{\n\t\t\tbuild:{\n\t\t\t\tfiles:{\n\t\t\t\t\t'dest/index.html':'www/dest.html'\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\thtmlmin: {\n\t\t\tbuild:{\n\t\t\t\toptions: {\n\t\t\t\t\tremoveComments: true,\n\t\t\t\t\tremoveCommentsFromCDATA: true,\n\t\t\t\t\tcollapseWhitespace: true,\n\t\t\t\t\tcollapseBooleanAttributes: true,\n\t\t\t\t\tremoveAttributeQuotes: true,\n\t\t\t\t\tremoveRedundantAttributes: true,\n\t\t\t\t\tuseShortDoctype: true,\n\t\t\t\t\tremoveEmptyAttributes: true,\n\t\t\t\t\tremoveOptionalTags: true,\n\t\t\t\t\tminifyJS: 1\n\t\t\t\t},\n\t\t\t\tfiles: {\n\t\t\t\t\t'dest/index.html':'dest/index.html'\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\titemplet: {\n\t\t\tbuild: {\n\t\t\t\tfiles: {\n\t\t\t\t\t'dest/static/js/templets.js':'www/static/templet/*.templet'\n\t\t\t\t}\n\t\t\t},\n\t\t},\n\t\tless: {\n\t\t\tdynamic_mappings: {\n\t\t\t\tfiles: [{\n\t\t\t    \tcwd: './',\n\t\t\t\t\tsrc:[\n\t\t\t\t\t\t'www/static/less/i.less',\n\t\t\t\t\t],\n\t\t\t\t\tdest: 'dest/static/css/index.css'\n\t\t\t\t}]\n\t\t\t},\n\t\t},\n\t\tconcat: {\n\t\t\tjs:{\n\t\t\t\toptions: {\n\t\t\t\t\tseparator: ';'\n\t\t\t\t},\n\t\t\t\tfiles: {\n\t\t\t\t\t'dest/static/js/build.js':[\n\t\t\t\t\t\t'www/static/js/itorr2.js',\n\t\t\t\t\t\t'www/static/js/q.js',\n\t\t\t\t\t\t'www/static/js/templet.js',\n\t\t\t\t\t\t'www/static/js/pagedown.converter.js',\n\t\t\t\t\t\t'dest/static/js/templets.js',\n\t\t\t\t\t\t'www/static/highlight/highlight.pack.js',\n\t\t\t\t\t\t'www/config.js',\n\t\t\t\t\t\t'www/static/js/controller.js',\n\t\t\t\t\t]\n\t\t\t\t}\n\t\t\t},\n\t\t\tcss:{\n\t\t\t\tfiles:{\n\t\t\t\t\t'dest/static/css/index.css':[\n\t\t\t\t\t\t'dest/static/css/index.css',\n\t\t\t\t\t\t'www/static/highlight/styles/monokai-sublime.css'\n\t\t\t\t\t]\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\tuglify: {\n\t\t\tbuild: {\n\t\t\t\tfiles: {\n\t\t\t\t\t'dest/static/js/build.js':'dest/static/js/build.js'\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\tcssmin: {\n\t\t\tcompress: {\n\t\t\t\tfiles: {\n\t\t\t\t\t'dest/static/css/index.css':'dest/static/css/index.css',\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\tcopy: {\n\t\t\tmain: {\n\t\t\t\tfiles: [\n\t\t\t\t\t{\n\t\t\t\t\t\t'dest/static/img/bg.jpg':'www/static/img/bg.jpg'\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t},\n\t\tclean: {\n\t\t\tdest: [\n\t\t\t\t'dest/*'\n\t\t\t],\n\t\t\ttemplet: [\n\t\t\t\t'dest/static/js/views.js',\n\t\t\t\t'dest/static/js/templets.js'\n\t\t\t]\n\t\t},\n\t});\n\tgrunt.loadNpmTasks('grunt-contrib-htmlmin');\n\tgrunt.loadNpmTasks('grunt-contrib-uglify');\n\tgrunt.loadNpmTasks('grunt-contrib-concat');\n\tgrunt.loadNpmTasks('grunt-contrib-less');\n\tgrunt.loadNpmTasks('grunt-contrib-cssmin');\n\tgrunt.loadNpmTasks('grunt-contrib-copy');\n\tgrunt.loadNpmTasks('grunt-contrib-clean');\n\n\n\n\n\t// 默认任务\n\tgrunt.registerTask('default', [\n\t\t'clean:dest',\n\t\t'itemplet',\n\t\t'suffixupdate',\n\t\t'htmlmin',\n\t\t'uglify',\n\t\t'less',\n\t\t'concat',\n\t\t'cssmin',\n\t\t'clean:templet',\n\t\t'copy',\n\t]);\n\n\n\t//,'gitcommit','gitpush'\n}"
  },
  {
    "path": "LICENSE",
    "content": "                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"{}\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright {yyyy} {name of copyright owner}\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License.\n"
  },
  {
    "path": "README.md",
    "content": "![锤子博客，基于锤子便签的博客程序。](http://ww4.sinaimg.cn/large/a15b4afegw1f8wp4958lcj20pj0fan2e)\n# 锤子博客\n🔨博客，基于锤子便签的博客程序。\n\n## 如何写文章？\n\n - 在 锤子便签应用 或 网页版 中写文章\n - 将 想要在博客展示的文章 添加 星标\n - 同步到欢喜云云端\n - 使用 HTTP API 或者 定时任务生成 JSON\n - 文章上线啦！\n\n## 端部分说明\n\n\n```bash\nnpm i # 安装必要的 npm 包\ngrunt # 生成前端线上版本\n```\n\n`www/config.js` 配置 API 地址\n\n\n\n## HTTP 服务器形式 API \n\n[HTTP 服务器形式 API 说明文档](https://github.com/itorr/smartisanBlog/tree/master/t) 来自 @solarhell\n\n## Cron 定时任务 静态 API\n\n[Cron 定时任务 静态 API 说明文档](https://github.com/itorr/smartisanBlog/tree/master/cron) 来自 @wsph123\n\n## 马上会有\n - 类别（基于锤子便签后加的文件夹实现）\n\n## 使用了这些开源项目\n - Templet.js\n - PageDown.js\n - Q.js\n - Highlight.js\n - iTorr.js\n\n## 使用了这些服务\n - [锤子便签](https://cloud.smartisan.com/#/notes)\n - [微博图床](http://weibo.com)\n\n## 演示\n\n[http://front.dog/smartisan/](http://front.dog/smartisan/)"
  },
  {
    "path": "cron/README.md",
    "content": "# 定时任务 静态 JSON API\n\n## 抓取\n```bash\nnode cron/cron.js laoluo@t.tt woshinidie # 生成 JSON 数据，默认目录 `./json`\n```\n\n## crontab 定时抓取\n\n```bash\ncrontab -e # 编辑定时任务\n```\n在行尾添加\n\n```bash\n*/30 * * * * cd /home/git/smartisanBlog/;node cron/cron.js 账号 密码\n```\n\n## 图床\n最近图床抽风比较严重，抽风那就多重试几次 w\n"
  },
  {
    "path": "cron/cron.js",
    "content": "var \nrequest=require('request'),\nfs=require('fs');\n\n\n\n\n\n\nvar \nARG=process.argv.slice(2);\n\n// console.log(ARG);\n\nvar \nusername=ARG[0],\npassword=ARG[1];\n\n\n\nvar \n用户临时凭证文件文件路径='cron/sess.txt',\n图片缓存对应表文件路径='cron/pics.json',\n文章数据文件路径='json/post.json',\n用户数据文件路径='json/info.json',\n文件配图文件夹路径='cron/pics/';\n\n\n\nvar \n线上图片路径前缀='https://cloud.smartisan.com/apps/note/notesimage/';\n\n/*\ncurl 'https://account.smartisan.com/v2/session/?m=post' \\\n\t-H 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36' \\\n\t-H 'Content-Type: application/x-www-form-urlencoded;charset=UTF-8' \\\n\t-H 'Referer: https://account.smartisan.com/' \\\n\t--data 'username=itorrrrrr@me.com&password=wsph123&extended_login=1' \\\n\t-i \\\n\t--compressed\n*/\nvar \nSESS;\n\n\n\n\n\n\n\nif(fs.existsSync(用户临时凭证文件文件路径)){\n\tSESS=fs.readFileSync(用户临时凭证文件文件路径);\n}\n\nvar \nPICS={};\n\n\n\nif(fs.existsSync(图片缓存对应表文件路径)){\n\tvar \n\t_pics=fs.readFileSync(图片缓存对应表文件路径);\n\n\ttry{\n\t\t_pics=JSON.parse(_pics);\n\n\t\tif(_pics){\n\t\t\tPICS=_pics;\n\t\t}\n\t}catch(e){\n\n\t}\n}\n\n\nif(!fs.existsSync(文件配图文件夹路径)){\n\tfs.mkdirSync(文件配图文件夹路径);\n}\n\n\nvar \n按顺序执行=function(items,step,end){\n\n\tvar \n\tnext=function(){\n\t\titem=items.shift();\n\t\tif(!item){\n\t\t\tif(end)\n\t\t\t\tend();\n\t\t\t\n\t\t\treturn;\n\t\t}\n\n\t\tstep(item,next);\n\t};\n\n\tnext();\n},\n上传图片到微博=function(file,返回图片唯一值){\n\trequest.post({\n\t\turl:'http://x.mouto.org/wb/x.php?up',\n\t\tformData:{\n\t\t\tfile:fs.createReadStream(file)\n\t\t},\n\t},function(e,res,body){\n\n \t\tvar \n \t\tpid=body.match(/\\w{16,32}/i);\n\n \t\tpid=''+pid;\n\n \t\tif(e || body.match(/error|file_/) || !pid){\n \t\t\tconsole.log(/上传失败/,body);\n\n \t\t\treturn 返回图片唯一值();\n \t\t}\n\n\n\t\tconsole.log(/上传完成一张图/,file,pid);\n\n\t\t返回图片唯一值(pid);\n\t});\n},\n下载图片=function(url,path,返回图片路径){\n\n\tif(fs.existsSync(path)){\n\t\tconsole.log(/文件已存在/,path);\n\t\treturn 返回图片路径(path);\n\t}\n\n\trequest(url,{\n\t\theaders:{\n\t\t\t'User-Agent':'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36',\n\t\t\t'Accept': 'image/webp,image/*,*/*;q=0.8',\n\t\t\t'Referer': 'https://cloud.smartisan.com/apps/note/',\n\t\t\t'Cookie': 'SCA_SESS='+SESS+'; SCA_LOGIN=1'\n\t\t}\n\t},function(err,res,body){\n\t\tif(err){\n\t\t\tconsole.log(/图片下载失败。/,err);\n\t\t\treturn func();\n\t\t}\n\n\t\tconsole.log(/图片下载完成/,path);\n\n\t\t\n\t\t返回图片路径(path);\n\n\t}).pipe(fs.createWriteStream(path));\t\n},\n登录=function(返回登录凭证){\n\trequest.post('https://account.smartisan.com/v2/session/?m=post',{\n\t\theaders:{\n\t\t\t'User-Agent':'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36',\n\t\t\t'Accept-Language': 'zh-CN,zh;q=0.8,en;q=0.6,ja;q=0.4',\n\t\t\t'Accept-Encoding': 'gzip, deflate, br',\n\t\t\t'Referer': 'https://account.smartisan.com/',\n\t\t},\n\t\tform:{\n\t\t\tusername:username,\n\t\t\tpassword:password,\n\t\t\textended_login:'1'\n\t\t}\n\t},function(err,res,body){\n\n\t\tif(err){\n\t\t\treturn console.log(/登录失败/);\n\t\t}\n\n\n\t\tvar \n\t\tsess=res.headers['set-cookie'];\n\n\t\tif(!sess){\n\t\t\treturn console.log(/获取 SESS 失败/);\n\t\t}\n\n\t\tif(!(sess=sess.join('').match(/SCA_SESS=([\\w-_]+)/))){\n\t\t\treturn console.log(/获取 SESS 失败/);\n\t\t}\n\n\t\tSESS=sess[1];\n\n\n\t\tfs.writeFileSync(用户临时凭证文件文件路径,SESS,{encoding:'utf8'});\n\t\tconsole.log(/用户临时凭证保存成功/,SESS);\n\t\t返回登录凭证(SESS);\n\n\t});\n},获取用户数据=function(返回用户数据){\n\n\t/*\n\n\t\tcurl 'https://account.smartisan.com/v2/w/?m=get' \\\n\t\t\t-X POST \\\n\t\t\t-H 'Accept-Encoding: gzip, deflate, br' \\\n\t\t\t-H 'Accept-Language: zh-CN,zh;q=0.8,en;q=0.6,ja;q=0.4' \\\n\t\t\t-H 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36' \\\n\t\t\t-H 'Content-Type: application/json;charset=utf-8' \\\n\t\t\t-H 'Accept: application/json, text/plain, *\\/*' \\\n\t\t\t-H 'Referer: https://account.smartisan.com/' \\\n\t\t\t-H 'Cookie: SCA_SESS=qTI5XqrrmPHp12YeAHj3VqCD5Evm_jqr; SCA_LOGIN=1' \\\n\t\t\t-i \n\t\t\t--compressed\n\n\t*/\n\tif(!SESS)\n\t\treturn 登录(function(){\n\t\t\t获取用户数据(返回用户数据);\n\t\t});\n\n\n\trequest.post('https://account.smartisan.com/v2/w/?m=get',{\n\t\theaders:{\n\t\t\t'User-Agent':'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36',\n\t\t\t'Content-Type': 'application/json;charset=utf-8,',\n\t\t\t'Referer': 'https://account.smartisan.com/',\n\t\t\t'Cookie': 'SCA_SESS='+SESS+'; SCA_LOGIN=1'\n\t\t},\n\t},function(err,res,body){\n\n\t\tif(err){\n\t\t\treturn console.log(/获取用户信息失败/);\n\t\t}\n\n\t\tif(!body.match(/{\"errno\":0,/)){\n\n\t\t\treturn console.log(/获取用户信息失败，尝试重新登录/);\n\t\t\treturn 登录(function(){\n\t\t\t\t获取用户数据(func);\n\t\t\t});\n\t\t}\n\n\n\t\tvar \n\t\tr=JSON.parse(body);\n\n\t\tr=r.data;\n\n\t\tvar \n\t\t用户信息={\n\t\t\tavatar_url:r.avatar_url,\n\t\t\tnickname:r.nickname,\n\t\t\tuid:r.uid\n\t\t};\n\n\n\n\t\tfs.writeFileSync(用户数据文件路径,JSON.stringify(用户信息),{encoding:'utf8'});\n\t\tconsole.log(/用户信息保存成功/,用户信息);\n\n\t\t返回用户数据(用户信息);\n\n\t});\n},获取文章数据=function(返回文章数据){\n\n\trequest.get('https://cloud.smartisan.com/apps/note/index.php?r=v2/getList',{\n\t\theaders:{\n\t\t\t'User-Agent':'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36',\n\n\t\t\t'Referer': 'https://cloud.smartisan.com/apps/note/',\n\t\t\t'Cookie': 'SCA_SESS='+SESS+'; SCA_LOGIN=1'\n\t\t},\n\t},function(err,res,body){\n\n\t\tif(err){\n\t\t\treturn console.log(/获取用户信息失败/);\n\t\t}\n\n\n\t\t// console.log(res,body);\n\t\t// return;\n\n\t\tvar \n\t\tr=JSON.parse(body);\n\n\t\tr=r.data;\n\n\t\t// console.log(r);\n\t\tvar \n\t\t文章数据=整理文章数据(r.note,整理文件夹数据(r.folder));\n\n\t\t文章数据=JSON.stringify(文章数据);\n\n\n\t\t根据字符串取得图片下载到本地上传微博并替换(文章数据,function(文章数据){\n\n\t\t\tfs.writeFileSync(文章数据文件路径,文章数据,{encoding:'utf8'});\n\t\t\tconsole.log(/文章数据保存成功/);\n\n\t\t});\n\n\n\t\t返回文章数据();\n\t});\n},整理文件夹数据=function(_文件夹们){\n\n\n\tvar \n\t文件夹们={};\n\n\tif(!_文件夹们){\n\t\treturn 文件夹们;\n\t}\n\n\t_文件夹们.forEach(function(文件夹){\n\t\t文件夹们[文件夹.sync_id]=文件夹.title;\n\t});\n\n\n\treturn 文件夹们;\n},整理文章数据=function(文章们,文件夹们){\n\treturn 文章们.filter(function(文章){\n\t\tif(!文章.favorite){\n\t\t\treturn false;\n\t\t}\n\n\t\treturn true;\n\t}).map(function(文章){\n\n\t\treturn {\n\t\t\tpos:文章.pos,\n\t\t\ttitle:文章.title,\n\t\t\tdetail:文章.detail,\n\t\t\tmarkdown:文章.markdown,\n\t\t\tcat:文件夹们[文章.folderId]||null,\n\t\t\tmodify_time:文章.modify_time,\n\t\t};\n\t});\n\n},\n根据字符串取得图片下载到本地上传微博并替换=function(文章数据,返回文章数据){\n\tvar \n\t图片们=文章数据.match(/Notes_\\d+\\.(png|jpeg|jpg|gif)/ig);\n\n\n\t按顺序执行(图片们,function(图片,处理下一张图片){\n\n\t\tif(PICS[图片]){\n\t\t\treturn 处理下一张图片();\n\t\t}\n\n\t\t 下载图片(线上图片路径前缀+图片,文件配图文件夹路径+图片,function(path){\n\t\t \t if(!path){\n\t\t \t \treturn 处理下一张图片();\n\t\t \t }\n\n\t\t \t上传图片到微博(path,function(pid){\n\n\t\t \t\t\n\t\t \t\tif(!pid)\n\t\t \t\t\treturn 处理下一张图片();\n\t\t \t\t\n\n\n\t\t \t\t存储到图片对应表(图片,pid);\n\n\t\t \t\t处理下一张图片();\n\t\t \t})\n\t\t });\n\t},function(){\n\t\tconsole.log(/图片处理结束/);\n\n\t\t文章数据=文章数据.replace(/Notes_\\d+\\.(png|jpeg|jpg|gif)/ig,function(all){\n\t\t\treturn PICS[all]||all;\n\t\t});\n\n\t\t返回文章数据(文章数据);\n\n\t});\n},\n存储到图片对应表=function(图片,pid){\n\n\tif(!图片||!pid){\n\t\treturn;\n\t}\n\n\tPICS[图片]=pid;\n\n\tfs.writeFileSync(图片缓存对应表文件路径,JSON.stringify(PICS),{encoding:'utf8'});\n};\n\n\n\nvar \n整理数据=function(){\n\t获取用户数据(function(){\n\t\t获取文章数据(function(){\n\t\t\tconsole.log(/全部完成！/);\n\t\t});\n\t});\n};\n\n\n\n\n\n\n整理数据();\n"
  },
  {
    "path": "json/info.json",
    "content": "{\"avatar_url\":\"https://account.smartisan.com/files/00/19/fc/ae/avatar.png\",\"nickname\":\"itorr\",\"uid\":1703086}"
  },
  {
    "path": "json/post.json",
    "content": "[{\"pos\":42,\"title\":\"#大标题\",\"detail\":\"#大标题\\n##什么是 MarkDwon\\n这就是 MarkDwon 你怎么什么都不明白\\n什么鬼什么鬼\\n##为什么你这么蠢\\nMarkDown 格式不支持？\\n\",\"markdown\":1,\"cat\":\"测试\",\"modify_time\":1476783614750},{\"pos\":5,\"title\":\"# 这个功能好强力卧槽有点牛\",\"detail\":\"# 这个功能好强力卧槽有点牛\\n\\n<image w=683 h=1100 describe=可以增加图片描述么？ name=a15b4afegw1f8wo43ktkvj211y1p4q6m>- 列表模式也是可以用的？\\n- 多行列表\\n- 好卡\\n- **粗体**\\n\\n> 引用一段文字\\n> 好卡\\n> 为什么这么卡\\n[居中是什么鬼]\\n\\n\",\"markdown\":0,\"cat\":\"测试\",\"modify_time\":1476783622899},{\"pos\":6,\"title\":\"#如何使用\",\"detail\":\"#如何使用\\n加个星标先\\n\",\"markdown\":1,\"cat\":null,\"modify_time\":1441706539185},{\"pos\":7,\"title\":\"# 锤子博客生成工具\",\"detail\":\"# 锤子博客生成工具\\n这是一个将锤子便签变为锤子博客的托管服务。\\n\\n## 这里有\\n- 前后端分离的载入方案\\n- 完善的评论系统\\n- 实时的文章同步\\n- 无需后台的维护方案\\n- MarkDown开关作为发布依据\",\"markdown\":0,\"cat\":null,\"modify_time\":1441688225000},{\"pos\":19,\"title\":\"# 夏洛特\",\"detail\":\"# 夏洛特\\n```javascript\\nalert('123131');\\nvar \\ni=4;\\nwhile(i--){\\n    console.log(i);\\n}\\n```\\n这是第一次用锤子博客写日记，感觉爽爽的！\\n前晚看了夏洛特第10话，解开了大哥哥的包袱、依靠从哥哥眼里夺来的能力穿越回过去拯救了妹妹，紧接着就是满是疑团的第十一话预告。\\n迷之新角色、OP中对应的浑身伤痕、这之后的三话到底会如何发展好期待！\",\"markdown\":1,\"cat\":null,\"modify_time\":1476423971203},{\"pos\":8,\"title\":\"# 錘子便簽的 MarkDown 工具經常卡卡的！坑坑😊\",\"detail\":\"# 錘子便簽的 MarkDown 工具經常卡卡的！坑坑😊\\n😊不知道 Emoji 文字支持的怎麼樣，小小期待一下OwQ<image w=800 h=455 describe= name=a15b4afegw1f8wo4w7yl6j20m80cnwqo><image w=800 h=527 describe= name=a15b4afegw1f8wnoxi5vnj20m80endvg><image w=852 h=1136 describe= name=a15b4afegw1f8wnovz2wij21bc1r4n2b><image w=800 h=871 describe= name=a15b4afegw1f8wo463vkzj20m80o7tms><image w=806 h=1136 describe= name=a15b4afegw1f8wnp01vj0j218s1r4q9s><image w=800 h=1019 describe= name=a15b4afegw1f8wnp3osqfj20m80sbnh4><image w=803 h=1136 describe= name=a15b4afegw1f8wnp0tab2j218m1r4wkz>傳圖要是能方便一點就好啦\\n\",\"markdown\":1,\"cat\":null,\"modify_time\":1441738568318},{\"pos\":41,\"title\":\"# 雏形基本完成\",\"detail\":\"# 雏形基本完成\\n点击星标即可发布<image w=800 h=1123 describe= name=a15b4afegw1f8wnphzivsj20m80v7npd>\\n<image w=800 h=600 describe=坑爹的前端 name=a15b4afegw1f8wnp6jvrkj20m80goaua>\\n\",\"markdown\":0,\"cat\":null,\"modify_time\":1476788999000},{\"pos\":11,\"title\":\"# 尝试写一段代码\",\"detail\":\"# 尝试写一段代码\\n\\n<image w=800 h=696 describe= name=a15b4afegw1f8wnp6tcm7j20m80jcalh>```javascript\\nMD=function(t,i,r,f,ff){\\n\\tif(!f||typeof r!='function'){\\n\\t\\tff=f;\\n\\t\\tf=r;\\n\\t\\tr=function(i){return i};\\n\\t}\\n\\tt=getM(t);\\n\\tt=Mustache.render(t,r(i));\\n\\tif(f)\\n\\t\\ttranH(t,f,ff);\\n\\treturn t;\\n},\\n```\\n为什么没法成功加星。\\n\",\"markdown\":0,\"cat\":null,\"modify_time\":1441739912117},{\"pos\":16,\"title\":\"# 情绪并不稳定，昨晚睡的好晚\",\"detail\":\"# 情绪并不稳定，昨晚睡的好晚\\n小锤子到了！好大！塑料感十足，便签里面并不知道如何开启MarkDown功能<image w=858 h=483 describe= name=a15b4afegw1f8wnp73hcij20nu0df77s><image w=858 h=613 describe= name=a15b4afegw1f8wnpcwxr9j20nu0h1dqp><image w=858 h=1525 describe= name=a15b4afegw1f8wnpbsn34j20nu16d108>\",\"markdown\":0,\"cat\":null,\"modify_time\":1441770029559},{\"pos\":20,\"title\":\"# CLANNAD 主題隨筆\",\"detail\":\"# CLANNAD 主題隨筆\\n如果第二行直接是图片，那么这个便签就坑了T_T<image w=858 h=858 describe= name=a15b4afegw1f8wo47aqigj21bo1bo795><image w=858 h=858 describe= name=a15b4afegw1f8wnpfp35fj21bo1boq83><image w=800 h=611 describe= name=a15b4afegw1f8wo48a89qj20m80gzjtr>兩張草圖<image w=800 h=449 describe= name=a15b4afegw1f8wo2nig7tj20m80chaci><image w=800 h=256 describe= name=a15b4afegw1f8wo493wmsj20m8074mxx><image w=800 h=622 describe= name=a15b4afegw1f8wo49xpo1j20m80ha76h>\\n\",\"markdown\":0,\"cat\":null,\"modify_time\":1441792746824},{\"pos\":40,\"title\":\"# 把锤子便签变成博客\",\"detail\":\"# 把锤子便签变成博客\\n## 一、在锤子便签中写文章、并添加星标<image w=750 h=1334 describe= name=a15b4afegw1f8wnph6xbij215o224aff>## 二、同步到欢喜云云端<image w=750 h=1334 describe= name=a15b4afegw1f8wo4ay7sij215o22443c>## 三、服务端抓取便签信息<image w=800 h=540 describe= name=a15b4afegw1f8wo1urwyqj20m80f07dr>## 四、发布完成 ww<image w=800 h=526 describe= name=a15b4afegw1f8wo1zrecjj20m80emn36>\",\"markdown\":1,\"cat\":null,\"modify_time\":1476791831000},{\"pos\":43,\"title\":\"# 锤子博客\",\"detail\":\"# 锤子博客\\n🔨博客，基于锤子便签的博客程序。\\n\\n## 如何写文章？\\n\\n - 在 锤子便签应用 或 网页版 中写文章\\n - 将 想要在博客展示的文章 添加 星标\\n - 同步到欢喜云云端\\n - 使用 HTTP API 或者 定时任务生成 JSON\\n - 文章上线啦！\\n\\n## 端部分说明\\n\\n\\n```bash\\nnpm i # 安装必要的 npm 包\\ngrunt # 生成前端线上版本\\n```\\n\\n`www/config.js` 配置 API 地址\\n\\n\\n\\n## HTTP 服务器形式 API \\n\\n[HTTP 服务器形式 API 说明文档](https://github.com/itorr/smartisanBlog/tree/master/t) 来自 @solarhell\\n\\n## Cron 定时任务 静态 API\\n\\n[Cron 定时任务 静态 API 说明文档](https://github.com/itorr/smartisanBlog/tree/master/cron) 来自 @wsph123\\n\\n## 使用了这些开源项目\\n - Templet.js\\n - PageDown.js\\n - Q.js\\n - Highlight.js\\n - iTorr.js\\n\\n## 使用了这些服务\\n - [锤子便签](https://cloud.smartisan.com/#/notes)\\n - [微博图床](http://weibo.com)\\n\\n## 演示\\n\\n[http://front.dog/smartisan/#/home](http://front.dog/smartisan/#/home)\",\"markdown\":0,\"cat\":null,\"modify_time\":1476791405568}]"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"smartisanBlog\",\n  \"version\": \"1.0.0\",\n  \"description\": \" 基于锤子便签的博客程序\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/itorr/smartisanBlog.git\"\n  },\n  \"keywords\": [\n    \"基于锤子便签的博客程序\"\n  ],\n  \"author\": \"itorrrrrr@me.com\",\n  \"license\": \"Apache-2.0\",\n  \"bugs\": {\n    \"url\": \"https://github.com/itorr/smartisanBlog/issues\"\n  },\n  \"homepage\": \"https://github.com/itorr/smartisanBlog\",\n  \"dependencies\": {\n    \"grunt\": \"^1.0.1\",\n    \"grunt-contrib-clean\": \"^1.0.0\",\n    \"grunt-contrib-concat\": \"^1.0.1\",\n    \"grunt-contrib-copy\": \"^1.0.0\",\n    \"grunt-contrib-cssmin\": \"^1.0.2\",\n    \"grunt-contrib-htmlmin\": \"^2.0.0\",\n    \"grunt-contrib-less\": \"^1.4.0\",\n    \"grunt-contrib-uglify\": \"^2.0.0\",\n    \"highlight.js\": \"^9.7.0\",\n    \"request\": \"^2.75.0\"\n  }\n}\n"
  },
  {
    "path": "t/.eslintrc.yml",
    "content": "extends: standard\nplugins:\n  - standard\n  - promise\n"
  },
  {
    "path": "t/.gitignore",
    "content": ".idea/\n.DS_Store\nnode_modules\naccount.json\nqiniu.js\noutput/\npics/\n"
  },
  {
    "path": "t/README",
    "content": "```bash\ncp account.json.example account.json\nmkdir pics\nmkdir output\nnpm i\nnode ./bin/www.js\n```\n\n如果要使用七牛图床:\n```bash\ncp config.js.example config.js\n```\n编辑 `routes/index.js`\n\n\n食用方法!\n\n微博图床\n\n1 http://localhost:3000/api/v1/info    // 获取信息\n2 http://localhost:3000/api/v1/post    // 获取便签\n3 http://localhost:3000/api/v1/t       // 下载便签内的所有图片\n4 http://localhost:3000/api/v1/itorr    // 上传所有图片到微博\n5 http://localhost:3000/api/v1/wb // 替换锤子图片为微博图床\n\n\n七牛图床\n\n1 http://localhost:3000/api/v1/info    // 获取信息\n2 http://localhost:3000/api/v1/post    // 获取便签\n3 http://localhost:3000/api/v1/t       // 下载便签内的所有图片\n4 http://localhost:3000/api/v1/pics    // 上传所有图片到七牛\n5 http://localhost:3000/api/v1/qiniu // 替换锤子图片为七牛图床\n\n\n\n`app.js` 内的 apiRateLimit 已经注释，需要部署可以考虑开启，防止请求过于频繁。\n\nTODO：\n缓存！\n正则替换！（目前使用sed）"
  },
  {
    "path": "t/account.json.example",
    "content": "{\n  \"username\": \"laoluo@t.tt\",\n  \"password\": \"woshinidie\",\n  \"extended_login\": \"1\"\n}"
  },
  {
    "path": "t/app.js",
    "content": "const express = require('express')\n// const path = require('path')\n// const favicon = require('serve-favicon')\nconst logger = require('morgan')\n// const cookieParser = require('cookie-parser')\nconst bodyParser = require('body-parser')\n\nconst routes = require('./routes/index')\n\nconst app = express()\nconst cors = require('cors')\n// const helmet = require('helmet')\n// const RateLimit = require('express-rate-limit')\n\napp.use(cors())\n// app.use(helmet())\n\napp.use((req, res, next) => {\n  res.contentType('application/json')\n  next()\n})\n\n\n// app.enable('trust proxy')\n// only if you're behind a reverse proxy (Heroku, Bluemix, AWS if you use an ELB, custom Nginx setup, etc)\n\n// const apiLimiter = new RateLimit({\n//   windowMs: 60 * 60 * 1000, // 60 minutes\n//   max: 5,\n//   delayMs: 0 // disabled\n// })\n// app.use('/api/v1', apiLimiter)\n\n// view engine setup\n// app.set('views', path.join(__dirname, 'views'))\n// app.set('view engine', 'ejs')\n\n// uncomment after placing your favicon in /public\n// app.use(favicon(path.join(__dirname, 'public', 'favicon.ico')))\napp.use(logger('dev'))\napp.use(bodyParser.json())\napp.use(bodyParser.urlencoded({ extended: false }))\n// app.use(cookieParser());\n// app.use(express.static(path.join(__dirname, 'static')))\n\napp.use('/api/v1', routes)\n\n// catch 404 and forward to error handler\napp.use((req, res, next) => {\n  var err = new Error('Not Found')\n  err.status = 404\n  next(err)\n})\n\n// error handlers\n\n// development error handler\n// will print stacktrace\nif (app.get('env') === 'development') {\n  app.use((err, req, res) => {\n    res.status(err.status || 500)\n    res.json({\n      message: err.message,\n      error: err\n    })\n  })\n}\n\n// production error handler\n// no stacktraces leaked to user\napp.use((err, req, res) => {\n  res.status(err.status || 500)\n  res.json({\n    message: err.message,\n    error: {}\n  })\n})\n\nmodule.exports = app\n"
  },
  {
    "path": "t/bin/www.js",
    "content": "#!/usr/bin/env node\n\n/**\n * Module dependencies.\n */\n\nvar app = require('../app')\nvar debug = require('debug')('t:server')\nvar http = require('http')\n\n/**\n * Get port from environment and store in Express.\n */\n\nvar port = normalizePort(process.env.PORT || '3000')\napp.set('port', port)\n\n/**\n * Create HTTP server.\n */\n\nvar server = http.createServer(app)\n\n/**\n * Listen on provided port, on all network interfaces.\n */\n\nserver.listen(port)\nserver.on('error', onError)\nserver.on('listening', onListening)\n\n/**\n * Normalize a port into a number, string, or false.\n */\n\nfunction normalizePort (val) {\n  var port = parseInt(val, 10)\n\n  if (isNaN(port)) {\n        // named pipe\n    return val\n  }\n\n  if (port >= 0) {\n        // port number\n    return port\n  }\n\n  return false\n}\n\n/**\n * Event listener for HTTP server \"error\" event.\n */\n\nfunction onError (error) {\n  if (error.syscall !== 'listen') {\n    throw error\n  }\n\n  var bind = typeof port === 'string'\n        ? 'Pipe ' + port\n        : 'Port ' + port\n\n    // handle specific listen errors with friendly messages\n  switch (error.code) {\n    case 'EACCES':\n      console.error(bind + ' requires elevated privileges')\n      process.exit(1)\n      break\n    case 'EADDRINUSE':\n      console.error(bind + ' is already in use')\n      process.exit(1)\n      break\n    default:\n      throw error\n  }\n}\n\n/**\n * Event listener for HTTP server \"listening\" event.\n */\n\nfunction onListening () {\n  var addr = server.address()\n  var bind = typeof addr === 'string'\n        ? 'pipe ' + addr\n        : 'port ' + addr.port\n  debug('Listening on ' + bind)\n}\n"
  },
  {
    "path": "t/error_code.json",
    "content": "{\n  \"0\": \"OK\",\n  \"1\": \"SYSTEM_MAINTENANCE\",\n  \"2\": \"LOGIC_ERROR\",\n  \"3\": \"FS_READ_ERROR\",\n  \"4\": \"FS_WRITE_ERROR\",\n  \"5\": \"DB_CONNECT_ERROR\",\n  \"6\": \"DB_QUERY_ERROR\",\n  \"7\": \"CACHE_CONNECT_ERROR\",\n  \"8\": \"CACHE_QUERY_ERROR\",\n  \"1002\": \"PARAMETER_ERROR\",\n  \"1601\": \"ILLEGAL_TICKET\",\n  \"1602\": \"INVALID_TICKET\",\n  \"1101\": \"ILLEGAL_UID\",\n  \"1102\": \"ILLEGAL_PASSWORD\",\n  \"1103\": \"ILLEGAL_AVATAR\",\n  \"1104\": \"ILLEGAL_SECQUES\",\n  \"1105\": \"ILLEGAL_SECANS\",\n  \"1106\": \"INVALID_UID\",\n  \"1107\": \"INVALID_PASSWORD\",\n  \"1108\": \"INVALID_SECANS\",\n  \"1109\": \"ALIAS_REQUIRED\",\n  \"1110\": \"PASSWORD_REQUIRED\",\n  \"1201\": \"ILLEGAL_ALIAS\",\n  \"1202\": \"INVALID_ALIAS\",\n  \"1203\": \"REGISTERED_ALIAS\",\n  \"1204\": \"ILLEGAL_CELLPHONE\",\n  \"1205\": \"INVALID_CELLPHONE\",\n  \"1206\": \"REGISTERED_CELLPHONE\",\n  \"1207\": \"ILLEGAL_EMAIL\",\n  \"1208\": \"INVALID_EMAIL\",\n  \"1209\": \"REGISTERED_EMAIL\",\n  \"1210\": \"INVALID_NICKNAME\",\n  \"1211\": \"UNREGISTERED_NICKNAME\",\n  \"1212\": \"REGISTERED_NICKNAME\",\n  \"1213\": \"ILLEGAL_NICKNAME\",\n  \"1301\": \"ILLEGAL_VCODE\",\n  \"1302\": \"INVALID_VCODE\",\n  \"1304\": \"VCODE_TOO_OFTEN\",\n  \"1502\": \"CAPTCHA_REQUIRED\",\n  \"1401\": \"ILLEGAL_TOKEN\",\n  \"1402\": \"INVALID_TOKEN\",\n  \"1701\": \"UNAUTHORIZED\",\n  \"1303\": \"REFRECH_VCODE\",\n  \"1501\": \"FAILED_LOGIN_LIMIT\"\n}"
  },
  {
    "path": "t/package.json",
    "content": "{\n  \"name\": \"t\",\n  \"version\": \"1.0.0\",\n  \"scripts\": {\n    \"start\": \"node ./bin/www\"\n  },\n  \"license\": \"MIT\",\n  \"dependencies\": {\n    \"body-parser\": \"^1.15.2\",\n    \"cors\": \"^2.8.1\",\n    \"eventproxy\": \"^0.3.5\",\n    \"express\": \"^4.14.0\",\n    \"moment\": \"^2.15.1\",\n    \"morgan\": \"^1.7.0\",\n    \"qiniu\": \"^6.1.13\",\n    \"shelljs\": \"^0.7.4\",\n    \"superagent\": \"^2.3.0\"\n  },\n  \"devDependencies\": {\n    \"eslint\": \"^3.8.1\",\n    \"eslint-config-standard\": \"^6.2.0\",\n    \"eslint-plugin-promise\": \"^3.3.0\",\n    \"eslint-plugin-standard\": \"^2.0.1\"\n  }\n}\n"
  },
  {
    "path": "t/qiniu.js.example",
    "content": "module.exports = {\n  'ACCESS_KEY': '你的ACCESS_KEY',\n  'SECRET_KEY': '你的SECRET_KEY',\n  'Bucket_Name': '你的Bucket_Name',\n  'Domain': '你的域名 http://a.com/ 注意带上结尾的slash'\n}\n"
  },
  {
    "path": "t/routes/index.js",
    "content": "const fs = require('fs')\nconst express = require('express')\nconst router = express.Router()\nconst superagent = require('superagent')\nconst Eventproxy = require('eventproxy')\nconst moment = require('moment')\nrequire('shelljs/global')\n\n// 七牛相关逻辑，使用微博图床请注释\n// const qiniu = require('qiniu')\n// const config = require('../qiniu')\n// qiniu.conf.ACCESS_KEY = config.ACCESS_KEY\n// qiniu.conf.SECRET_KEY = config.SECRET_KEY\n\nconst account = require('../account.json')\n\nconst url = {\n  getCookie: 'https://account.smartisan.com/v2/session/?m=post',\n  getProfile: 'https://cloud.smartisan.com/index.php?r=account%2Flogin',\n  getNote: 'https://cloud.smartisan.com/apps/note/index.php?r=v2%2FgetList',\n  getImage: 'https://cloud.smartisan.com/notesimage/',\n  itorr: 'http://x.mouto.org/wb/x.php?up'\n}\n\nconst header = {\n  'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.59 Safari/537.36',\n  'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'\n}\n\nlet ep = new Eventproxy()\n\nvar ticket = {\n  value: null,\n  expires: null,\n  _outOfDate: function () {\n    return this.expires < new Date()\n  },\n  _init: function () {\n    var that = this\n    superagent\n            .post(url.getCookie)\n            .set(header)\n            .set('Referer', 'https://account.smartisan.com/')\n            .send(account)\n            .redirects(0)\n            .end((err, response) => {\n              if (err || !response.ok) {\n                console.log('出错了!')\n              } else {\n                console.log('成功获取了 uid: ' + JSON.stringify(response.body))\n                console.log(response.headers['set-cookie'])\n\n                that.value = response.headers['set-cookie']\n                    .join(',').match(/SCA_SESS=([\\w\\-]{16,64})/i)[1]\n                moment.locale('zh-cn')\n                const time = moment()\n                const expires = time.add(7, 'days')\n                that.expires = expires.format('YYYY-MM-DD HH:mm:ss')\n\n                console.log('成功获取ticket: ' + that.value)\n                console.log('将于 ' + that.expires + ' 过期')\n\n                ep.emit('got_ticket', that.value)\n              }\n            })\n  }\n}\n\nlet execute = (method, res) => {\n  if (ticket._outOfDate()) {\n    console.log('ticket 过期了!')\n    ticket._init()\n    ep.on('got_ticket', (_ticket) => {\n      method(_ticket, res)\n    })\n  } else {\n    method(ticket.value, res)\n  }\n}\n\nconst getProfile = (ticket, res) => {\n  superagent\n        .get(url.getProfile)\n        .set(header)\n        .set('Referer', 'https://cloud.smartisan.com/')\n        .set('Cookie', 'SCA_SESS=' + ticket + '-a; SCA_LOGIN=1')\n        .end((err, response) => {\n          if (err || !response.ok) {\n            console.log('出错了')\n          } else {\n            console.log('成功获取个人信息: ' + JSON.stringify(response.body))\n            const payload = {\n              'uid': response.body['data']['uid'],\n              'nickname': response.body['data']['nickname'],\n              'avatar_url': response.body['data']['avatar_url']\n            }\n            fs.writeFileSync('./output/info.json', JSON.stringify(payload, null, 2), 'utf-8')\n            res.send(JSON.stringify(payload))\n          }\n        })\n}\n\nconst getNote = (ticket, res) => {\n  superagent\n        .get(url.getNote)\n        .set(header)\n        .set('Referer', 'https://cloud.smartisan.com/apps/note/')\n        .set('Cookie', 'SCA_SESS=' + ticket + '-a; SCA_LOGIN=1')\n        .end((err, response) => {\n          if (err || !response.ok) {\n            console.log('出错了')\n          } else {\n            const length = JSON.stringify(response.body['data']['note'].length)\n            console.log('成功获取' + length + '条便签:\\r')\n            console.log(JSON.stringify(response.body))\n            const payload = []\n            for (let offset = 0; offset < length; offset++) {\n              if (JSON.stringify(response.body['data']['note'][offset]['favorite']) === '1') {\n                payload.push(response.body['data']['note'][offset])\n              }\n            }\n            console.log('成功输出' + payload.length + '条便签:\\r')\n            console.log('输出是' + JSON.stringify(payload))\n            fs.writeFileSync('./output/post.json', JSON.stringify(payload, null, 2), 'utf-8')\n            res.send(payload)\n          }\n        })\n}\n\nlet downCount = 0\nconst downStatus = (totalCount, current) => {\n  ++downCount\n  console.log(current + '下载完成!')\n  console.log('历史的进程: ' + downCount + '/' + totalCount)\n  return totalCount === downCount\n}\n\nconst getImage = (ticket, res) => {\n  downCount = 0\n  const post = fs.readFileSync('./output/post.json', 'utf-8')\n  const 图片们 = post.match(/Notes_\\w+\\.(png|jpeg|jpg|gif)/ig)\n  console.log(图片们)\n  const 锤子数组 = []\n  for (let offset = 0; offset < 图片们.length; offset++) {\n    锤子数组.push(url.getImage + 图片们[offset])\n  }\n  console.log(锤子数组)\n  fs.writeFileSync('./output/t.json', JSON.stringify(锤子数组, null, 2), 'utf-8')\n  for (let offset = 0; offset < 锤子数组.length; offset++) {\n    console.log('我是第' + offset + '个' + 锤子数组[offset])\n    console.log('我是第' + offset + '个' + 图片们[offset])\n\n    superagent\n        .get(锤子数组[offset])\n        .set(header)\n        .set('Referer', 'https://cloud.smartisan.com/apps/note/')\n        .set('Cookie', 'SCA_SESS=' + ticket + '-a; SCA_LOGIN=1')\n        .end((err, response) => {\n          if (err || !response.ok) {\n            console.log('出错了!')\n          } else {\n            fs.writeFileSync('./pics/' + 图片们[offset], response.body)\n            if (downStatus(图片们.length, 图片们[offset])) {\n              res.send('所有图片下载完成!\\r\\n' + 图片们)\n            }\n            console.log(response.body)\n          }\n        })\n  }\n}\n\nrouter.get('/info', (req, res) => {\n  execute(getProfile, res)\n})\n\nrouter.get('/post', (req, res) => {\n  execute(getNote, res)\n})\n\nrouter.get('/t', (req, res) => {\n  execute(getImage, res)\n})\n\n// 上传到微博图床\nrouter.get('/itorr', (req, res) => {\n  const post = fs.readFileSync('./output/post.json', 'utf-8')\n  const 图片们 = post.match(/Notes_\\w+\\.(png|jpeg|jpg|gif)/ig)\n  const payload = []\n  const ep = new Eventproxy()\n  ep.after('upload_wb', 图片们.length, (payload) => {\n    res.send('跟偷偷肉交易完毕!\\r\\n' + JSON.stringify(payload))\n  })\n\n  for (let offset = 0; offset < 图片们.length; offset++) {\n    let file = fs.readFileSync('./pics/' + 图片们[offset])\n    superagent\n        .post(url.itorr)\n        .set('User-Agent', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.59 Safari/537.36')\n        .set('Content-Type', 'multipart/form-data')\n        .attach('file', file, './pics/' + 图片们[offset])\n        .end((err, response) => {\n          if (err || !response.ok) {\n            console.log('出错了!')\n          } else {\n            console.log('第' + (offset + 1) + '张图片' + 图片们[offset] + '上传成功! pid 是:' + response.body.pid)\n            console.log('一共有' + 图片们.length + '张图片')\n\n            const a = {}\n            const key = 图片们[offset]\n            const value = response.body.pid\n            a[key] = value\n            payload.push(a)\n            console.log(payload)\n            fs.writeFileSync('./output/pics.json', JSON.stringify(payload, null, 2), 'utf-8')\n            ep.emit('upload_wb', [payload])\n          }\n        })\n  }\n})\n\n// 替换为微博图片链接\nrouter.get('/wb', (req, res) => {\n  const itorr = JSON.parse(fs.readFileSync('./output/pics.json', 'utf-8'))\n  const tobeReplaced = fs.readFileSync('./output/post.json', 'utf-8').match((/Notes_\\w+\\.(png|jpeg|jpg|gif)/ig))\n  for (let offset = 0; offset < tobeReplaced.length; offset++) {\n    console.log(tobeReplaced[offset])\n    const searchPattern = new RegExp(tobeReplaced[offset])\n    console.log(searchPattern)\n    const wb = itorr[offset][tobeReplaced[offset]]\n    sed('-i', searchPattern, wb, './output/post.json')\n  }\n  res.send('替换完成!')\n})\n\n// 上传到七牛\n// router.get('/pics', (req, res) => {\n//   const post = fs.readFileSync('./output/post.json', 'utf-8')\n//   const 图片们 = post.match(/Notes_\\w+\\.(png|jpeg|jpg|gif)/ig)\n//   const ep = new Eventproxy()\n//   ep.after('upload_qiniu', 图片们.length, () => {\n//     res.send('上传到七牛完毕!\\r\\n' + '请替换post.json中的地址')\n//   })\n\n//   for (let offset = 0; offset < 图片们.length; offset++) {\n//     const bucket = config.Bucket_Name\n\n//     const uptoken = (bucket, key) => {\n//       let putPolicy = new qiniu.rs.PutPolicy(bucket + ':' + key)\n//       return putPolicy.token()\n//     }\n\n//     const uploadToQiniu = (uptoken, key, localFile) => {\n//       let extra = new qiniu.io.PutExtra()\n//       qiniu.io.putFile(uptoken, key, localFile, extra, (err, response) => {\n//         if (!err) {\n//           console.log(response.key + '上传成功!')\n//         } else {\n//           console.log(err)\n//         }\n//       })\n//     }\n//     let key = 图片们[offset]\n//     let filePath = './pics/' + key\n//     let token = uptoken(bucket, key)\n//     uploadToQiniu(token, key, filePath)\n//     ep.emit('upload_qiniu')\n//   }\n// })\n\n// 替换为七牛图片链接\n// router.get('/qiniu', (req, res) => {\n//   const tobeReplaced = fs.readFileSync('./output/post.json', 'utf-8').match((/Notes_\\w+\\.(png|jpeg|jpg|gif)/ig))\n//   for (let offset = 0; offset < tobeReplaced.length; offset++) {\n//     console.log(tobeReplaced[offset])\n//     const searchPattern = new RegExp(tobeReplaced[offset])\n//     console.log(searchPattern)\n//     const qiniu = config.Domain + tobeReplaced[offset]\n//     sed('-i', searchPattern, qiniu, './output/post.json')\n//   }\n//   res.send('替换完成!')\n// })\n\nmodule.exports = router\n"
  },
  {
    "path": "www/config.js",
    "content": "var \napiPath;\n\napiPath='http://localhost:3000/api/v1/{key}'; /* 默认 API 形式服务器地址 */\n\napiPath='../json/{key}.json'; /* 本地测试用静态 JSON */"
  },
  {
    "path": "www/dest.html",
    "content": "<!DOCTYPE html>\n<meta charset=\"UTF-8\">\n<title>锤子博客</title>\n<meta name=\"viewport\" content=\"user-scalable=no,width=device-width\">\n\n<link rel=\"stylesheet\" href=\"static/css/index.css\">\n\n<div class=\"side\">\n\t<header>\n\t\t<h1><a href=\"#/home\">锤子博客</a></h1>\n\t</header>\n\t<div class=\"posts\"></div>\n\t<footer>\n\t\t<p>🔨博客，基于锤子便签的博客程序。</p>\n\t</footer>\n</div>\n<div class=\"article-box\"></div>\n\n<script>\nsuffix='suffix';\n\n!function(url,Stor,D,W){\n    var \n    loadScript=function(url){\n        var \n        script=D.createElement('script');\n        script.setAttribute('src',url);\n        D.body.appendChild(script);\n    },\n    evalScript=function(code){\n        setTimeout(function(){\n            W.eval(code);\n        },1);\n    };\n\n\n    if(Stor){\n        if(\n            Stor.build\n            &&\n            Stor.suffix==suffix\n        ){\n            evalScript(Stor.build);\n        }else{\n            var \n            x=new XMLHttpRequest();\n            x.open('GET',url,1);\n            x.onload=function(){\n                var \n                r=x.responseText;\n\n                if(!r || !r.match(/^var/)){\n                    return loadScript(url);\n                }\n                \n                Stor.build=r;\n\n                evalScript(Stor.build);\n\n                Stor.suffix=suffix;\n            }\n            x.send();\n        }\n    }else{\n        loadScript(url);\n    }\n\n}('static/js/build.js?_r='+suffix,this.localStorage,document,this);\n</script>"
  },
  {
    "path": "www/index.html",
    "content": "<!DOCTYPE html>\n<meta charset=\"UTF-8\">\n<title>锤子博客</title>\n<meta name=\"viewport\" content=\"user-scalable=no,width=device-width\">\n\n\n<link rel=\"stylesheet/less\" href=\"static/less/i.less\">\n<link rel=\"stylesheet\" href=\"static/highlight/styles/monokai-sublime.css\">\n<script>\nfor(var key in localStorage){\n\tif(key.match(/^http/))\n\t\tlocalStorage.removeItem(key)\n}\n</script>\n<script src=\"static/js/less.js\"></script>\n\n\n<div class=\"side\">\n\t<header>\n\t\t<h1><a href=\"#/home\">锤子博客</a></h1>\n\t</header>\n\t<div class=\"posts\"></div>\n\t<footer>\n\t\t<p>🔨博客，基于锤子便签的博客程序。</p>\n\t</footer>\n</div>\n<div class=\"article-box\"></div>\n<script src=\"static/js/itorr2.js\"></script>\n<script src=\"static/js/q.js\"></script>\n<script src=\"static/js/templet.js\"></script>\n<script src=\"static/js/获取模板-开发版.js\"></script>\n<script src=\"static/js/pagedown.converter.js\"></script>\n<script src=\"static/highlight/highlight.pack.js\"></script>\n<script src=\"config.js\"></script>\n<script src=\"static/js/controller.js\"></script>\n"
  },
  {
    "path": "www/static/highlight/CHANGES.md",
    "content": "## Version 9.7.0\n\nA comprehensive bugfix release. This is one of the best things about\nhighlight.js: even boring things keep getting better (even if slow).\n\n- VHDL updated with PSL keywords and uses more consistent styling.\n- Nested C-style comments no longer break highlighting in many languages.\n- JavaScript updated with `=>` functions, highlighted object attributes and\n  parsing within template string substitution blocks (`${...}`).\n- Fixed another corner case with self-closing `<tag/>` in JSX.\n- Added `HEALTHCHECK` directive in Docker.\n- Delphi updated with new Free Pascal keywords.\n- Fixed digit separator parsing in C++.\n- C# updated with new keywords and fixed to allow multiple identifiers within\n  generics `<...>`.\n- Fixed another slow regex in Less.\n\n\n## Version 9.6.0\n\nNew languages:\n\n- *ABNF* and *EBNF* by [Alex McKibben][]\n- *Awk* by [Matthew Daly][]\n- *SubUnit* by [Sergey Bronnikov][]\n\nNew styles:\n\n- *Atom One* in both Dark and Light variants  by [Daniel Gamage][]\n\nPlus, a few smaller updates for *Lasso*, *Elixir*, *C++* and *SQL*.\n\n[Alex McKibben]: https://github.com/mckibbenta\n[Daniel Gamage]: https://github.com/danielgamage\n[Matthew Daly]: https://github.com/matthewbdaly\n[Sergey Bronnikov]: https://github.com/ligurio\n\n\n## Version 9.5.0\n\nNew languages:\n\n- *Excel* by [Victor Zhou][]\n- *Linden Scripting Language* by [Builder's Brewery][]\n- *TAP* (Test Anything Protocol) by [Sergey Bronnikov][]\n- *Pony* by [Joe Eli McIlvain][]\n- *Coq* by [Stephan Boyer][]\n- *dsconfig* and *LDIF* by [Jacob Childress][]\n\nNew styles:\n\n- *Ocean Dark* by [Gavin Siu][]\n\nNotable changes:\n\n- [Minh Nguyễn][] added more built-ins to Objective C.\n- [Jeremy Hull][] fixed corner cases in C++ preprocessor directives and Diff\n  comments.\n- [Victor Zhou][] added support for digit separators in C++ numbers.\n\n[Gavin Siu]: https://github.com/gavsiu\n[Builder's Brewery]: https://github.com/buildersbrewery\n[Victor Zhou]: https://github.com/OiCMudkips\n[Sergey Bronnikov]: https://github.com/ligurio\n[Joe Eli McIlvain]: https://github.com/jemc\n[Stephan Boyer]: https://github.com/boyers\n[Jacob Childress]: https://github.com/braveulysses\n[Minh Nguyễn]: https://github.com/1ec5\n[Jeremy Hull]: https://github.com/sourrust\n\n\n## Version 9.4.0\n\nNew languages:\n\n- *PureBASIC* by [Tristano Ajmone][]\n- *BNF* by [Oleg Efimov][]\n- *Ada* by [Lars Schulna][]\n\nNew styles:\n\n- *PureBASIC* by [Tristano Ajmone][]\n\nImprovements to existing languages and styles:\n\n- We now highlight function declarations in Go.\n- [Taisuke Fujimoto][] contributed very convoluted rules for raw and\n  interpolated strings in C#.\n- [Boone Severson][] updated Verilog to comply with IEEE 1800-2012\n  SystemVerilog.\n- [Victor Zhou][] improved rules for comments and strings in PowerShell files.\n- [Janis Voigtländer][] updated the definition of Elm to version 0.17 of the\n  languages. Elm is now featured on the front page of <https://highlightjs.org>.\n- Special variable `$this` is highlighted as a keyword in PHP.\n- `usize` and `isize` are now highlighted in Rust.\n- Fixed labels and directives in x86 assembler.\n\n[Tristano Ajmone]: https://github.com/tajmone\n[Taisuke Fujimoto]: https://github.com/temp-impl\n[Oleg Efimov]: https://github.com/Sannis\n[Boone Severson]: https://github.com/BooneJS\n[Victor Zhou]: https://github.com/OiCMudkips\n[Lars Schulna]: https://github.com/captain-hanuta\n[Janis Voigtländer]: https://github.com/jvoigtlaender\n\n\n## Version 9.3.0\n\nNew languages:\n\n- *Tagger Script* by [Philipp Wolfer][]\n- *MoonScript* by [Billy Quith][]\n\nNew styles:\n\n- *xt256* by [Herbert Shin][]\n\nImprovements to existing languages and styles:\n\n- More robust handling of unquoted HTML tag attributes\n- Relevance tuning for QML which was unnecessary eager at seizing other\n  languages' code\n- Improve GAMS language parsing\n- Fixed a bunch of bugs around selectors in Less\n- Kotlin's got a new definition for annotations, updated keywords and other\n  minor improvements\n- Added `move` to Rust keywords\n- Markdown now recognizes \\`\\`\\`-fenced code blocks\n- Improved detection of function declarations in C++ and C#\n\n[Philipp Wolfer]: https://github.com/phw\n[Billy Quith]: https://github.com/billyquith\n[Herbert Shin]: https://github.com/initbar\n\n\n## Version 9.2.0\n\nNew languages:\n\n- *QML* by [John Foster][]\n- *HTMLBars* by [Michael Johnston][]\n- *CSP* by [Taras][]\n- *Maxima* by [Robert Dodier][]\n\nNew styles:\n\n- *Gruvbox* by [Qeole][]\n- *Dracula* by [Denis Ciccale][]\n\nImprovements to existing languages and styles:\n\n- We now correctly handle JSX with arbitrary node tree depth.\n- Argument list for `(lambda)` in Scheme is no longer highlighted as a function\n  call.\n- Stylus syntax doesn't break on valid CSS.\n- More correct handling of comments and strings and other improvements for\n  VimScript.\n- More subtle work on the default style.\n- We now use anonymous modules for AMD.\n- `macro_rules!` is now recognized as a built-in in Rust.\n\n[John Foster]: https://github.com/jf990\n[Qeole]: https://github.com/Qeole\n[Denis Ciccale]: https://github.com/dciccale\n[Michael Johnston]: https://github.com/lastobelus\n[Taras]: https://github.com/oxdef\n[Robert Dodier]: https://github.com/robert-dodier\n\n\n## Version 9.1.0\n\nNew languages:\n\n- *Stan* by [Brendan Rocks][]\n- *BASIC* by [Raphaël Assénat][]\n- *GAUSS* by [Matt Evans][]\n- *DTS* by [Martin Braun][]\n- *Arduino* by [Stefania Mellai][]\n\nNew Styles:\n\n- *Arduino Light* by [Stefania Mellai][]\n\nImprovements to existing languages and styles:\n\n- Handle return type annotations in Python\n- Allow shebang headers in Javascript\n- Support strings in Rust meta\n- Recognize `struct` as a class-level definition in Rust\n- Recognize b-prefixed chars and strings in Rust\n- Better numbers handling in Verilog\n\n[Brendan Rocks]: http://brendanrocks.com\n[Raphaël Assénat]: https://github.com/raphnet\n[Matt Evans]: https://github.com/matthewevans\n[Martin Braun]: https://github.com/mbr0wn\n[Stefania Mellai]: https://github.com/smellai\n\n\n## Version 9.0.0\n\nThe new major version brings a reworked styling system. Highlight.js now defines\na limited set of highlightable classes giving a consistent result across all the\nstyles and languages. You can read a more detailed explanation and background in\nthe [tracking issue][#348] that started this long process back in May.\n\nThis change is backwards incompatible for those who uses highlight.js with a\ncustom stylesheet. The [new style guide][sg] explains how to write styles\nin this new world.\n\nBundled themes have also suffered a significant amount of improvements and may\nlook different in places, but all the things now consistent and make more sense.\nAmong others, the Default style has got a refresh and will probably be tweaked\nsome more in next releases. Please do give your feedback in our\n[issue tracker][issues].\n\nNew languages in this release:\n\n- *Caché Object Script* by [Nikita Savchenko][]\n- *YAML* by [Stefan Wienert][]\n- *MIPS Assembler* by [Nebuleon Fumika][]\n- *HSP* by [prince][]\n\nImprovements to existing languages and styles:\n\n- ECMAScript 6 modules import now do not require closing semicolon.\n- ECMAScript 6 classes constructors now highlighted.\n- Template string support for Typescript, as for ECMAScript 6.\n- Scala case classes params highlight fixed.\n- Built-in names introduced in Julia v0.4 added by [Kenta Sato][].\n- Refreshed Default style.\n\nOther notable changes:\n\n- [Web workers support][webworkers] added bu [Jan Kühle][].\n- We now have tests for compressed browser builds as well.\n- The building tool chain has been switched to node.js 4.x. and is now\n  shamelessly uses ES6 features all over the place, courtesy of [Jeremy Hull][].\n- License added to non-compressed browser build.\n\n[Jan Kühle]: https://github.com/frigus02\n[Stefan Wienert]: https://github.com/zealot128\n[Kenta Sato]: https://github.com/bicycle1885\n[Nikita Savchenko]: https://github.com/ZitRos\n[webworkers]: https://github.com/isagalaev/highlight.js#web-workers\n[Jeremy Hull]: https://github.com/sourrust\n[#348]: https://github.com/isagalaev/highlight.js/issues/348\n[sg]: http://highlightjs.readthedocs.org/en/latest/style-guide.html\n[issues]: https://github.com/isagalaev/highlight.js/issues\n[Nebuleon Fumika]: https://github.com/Nebuleon\n[prince]: https://github.com/prince-0203\n\n\n## Version 8.9.1\n\nSome last-minute changes reverted due to strange bug with minified browser build:\n\n- Scala case classes params highlight fixed\n- ECMAScript 6 modules import now do not require closing semicolon\n- ECMAScript 6 classes constructors now highlighted\n- Template string support for Typescript, as for ECMAScript 6\n- License added to not minified browser build\n\n\n## Version 8.9.0\n\nNew languages:\n\n- *crmsh* by [Kristoffer Gronlund][]\n- *SQF* by [Soren Enevoldsen][]\n\n[Kristoffer Gronlund]: https://github.com/krig\n[Soren Enevoldsen]: https://github.com/senevoldsen90\n\nNotable fixes and improvements to existing languages:\n\n- Added `abstract` and `namespace` keywords to TypeScript by [Daniel Rosenwasser][]\n- Added `label` support to Dockerfile by [Ladislav Prskavec][]\n- Crystal highlighting improved by [Tsuyusato Kitsune][]\n- Missing Swift keywords added by [Nate Cook][]\n- Improve detection of C block comments\n- ~~Scala case classes params highlight fixed~~\n- ~~ECMAScript 6 modules import now do not require closing semicolon~~\n- ~~ECMAScript 6 classes constructors now highlighted~~\n- ~~Template string support for Typescript, as for ECMAScript 6~~\n\nOther notable changes:\n\n- ~~License added to not minified browser build~~\n\n[Kristoffer Gronlund]: https://github.com/krig\n[Søren Enevoldsen]: https://github.com/senevoldsen90\n[Daniel Rosenwasser]: https://github.com/DanielRosenwasser\n[Ladislav Prskavec]: https://github.com/abtris\n[Tsuyusato Kitsune]: https://github.com/MakeNowJust\n[Nate Cook]: https://github.com/natecook1000\n\n\n## Version 8.8.0\n\nNew languages:\n\n- *Golo* by [Philippe Charrière][]\n- *GAMS* by [Stefan Bechert][]\n- *IRPF90* by [Anthony Scemama][]\n- *Access logs* by [Oleg Efimov][]\n- *Crystal* by [Tsuyusato Kitsune][]\n\nNotable fixes and improvements to existing languages:\n\n- JavaScript highlighting no longer fails with ES6 default parameters\n- Added keywords `async` and `await` to Python\n- PHP heredoc support improved\n- Allow preprocessor directives within C++ functions\n\nOther notable changes:\n\n- Change versions to X.Y.Z SemVer-compatible format\n- Added ability to build all targets at once\n\n[Philippe Charrière]: https://github.com/k33g\n[Stefan Bechert]: https://github.com/b-pos465\n[Anthony Scemama]: https://github.com/scemama\n[Oleg Efimov]: https://github.com/Sannis\n[Tsuyusato Kitsune]: https://github.com/MakeNowJust\n\n\n## Version 8.7\n\nNew languages:\n\n- *Zephir* by [Oleg Efimov][]\n- *Elm* by [Janis Voigtländer][]\n- *XQuery* by [Dirk Kirsten][]\n- *Mojolicious* by [Dotan Dimet][]\n- *AutoIt* by Manh Tuan from [J2TeaM][]\n- *Toml* (ini extension) by [Guillaume Gomez][]\n\nNew styles:\n\n- *Hopscotch* by [Jan T. Sott][]\n- *Grayscale* by [MY Sun][]\n\nNotable fixes and improvements to existing languages:\n\n- Fix encoding of images when copied over in certain builds\n- Fix incorrect highlighting of the word \"bug\" in comments\n- Treat decorators different from matrix multiplication in Python\n- Fix traits inheritance highlighting in Rust\n- Fix incorrect document\n- Oracle keywords added to SQL language definition by [Vadimtro][]\n- Postgres keywords added to SQL language definition by [Benjamin Auder][]\n- Fix registers in x86asm being highlighted as a hex number\n- Fix highlighting for numbers with a leading decimal point\n- Correctly highlight numbers and strings inside of C/C++ macros\n- C/C++ functions now support pointer, reference, and move returns\n\n[Oleg Efimov]: https://github.com/Sannis\n[Guillaume Gomez]: https://github.com/GuillaumeGomez\n[Janis Voigtländer]: https://github.com/jvoigtlaender\n[Jan T. Sott]: https://github.com/idleberg\n[Dirk Kirsten]: https://github.com/dirkk\n[MY Sun]: https://github.com/simonmysun\n[Vadimtro]: https://github.com/Vadimtro\n[Benjamin Auder]: https://github.com/ghost\n[Dotan Dimet]: https://github.com/dotandimet\n[J2TeaM]: https://github.com/J2TeaM\n\n\n## Version 8.6\n\nNew languages:\n\n- *C/AL* by [Kenneth Fuglsang][]\n- *DNS zone file* by [Tim Schumacher][]\n- *Ceylon* by [Lucas Werkmeister][]\n- *OpenSCAD* by [Dan Panzarella][]\n- *Inform7* by [Bruno Dias][]\n- *armasm* by [Dan Panzarella][]\n- *TP* by [Jay Strybis][]\n\nNew styles:\n\n- *Atelier Cave*, *Atelier Estuary*,\n  *Atelier Plateau* and *Atelier Savanna* by [Bram de Haan][]\n- *Github Gist* by [Louis Barranqueiro][]\n\nNotable fixes and improvements to existing languages:\n\n- Multi-line raw strings from C++11 are now supported\n- Fix class names with dashes in HAML\n- The `async` keyword from ES6/7 is now supported\n- TypeScript functions handle type and parameter complexity better\n- We unified phpdoc/javadoc/yardoc etc modes across all languages\n- CSS .class selectors relevance was dropped to prevent wrong language detection\n- Images is now included to CDN build\n- Release process is now automated\n\n[Bram de Haan]: https://github.com/atelierbram\n[Kenneth Fuglsang]: https://github.com/kfuglsang\n[Louis Barranqueiro]: https://github.com/LouisBarranqueiro\n[Tim Schumacher]: https://github.com/enko\n[Lucas Werkmeister]: https://github.com/lucaswerkmeister\n[Dan Panzarella]: https://github.com/pzl\n[Bruno Dias]: https://github.com/sequitur\n[Jay Strybis]: https://github.com/unreal\n\n\n## Version 8.5\n\nNew languages:\n\n- *pf.conf* by [Peter Piwowarski][]\n- *Julia* by [Kenta Sato][]\n- *Prolog* by [Raivo Laanemets][]\n- *Docker* by [Alexis Hénaut][]\n- *Fortran* by [Anthony Scemama][] and [Thomas Applencourt][]\n- *Kotlin* by [Sergey Mashkov][]\n\nNew styles:\n\n- *Agate* by [Taufik Nurrohman][]\n- *Darcula* by [JetBrains][]\n- *Atelier Sulphurpool* by [Bram de Haan][]\n- *Android Studio* by [Pedro Oliveira][]\n\nNotable fixes and improvements to existing languages:\n\n- ES6 features in JavaScript are better supported now by [Gu Yiling][].\n- Swift now recognizes body-less method definitions.\n- Single expression functions `def foo, do: ... ` now work in Elixir.\n- More uniform detection of built-in classes in Objective C.\n- Fixes for number literals and processor directives in Rust.\n- HTML `<script>` tag now allows any language, not just JavaScript.\n- Multi-line comments are supported now in MatLab.\n\n[Taufik Nurrohman]: https://github.com/tovic\n[Jet Brains]: https://www.jetbrains.com/\n[Peter Piwowarski]: https://github.com/oldlaptop\n[Kenta Sato]: https://github.com/bicycle1885\n[Bram de Haan]: https://github.com/atelierbram\n[Raivo Laanemets]: https://github.com/rla\n[Alexis Hénaut]: https://github.com/AlexisNo\n[Anthony Scemama]: https://github.com/scemama\n[Pedro Oliveira]: https://github.com/kanytu\n[Gu Yiling]: https://github.com/Justineo\n[Sergey Mashkov]: https://github.com/cy6erGn0m\n[Thomas Applencourt]: https://github.com/TApplencourt\n\n\n## Version 8.4\n\nWe've got the new [demo page][]! The obvious new feature is the new look, but\napart from that it's got smarter: by presenting languages in groups it avoids\nrunning 10000 highlighting attempts after first load which was slowing it down\nand giving bad overall impression. It is now also being generated from test\ncode snippets so the authors of new languages don't have to update both tests\nand the demo page with the same thing.\n\nOther notable changes:\n\n- The `template_comment` class is gone in favor of the more general `comment`.\n- Number parsing unified and improved across languages.\n- C++, Java and C# now use unified grammar to highlight titles in\n  function/method definitions.\n- The browser build is now usable as an AMD module, there's no separate build\n  target for that anymore.\n- OCaml has got a [comprehensive overhaul][ocaml] by [Mickaël Delahaye][].\n- Clojure's data structures and literals are now highlighted outside of lists\n  and we can now highlight Clojure's REPL sessions.\n\nNew languages:\n\n- *AspectJ* by [Hakan Özler][]\n- *STEP Part 21* by [Adam Joseph Cook][]\n- *SML* derived by [Edwin Dalorzo][] from OCaml definition\n- *Mercury* by [mucaho][]\n- *Smali* by [Dennis Titze][]\n- *Verilog* by [Jon Evans][]\n- *Stata* by [Brian Quistorff][]\n\n[Hakan Özler]: https://github.com/ozlerhakan\n[Adam Joseph Cook]: https://github.com/adamjcook\n[demo page]: https://highlightjs.org/static/demo/\n[Ivan Sagalaev]: https://github.com/isagalaev\n[Edwin Dalorzo]: https://github.com/edalorzo\n[mucaho]: https://github.com/mucaho\n[Dennis Titze]: https://github.com/titze\n[Jon Evans]: https://github.com/craftyjon\n[Brian Quistorff]: https://github.com/bquistorff\n[ocaml]: https://github.com/isagalaev/highlight.js/pull/608#issue-46190207\n[Mickaël Delahaye]: https://github.com/polazarus\n\n\n## Version 8.3\n\nWe streamlined our tool chain, it is now based entirely on node.js instead of\nbeing a mix of node.js, Python and Java. The build script options and arguments\nremained the same, and we've noted all the changes in the [documentation][b].\nApart from reducing complexity, the new build script is also faster from not\nhaving to start Java machine repeatedly. The credits for the work go to [Jeremy\nHull][].\n\nSome notable fixes:\n\n- PHP and JavaScript mixed in HTML now live happily with each other.\n- JavaScript regexes now understand ES6 flags \"u\" and \"y\".\n- `throw` keyword is no longer detected as a method name in Java.\n- Fixed parsing of numbers and symbols in Clojure thanks to [input from Ivan\n  Kleshnin][ik].\n\nNew languages in this release:\n\n- *Less* by [Max Mikhailov][]\n- *Stylus* by [Bryant Williams][]\n- *Tcl* by [Radek Liska][]\n- *Puppet* by [Jose Molina Colmenero][]\n- *Processing* by [Erik Paluka][]\n- *Twig* templates by [Luke Holder][]\n- *PowerShell* by [David Mohundro][], based on [the work of Nicholas Blumhardt][ps]\n- *XL* by [Christophe de Dinechin][]\n- *LiveScript* by [Taneli Vatanen][] and [Jen Evers-Corvina][]\n- *ERB* (Ruby in HTML) by [Lucas Mazza][]\n- *Roboconf* by [Vincent Zurczak][]\n\n[b]: http://highlightjs.readthedocs.org/en/latest/building-testing.html\n[Jeremy Hull]: https://github.com/sourrust\n[ik]: https://twitter.com/IvanKleshnin/status/514041599484231680\n[Max Mikhailov]: https://github.com/seven-phases-max\n[Bryant Williams]: https://github.com/scien\n[Radek Liska]: https://github.com/Nindaleth\n[Jose Molina Colmenero]: https://github.com/Moliholy\n[Erik Paluka]: https://github.com/paluka\n[Luke Holder]: https://github.com/lukeholder\n[David Mohundro]: https://github.com/drmohundro\n[ps]: https://github.com/OctopusDeploy/Library/blob/master/app/shared/presentation/highlighting/powershell.js\n[Christophe de Dinechin]: https://github.com/c3d\n[Taneli Vatanen]: https://github.com/Daiz-\n[Jen Evers-Corvina]: https://github.com/sevvie\n[Lucas Mazza]: https://github.com/lucasmazza\n[Vincent Zurczak]: https://github.com/vincent-zurczak\n\n\n## Version 8.2\n\nWe've finally got [real tests][test] and [continuous testing on Travis][ci]\nthanks to [Jeremy Hull][] and [Chris Eidhof][]. The tests designed to cover\neverything: language detection, correct parsing of individual language features\nand various special cases. This is a very important change that gives us\nconfidence in extending language definitions and refactoring library core.\n\nWe're going to redesign the old [demo/test suite][demo] into an interactive\ndemo web app. If you're confident front-end developer or designer and want to\nhelp us with it, drop a comment into [the issue][#542] on GitHub.\n\n[test]: https://github.com/isagalaev/highlight.js/tree/master/test\n[demo]: https://highlightjs.org/static/test.html\n[#542]: https://github.com/isagalaev/highlight.js/issues/542\n[ci]: https://travis-ci.org/isagalaev/highlight.js\n[Jeremy Hull]: https://github.com/sourrust\n[Chris Eidhof]: https://github.com/chriseidhof\n\nAs usually there's a handful of new languages in this release:\n\n- *Groovy* by [Guillaume Laforge][]\n- *Dart* by [Maxim Dikun][]\n- *Dust* by [Michael Allen][]\n- *Scheme* by [JP Verkamp][]\n- *G-Code* by [Adam Joseph Cook][]\n- *Q* from Kx Systems by [Sergey Vidyuk][]\n\n[Guillaume Laforge]: https://github.com/glaforge\n[Maxim Dikun]: https://github.com/dikmax\n[Michael Allen]: https://github.com/bfui\n[JP Verkamp]: https://github.com/jpverkamp\n[Adam Joseph Cook]: https://github.com/adamjcook\n[Sergey Vidyuk]: https://github.com/sv\n\nOther improvements:\n\n- [Erik Osheim][] heavily reworked Scala definitions making it richer.\n- [Lucas Mazza][] fixed Ruby hashes highlighting\n- Lisp variants (Lisp, Clojure and Scheme) are unified in regard to naming\n  the first symbol in parentheses: it's \"keyword\" in general case and also\n  \"built_in\" for built-in functions in Clojure and Scheme.\n\n[Erik Osheim]: https://github.com/non\n[Lucas Mazza]: https://github.com/lucasmazza\n\n\n## Version 8.1\n\nNew languages:\n\n- *Gherkin* by [Sam Pikesley][]\n- *Elixir* by [Josh Adams][]\n- *NSIS* by [Jan T. Sott][]\n- *VIM script* by [Jun Yang][]\n- *Protocol Buffers* by [Dan Tao][]\n- *Nix* by [Domen Kožar][]\n- *x86asm* by [innocenat][]\n- *Cap’n Proto* and *Thrift* by [Oleg Efimov][]\n- *Monkey* by [Arthur Bikmullin][]\n- *TypeScript* by [Panu Horsmalahti][]\n- *Nimrod* by [Flaviu Tamas][]\n- *Gradle* by [Damian Mee][]\n- *Haxe* by [Christopher Kaster][]\n- *Swift* by [Chris Eidhof][] and [Nate Cook][]\n\nNew styles:\n\n- *Kimbie*, light and dark variants by [Jan T. Sott][]\n- *Color brewer* by [Fabrício Tavares de Oliveira][]\n- *Codepen.io embed* by [Justin Perry][]\n- *Hybrid* by [Nic West][]\n\n[Sam Pikesley]: https://github.com/pikesley\n[Sindre Sorhus]: https://github.com/sindresorhus\n[Josh Adams]: https://github.com/knewter\n[Jan T. Sott]: https://github.com/idleberg\n[Jun Yang]: https://github.com/harttle\n[Dan Tao]: https://github.com/dtao\n[Domen Kožar]: https://github.com/iElectric\n[innocenat]: https://github.com/innocenat\n[Oleg Efimov]: https://github.com/Sannis\n[Arthur Bikmullin]: https://github.com/devolonter\n[Panu Horsmalahti]: https://github.com/panuhorsmalahti\n[Flaviu Tamas]: https://github.com/flaviut\n[Damian Mee]: https://github.com/chester1000\n[Christopher Kaster]: http://christopher.kaster.ws\n[Fabrício Tavares de Oliveira]: https://github.com/fabriciotav\n[Justin Perry]: https://github.com/ourmaninamsterdam\n[Nic West]: https://github.com/nicwest\n[Chris Eidhof]: https://github.com/chriseidhof\n[Nate Cook]: https://github.com/natecook1000\n\nOther improvements:\n\n- The README is heavily reworked and brought up to date by [Jeremy Hull][].\n- Added [`listLanguages()`][ll] method in the API.\n- Improved C/C++/C# detection.\n- Added a bunch of new language aliases, documented the existing ones. Thanks to\n  [Sindre Sorhus][] for background research.\n- Added phrasal English words to boost relevance in comments.\n- Many improvements to SQL definition made by [Heiko August][],\n  [Nikolay Lisienko][] and [Travis Odom][].\n- The shorter `lang-` prefix for language names in HTML classes supported\n  alongside `language-`. Thanks to [Jeff Escalante][].\n- Ruby's got support for interactive console sessions. Thanks to\n  [Pascal Hurni][].\n- Added built-in functions for R language. Thanks to [Artem A. Klevtsov][].\n- Rust's got definition for lifetime parameters and improved string syntax.\n  Thanks to [Roman Shmatov][].\n- Various improvements to Objective-C definition by [Matt Diephouse][].\n- Fixed highlighting of generics in Java.\n\n[ll]: http://highlightjs.readthedocs.org/en/latest/api.html#listlanguages\n[Sindre Sorhus]: https://github.com/sindresorhus\n[Heiko August]: https://github.com/auge8472\n[Nikolay Lisienko]: https://github.com/neor-ru\n[Travis Odom]: https://github.com/Burstaholic\n[Jeff Escalante]: https://github.com/jenius\n[Pascal Hurni]: https://github.com/phurni\n[Jiyin Yiyong]: https://github.com/jiyinyiyong\n[Artem A. Klevtsov]: https://github.com/unikum\n[Roman Shmatov]: https://github.com/shmatov\n[Jeremy Hull]: https://github.com/sourrust\n[Matt Diephouse]: https://github.com/mdiep\n\n\n## Version 8.0\n\nThis new major release is quite a big overhaul bringing both new features and\nsome backwards incompatible changes. However, chances are that the majority of\nusers won't be affected by the latter: the basic scenario described in the\nREADME is left intact.\n\nHere's what did change in an incompatible way:\n\n- We're now prefixing all classes located in [CSS classes reference][cr] with\n  `hljs-`, by default, because some class names would collide with other\n  people's stylesheets. If you were using an older version, you might still want\n  the previous behavior, but still want to upgrade. To suppress this new\n  behavior, you would initialize like so:\n\n  ```html\n  <script type=\"text/javascript\">\n    hljs.configure({classPrefix: ''});\n    hljs.initHighlightingOnLoad();\n  </script>\n  ```\n\n- `tabReplace` and `useBR` that were used in different places are also unified\n  into the global options object and are to be set using `configure(options)`.\n  This function is documented in our [API docs][]. Also note that these\n  parameters are gone from `highlightBlock` and `fixMarkup` which are now also\n  rely on `configure`.\n\n- We removed public-facing (though undocumented) object `hljs.LANGUAGES` which\n  was used to register languages with the library in favor of two new methods:\n  `registerLanguage` and `getLanguage`. Both are documented in our [API docs][].\n\n- Result returned from `highlight` and `highlightAuto` no longer contains two\n  separate attributes contributing to relevance score, `relevance` and\n  `keyword_count`. They are now unified in `relevance`.\n\nAnother technically compatible change that nonetheless might need attention:\n\n- The structure of the NPM package was refactored, so if you had installed it\n  locally, you'll have to update your paths. The usual `require('highlight.js')`\n  works as before. This is contributed by [Dmitry Smolin][].\n\nNew features:\n\n- Languages now can be recognized by multiple names like \"js\" for JavaScript or\n  \"html\" for, well, HTML (which earlier insisted on calling it \"xml\"). These\n  aliases can be specified in the class attribute of the code container in your\n  HTML as well as in various API calls. For now there are only a few very common\n  aliases but we'll expand it in the future. All of them are listed in the\n  [class reference][cr].\n\n- Language detection can now be restricted to a subset of languages relevant in\n  a given context — a web page or even a single highlighting call. This is\n  especially useful for node.js build that includes all the known languages.\n  Another example is a StackOverflow-style site where users specify languages\n  as tags rather than in the markdown-formatted code snippets. This is\n  documented in the [API reference][] (see methods `highlightAuto` and\n  `configure`).\n\n- Language definition syntax streamlined with [variants][] and\n  [beginKeywords][].\n\nNew languages and styles:\n\n- *Oxygene* by [Carlo Kok][]\n- *Mathematica* by [Daniel Kvasnička][]\n- *Autohotkey* by [Seongwon Lee][]\n- *Atelier* family of styles in 10 variants by [Bram de Haan][]\n- *Paraíso* styles by [Jan T. Sott][]\n\nMiscellaneous improvements:\n\n- Highlighting `=>` prompts in Clojure.\n- [Jeremy Hull][] fixed a lot of styles for consistency.\n- Finally, highlighting PHP and HTML [mixed in peculiar ways][php-html].\n- Objective C and C# now properly highlight titles in method definition.\n- Big overhaul of relevance counting for a number of languages. Please do report\n  bugs about mis-detection of non-trivial code snippets!\n\n[API reference]: http://highlightjs.readthedocs.org/en/latest/api.html\n\n[cr]: http://highlightjs.readthedocs.org/en/latest/css-classes-reference.html\n[api docs]: http://highlightjs.readthedocs.org/en/latest/api.html\n[variants]: https://groups.google.com/d/topic/highlightjs/VoGC9-1p5vk/discussion\n[beginKeywords]: https://github.com/isagalaev/highlight.js/commit/6c7fdea002eb3949577a85b3f7930137c7c3038d\n[php-html]: https://twitter.com/highlightjs/status/408890903017689088\n\n[Carlo Kok]: https://github.com/carlokok\n[Bram de Haan]: https://github.com/atelierbram\n[Daniel Kvasnička]: https://github.com/dkvasnicka\n[Dmitry Smolin]: https://github.com/dimsmol\n[Jeremy Hull]: https://github.com/sourrust\n[Seongwon Lee]: https://github.com/dlimpid\n[Jan T. Sott]: https://github.com/idleberg\n\n\n## Version 7.5\n\nA catch-up release dealing with some of the accumulated contributions. This one\nis probably will be the last before the 8.0 which will be slightly backwards\nincompatible regarding some advanced use-cases.\n\nOne outstanding change in this version is the addition of 6 languages to the\n[hosted script][d]: Markdown, ObjectiveC, CoffeeScript, Apache, Nginx and\nMakefile. It now weighs about 6K more but we're going to keep it under 30K.\n\nNew languages:\n\n- OCaml by [Mehdi Dogguy][mehdid] and [Nicolas Braud-Santoni][nbraud]\n- [LiveCode Server][lcs] by [Ralf Bitter][revig]\n- Scilab by [Sylvestre Ledru][sylvestre]\n- basic support for Makefile by [Ivan Sagalaev][isagalaev]\n\nImprovements:\n\n- Ruby's got support for characters like `?A`, `?1`, `?\\012` etc. and `%r{..}`\n  regexps.\n- Clojure now allows a function call in the beginning of s-expressions\n  `(($filter \"myCount\") (arr 1 2 3 4 5))`.\n- Haskell's got new keywords and now recognizes more things like pragmas,\n  preprocessors, modules, containers, FFIs etc. Thanks to [Zena Treep][treep]\n  for the implementation and to [Jeremy Hull][sourrust] for guiding it.\n- Miscellaneous fixes in PHP, Brainfuck, SCSS, Asciidoc, CMake, Python and F#.\n\n[mehdid]: https://github.com/mehdid\n[nbraud]: https://github.com/nbraud\n[revig]: https://github.com/revig\n[lcs]: http://livecode.com/developers/guides/server/\n[sylvestre]: https://github.com/sylvestre\n[isagalaev]: https://github.com/isagalaev\n[treep]: https://github.com/treep\n[sourrust]: https://github.com/sourrust\n[d]: http://highlightjs.org/download/\n\n\n## New core developers\n\nThe latest long period of almost complete inactivity in the project coincided\nwith growing interest to it led to a decision that now seems completely obvious:\nwe need more core developers.\n\nSo without further ado let me welcome to the core team two long-time\ncontributors: [Jeremy Hull][] and [Oleg\nEfimov][].\n\nHope now we'll be able to work through stuff faster!\n\nP.S. The historical commit is [here][1] for the record.\n\n[Jeremy Hull]: https://github.com/sourrust\n[Oleg Efimov]: https://github.com/sannis\n[1]: https://github.com/isagalaev/highlight.js/commit/f3056941bda56d2b72276b97bc0dd5f230f2473f\n\n\n## Version 7.4\n\nThis long overdue version is a snapshot of the current source tree with all the\nchanges that happened during the past year. Sorry for taking so long!\n\nAlong with the changes in code highlight.js has finally got its new home at\n<http://highlightjs.org/>, moving from its cradle on Software Maniacs which it\noutgrew a long time ago. Be sure to report any bugs about the site to\n<mailto:info@highlightjs.org>.\n\nOn to what's new…\n\nNew languages:\n\n- Handlebars templates by [Robin Ward][]\n- Oracle Rules Language by [Jason Jacobson][]\n- F# by [Joans Follesø][]\n- AsciiDoc and Haml by [Dan Allen][]\n- Lasso by [Eric Knibbe][]\n- SCSS by [Kurt Emch][]\n- VB.NET by [Poren Chiang][]\n- Mizar by [Kelley van Evert][]\n\n[Robin Ward]: https://github.com/eviltrout\n[Jason Jacobson]: https://github.com/jayce7\n[Joans Follesø]: https://github.com/follesoe\n[Dan Allen]: https://github.com/mojavelinux\n[Eric Knibbe]: https://github.com/EricFromCanada\n[Kurt Emch]: https://github.com/kemch\n[Poren Chiang]: https://github.com/rschiang\n[Kelley van Evert]: https://github.com/kelleyvanevert\n\nNew style themes:\n\n- Monokai Sublime by [noformnocontent][]\n- Railscasts by [Damien White][]\n- Obsidian by [Alexander Marenin][]\n- Docco by [Simon Madine][]\n- Mono Blue by [Ivan Sagalaev][] (uses a single color hue for everything)\n- Foundation by [Dan Allen][]\n\n[noformnocontent]: http://nn.mit-license.org/\n[Damien White]: https://github.com/visoft\n[Alexander Marenin]: https://github.com/ioncreature\n[Simon Madine]: https://github.com/thingsinjars\n[Ivan Sagalaev]: https://github.com/isagalaev\n\nOther notable changes:\n\n- Corrected many corner cases in CSS.\n- Dropped Python 2 version of the build tool.\n- Implemented building for the AMD format.\n- Updated Rust keywords (thanks to [Dmitry Medvinsky][]).\n- Literal regexes can now be used in language definitions.\n- CoffeeScript highlighting is now significantly more robust and rich due to\n  input from [Cédric Néhémie][].\n\n[Dmitry Medvinsky]: https://github.com/dmedvinsky\n[Cédric Néhémie]: https://github.com/abe33\n\n\n## Version 7.3\n\n- Since this version highlight.js no longer works in IE version 8 and older.\n  It's made it possible to reduce the library size and dramatically improve code\n  readability and made it easier to maintain. Time to go forward!\n\n- New languages: AppleScript (by [Nathan Grigg][ng] and [Dr. Drang][dd]) and\n  Brainfuck (by [Evgeny Stepanischev][bolk]).\n\n- Improvements to existing languages:\n\n    - interpreter prompt in Python (`>>>` and `...`)\n    - @-properties and classes in CoffeeScript\n    - E4X in JavaScript (by [Oleg Efimov][oe])\n    - new keywords in Perl (by [Kirk Kimmel][kk])\n    - big Ruby syntax update (by [Vasily Polovnyov][vast])\n    - small fixes in Bash\n\n- Also Oleg Efimov did a great job of moving all the docs for language and style\n  developers and contributors from the old wiki under the source code in the\n  \"docs\" directory. Now these docs are nicely presented at\n  <http://highlightjs.readthedocs.org/>.\n\n[ng]: https://github.com/nathan11g\n[dd]: https://github.com/drdrang\n[bolk]: https://github.com/bolknote\n[oe]: https://github.com/Sannis\n[kk]: https://github.com/kimmel\n[vast]: https://github.com/vast\n\n\n## Version 7.2\n\nA regular bug-fix release without any significant new features. Enjoy!\n\n\n## Version 7.1\n\nA Summer crop:\n\n- [Marc Fornos][mf] made the definition for Clojure along with the matching\n  style Rainbow (which, of course, works for other languages too).\n- CoffeeScript support continues to improve getting support for regular\n  expressions.\n- Yoshihide Jimbo ported to highlight.js [five Tomorrow styles][tm] from the\n  [project by Chris Kempson][tm0].\n- Thanks to [Casey Duncun][cd] the library can now be built in the popular\n  [AMD format][amd].\n- And last but not least, we've got a fair number of correctness and consistency\n  fixes, including a pretty significant refactoring of Ruby.\n\n[mf]: https://github.com/mfornos\n[tm]: http://jmblog.github.com/color-themes-for-highlightjs/\n[tm0]: https://github.com/ChrisKempson/Tomorrow-Theme\n[cd]: https://github.com/caseman\n[amd]: http://requirejs.org/docs/whyamd.html\n\n\n## Version 7.0\n\nThe reason for the new major version update is a global change of keyword syntax\nwhich resulted in the library getting smaller once again. For example, the\nhosted build is 2K less than at the previous version while supporting two new\nlanguages.\n\nNotable changes:\n\n- The library now works not only in a browser but also with [node.js][]. It is\n  installable with `npm install highlight.js`. [API][] docs are available on our\n  wiki.\n\n- The new unique feature (apparently) among syntax highlighters is highlighting\n  *HTTP* headers and an arbitrary language in the request body. The most useful\n  languages here are *XML* and *JSON* both of which highlight.js does support.\n  Here's [the detailed post][p] about the feature.\n\n- Two new style themes: a dark \"south\" *[Pojoaque][]* by Jason Tate and an\n  emulation of*XCode* IDE by [Angel Olloqui][ao].\n\n- Three new languages: *D* by [Aleksandar Ružičić][ar], *R* by [Joe Cheng][jc]\n  and *GLSL* by [Sergey Tikhomirov][st].\n\n- *Nginx* syntax has become a million times smaller and more universal thanks to\n  remaking it in a more generic manner that doesn't require listing all the\n  directives in the known universe.\n\n- Function titles are now highlighted in *PHP*.\n\n- *Haskell* and *VHDL* were significantly reworked to be more rich and correct\n  by their respective maintainers [Jeremy Hull][sr] and [Igor Kalnitsky][ik].\n\nAnd last but not least, many bugs have been fixed around correctness and\nlanguage detection.\n\nOverall highlight.js currently supports 51 languages and 20 style themes.\n\n[node.js]: http://nodejs.org/\n[api]: http://softwaremaniacs.org/wiki/doku.php/highlight.js:api\n[p]: http://softwaremaniacs.org/blog/2012/05/10/http-and-json-in-highlight-js/en/\n[pojoaque]: http://web-cms-designs.com/ftopict-10-pojoaque-style-for-highlight-js-code-highlighter.html\n[ao]: https://github.com/angelolloqui\n[ar]: https://github.com/raleksandar\n[jc]: https://github.com/jcheng5\n[st]: https://github.com/tikhomirov\n[sr]: https://github.com/sourrust\n[ik]: https://github.com/ikalnitsky\n\n\n## Version 6.2\n\nA lot of things happened in highlight.js since the last version! We've got nine\nnew contributors, the discussion group came alive, and the main branch on GitHub\nnow counts more than 350 followers. Here are most significant results coming\nfrom all this activity:\n\n- 5 (five!) new languages: Rust, ActionScript, CoffeeScript, MatLab and\n  experimental support for markdown. Thanks go to [Andrey Vlasovskikh][av],\n  [Alexander Myadzel][am], [Dmytrii Nagirniak][dn], [Oleg Efimov][oe], [Denis\n  Bardadym][db] and [John Crepezzi][jc].\n\n- 2 new style themes: Monokai by [Luigi Maselli][lm] and stylistic imitation of\n  another well-known highlighter Google Code Prettify by [Aahan Krish][ak].\n\n- A vast number of [correctness fixes and code refactorings][log], mostly made\n  by [Oleg Efimov][oe] and [Evgeny Stepanischev][es].\n\n[av]: https://github.com/vlasovskikh\n[am]: https://github.com/myadzel\n[dn]: https://github.com/dnagir\n[oe]: https://github.com/Sannis\n[db]: https://github.com/btd\n[jc]: https://github.com/seejohnrun\n[lm]: http://grigio.org/\n[ak]: https://github.com/geekpanth3r\n[es]: https://github.com/bolknote\n[log]: https://github.com/isagalaev/highlight.js/commits/\n\n\n## Version 6.1 — Solarized\n\n[Jeremy Hull][jh] has implemented my dream feature — a port of [Solarized][]\nstyle theme famous for being based on the intricate color theory to achieve\ncorrect contrast and color perception. It is now available for highlight.js in\nboth variants — light and dark.\n\nThis version also adds a new original style Arta. Its author pumbur maintains a\n[heavily modified fork of highlight.js][pb] on GitHub.\n\n[jh]: https://github.com/sourrust\n[solarized]: http://ethanschoonover.com/solarized\n[pb]: https://github.com/pumbur/highlight.js\n\n\n## Version 6.0\n\nNew major version of the highlighter has been built on a significantly\nrefactored syntax. Due to this it's even smaller than the previous one while\nsupporting more languages!\n\nNew languages are:\n\n- Haskell by [Jeremy Hull][sourrust]\n- Erlang in two varieties — module and REPL — made collectively by [Nikolay\n  Zakharov][desh], [Dmitry Kovega][arhibot] and [Sergey Ignatov][ignatov]\n- Objective C by [Valerii Hiora][vhbit]\n- Vala by [Antono Vasiljev][antono]\n- Go by [Stephan Kountso][steplg]\n\n[sourrust]: https://github.com/sourrust\n[desh]: http://desh.su/\n[arhibot]: https://github.com/arhibot\n[ignatov]: https://github.com/ignatov\n[vhbit]: https://github.com/vhbit\n[antono]: https://github.com/antono\n[steplg]: https://github.com/steplg\n\nAlso this version is marginally faster and fixes a number of small long-standing\nbugs.\n\nDeveloper overview of the new language syntax is available in a [blog post about\nrecent beta release][beta].\n\n[beta]: http://softwaremaniacs.org/blog/2011/04/25/highlight-js-60-beta/en/\n\nP.S. New version is not yet available on a Yandex CDN, so for now you have to\ndownload [your own copy][d].\n\n[d]: /soft/highlight/en/download/\n\n\n## Version 5.14\n\nFixed bugs in HTML/XML detection and relevance introduced in previous\nrefactoring.\n\nAlso test.html now shows the second best result of language detection by\nrelevance.\n\n\n## Version 5.13\n\nPast weekend began with a couple of simple additions for existing languages but\nended up in a big code refactoring bringing along nice improvements for language\ndevelopers.\n\n### For users\n\n- Description of C++ has got new keywords from the upcoming [C++ 0x][] standard.\n- Description of HTML has got new tags from [HTML 5][].\n- CSS-styles have been unified to use consistent padding and also have lost\n  pop-outs with names of detected languages.\n- [Igor Kalnitsky][ik] has sent two new language descriptions: CMake & VHDL.\n\nThis makes total number of languages supported by highlight.js to reach 35.\n\nBug fixes:\n\n- Custom classes on `<pre>` tags are not being overridden anymore\n- More correct highlighting of code blocks inside non-`<pre>` containers:\n  highlighter now doesn't insist on replacing them with its own container and\n  just replaces the contents.\n- Small fixes in browser compatibility and heuristics.\n\n[c++ 0x]: http://ru.wikipedia.org/wiki/C%2B%2B0x\n[html 5]: http://en.wikipedia.org/wiki/HTML5\n[ik]: http://kalnitsky.org.ua/\n\n### For developers\n\nThe most significant change is the ability to include language submodes right\nunder `contains` instead of defining explicit named submodes in the main array:\n\n    contains: [\n      'string',\n      'number',\n      {begin: '\\\\n', end: hljs.IMMEDIATE_RE}\n    ]\n\nThis is useful for auxiliary modes needed only in one place to define parsing.\nNote that such modes often don't have `className` and hence won't generate a\nseparate `<span>` in the resulting markup. This is similar in effect to\n`noMarkup: true`. All existing languages have been refactored accordingly.\n\nTest file test.html has at last become a real test. Now it not only puts the\ndetected language name under the code snippet but also tests if it matches the\nexpected one. Test summary is displayed right above all language snippets.\n\n\n## CDN\n\nFine people at [Yandex][] agreed to host highlight.js on their big fast servers.\n[Link up][l]!\n\n[yandex]: http://yandex.com/\n[l]: http://softwaremaniacs.org/soft/highlight/en/download/\n\n\n## Version 5.10 — \"Paris\".\n\nThough I'm on a vacation in Paris, I decided to release a new version with a\ncouple of small fixes:\n\n- Tomas Vitvar discovered that TAB replacement doesn't always work when used\n  with custom markup in code\n- SQL parsing is even more rigid now and doesn't step over SmallTalk in tests\n\n\n## Version 5.9\n\nA long-awaited version is finally released.\n\nNew languages:\n\n- Andrew Fedorov made a definition for Lua\n- a long-time highlight.js contributor [Peter Leonov][pl] made a definition for\n  Nginx config\n- [Vladimir Moskva][vm] made a definition for TeX\n\n[pl]: http://kung-fu-tzu.ru/\n[vm]: http://fulc.ru/\n\nFixes for existing languages:\n\n- [Loren Segal][ls] reworked the Ruby definition and added highlighting for\n  [YARD][] inline documentation\n- the definition of SQL has become more solid and now it shouldn't be overly\n  greedy when it comes to language detection\n\n[ls]: http://gnuu.org/\n[yard]: http://yardoc.org/\n\nThe highlighter has become more usable as a library allowing to do highlighting\nfrom initialization code of JS frameworks and in ajax methods (see.\nreadme.eng.txt).\n\nAlso this version drops support for the [WordPress][wp] plugin. Everyone is\nwelcome to [pick up its maintenance][p] if needed.\n\n[wp]: http://wordpress.org/\n[p]: http://bazaar.launchpad.net/~isagalaev/+junk/highlight/annotate/342/src/wp_highlight.js.php\n\n\n## Version 5.8\n\n- Jan Berkel has contributed a definition for Scala. +1 to hotness!\n- All CSS-styles are rewritten to work only inside `<pre>` tags to avoid\n  conflicts with host site styles.\n\n\n## Version 5.7.\n\nFixed escaping of quotes in VBScript strings.\n\n\n## Version 5.5\n\nThis version brings a small change: now .ini-files allow digits, underscores and\nsquare brackets in key names.\n\n\n## Version 5.4\n\nFixed small but upsetting bug in the packer which caused incorrect highlighting\nof explicitly specified languages. Thanks to Andrew Fedorov for precise\ndiagnostics!\n\n\n## Version 5.3\n\nThe version to fulfil old promises.\n\nThe most significant change is that highlight.js now preserves custom user\nmarkup in code along with its own highlighting markup. This means that now it's\npossible to use, say, links in code. Thanks to [Vladimir Dolzhenko][vd] for the\n[initial proposal][1] and for making a proof-of-concept patch.\n\nAlso in this version:\n\n- [Vasily Polovnyov][vp] has sent a GitHub-like style and has implemented\n  support for CSS @-rules and Ruby symbols.\n- Yura Zaripov has sent two styles: Brown Paper and School Book.\n- Oleg Volchkov has sent a definition for [Parser 3][p3].\n\n[1]: http://softwaremaniacs.org/forum/highlightjs/6612/\n[p3]: http://www.parser.ru/\n[vp]: http://vasily.polovnyov.ru/\n[vd]: http://dolzhenko.blogspot.com/\n\n\n## Version 5.2\n\n- at last it's possible to replace indentation TABs with something sensible\n  (e.g. 2 or 4 spaces)\n- new keywords and built-ins for 1C by Sergey Baranov\n- a couple of small fixes to Apache highlighting\n\n\n## Version 5.1\n\nThis is one of those nice version consisting entirely of new and shiny\ncontributions!\n\n- [Vladimir Ermakov][vooon] created highlighting for AVR Assembler\n- [Ruslan Keba][rukeba] created highlighting for Apache config file. Also his\n  original visual style for it is now available for all highlight.js languages\n  under the name \"Magula\".\n- [Shuen-Huei Guan][drake] (aka Drake) sent new keywords for RenderMan\n  languages. Also thanks go to [Konstantin Evdokimenko][ke] for his advice on\n  the matter.\n\n[vooon]: http://vehq.ru/about/\n[rukeba]: http://rukeba.com/\n[drake]: http://drakeguan.org/\n[ke]: http://k-evdokimenko.moikrug.ru/\n\n\n## Version 5.0\n\nThe main change in the new major version of highlight.js is a mechanism for\npacking several languages along with the library itself into a single compressed\nfile. Now sites using several languages will load considerably faster because\nthe library won't dynamically include additional files while loading.\n\nAlso this version fixes a long-standing bug with Javascript highlighting that\ncouldn't distinguish between regular expressions and division operations.\n\nAnd as usually there were a couple of minor correctness fixes.\n\nGreat thanks to all contributors! Keep using highlight.js.\n\n\n## Version 4.3\n\nThis version comes with two contributions from [Jason Diamond][jd]:\n\n- language definition for C# (yes! it was a long-missed thing!)\n- Visual Studio-like highlighting style\n\nPlus there are a couple of minor bug fixes for parsing HTML and XML attributes.\n\n[jd]: http://jason.diamond.name/weblog/\n\n\n## Version 4.2\n\nThe biggest news is highlighting for Lisp, courtesy of Vasily Polovnyov. It's\nsomewhat experimental meaning that for highlighting \"keywords\" it doesn't use\nany pre-defined set of a Lisp dialect. Instead it tries to highlight first word\nin parentheses wherever it makes sense. I'd like to ask people programming in\nLisp to confirm if it's a good idea and send feedback to [the forum][f].\n\nOther changes:\n\n- Smalltalk was excluded from DEFAULT_LANGUAGES to save traffic\n- [Vladimir Epifanov][voldmar] has implemented javascript style switcher for\n  test.html\n- comments now allowed inside Ruby function definition\n- [MEL][] language from [Shuen-Huei Guan][drake]\n- whitespace now allowed between `<pre>` and `<code>`\n- better auto-detection of C++ and PHP\n- HTML allows embedded VBScript (`<% .. %>`)\n\n[f]: http://softwaremaniacs.org/forum/highlightjs/\n[voldmar]: http://voldmar.ya.ru/\n[mel]: http://en.wikipedia.org/wiki/Maya_Embedded_Language\n[drake]: http://drakeguan.org/\n\n\n## Version 4.1\n\nLanguages:\n\n- Bash from Vah\n- DOS bat-files from Alexander Makarov (Sam)\n- Diff files from Vasily Polovnyov\n- Ini files from myself though initial idea was from Sam\n\nStyles:\n\n- Zenburn from Vladimir Epifanov, this is an imitation of a\n  [well-known theme for Vim][zenburn].\n- Ascetic from myself, as a realization of ideals of non-flashy highlighting:\n  just one color in only three gradations :-)\n\nIn other news. [One small bug][bug] was fixed, built-in keywords were added for\nPython and C++ which improved auto-detection for the latter (it was shame that\n[my wife's blog][alenacpp] had issues with it from time to time). And lastly\nthanks go to Sam for getting rid of my stylistic comments in code that were\ngetting in the way of [JSMin][].\n\n[zenburn]: http://en.wikipedia.org/wiki/Zenburn\n[alenacpp]: http://alenacpp.blogspot.com/\n[bug]: http://softwaremaniacs.org/forum/viewtopic.php?id=1823\n[jsmin]: http://code.google.com/p/jsmin-php/\n\n\n## Version 4.0\n\nNew major version is a result of vast refactoring and of many contributions.\n\nVisible new features:\n\n- Highlighting of embedded languages. Currently is implemented highlighting of\n  Javascript and CSS inside HTML.\n- Bundled 5 ready-made style themes!\n\nInvisible new features:\n\n- Highlight.js no longer pollutes global namespace. Only one object and one\n  function for backward compatibility.\n- Performance is further increased by about 15%.\n\nChanging of a major version number caused by a new format of language definition\nfiles. If you use some third-party language files they should be updated.\n\n\n## Version 3.5\n\nA very nice version in my opinion fixing a number of small bugs and slightly\nincreased speed in a couple of corner cases. Thanks to everybody who reports\nbugs in he [forum][f] and by email!\n\nThere is also a new language — XML. A custom XML formerly was detected as HTML\nand didn't highlight custom tags. In this version I tried to make custom XML to\nbe detected and highlighted by its own rules. Which by the way include such\nthings as CDATA sections and processing instructions (`<? ... ?>`).\n\n[f]: http://softwaremaniacs.org/forum/viewforum.php?id=6\n\n\n## Version 3.3\n\n[Vladimir Gubarkov][xonix] has provided an interesting and useful addition.\nFile export.html contains a little program that shows and allows to copy and\npaste an HTML code generated by the highlighter for any code snippet. This can\nbe useful in situations when one can't use the script itself on a site.\n\n\n[xonix]: http://xonixx.blogspot.com/\n\n\n## Version 3.2 consists completely of contributions:\n\n- Vladimir Gubarkov has described SmallTalk\n- Yuri Ivanov has described 1C\n- Peter Leonov has packaged the highlighter as a Firefox extension\n- Vladimir Ermakov has compiled a mod for phpBB\n\nMany thanks to you all!\n\n\n## Version 3.1\n\nThree new languages are available: Django templates, SQL and Axapta. The latter\ntwo are sent by [Dmitri Roudakov][1]. However I've almost entirely rewrote an\nSQL definition but I'd never started it be it from the ground up :-)\n\nThe engine itself has got a long awaited feature of grouping keywords\n(\"keyword\", \"built-in function\", \"literal\"). No more hacks!\n\n[1]: http://roudakov.ru/\n\n\n## Version 3.0\n\nIt is major mainly because now highlight.js has grown large and has become\nmodular. Now when you pass it a list of languages to highlight it will\ndynamically load into a browser only those languages.\n\nAlso:\n\n- Konstantin Evdokimenko of [RibKit][] project has created a highlighting for\n  RenderMan Shading Language and RenderMan Interface Bytestream. Yay for more\n  languages!\n- Heuristics for C++ and HTML got better.\n- I've implemented (at last) a correct handling of backslash escapes in C-like\n  languages.\n\nThere is also a small backwards incompatible change in the new version. The\nfunction initHighlighting that was used to initialize highlighting instead of\ninitHighlightingOnLoad a long time ago no longer works. If you by chance still\nuse it — replace it with the new one.\n\n[RibKit]: http://ribkit.sourceforge.net/\n\n\n## Version 2.9\n\nHighlight.js is a parser, not just a couple of regular expressions. That said\nI'm glad to announce that in the new version 2.9 has support for:\n\n- in-string substitutions for Ruby -- `#{...}`\n- strings from from numeric symbol codes (like #XX) for Delphi\n\n\n## Version 2.8\n\nA maintenance release with more tuned heuristics. Fully backwards compatible.\n\n\n## Version 2.7\n\n- Nikita Ledyaev presents highlighting for VBScript, yay!\n- A couple of bugs with escaping in strings were fixed thanks to Mickle\n- Ongoing tuning of heuristics\n\nFixed bugs were rather unpleasant so I encourage everyone to upgrade!\n\n\n## Version 2.4\n\n- Peter Leonov provides another improved highlighting for Perl\n- Javascript gets a new kind of keywords — \"literals\". These are the words\n  \"true\", \"false\" and \"null\"\n\nAlso highlight.js homepage now lists sites that use the library. Feel free to\nadd your site by [dropping me a message][mail] until I find the time to build a\nsubmit form.\n\n[mail]: mailto:Maniac@SoftwareManiacs.Org\n\n\n## Version 2.3\n\nThis version fixes IE breakage in previous version. My apologies to all who have\nalready downloaded that one!\n\n\n## Version 2.2\n\n- added highlighting for Javascript\n- at last fixed parsing of Delphi's escaped apostrophes in strings\n- in Ruby fixed highlighting of keywords 'def' and 'class', same for 'sub' in\n  Perl\n\n\n## Version 2.0\n\n- Ruby support by [Anton Kovalyov][ak]\n- speed increased by orders of magnitude due to new way of parsing\n- this same way allows now correct highlighting of keywords in some tricky\n  places (like keyword \"End\" at the end of Delphi classes)\n\n[ak]: http://anton.kovalyov.net/\n\n\n## Version 1.0\n\nVersion 1.0 of javascript syntax highlighter is released!\n\nIt's the first version available with English description. Feel free to post\nyour comments and question to [highlight.js forum][forum]. And don't be afraid\nif you find there some fancy Cyrillic letters -- it's for Russian users too :-)\n\n[forum]: http://softwaremaniacs.org/forum/viewforum.php?id=6\n"
  },
  {
    "path": "www/static/highlight/LICENSE",
    "content": "Copyright (c) 2006, Ivan Sagalaev\nAll rights reserved.\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n    * Redistributions of source code must retain the above copyright\n      notice, this list of conditions and the following disclaimer.\n    * Redistributions in binary form must reproduce the above copyright\n      notice, this list of conditions and the following disclaimer in the\n      documentation and/or other materials provided with the distribution.\n    * Neither the name of highlight.js nor the names of its contributors \n      may be used to endorse or promote products derived from this software \n      without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
  },
  {
    "path": "www/static/highlight/README.md",
    "content": "# Highlight.js\n\n[![Build Status](https://travis-ci.org/isagalaev/highlight.js.svg?branch=master)](https://travis-ci.org/isagalaev/highlight.js)\n\nHighlight.js is a syntax highlighter written in JavaScript. It works in\nthe browser as well as on the server. It works with pretty much any\nmarkup, doesn’t depend on any framework and has automatic language\ndetection.\n\n## Getting Started\n\nThe bare minimum for using highlight.js on a web page is linking to the\nlibrary along with one of the styles and calling\n[`initHighlightingOnLoad`][1]:\n\n```html\n<link rel=\"stylesheet\" href=\"/path/to/styles/default.css\">\n<script src=\"/path/to/highlight.pack.js\"></script>\n<script>hljs.initHighlightingOnLoad();</script>\n```\n\nThis will find and highlight code inside of `<pre><code>` tags; it tries\nto detect the language automatically. If automatic detection doesn’t\nwork for you, you can specify the language in the `class` attribute:\n\n```html\n<pre><code class=\"html\">...</code></pre>\n```\n\nThe list of supported language classes is available in the [class\nreference][2].  Classes can also be prefixed with either `language-` or\n`lang-`.\n\nTo disable highlighting altogether use the `nohighlight` class:\n\n```html\n<pre><code class=\"nohighlight\">...</code></pre>\n```\n\n## Custom Initialization\n\nWhen you need a bit more control over the initialization of\nhighlight.js, you can use the [`highlightBlock`][3] and [`configure`][4]\nfunctions. This allows you to control *what* to highlight and *when*.\n\nHere’s an equivalent way to calling [`initHighlightingOnLoad`][1] using\njQuery:\n\n```javascript\n$(document).ready(function() {\n  $('pre code').each(function(i, block) {\n    hljs.highlightBlock(block);\n  });\n});\n```\n\nYou can use any tags instead of `<pre><code>` to mark up your code. If\nyou don't use a container that preserve line breaks you will need to\nconfigure highlight.js to use the `<br>` tag:\n\n```javascript\nhljs.configure({useBR: true});\n\n$('div.code').each(function(i, block) {\n  hljs.highlightBlock(block);\n});\n```\n\nFor other options refer to the documentation for [`configure`][4].\n\n\n## Web Workers\n\nYou can run highlighting inside a web worker to avoid freezing the browser\nwindow while dealing with very big chunks of code.\n\nIn your main script:\n\n```javascript\naddEventListener('load', function() {\n  var code = document.querySelector('#code');\n  var worker = new Worker('worker.js');\n  worker.onmessage = function(event) { code.innerHTML = event.data; }\n  worker.postMessage(code.textContent);\n})\n```\n\nIn worker.js:\n\n```javascript\nonmessage = function(event) {\n  importScripts('<path>/highlight.pack.js');\n  var result = self.hljs.highlightAuto(event.data);\n  postMessage(result.value);\n}\n```\n\n\n## Getting the Library\n\nYou can get highlight.js as a hosted, or custom-build, browser script or\nas a server module. Right out of the box the browser script supports\nboth AMD and CommonJS, so if you wish you can use RequireJS or\nBrowserify without having to build from source. The server module also\nworks perfectly fine with Browserify, but there is the option to use a\nbuild specific to browsers rather than something meant for a server.\nHead over to the [download page][5] for all the options.\n\n**Don't link to GitHub directly.** The library is not supposed to work straight\nfrom the source, it requires building. If none of the pre-packaged options\nwork for you refer to the [building documentation][6].\n\n**The CDN-hosted package doesn't have all the languages.** Otherwise it'd be\ntoo big. If you don't see the language you need in the [\"Common\" section][5],\nit can be added manually:\n\n```html\n<script src=\"//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.4.0/languages/go.min.js\"></script>\n```\n\n**On Almond.** You need to use the optimizer to give the module a name. For\nexample:\n\n```\nr.js -o name=hljs paths.hljs=/path/to/highlight out=highlight.js\n```\n\n\n## License\n\nHighlight.js is released under the BSD License. See [LICENSE][7] file\nfor details.\n\n## Links\n\nThe official site for the library is at <https://highlightjs.org/>.\n\nFurther in-depth documentation for the API and other topics is at\n<http://highlightjs.readthedocs.io/>.\n\nAuthors and contributors are listed in the [AUTHORS.en.txt][8] file.\n\n[1]: http://highlightjs.readthedocs.io/en/latest/api.html#inithighlightingonload\n[2]: http://highlightjs.readthedocs.io/en/latest/css-classes-reference.html\n[3]: http://highlightjs.readthedocs.io/en/latest/api.html#highlightblock-block\n[4]: http://highlightjs.readthedocs.io/en/latest/api.html#configure-options\n[5]: https://highlightjs.org/download/\n[6]: http://highlightjs.readthedocs.io/en/latest/building-testing.html\n[7]: https://github.com/isagalaev/highlight.js/blob/master/LICENSE\n[8]: https://github.com/isagalaev/highlight.js/blob/master/AUTHORS.en.txt\n"
  },
  {
    "path": "www/static/highlight/README.ru.md",
    "content": "# Highlight.js\n\nHighlight.js — это инструмент для подсветки синтаксиса, написанный на JavaScript. Он работает\nи в браузере, и на сервере. Он работает с практически любой HTML разметкой, не\nзависит от каких-либо фреймворков и умеет автоматически определять язык.\n\n\n## Начало работы\n\nМинимум, что нужно сделать для использования highlight.js на веб-странице — это\nподключить библиотеку, CSS-стили и вызывать [`initHighlightingOnLoad`][1]:\n\n```html\n<link rel=\"stylesheet\" href=\"/path/to/styles/default.css\">\n<script src=\"/path/to/highlight.pack.js\"></script>\n<script>hljs.initHighlightingOnLoad();</script>\n```\n\nБиблиотека найдёт и раскрасит код внутри тегов `<pre><code>`, попытавшись\nавтоматически определить язык. Когда автоопределение не срабатывает, можно явно\nуказать язык в атрибуте class:\n\n```html\n<pre><code class=\"html\">...</code></pre>\n```\n\nСписок поддерживаемых классов языков доступен в [справочнике по классам][2].\nКласс также можно предварить префиксами `language-` или `lang-`.\n\nЧтобы отключить подсветку для какого-то блока, используйте класс `nohighlight`:\n\n```html\n<pre><code class=\"nohighlight\">...</code></pre>\n```\n\n## Инициализация вручную\n\nЧтобы иметь чуть больше контроля за инициализацией подсветки, вы можете\nиспользовать функции [`highlightBlock`][3] и [`configure`][4]. Таким образом\nможно управлять тем, *что* и *когда* подсвечивать.\n\nВот пример инициализации, эквивалентной вызову [`initHighlightingOnLoad`][1], но\nс использованием jQuery:\n\n```javascript\n$(document).ready(function() {\n  $('pre code').each(function(i, block) {\n    hljs.highlightBlock(block);\n  });\n});\n```\n\nВы можете использовать любые теги разметки вместо `<pre><code>`. Если\nиспользуете контейнер, не сохраняющий переводы строк, вам нужно сказать\nhighlight.js использовать для них тег `<br>`:\n\n```javascript\nhljs.configure({useBR: true});\n\n$('div.code').each(function(i, block) {\n  hljs.highlightBlock(block);\n});\n```\n\nДругие опции можно найти в документации функции [`configure`][4].\n\n\n## Web Workers\n\nПодсветку можно запустить внутри web worker'а, чтобы окно\nбраузера не подтормаживало при работе с большими кусками кода.\n\nВ основном скрипте:\n\n```javascript\naddEventListener('load', function() {\n  var code = document.querySelector('#code');\n  var worker = new Worker('worker.js');\n  worker.onmessage = function(event) { code.innerHTML = event.data; }\n  worker.postMessage(code.textContent);\n})\n```\n\nВ worker.js:\n\n```javascript\nonmessage = function(event) {\n  importScripts('<path>/highlight.pack.js');\n  var result = self.hljs.highlightAuto(event.data);\n  postMessage(result.value);\n}\n```\n\n\n## Установка библиотеки\n\nHighlight.js можно использовать в браузере прямо с CDN хостинга или скачать\nиндивидуальную сборку, а также установив модуль на сервере. На\n[странице загрузки][5] подробно описаны все варианты.\n\n**Не подключайте GitHub напрямую.** Библиотека не предназначена для\nиспользования в виде исходного кода, а требует отдельной сборки. Если вам не\nподходит ни один из готовых вариантов, читайте [документацию по сборке][6].\n\n**Файл на CDN содержит не все языки.** Иначе он будет слишком большого размера.\nЕсли нужного вам языка нет в [категории \"Common\"][5], можно дообавить его\nвручную:\n\n```html\n<script src=\"//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.4.0/languages/go.min.js\"></script>\n```\n\n**Про Almond.** Нужно задать имя модуля в оптимизаторе, например:\n\n```\nr.js -o name=hljs paths.hljs=/path/to/highlight out=highlight.js\n```\n\n\n## Лицензия\n\nHighlight.js распространяется под лицензией BSD. Подробнее читайте файл\n[LICENSE][7].\n\n\n## Ссылки\n\nОфициальный сайт билиотеки расположен по адресу <https://highlightjs.org/>.\n\nБолее подробная документация по API и другим темам расположена на\n<http://highlightjs.readthedocs.io/>.\n\nАвторы и контрибьюторы перечислены в файле [AUTHORS.ru.txt][8] file.\n\n[1]: http://highlightjs.readthedocs.io/en/latest/api.html#inithighlightingonload\n[2]: http://highlightjs.readthedocs.io/en/latest/css-classes-reference.html\n[3]: http://highlightjs.readthedocs.io/en/latest/api.html#highlightblock-block\n[4]: http://highlightjs.readthedocs.io/en/latest/api.html#configure-options\n[5]: https://highlightjs.org/download/\n[6]: http://highlightjs.readthedocs.io/en/latest/building-testing.html\n[7]: https://github.com/isagalaev/highlight.js/blob/master/LICENSE\n[8]: https://github.com/isagalaev/highlight.js/blob/master/AUTHORS.ru.txt\n"
  },
  {
    "path": "www/static/highlight/highlight.pack.js",
    "content": "/*! highlight.js v9.7.0 | BSD3 License | git.io/hljslicense */\n!function(e){var n=\"object\"==typeof window&&window||\"object\"==typeof self&&self;\"undefined\"!=typeof exports?e(exports):n&&(n.hljs=e({}),\"function\"==typeof define&&define.amd&&define([],function(){return n.hljs}))}(function(e){function n(e){return e.replace(/[&<>]/gm,function(e){return I[e]})}function t(e){return e.nodeName.toLowerCase()}function r(e,n){var t=e&&e.exec(n);return t&&0===t.index}function a(e){return k.test(e)}function i(e){var n,t,r,i,o=e.className+\" \";if(o+=e.parentNode?e.parentNode.className:\"\",t=B.exec(o))return R(t[1])?t[1]:\"no-highlight\";for(o=o.split(/\\s+/),n=0,r=o.length;r>n;n++)if(i=o[n],a(i)||R(i))return i}function o(e,n){var t,r={};for(t in e)r[t]=e[t];if(n)for(t in n)r[t]=n[t];return r}function u(e){var n=[];return function r(e,a){for(var i=e.firstChild;i;i=i.nextSibling)3===i.nodeType?a+=i.nodeValue.length:1===i.nodeType&&(n.push({event:\"start\",offset:a,node:i}),a=r(i,a),t(i).match(/br|hr|img|input/)||n.push({event:\"stop\",offset:a,node:i}));return a}(e,0),n}function c(e,r,a){function i(){return e.length&&r.length?e[0].offset!==r[0].offset?e[0].offset<r[0].offset?e:r:\"start\"===r[0].event?e:r:e.length?e:r}function o(e){function r(e){return\" \"+e.nodeName+'=\"'+n(e.value)+'\"'}l+=\"<\"+t(e)+w.map.call(e.attributes,r).join(\"\")+\">\"}function u(e){l+=\"</\"+t(e)+\">\"}function c(e){(\"start\"===e.event?o:u)(e.node)}for(var s=0,l=\"\",f=[];e.length||r.length;){var g=i();if(l+=n(a.substr(s,g[0].offset-s)),s=g[0].offset,g===e){f.reverse().forEach(u);do c(g.splice(0,1)[0]),g=i();while(g===e&&g.length&&g[0].offset===s);f.reverse().forEach(o)}else\"start\"===g[0].event?f.push(g[0].node):f.pop(),c(g.splice(0,1)[0])}return l+n(a.substr(s))}function s(e){function n(e){return e&&e.source||e}function t(t,r){return new RegExp(n(t),\"m\"+(e.cI?\"i\":\"\")+(r?\"g\":\"\"))}function r(a,i){if(!a.compiled){if(a.compiled=!0,a.k=a.k||a.bK,a.k){var u={},c=function(n,t){e.cI&&(t=t.toLowerCase()),t.split(\" \").forEach(function(e){var t=e.split(\"|\");u[t[0]]=[n,t[1]?Number(t[1]):1]})};\"string\"==typeof a.k?c(\"keyword\",a.k):E(a.k).forEach(function(e){c(e,a.k[e])}),a.k=u}a.lR=t(a.l||/\\w+/,!0),i&&(a.bK&&(a.b=\"\\\\b(\"+a.bK.split(\" \").join(\"|\")+\")\\\\b\"),a.b||(a.b=/\\B|\\b/),a.bR=t(a.b),a.e||a.eW||(a.e=/\\B|\\b/),a.e&&(a.eR=t(a.e)),a.tE=n(a.e)||\"\",a.eW&&i.tE&&(a.tE+=(a.e?\"|\":\"\")+i.tE)),a.i&&(a.iR=t(a.i)),null==a.r&&(a.r=1),a.c||(a.c=[]);var s=[];a.c.forEach(function(e){e.v?e.v.forEach(function(n){s.push(o(e,n))}):s.push(\"self\"===e?a:e)}),a.c=s,a.c.forEach(function(e){r(e,a)}),a.starts&&r(a.starts,i);var l=a.c.map(function(e){return e.bK?\"\\\\.?(\"+e.b+\")\\\\.?\":e.b}).concat([a.tE,a.i]).map(n).filter(Boolean);a.t=l.length?t(l.join(\"|\"),!0):{exec:function(){return null}}}}r(e)}function l(e,t,a,i){function o(e,n){var t,a;for(t=0,a=n.c.length;a>t;t++)if(r(n.c[t].bR,e))return n.c[t]}function u(e,n){if(r(e.eR,n)){for(;e.endsParent&&e.parent;)e=e.parent;return e}return e.eW?u(e.parent,n):void 0}function c(e,n){return!a&&r(n.iR,e)}function g(e,n){var t=N.cI?n[0].toLowerCase():n[0];return e.k.hasOwnProperty(t)&&e.k[t]}function h(e,n,t,r){var a=r?\"\":y.classPrefix,i='<span class=\"'+a,o=t?\"\":C;return i+=e+'\">',i+n+o}function p(){var e,t,r,a;if(!E.k)return n(B);for(a=\"\",t=0,E.lR.lastIndex=0,r=E.lR.exec(B);r;)a+=n(B.substr(t,r.index-t)),e=g(E,r),e?(M+=e[1],a+=h(e[0],n(r[0]))):a+=n(r[0]),t=E.lR.lastIndex,r=E.lR.exec(B);return a+n(B.substr(t))}function d(){var e=\"string\"==typeof E.sL;if(e&&!x[E.sL])return n(B);var t=e?l(E.sL,B,!0,L[E.sL]):f(B,E.sL.length?E.sL:void 0);return E.r>0&&(M+=t.r),e&&(L[E.sL]=t.top),h(t.language,t.value,!1,!0)}function b(){k+=null!=E.sL?d():p(),B=\"\"}function v(e){k+=e.cN?h(e.cN,\"\",!0):\"\",E=Object.create(e,{parent:{value:E}})}function m(e,n){if(B+=e,null==n)return b(),0;var t=o(n,E);if(t)return t.skip?B+=n:(t.eB&&(B+=n),b(),t.rB||t.eB||(B=n)),v(t,n),t.rB?0:n.length;var r=u(E,n);if(r){var a=E;a.skip?B+=n:(a.rE||a.eE||(B+=n),b(),a.eE&&(B=n));do E.cN&&(k+=C),E.skip||(M+=E.r),E=E.parent;while(E!==r.parent);return r.starts&&v(r.starts,\"\"),a.rE?0:n.length}if(c(n,E))throw new Error('Illegal lexeme \"'+n+'\" for mode \"'+(E.cN||\"<unnamed>\")+'\"');return B+=n,n.length||1}var N=R(e);if(!N)throw new Error('Unknown language: \"'+e+'\"');s(N);var w,E=i||N,L={},k=\"\";for(w=E;w!==N;w=w.parent)w.cN&&(k=h(w.cN,\"\",!0)+k);var B=\"\",M=0;try{for(var I,j,O=0;;){if(E.t.lastIndex=O,I=E.t.exec(t),!I)break;j=m(t.substr(O,I.index-O),I[0]),O=I.index+j}for(m(t.substr(O)),w=E;w.parent;w=w.parent)w.cN&&(k+=C);return{r:M,value:k,language:e,top:E}}catch(T){if(T.message&&-1!==T.message.indexOf(\"Illegal\"))return{r:0,value:n(t)};throw T}}function f(e,t){t=t||y.languages||E(x);var r={r:0,value:n(e)},a=r;return t.filter(R).forEach(function(n){var t=l(n,e,!1);t.language=n,t.r>a.r&&(a=t),t.r>r.r&&(a=r,r=t)}),a.language&&(r.second_best=a),r}function g(e){return y.tabReplace||y.useBR?e.replace(M,function(e,n){return y.useBR&&\"\\n\"===e?\"<br>\":y.tabReplace?n.replace(/\\t/g,y.tabReplace):void 0}):e}function h(e,n,t){var r=n?L[n]:t,a=[e.trim()];return e.match(/\\bhljs\\b/)||a.push(\"hljs\"),-1===e.indexOf(r)&&a.push(r),a.join(\" \").trim()}function p(e){var n,t,r,o,s,p=i(e);a(p)||(y.useBR?(n=document.createElementNS(\"http://www.w3.org/1999/xhtml\",\"div\"),n.innerHTML=e.innerHTML.replace(/\\n/g,\"\").replace(/<br[ \\/]*>/g,\"\\n\")):n=e,s=n.textContent,r=p?l(p,s,!0):f(s),t=u(n),t.length&&(o=document.createElementNS(\"http://www.w3.org/1999/xhtml\",\"div\"),o.innerHTML=r.value,r.value=c(t,u(o),s)),r.value=g(r.value),e.innerHTML=r.value,e.className=h(e.className,p,r.language),e.result={language:r.language,re:r.r},r.second_best&&(e.second_best={language:r.second_best.language,re:r.second_best.r}))}function d(e){y=o(y,e)}function b(){if(!b.called){b.called=!0;var e=document.querySelectorAll(\"pre code\");w.forEach.call(e,p)}}function v(){addEventListener(\"DOMContentLoaded\",b,!1),addEventListener(\"load\",b,!1)}function m(n,t){var r=x[n]=t(e);r.aliases&&r.aliases.forEach(function(e){L[e]=n})}function N(){return E(x)}function R(e){return e=(e||\"\").toLowerCase(),x[e]||x[L[e]]}var w=[],E=Object.keys,x={},L={},k=/^(no-?highlight|plain|text)$/i,B=/\\blang(?:uage)?-([\\w-]+)\\b/i,M=/((^(<[^>]+>|\\t|)+|(?:\\n)))/gm,C=\"</span>\",y={classPrefix:\"hljs-\",tabReplace:null,useBR:!1,languages:void 0},I={\"&\":\"&amp;\",\"<\":\"&lt;\",\">\":\"&gt;\"};return e.highlight=l,e.highlightAuto=f,e.fixMarkup=g,e.highlightBlock=p,e.configure=d,e.initHighlighting=b,e.initHighlightingOnLoad=v,e.registerLanguage=m,e.listLanguages=N,e.getLanguage=R,e.inherit=o,e.IR=\"[a-zA-Z]\\\\w*\",e.UIR=\"[a-zA-Z_]\\\\w*\",e.NR=\"\\\\b\\\\d+(\\\\.\\\\d+)?\",e.CNR=\"(-?)(\\\\b0[xX][a-fA-F0-9]+|(\\\\b\\\\d+(\\\\.\\\\d*)?|\\\\.\\\\d+)([eE][-+]?\\\\d+)?)\",e.BNR=\"\\\\b(0b[01]+)\",e.RSR=\"!|!=|!==|%|%=|&|&&|&=|\\\\*|\\\\*=|\\\\+|\\\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\\\?|\\\\[|\\\\{|\\\\(|\\\\^|\\\\^=|\\\\||\\\\|=|\\\\|\\\\||~\",e.BE={b:\"\\\\\\\\[\\\\s\\\\S]\",r:0},e.ASM={cN:\"string\",b:\"'\",e:\"'\",i:\"\\\\n\",c:[e.BE]},e.QSM={cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\",c:[e.BE]},e.PWM={b:/\\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|like)\\b/},e.C=function(n,t,r){var a=e.inherit({cN:\"comment\",b:n,e:t,c:[]},r||{});return a.c.push(e.PWM),a.c.push({cN:\"doctag\",b:\"(?:TODO|FIXME|NOTE|BUG|XXX):\",r:0}),a},e.CLCM=e.C(\"//\",\"$\"),e.CBCM=e.C(\"/\\\\*\",\"\\\\*/\"),e.HCM=e.C(\"#\",\"$\"),e.NM={cN:\"number\",b:e.NR,r:0},e.CNM={cN:\"number\",b:e.CNR,r:0},e.BNM={cN:\"number\",b:e.BNR,r:0},e.CSSNM={cN:\"number\",b:e.NR+\"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?\",r:0},e.RM={cN:\"regexp\",b:/\\//,e:/\\/[gimuy]*/,i:/\\n/,c:[e.BE,{b:/\\[/,e:/\\]/,r:0,c:[e.BE]}]},e.TM={cN:\"title\",b:e.IR,r:0},e.UTM={cN:\"title\",b:e.UIR,r:0},e.METHOD_GUARD={b:\"\\\\.\\\\s*\"+e.UIR,r:0},e});hljs.registerLanguage(\"makefile\",function(e){var a={cN:\"variable\",b:/\\$\\(/,e:/\\)/,c:[e.BE]};return{aliases:[\"mk\",\"mak\"],c:[e.HCM,{b:/^\\w+\\s*\\W*=/,rB:!0,r:0,starts:{e:/\\s*\\W*=/,eE:!0,starts:{e:/$/,r:0,c:[a]}}},{cN:\"section\",b:/^[\\w]+:\\s*$/},{cN:\"meta\",b:/^\\.PHONY:/,e:/$/,k:{\"meta-keyword\":\".PHONY\"},l:/[\\.\\w]+/},{b:/^\\t+/,e:/$/,r:0,c:[e.QSM,a]}]}});hljs.registerLanguage(\"http\",function(e){var t=\"HTTP/[0-9\\\\.]+\";return{aliases:[\"https\"],i:\"\\\\S\",c:[{b:\"^\"+t,e:\"$\",c:[{cN:\"number\",b:\"\\\\b\\\\d{3}\\\\b\"}]},{b:\"^[A-Z]+ (.*?) \"+t+\"$\",rB:!0,e:\"$\",c:[{cN:\"string\",b:\" \",e:\" \",eB:!0,eE:!0},{b:t},{cN:\"keyword\",b:\"[A-Z]+\"}]},{cN:\"attribute\",b:\"^\\\\w\",e:\": \",eE:!0,i:\"\\\\n|\\\\s|=\",starts:{e:\"$\",r:0}},{b:\"\\\\n\\\\n\",starts:{sL:[],eW:!0}}]}});hljs.registerLanguage(\"nginx\",function(e){var r={cN:\"variable\",v:[{b:/\\$\\d+/},{b:/\\$\\{/,e:/}/},{b:\"[\\\\$\\\\@]\"+e.UIR}]},b={eW:!0,l:\"[a-z/_]+\",k:{literal:\"on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll\"},r:0,i:\"=>\",c:[e.HCM,{cN:\"string\",c:[e.BE,r],v:[{b:/\"/,e:/\"/},{b:/'/,e:/'/}]},{b:\"([a-z]+):/\",e:\"\\\\s\",eW:!0,eE:!0,c:[r]},{cN:\"regexp\",c:[e.BE,r],v:[{b:\"\\\\s\\\\^\",e:\"\\\\s|{|;\",rE:!0},{b:\"~\\\\*?\\\\s+\",e:\"\\\\s|{|;\",rE:!0},{b:\"\\\\*(\\\\.[a-z\\\\-]+)+\"},{b:\"([a-z\\\\-]+\\\\.)+\\\\*\"}]},{cN:\"number\",b:\"\\\\b\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}(:\\\\d{1,5})?\\\\b\"},{cN:\"number\",b:\"\\\\b\\\\d+[kKmMgGdshdwy]*\\\\b\",r:0},r]};return{aliases:[\"nginxconf\"],c:[e.HCM,{b:e.UIR+\"\\\\s+{\",rB:!0,e:\"{\",c:[{cN:\"section\",b:e.UIR}],r:0},{b:e.UIR+\"\\\\s\",e:\";|{\",rB:!0,c:[{cN:\"attribute\",b:e.UIR,starts:b}],r:0}],i:\"[^\\\\s\\\\}]\"}});hljs.registerLanguage(\"sql\",function(e){var t=e.C(\"--\",\"$\");return{cI:!0,i:/[<>{}*#]/,c:[{bK:\"begin end start commit rollback savepoint lock alter create drop rename call delete do handler insert load replace select truncate update set show pragma grant merge describe use explain help declare prepare execute deallocate release unlock purge reset change stop analyze cache flush optimize repair kill install uninstall checksum restore check backup revoke comment\",e:/;/,eW:!0,l:/[\\w\\.]+/,k:{keyword:\"abort abs absolute acc acce accep accept access accessed accessible account acos action activate add addtime admin administer advanced advise aes_decrypt aes_encrypt after agent aggregate ali alia alias allocate allow alter always analyze ancillary and any anydata anydataset anyschema anytype apply archive archived archivelog are as asc ascii asin assembly assertion associate asynchronous at atan atn2 attr attri attrib attribu attribut attribute attributes audit authenticated authentication authid authors auto autoallocate autodblink autoextend automatic availability avg backup badfile basicfile before begin beginning benchmark between bfile bfile_base big bigfile bin binary_double binary_float binlog bit_and bit_count bit_length bit_or bit_xor bitmap blob_base block blocksize body both bound buffer_cache buffer_pool build bulk by byte byteordermark bytes cache caching call calling cancel capacity cascade cascaded case cast catalog category ceil ceiling chain change changed char_base char_length character_length characters characterset charindex charset charsetform charsetid check checksum checksum_agg child choose chr chunk class cleanup clear client clob clob_base clone close cluster_id cluster_probability cluster_set clustering coalesce coercibility col collate collation collect colu colum column column_value columns columns_updated comment commit compact compatibility compiled complete composite_limit compound compress compute concat concat_ws concurrent confirm conn connec connect connect_by_iscycle connect_by_isleaf connect_by_root connect_time connection consider consistent constant constraint constraints constructor container content contents context contributors controlfile conv convert convert_tz corr corr_k corr_s corresponding corruption cos cost count count_big counted covar_pop covar_samp cpu_per_call cpu_per_session crc32 create creation critical cross cube cume_dist curdate current current_date current_time current_timestamp current_user cursor curtime customdatum cycle data database databases datafile datafiles datalength date_add date_cache date_format date_sub dateadd datediff datefromparts datename datepart datetime2fromparts day day_to_second dayname dayofmonth dayofweek dayofyear days db_role_change dbtimezone ddl deallocate declare decode decompose decrement decrypt deduplicate def defa defau defaul default defaults deferred defi defin define degrees delayed delegate delete delete_all delimited demand dense_rank depth dequeue des_decrypt des_encrypt des_key_file desc descr descri describ describe descriptor deterministic diagnostics difference dimension direct_load directory disable disable_all disallow disassociate discardfile disconnect diskgroup distinct distinctrow distribute distributed div do document domain dotnet double downgrade drop dumpfile duplicate duration each edition editionable editions element ellipsis else elsif elt empty enable enable_all enclosed encode encoding encrypt end end-exec endian enforced engine engines enqueue enterprise entityescaping eomonth error errors escaped evalname evaluate event eventdata events except exception exceptions exchange exclude excluding execu execut execute exempt exists exit exp expire explain export export_set extended extent external external_1 external_2 externally extract failed failed_login_attempts failover failure far fast feature_set feature_value fetch field fields file file_name_convert filesystem_like_logging final finish first first_value fixed flash_cache flashback floor flush following follows for forall force form forma format found found_rows freelist freelists freepools fresh from from_base64 from_days ftp full function general generated get get_format get_lock getdate getutcdate global global_name globally go goto grant grants greatest group group_concat group_id grouping grouping_id groups gtid_subtract guarantee guard handler hash hashkeys having hea head headi headin heading heap help hex hierarchy high high_priority hosts hour http id ident_current ident_incr ident_seed identified identity idle_time if ifnull ignore iif ilike ilm immediate import in include including increment index indexes indexing indextype indicator indices inet6_aton inet6_ntoa inet_aton inet_ntoa infile initial initialized initially initrans inmemory inner innodb input insert install instance instantiable instr interface interleaved intersect into invalidate invisible is is_free_lock is_ipv4 is_ipv4_compat is_not is_not_null is_used_lock isdate isnull isolation iterate java join json json_exists keep keep_duplicates key keys kill language large last last_day last_insert_id last_value lax lcase lead leading least leaves left len lenght length less level levels library like like2 like4 likec limit lines link list listagg little ln load load_file lob lobs local localtime localtimestamp locate locator lock locked log log10 log2 logfile logfiles logging logical logical_reads_per_call logoff logon logs long loop low low_priority lower lpad lrtrim ltrim main make_set makedate maketime managed management manual map mapping mask master master_pos_wait match matched materialized max maxextents maximize maxinstances maxlen maxlogfiles maxloghistory maxlogmembers maxsize maxtrans md5 measures median medium member memcompress memory merge microsecond mid migration min minextents minimum mining minus minute minvalue missing mod mode model modification modify module monitoring month months mount move movement multiset mutex name name_const names nan national native natural nav nchar nclob nested never new newline next nextval no no_write_to_binlog noarchivelog noaudit nobadfile nocheck nocompress nocopy nocycle nodelay nodiscardfile noentityescaping noguarantee nokeep nologfile nomapping nomaxvalue nominimize nominvalue nomonitoring none noneditionable nonschema noorder nopr nopro noprom nopromp noprompt norely noresetlogs noreverse normal norowdependencies noschemacheck noswitch not nothing notice notrim novalidate now nowait nth_value nullif nulls num numb numbe nvarchar nvarchar2 object ocicoll ocidate ocidatetime ociduration ociinterval ociloblocator ocinumber ociref ocirefcursor ocirowid ocistring ocitype oct octet_length of off offline offset oid oidindex old on online only opaque open operations operator optimal optimize option optionally or oracle oracle_date oradata ord ordaudio orddicom orddoc order ordimage ordinality ordvideo organization orlany orlvary out outer outfile outline output over overflow overriding package pad parallel parallel_enable parameters parent parse partial partition partitions pascal passing password password_grace_time password_lock_time password_reuse_max password_reuse_time password_verify_function patch path patindex pctincrease pctthreshold pctused pctversion percent percent_rank percentile_cont percentile_disc performance period period_add period_diff permanent physical pi pipe pipelined pivot pluggable plugin policy position post_transaction pow power pragma prebuilt precedes preceding precision prediction prediction_cost prediction_details prediction_probability prediction_set prepare present preserve prior priority private private_sga privileges procedural procedure procedure_analyze processlist profiles project prompt protection public publishingservername purge quarter query quick quiesce quota quotename radians raise rand range rank raw read reads readsize rebuild record records recover recovery recursive recycle redo reduced ref reference referenced references referencing refresh regexp_like register regr_avgx regr_avgy regr_count regr_intercept regr_r2 regr_slope regr_sxx regr_sxy reject rekey relational relative relaylog release release_lock relies_on relocate rely rem remainder rename repair repeat replace replicate replication required reset resetlogs resize resource respect restore restricted result result_cache resumable resume retention return returning returns reuse reverse revoke right rlike role roles rollback rolling rollup round row row_count rowdependencies rowid rownum rows rtrim rules safe salt sample save savepoint sb1 sb2 sb4 scan schema schemacheck scn scope scroll sdo_georaster sdo_topo_geometry search sec_to_time second section securefile security seed segment select self sequence sequential serializable server servererror session session_user sessions_per_user set sets settings sha sha1 sha2 share shared shared_pool short show shrink shutdown si_averagecolor si_colorhistogram si_featurelist si_positionalcolor si_stillimage si_texture siblings sid sign sin size size_t sizes skip slave sleep smalldatetimefromparts smallfile snapshot some soname sort soundex source space sparse spfile split sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_small_result sql_variant_property sqlcode sqldata sqlerror sqlname sqlstate sqrt square standalone standby start starting startup statement static statistics stats_binomial_test stats_crosstab stats_ks_test stats_mode stats_mw_test stats_one_way_anova stats_t_test_ stats_t_test_indep stats_t_test_one stats_t_test_paired stats_wsr_test status std stddev stddev_pop stddev_samp stdev stop storage store stored str str_to_date straight_join strcmp strict string struct stuff style subdate subpartition subpartitions substitutable substr substring subtime subtring_index subtype success sum suspend switch switchoffset switchover sync synchronous synonym sys sys_xmlagg sysasm sysaux sysdate sysdatetimeoffset sysdba sysoper system system_user sysutcdatetime table tables tablespace tan tdo template temporary terminated tertiary_weights test than then thread through tier ties time time_format time_zone timediff timefromparts timeout timestamp timestampadd timestampdiff timezone_abbr timezone_minute timezone_region to to_base64 to_date to_days to_seconds todatetimeoffset trace tracking transaction transactional translate translation treat trigger trigger_nestlevel triggers trim truncate try_cast try_convert try_parse type ub1 ub2 ub4 ucase unarchived unbounded uncompress under undo unhex unicode uniform uninstall union unique unix_timestamp unknown unlimited unlock unpivot unrecoverable unsafe unsigned until untrusted unusable unused update updated upgrade upped upper upsert url urowid usable usage use use_stored_outlines user user_data user_resources users using utc_date utc_timestamp uuid uuid_short validate validate_password_strength validation valist value values var var_samp varcharc vari varia variab variabl variable variables variance varp varraw varrawc varray verify version versions view virtual visible void wait wallet warning warnings week weekday weekofyear wellformed when whene whenev wheneve whenever where while whitespace with within without work wrapped xdb xml xmlagg xmlattributes xmlcast xmlcolattval xmlelement xmlexists xmlforest xmlindex xmlnamespaces xmlpi xmlquery xmlroot xmlschema xmlserialize xmltable xmltype xor year year_to_month years yearweek\",literal:\"true false null\",built_in:\"array bigint binary bit blob boolean char character date dec decimal float int int8 integer interval number numeric real record serial serial8 smallint text varchar varying void\"},c:[{cN:\"string\",b:\"'\",e:\"'\",c:[e.BE,{b:\"''\"}]},{cN:\"string\",b:'\"',e:'\"',c:[e.BE,{b:'\"\"'}]},{cN:\"string\",b:\"`\",e:\"`\",c:[e.BE]},e.CNM,e.CBCM,t]},e.CBCM,t]}});hljs.registerLanguage(\"ini\",function(e){var b={cN:\"string\",c:[e.BE],v:[{b:\"'''\",e:\"'''\",r:10},{b:'\"\"\"',e:'\"\"\"',r:10},{b:'\"',e:'\"'},{b:\"'\",e:\"'\"}]};return{aliases:[\"toml\"],cI:!0,i:/\\S/,c:[e.C(\";\",\"$\"),e.HCM,{cN:\"section\",b:/^\\s*\\[+/,e:/\\]+/},{b:/^[a-z0-9\\[\\]_-]+\\s*=\\s*/,e:\"$\",rB:!0,c:[{cN:\"attr\",b:/[a-z0-9\\[\\]_-]+/},{b:/=/,eW:!0,r:0,c:[{cN:\"literal\",b:/\\bon|off|true|false|yes|no\\b/},{cN:\"variable\",v:[{b:/\\$[\\w\\d\"][\\w\\d_]*/},{b:/\\$\\{(.*?)}/}]},b,{cN:\"number\",b:/([\\+\\-]+)?[\\d]+_[\\d_]+/},e.NM]}]}]}});hljs.registerLanguage(\"json\",function(e){var i={literal:\"true false null\"},n=[e.QSM,e.CNM],r={e:\",\",eW:!0,eE:!0,c:n,k:i},t={b:\"{\",e:\"}\",c:[{cN:\"attr\",b:/\"/,e:/\"/,c:[e.BE],i:\"\\\\n\"},e.inherit(r,{b:/:/})],i:\"\\\\S\"},c={b:\"\\\\[\",e:\"\\\\]\",c:[e.inherit(r)],i:\"\\\\S\"};return n.splice(n.length,0,t,c),{c:n,k:i,i:\"\\\\S\"}});hljs.registerLanguage(\"bash\",function(e){var t={cN:\"variable\",v:[{b:/\\$[\\w\\d#@][\\w\\d_]*/},{b:/\\$\\{(.*?)}/}]},s={cN:\"string\",b:/\"/,e:/\"/,c:[e.BE,t,{cN:\"variable\",b:/\\$\\(/,e:/\\)/,c:[e.BE]}]},a={cN:\"string\",b:/'/,e:/'/};return{aliases:[\"sh\",\"zsh\"],l:/-?[a-z\\._]+/,k:{keyword:\"if then else elif fi for while in do done case esac function\",literal:\"true false\",built_in:\"break cd continue eval exec exit export getopts hash pwd readonly return shift test times trap umask unset alias bind builtin caller command declare echo enable help let local logout mapfile printf read readarray source type typeset ulimit unalias set shopt autoload bg bindkey bye cap chdir clone comparguments compcall compctl compdescribe compfiles compgroups compquote comptags comptry compvalues dirs disable disown echotc echoti emulate fc fg float functions getcap getln history integer jobs kill limit log noglob popd print pushd pushln rehash sched setcap setopt stat suspend ttyctl unfunction unhash unlimit unsetopt vared wait whence where which zcompile zformat zftp zle zmodload zparseopts zprof zpty zregexparse zsocket zstyle ztcp\",_:\"-ne -eq -lt -gt -f -d -e -s -l -a\"},c:[{cN:\"meta\",b:/^#![^\\n]+sh\\s*$/,r:10},{cN:\"function\",b:/\\w[\\w\\d_]*\\s*\\(\\s*\\)\\s*\\{/,rB:!0,c:[e.inherit(e.TM,{b:/\\w[\\w\\d_]*/})],r:0},e.HCM,s,a,t]}});hljs.registerLanguage(\"python\",function(e){var r={cN:\"meta\",b:/^(>>>|\\.\\.\\.) /},b={cN:\"string\",c:[e.BE],v:[{b:/(u|b)?r?'''/,e:/'''/,c:[r],r:10},{b:/(u|b)?r?\"\"\"/,e:/\"\"\"/,c:[r],r:10},{b:/(u|r|ur)'/,e:/'/,r:10},{b:/(u|r|ur)\"/,e:/\"/,r:10},{b:/(b|br)'/,e:/'/},{b:/(b|br)\"/,e:/\"/},e.ASM,e.QSM]},a={cN:\"number\",r:0,v:[{b:e.BNR+\"[lLjJ]?\"},{b:\"\\\\b(0o[0-7]+)[lLjJ]?\"},{b:e.CNR+\"[lLjJ]?\"}]},l={cN:\"params\",b:/\\(/,e:/\\)/,c:[\"self\",r,a,b]};return{aliases:[\"py\",\"gyp\"],k:{keyword:\"and elif is global as in if from raise for except finally print import pass return exec else break not with class assert yield try while continue del or def lambda async await nonlocal|10 None True False\",built_in:\"Ellipsis NotImplemented\"},i:/(<\\/|->|\\?)/,c:[r,a,b,e.HCM,{v:[{cN:\"function\",bK:\"def\",r:10},{cN:\"class\",bK:\"class\"}],e:/:/,i:/[${=;\\n,]/,c:[e.UTM,l,{b:/->/,eW:!0,k:\"None\"}]},{cN:\"meta\",b:/^[\\t ]*@/,e:/$/},{b:/\\b(print|exec)\\(/}]}});hljs.registerLanguage(\"cpp\",function(t){var e={cN:\"keyword\",b:\"\\\\b[a-z\\\\d_]*_t\\\\b\"},r={cN:\"string\",v:[{b:'(u8?|U)?L?\"',e:'\"',i:\"\\\\n\",c:[t.BE]},{b:'(u8?|U)?R\"',e:'\"',c:[t.BE]},{b:\"'\\\\\\\\?.\",e:\"'\",i:\".\"}]},s={cN:\"number\",v:[{b:\"\\\\b(0b[01']+)\"},{b:\"\\\\b([\\\\d']+(\\\\.[\\\\d']*)?|\\\\.[\\\\d']+)(u|U|l|L|ul|UL|f|F|b|B)\"},{b:\"(-?)(\\\\b0[xX][a-fA-F0-9']+|(\\\\b[\\\\d']+(\\\\.[\\\\d']*)?|\\\\.[\\\\d']+)([eE][-+]?[\\\\d']+)?)\"}],r:0},i={cN:\"meta\",b:/#\\s*[a-z]+\\b/,e:/$/,k:{\"meta-keyword\":\"if else elif endif define undef warning error line pragma ifdef ifndef include\"},c:[{b:/\\\\\\n/,r:0},t.inherit(r,{cN:\"meta-string\"}),{cN:\"meta-string\",b:\"<\",e:\">\",i:\"\\\\n\"},t.CLCM,t.CBCM]},a=t.IR+\"\\\\s*\\\\(\",c={keyword:\"int float while private char catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const struct for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using class asm case typeid short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignof constexpr decltype noexcept static_assert thread_local restrict _Bool complex _Complex _Imaginary atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong new throw return\",built_in:\"std string cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap array shared_ptr abort abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr\",literal:\"true false nullptr NULL\"},n=[e,t.CLCM,t.CBCM,s,r];return{aliases:[\"c\",\"cc\",\"h\",\"c++\",\"h++\",\"hpp\"],k:c,i:\"</\",c:n.concat([i,{b:\"\\\\b(deque|list|queue|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array)\\\\s*<\",e:\">\",k:c,c:[\"self\",e]},{b:t.IR+\"::\",k:c},{v:[{b:/=/,e:/;/},{b:/\\(/,e:/\\)/},{bK:\"new throw return else\",e:/;/}],k:c,c:n.concat([{b:/\\(/,e:/\\)/,k:c,c:n.concat([\"self\"]),r:0}]),r:0},{cN:\"function\",b:\"(\"+t.IR+\"[\\\\*&\\\\s]+)+\"+a,rB:!0,e:/[{;=]/,eE:!0,k:c,i:/[^\\w\\s\\*&]/,c:[{b:a,rB:!0,c:[t.TM],r:0},{cN:\"params\",b:/\\(/,e:/\\)/,k:c,r:0,c:[t.CLCM,t.CBCM,r,s,e]},t.CLCM,t.CBCM,i]}]),exports:{preprocessor:i,strings:r,k:c}}});hljs.registerLanguage(\"php\",function(e){var c={b:\"\\\\$+[a-zA-Z_-ÿ][a-zA-Z0-9_-ÿ]*\"},i={cN:\"meta\",b:/<\\?(php)?|\\?>/},t={cN:\"string\",c:[e.BE,i],v:[{b:'b\"',e:'\"'},{b:\"b'\",e:\"'\"},e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},a={v:[e.BNM,e.CNM]};return{aliases:[\"php3\",\"php4\",\"php5\",\"php6\"],cI:!0,k:\"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally\",c:[e.HCM,e.C(\"//\",\"$\",{c:[i]}),e.C(\"/\\\\*\",\"\\\\*/\",{c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"}]}),e.C(\"__halt_compiler.+?;\",!1,{eW:!0,k:\"__halt_compiler\",l:e.UIR}),{cN:\"string\",b:/<<<['\"]?\\w+['\"]?$/,e:/^\\w+;?$/,c:[e.BE,{cN:\"subst\",v:[{b:/\\$\\w+/},{b:/\\{\\$/,e:/\\}/}]}]},i,{cN:\"keyword\",b:/\\$this\\b/},c,{b:/(::|->)+[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*/},{cN:\"function\",bK:\"function\",e:/[;{]/,eE:!0,i:\"\\\\$|\\\\[|%\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",c,e.CBCM,t,a]}]},{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,i:/[:\\(\\$\"]/,c:[{bK:\"extends implements\"},e.UTM]},{bK:\"namespace\",e:\";\",i:/[\\.']/,c:[e.UTM]},{bK:\"use\",e:\";\",c:[e.UTM]},{b:\"=>\"},t,a]}});hljs.registerLanguage(\"diff\",function(e){return{aliases:[\"patch\"],c:[{cN:\"meta\",r:10,v:[{b:/^@@ +\\-\\d+,\\d+ +\\+\\d+,\\d+ +@@$/},{b:/^\\*\\*\\* +\\d+,\\d+ +\\*\\*\\*\\*$/},{b:/^\\-\\-\\- +\\d+,\\d+ +\\-\\-\\-\\-$/}]},{cN:\"comment\",v:[{b:/Index: /,e:/$/},{b:/={3,}/,e:/$/},{b:/^\\-{3}/,e:/$/},{b:/^\\*{3} /,e:/$/},{b:/^\\+{3}/,e:/$/},{b:/\\*{5}/,e:/\\*{5}$/}]},{cN:\"addition\",b:\"^\\\\+\",e:\"$\"},{cN:\"deletion\",b:\"^\\\\-\",e:\"$\"},{cN:\"addition\",b:\"^\\\\!\",e:\"$\"}]}});hljs.registerLanguage(\"java\",function(e){var t=e.UIR+\"(<\"+e.UIR+\"(\\\\s*,\\\\s*\"+e.UIR+\")*>)?\",a=\"false synchronized int abstract float private char boolean static null if const for true while long strictfp finally protected import native final void enum else break transient catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private module requires exports\",r=\"\\\\b(0[bB]([01]+[01_]+[01]+|[01]+)|0[xX]([a-fA-F0-9]+[a-fA-F0-9_]+[a-fA-F0-9]+|[a-fA-F0-9]+)|(([\\\\d]+[\\\\d_]+[\\\\d]+|[\\\\d]+)(\\\\.([\\\\d]+[\\\\d_]+[\\\\d]+|[\\\\d]+))?|\\\\.([\\\\d]+[\\\\d_]+[\\\\d]+|[\\\\d]+))([eE][-+]?\\\\d+)?)[lLfF]?\",s={cN:\"number\",b:r,r:0};return{aliases:[\"jsp\"],k:a,i:/<\\/|#/,c:[e.C(\"/\\\\*\\\\*\",\"\\\\*/\",{r:0,c:[{b:/\\w+@/,r:0},{cN:\"doctag\",b:\"@[A-Za-z]+\"}]}),e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:\"class\",bK:\"class interface\",e:/[{;=]/,eE:!0,k:\"class interface\",i:/[:\"\\[\\]]/,c:[{bK:\"extends implements\"},e.UTM]},{bK:\"new throw return else\",r:0},{cN:\"function\",b:\"(\"+t+\"\\\\s+)+\"+e.UIR+\"\\\\s*\\\\(\",rB:!0,e:/[{;=]/,eE:!0,k:a,c:[{b:e.UIR+\"\\\\s*\\\\(\",rB:!0,r:0,c:[e.UTM]},{cN:\"params\",b:/\\(/,e:/\\)/,k:a,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},s,{cN:\"meta\",b:\"@[A-Za-z]+\"}]}});hljs.registerLanguage(\"css\",function(e){var c=\"[a-zA-Z-][a-zA-Z0-9_-]*\",t={b:/[A-Z\\_\\.\\-]+\\s*:/,rB:!0,e:\";\",eW:!0,c:[{cN:\"attribute\",b:/\\S/,e:\":\",eE:!0,starts:{eW:!0,eE:!0,c:[{b:/[\\w-]+\\(/,rB:!0,c:[{cN:\"built_in\",b:/[\\w-]+/},{b:/\\(/,e:/\\)/,c:[e.ASM,e.QSM]}]},e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:\"number\",b:\"#[0-9A-Fa-f]+\"},{cN:\"meta\",b:\"!important\"}]}}]};return{cI:!0,i:/[=\\/|'\\$]/,c:[e.CBCM,{cN:\"selector-id\",b:/#[A-Za-z0-9_-]+/},{cN:\"selector-class\",b:/\\.[A-Za-z0-9_-]+/},{cN:\"selector-attr\",b:/\\[/,e:/\\]/,i:\"$\"},{cN:\"selector-pseudo\",b:/:(:)?[a-zA-Z0-9\\_\\-\\+\\(\\)\"'.]+/},{b:\"@(font-face|page)\",l:\"[a-z-]+\",k:\"font-face page\"},{b:\"@\",e:\"[{;]\",i:/:/,c:[{cN:\"keyword\",b:/\\w+/},{b:/\\s/,eW:!0,eE:!0,r:0,c:[e.ASM,e.QSM,e.CSSNM]}]},{cN:\"selector-tag\",b:c,r:0},{b:\"{\",e:\"}\",i:/\\S/,c:[e.CBCM,t]}]}});hljs.registerLanguage(\"javascript\",function(e){var r=\"[A-Za-z$_][0-9A-Za-z$_]*\",t={keyword:\"in of if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const export super debugger as async await static import from as\",literal:\"true false null undefined NaN Infinity\",built_in:\"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document Symbol Set Map WeakSet WeakMap Proxy Reflect Promise\"},a={cN:\"number\",v:[{b:\"\\\\b(0[bB][01]+)\"},{b:\"\\\\b(0[oO][0-7]+)\"},{b:e.CNR}],r:0},n={cN:\"subst\",b:\"\\\\$\\\\{\",e:\"\\\\}\",k:t,c:[]},c={cN:\"string\",b:\"`\",e:\"`\",c:[e.BE,n]};n.c=[e.ASM,e.QSM,c,a,e.RM];var s=n.c.concat([e.CBCM,e.CLCM]);return{aliases:[\"js\",\"jsx\"],k:t,c:[{cN:\"meta\",r:10,b:/^\\s*['\"]use (strict|asm)['\"]/},{cN:\"meta\",b:/^#!/,e:/$/},e.ASM,e.QSM,c,e.CLCM,e.CBCM,a,{b:/[{,]\\s*/,r:0,c:[{b:r+\"\\\\s*:\",rB:!0,r:0,c:[{cN:\"attr\",b:r,r:0}]}]},{b:\"(\"+e.RSR+\"|\\\\b(case|return|throw)\\\\b)\\\\s*\",k:\"return throw case\",c:[e.CLCM,e.CBCM,e.RM,{cN:\"function\",b:\"(\\\\(.*?\\\\)|\"+r+\")\\\\s*=>\",rB:!0,e:\"\\\\s*=>\",c:[{cN:\"params\",v:[{b:r},{b:/\\(\\s*\\)/},{b:/\\(/,e:/\\)/,eB:!0,eE:!0,k:t,c:s}]}]},{b:/</,e:/(\\/\\w+|\\w+\\/)>/,sL:\"xml\",c:[{b:/<\\w+\\s*\\/>/,skip:!0},{b:/<\\w+/,e:/(\\/\\w+|\\w+\\/)>/,skip:!0,c:[{b:/<\\w+\\s*\\/>/,skip:!0},\"self\"]}]}],r:0},{cN:\"function\",bK:\"function\",e:/\\{/,eE:!0,c:[e.inherit(e.TM,{b:r}),{cN:\"params\",b:/\\(/,e:/\\)/,eB:!0,eE:!0,c:s}],i:/\\[|%/},{b:/\\$[(.]/},e.METHOD_GUARD,{cN:\"class\",bK:\"class\",e:/[{;=]/,eE:!0,i:/[:\"\\[\\]]/,c:[{bK:\"extends\"},e.UTM]},{bK:\"constructor\",e:/\\{/,eE:!0}],i:/#(?!!)/}});hljs.registerLanguage(\"apache\",function(e){var r={cN:\"number\",b:\"[\\\\$%]\\\\d+\"};return{aliases:[\"apacheconf\"],cI:!0,c:[e.HCM,{cN:\"section\",b:\"</?\",e:\">\"},{cN:\"attribute\",b:/\\w+/,r:0,k:{nomarkup:\"order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername\"},starts:{e:/$/,r:0,k:{literal:\"on off all\"},c:[{cN:\"meta\",b:\"\\\\s\\\\[\",e:\"\\\\]$\"},{cN:\"variable\",b:\"[\\\\$%]\\\\{\",e:\"\\\\}\",c:[\"self\",r]},r,e.QSM]}}],i:/\\S/}});hljs.registerLanguage(\"xml\",function(s){var e=\"[A-Za-z0-9\\\\._:-]+\",t={eW:!0,i:/</,r:0,c:[{cN:\"attr\",b:e,r:0},{b:/=\\s*/,r:0,c:[{cN:\"string\",endsParent:!0,v:[{b:/\"/,e:/\"/},{b:/'/,e:/'/},{b:/[^\\s\"'=<>`]+/}]}]}]};return{aliases:[\"html\",\"xhtml\",\"rss\",\"atom\",\"xjb\",\"xsd\",\"xsl\",\"plist\"],cI:!0,c:[{cN:\"meta\",b:\"<!DOCTYPE\",e:\">\",r:10,c:[{b:\"\\\\[\",e:\"\\\\]\"}]},s.C(\"<!--\",\"-->\",{r:10}),{b:\"<\\\\!\\\\[CDATA\\\\[\",e:\"\\\\]\\\\]>\",r:10},{b:/<\\?(php)?/,e:/\\?>/,sL:\"php\",c:[{b:\"/\\\\*\",e:\"\\\\*/\",skip:!0}]},{cN:\"tag\",b:\"<style(?=\\\\s|>|$)\",e:\">\",k:{name:\"style\"},c:[t],starts:{e:\"</style>\",rE:!0,sL:[\"css\",\"xml\"]}},{cN:\"tag\",b:\"<script(?=\\\\s|>|$)\",e:\">\",k:{name:\"script\"},c:[t],starts:{e:\"</script>\",rE:!0,sL:[\"actionscript\",\"javascript\",\"handlebars\",\"xml\"]}},{cN:\"meta\",v:[{b:/<\\?xml/,e:/\\?>/,r:10},{b:/<\\?\\w+/,e:/\\?>/}]},{cN:\"tag\",b:\"</?\",e:\"/?>\",c:[{cN:\"name\",b:/[^\\/><\\s]+/,r:0},t]}]}});hljs.registerLanguage(\"markdown\",function(e){return{aliases:[\"md\",\"mkdown\",\"mkd\"],c:[{cN:\"section\",v:[{b:\"^#{1,6}\",e:\"$\"},{b:\"^.+?\\\\n[=-]{2,}$\"}]},{b:\"<\",e:\">\",sL:\"xml\",r:0},{cN:\"bullet\",b:\"^([*+-]|(\\\\d+\\\\.))\\\\s+\"},{cN:\"strong\",b:\"[*_]{2}.+?[*_]{2}\"},{cN:\"emphasis\",v:[{b:\"\\\\*.+?\\\\*\"},{b:\"_.+?_\",r:0}]},{cN:\"quote\",b:\"^>\\\\s+\",e:\"$\"},{cN:\"code\",v:[{b:\"^```w*s*$\",e:\"^```s*$\"},{b:\"`.+?`\"},{b:\"^( {4}|\t)\",e:\"$\",r:0}]},{b:\"^[-\\\\*]{3,}\",e:\"$\"},{b:\"\\\\[.+?\\\\][\\\\(\\\\[].*?[\\\\)\\\\]]\",rB:!0,c:[{cN:\"string\",b:\"\\\\[\",e:\"\\\\]\",eB:!0,rE:!0,r:0},{cN:\"link\",b:\"\\\\]\\\\(\",e:\"\\\\)\",eB:!0,eE:!0},{cN:\"symbol\",b:\"\\\\]\\\\[\",e:\"\\\\]\",eB:!0,eE:!0}],r:10},{b:/^\\[[^\\n]+\\]:/,rB:!0,c:[{cN:\"symbol\",b:/\\[/,e:/\\]/,eB:!0,eE:!0},{cN:\"link\",b:/:\\s*/,e:/$/,eB:!0}]}]}});hljs.registerLanguage(\"coffeescript\",function(e){var c={keyword:\"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger super then unless until loop of by when and or is isnt not\",literal:\"true false null undefined yes no on off\",built_in:\"npm require console print module global window document\"},n=\"[A-Za-z$_][0-9A-Za-z$_]*\",r={cN:\"subst\",b:/#\\{/,e:/}/,k:c},s=[e.BNM,e.inherit(e.CNM,{starts:{e:\"(\\\\s*/)?\",r:0}}),{cN:\"string\",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/\"\"\"/,e:/\"\"\"/,c:[e.BE,r]},{b:/\"/,e:/\"/,c:[e.BE,r]}]},{cN:\"regexp\",v:[{b:\"///\",e:\"///\",c:[r,e.HCM]},{b:\"//[gim]*\",r:0},{b:/\\/(?![ *])(\\\\\\/|.)*?\\/[gim]*(?=\\W|$)/}]},{b:\"@\"+n},{b:\"`\",e:\"`\",eB:!0,eE:!0,sL:\"javascript\"}];r.c=s;var i=e.inherit(e.TM,{b:n}),t=\"(\\\\(.*\\\\))?\\\\s*\\\\B[-=]>\",o={cN:\"params\",b:\"\\\\([^\\\\(]\",rB:!0,c:[{b:/\\(/,e:/\\)/,k:c,c:[\"self\"].concat(s)}]};return{aliases:[\"coffee\",\"cson\",\"iced\"],k:c,i:/\\/\\*/,c:s.concat([e.C(\"###\",\"###\"),e.HCM,{cN:\"function\",b:\"^\\\\s*\"+n+\"\\\\s*=\\\\s*\"+t,e:\"[-=]>\",rB:!0,c:[i,o]},{b:/[:\\(,=]\\s*/,r:0,c:[{cN:\"function\",b:t,e:\"[-=]>\",rB:!0,c:[o]}]},{cN:\"class\",bK:\"class\",e:\"$\",i:/[:=\"\\[\\]]/,c:[{bK:\"extends\",eW:!0,i:/[:=\"\\[\\]]/,c:[i]},i]},{b:n+\":\",e:\":\",rB:!0,rE:!0,r:0}])}});hljs.registerLanguage(\"ruby\",function(e){var b=\"[a-zA-Z_]\\\\w*[!?=]?|[-+~]\\\\@|<<|>>|=~|===?|<=>|[<>]=?|\\\\*\\\\*|[-/+%^&*~`|]|\\\\[\\\\]=?\",r={keyword:\"and then defined module in return redo if BEGIN retry end for self when next until do begin unless END rescue else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor\",literal:\"true false nil\"},c={cN:\"doctag\",b:\"@[A-Za-z]+\"},a={b:\"#<\",e:\">\"},s=[e.C(\"#\",\"$\",{c:[c]}),e.C(\"^\\\\=begin\",\"^\\\\=end\",{c:[c],r:10}),e.C(\"^__END__\",\"\\\\n$\")],n={cN:\"subst\",b:\"#\\\\{\",e:\"}\",k:r},t={cN:\"string\",c:[e.BE,n],v:[{b:/'/,e:/'/},{b:/\"/,e:/\"/},{b:/`/,e:/`/},{b:\"%[qQwWx]?\\\\(\",e:\"\\\\)\"},{b:\"%[qQwWx]?\\\\[\",e:\"\\\\]\"},{b:\"%[qQwWx]?{\",e:\"}\"},{b:\"%[qQwWx]?<\",e:\">\"},{b:\"%[qQwWx]?/\",e:\"/\"},{b:\"%[qQwWx]?%\",e:\"%\"},{b:\"%[qQwWx]?-\",e:\"-\"},{b:\"%[qQwWx]?\\\\|\",e:\"\\\\|\"},{b:/\\B\\?(\\\\\\d{1,3}|\\\\x[A-Fa-f0-9]{1,2}|\\\\u[A-Fa-f0-9]{4}|\\\\?\\S)\\b/},{b:/<<(-?)\\w+$/,e:/^\\s*\\w+$/}]},i={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",endsParent:!0,k:r},d=[t,a,{cN:\"class\",bK:\"class module\",e:\"$|;\",i:/=/,c:[e.inherit(e.TM,{b:\"[A-Za-z_]\\\\w*(::\\\\w+)*(\\\\?|\\\\!)?\"}),{b:\"<\\\\s*\",c:[{b:\"(\"+e.IR+\"::)?\"+e.IR}]}].concat(s)},{cN:\"function\",bK:\"def\",e:\"$|;\",c:[e.inherit(e.TM,{b:b}),i].concat(s)},{b:e.IR+\"::\"},{cN:\"symbol\",b:e.UIR+\"(\\\\!|\\\\?)?:\",r:0},{cN:\"symbol\",b:\":(?!\\\\s)\",c:[t,{b:b}],r:0},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},{b:\"(\\\\$\\\\W)|((\\\\$|\\\\@\\\\@?)(\\\\w+))\"},{cN:\"params\",b:/\\|/,e:/\\|/,k:r},{b:\"(\"+e.RSR+\")\\\\s*\",c:[a,{cN:\"regexp\",c:[e.BE,n],i:/\\n/,v:[{b:\"/\",e:\"/[a-z]*\"},{b:\"%r{\",e:\"}[a-z]*\"},{b:\"%r\\\\(\",e:\"\\\\)[a-z]*\"},{b:\"%r!\",e:\"![a-z]*\"},{b:\"%r\\\\[\",e:\"\\\\][a-z]*\"}]}].concat(s),r:0}].concat(s);n.c=d,i.c=d;var l=\"[>?]>\",o=\"[\\\\w#]+\\\\(\\\\w+\\\\):\\\\d+:\\\\d+>\",w=\"(\\\\w+-)?\\\\d+\\\\.\\\\d+\\\\.\\\\d(p\\\\d+)?[^>]+>\",u=[{b:/^\\s*=>/,starts:{e:\"$\",c:d}},{cN:\"meta\",b:\"^(\"+l+\"|\"+o+\"|\"+w+\")\",starts:{e:\"$\",c:d}}];return{aliases:[\"rb\",\"gemspec\",\"podspec\",\"thor\",\"irb\"],k:r,i:/\\/\\*/,c:s.concat(u).concat(d)}});hljs.registerLanguage(\"perl\",function(e){var t=\"getpwent getservent quotemeta msgrcv scalar kill dbmclose undef lc ma syswrite tr send umask sysopen shmwrite vec qx utime local oct semctl localtime readpipe do return format read sprintf dbmopen pop getpgrp not getpwnam rewinddir qqfileno qw endprotoent wait sethostent bless s|0 opendir continue each sleep endgrent shutdown dump chomp connect getsockname die socketpair close flock exists index shmgetsub for endpwent redo lstat msgctl setpgrp abs exit select print ref gethostbyaddr unshift fcntl syscall goto getnetbyaddr join gmtime symlink semget splice x|0 getpeername recv log setsockopt cos last reverse gethostbyname getgrnam study formline endhostent times chop length gethostent getnetent pack getprotoent getservbyname rand mkdir pos chmod y|0 substr endnetent printf next open msgsnd readdir use unlink getsockopt getpriority rindex wantarray hex system getservbyport endservent int chr untie rmdir prototype tell listen fork shmread ucfirst setprotoent else sysseek link getgrgid shmctl waitpid unpack getnetbyname reset chdir grep split require caller lcfirst until warn while values shift telldir getpwuid my getprotobynumber delete and sort uc defined srand accept package seekdir getprotobyname semop our rename seek if q|0 chroot sysread setpwent no crypt getc chown sqrt write setnetent setpriority foreach tie sin msgget map stat getlogin unless elsif truncate exec keys glob tied closedirioctl socket readlink eval xor readline binmode setservent eof ord bind alarm pipe atan2 getgrent exp time push setgrent gt lt or ne m|0 break given say state when\",r={cN:\"subst\",b:\"[$@]\\\\{\",e:\"\\\\}\",k:t},s={b:\"->{\",e:\"}\"},n={v:[{b:/\\$\\d/},{b:/[\\$%@](\\^\\w\\b|#\\w+(::\\w+)*|{\\w+}|\\w+(::\\w*)*)/},{b:/[\\$%@][^\\s\\w{]/,r:0}]},i=[e.BE,r,n],o=[n,e.HCM,e.C(\"^\\\\=\\\\w\",\"\\\\=cut\",{eW:!0}),s,{cN:\"string\",c:i,v:[{b:\"q[qwxr]?\\\\s*\\\\(\",e:\"\\\\)\",r:5},{b:\"q[qwxr]?\\\\s*\\\\[\",e:\"\\\\]\",r:5},{b:\"q[qwxr]?\\\\s*\\\\{\",e:\"\\\\}\",r:5},{b:\"q[qwxr]?\\\\s*\\\\|\",e:\"\\\\|\",r:5},{b:\"q[qwxr]?\\\\s*\\\\<\",e:\"\\\\>\",r:5},{b:\"qw\\\\s+q\",e:\"q\",r:5},{b:\"'\",e:\"'\",c:[e.BE]},{b:'\"',e:'\"'},{b:\"`\",e:\"`\",c:[e.BE]},{b:\"{\\\\w+}\",c:[],r:0},{b:\"-?\\\\w+\\\\s*\\\\=\\\\>\",c:[],r:0}]},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},{b:\"(\\\\/\\\\/|\"+e.RSR+\"|\\\\b(split|return|print|reverse|grep)\\\\b)\\\\s*\",k:\"split return print reverse grep\",r:0,c:[e.HCM,{cN:\"regexp\",b:\"(s|tr|y)/(\\\\\\\\.|[^/])*/(\\\\\\\\.|[^/])*/[a-z]*\",r:10},{cN:\"regexp\",b:\"(m|qr)?/\",e:\"/[a-z]*\",c:[e.BE],r:0}]},{cN:\"function\",bK:\"sub\",e:\"(\\\\s*\\\\(.*?\\\\))?[;{]\",eE:!0,r:5,c:[e.TM]},{b:\"-\\\\w\\\\b\",r:0},{b:\"^__DATA__$\",e:\"^__END__$\",sL:\"mojolicious\",c:[{b:\"^@@.*\",e:\"$\",cN:\"comment\"}]}];return r.c=o,s.c=o,{aliases:[\"pl\",\"pm\"],l:/[\\w\\.]+/,k:t,c:o}});hljs.registerLanguage(\"objectivec\",function(e){var t={cN:\"built_in\",b:\"\\\\b(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)\\\\w+\"},_={keyword:\"int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required @encode @package @import @defs @compatibility_alias __bridge __bridge_transfer __bridge_retained __bridge_retain __covariant __contravariant __kindof _Nonnull _Nullable _Null_unspecified __FUNCTION__ __PRETTY_FUNCTION__ __attribute__ getter setter retain unsafe_unretained nonnull nullable null_unspecified null_resettable class instancetype NS_DESIGNATED_INITIALIZER NS_UNAVAILABLE NS_REQUIRES_SUPER NS_RETURNS_INNER_POINTER NS_INLINE NS_AVAILABLE NS_DEPRECATED NS_ENUM NS_OPTIONS NS_SWIFT_UNAVAILABLE NS_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_END NS_REFINED_FOR_SWIFT NS_SWIFT_NAME NS_SWIFT_NOTHROW NS_DURING NS_HANDLER NS_ENDHANDLER NS_VALUERETURN NS_VOIDRETURN\",literal:\"false true FALSE TRUE nil YES NO NULL\",built_in:\"BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once\"},i=/[a-zA-Z@][a-zA-Z0-9_]*/,n=\"@interface @class @protocol @implementation\";return{aliases:[\"mm\",\"objc\",\"obj-c\"],k:_,l:i,i:\"</\",c:[t,e.CLCM,e.CBCM,e.CNM,e.QSM,{cN:\"string\",v:[{b:'@\"',e:'\"',i:\"\\\\n\",c:[e.BE]},{b:\"'\",e:\"[^\\\\\\\\]'\",i:\"[^\\\\\\\\][^']\"}]},{cN:\"meta\",b:\"#\",e:\"$\",c:[{cN:\"meta-string\",v:[{b:'\"',e:'\"'},{b:\"<\",e:\">\"}]}]},{cN:\"class\",b:\"(\"+n.split(\" \").join(\"|\")+\")\\\\b\",e:\"({|$)\",eE:!0,k:n,l:i,c:[e.UTM]},{b:\"\\\\.\"+e.UIR,r:0}]}});hljs.registerLanguage(\"cs\",function(e){var i={keyword:\"abstract as base bool break byte case catch char checked const continue decimal default delegate do double else enum event explicit extern finally fixed float for foreach goto if implicit in int interface internal is lock long object operator out override params private protected public readonly ref sbyte sealed short sizeof stackalloc static string struct switch this try typeof uint ulong unchecked unsafe ushort using virtual void volatile while nameof add alias ascending async await by descending dynamic equals from get global group into join let on orderby partial remove select set value var where yield\",literal:\"null false true\"},r={cN:\"string\",b:'@\"',e:'\"',c:[{b:'\"\"'}]},t=e.inherit(r,{i:/\\n/}),a={cN:\"subst\",b:\"{\",e:\"}\",k:i},n=e.inherit(a,{i:/\\n/}),c={cN:\"string\",b:/\\$\"/,e:'\"',i:/\\n/,c:[{b:\"{{\"},{b:\"}}\"},e.BE,n]},s={cN:\"string\",b:/\\$@\"/,e:'\"',c:[{b:\"{{\"},{b:\"}}\"},{b:'\"\"'},a]},o=e.inherit(s,{i:/\\n/,c:[{b:\"{{\"},{b:\"}}\"},{b:'\"\"'},n]});a.c=[s,c,r,e.ASM,e.QSM,e.CNM,e.CBCM],n.c=[o,c,t,e.ASM,e.QSM,e.CNM,e.inherit(e.CBCM,{i:/\\n/})];var l={v:[s,c,r,e.ASM,e.QSM]},b=e.IR+\"(<\"+e.IR+\"(\\\\s*,\\\\s*\"+e.IR+\")*>)?(\\\\[\\\\])?\";return{aliases:[\"csharp\"],k:i,i:/::/,c:[e.C(\"///\",\"$\",{rB:!0,c:[{cN:\"doctag\",v:[{b:\"///\",r:0},{b:\"<!--|-->\"},{b:\"</?\",e:\">\"}]}]}),e.CLCM,e.CBCM,{cN:\"meta\",b:\"#\",e:\"$\",k:{\"meta-keyword\":\"if else elif endif define undef warning error line region endregion pragma checksum\"}},l,e.CNM,{bK:\"class interface\",e:/[{;=]/,i:/[^\\s:]/,c:[e.TM,e.CLCM,e.CBCM]},{bK:\"namespace\",e:/[{;=]/,i:/[^\\s:]/,c:[e.inherit(e.TM,{b:\"[a-zA-Z](\\\\.?\\\\w)*\"}),e.CLCM,e.CBCM]},{bK:\"new return throw await\",r:0},{cN:\"function\",b:\"(\"+b+\"\\\\s+)+\"+e.IR+\"\\\\s*\\\\(\",rB:!0,e:/[{;=]/,eE:!0,k:i,c:[{b:e.IR+\"\\\\s*\\\\(\",rB:!0,c:[e.TM],r:0},{cN:\"params\",b:/\\(/,e:/\\)/,eB:!0,eE:!0,k:i,r:0,c:[l,e.CNM,e.CBCM]},e.CLCM,e.CBCM]}]}});"
  },
  {
    "path": "www/static/highlight/styles/agate.css",
    "content": "/*!\n * Agate by Taufik Nurrohman <https://github.com/tovic>\n * ----------------------------------------------------\n *\n * #ade5fc\n * #a2fca2\n * #c6b4f0\n * #d36363\n * #fcc28c\n * #fc9b9b\n * #ffa\n * #fff\n * #333\n * #62c8f3\n * #888\n *\n */\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #333;\n  color: white;\n}\n\n.hljs-name,\n.hljs-strong {\n  font-weight: bold;\n}\n\n.hljs-code,\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-tag {\n  color: #62c8f3;\n}\n\n.hljs-variable,\n.hljs-template-variable,\n.hljs-selector-id,\n.hljs-selector-class {\n  color: #ade5fc;\n}\n\n.hljs-string,\n.hljs-bullet {\n  color: #a2fca2;\n}\n\n.hljs-type,\n.hljs-title,\n.hljs-section,\n.hljs-attribute,\n.hljs-quote,\n.hljs-built_in,\n.hljs-builtin-name {\n  color: #ffa;\n}\n\n.hljs-number,\n.hljs-symbol,\n.hljs-bullet {\n  color: #d36363;\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-literal {\n  color: #fcc28c;\n}\n\n.hljs-comment,\n.hljs-deletion,\n.hljs-code {\n  color: #888;\n}\n\n.hljs-regexp,\n.hljs-link {\n  color: #c6b4f0;\n}\n\n.hljs-meta {\n  color: #fc9b9b;\n}\n\n.hljs-deletion {\n  background-color: #fc9b9b;\n  color: #333;\n}\n\n.hljs-addition {\n  background-color: #a2fca2;\n  color: #333;\n}\n\n.hljs a {\n  color: inherit;\n}\n\n.hljs a:focus,\n.hljs a:hover {\n  color: inherit;\n  text-decoration: underline;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/androidstudio.css",
    "content": "/*\nDate: 24 Fev 2015\nAuthor: Pedro Oliveira <kanytu@gmail . com>\n*/\n\n.hljs {\n  color: #a9b7c6;\n  background: #282b2e;\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n}\n\n.hljs-number,\n.hljs-literal,\n.hljs-symbol,\n.hljs-bullet {\n  color: #6897BB;\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-deletion {\n  color: #cc7832;\n}\n\n.hljs-variable,\n.hljs-template-variable,\n.hljs-link {\n  color: #629755;\n}\n\n.hljs-comment,\n.hljs-quote {\n  color: #808080;\n}\n\n.hljs-meta {\n  color: #bbb529;\n}\n\n.hljs-string,\n.hljs-attribute,\n.hljs-addition {\n  color: #6A8759;\n}\n\n.hljs-section,\n.hljs-title,\n.hljs-type {\n  color: #ffc66d;\n}\n\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class {\n  color: #e8bf6a;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/arduino-light.css",
    "content": "/*\n\nArduino® Light Theme - Stefania Mellai <s.mellai@arduino.cc>\n\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #FFFFFF;\n}\n\n.hljs,\n.hljs-subst {\n  color: #434f54;\n}\n\n.hljs-keyword,\n.hljs-attribute,\n.hljs-selector-tag,\n.hljs-doctag,\n.hljs-name {\n  color: #00979D;\n}\n\n.hljs-built_in,\n.hljs-literal,\n.hljs-bullet,\n.hljs-code,\n.hljs-addition {\n  color: #D35400;\n}\n\n.hljs-regexp,\n.hljs-symbol,\n.hljs-variable,\n.hljs-template-variable,\n.hljs-link,\n.hljs-selector-attr,\n.hljs-selector-pseudo {\n  color: #00979D;\n}\n\n.hljs-type,\n.hljs-string,\n.hljs-selector-id,\n.hljs-selector-class,\n.hljs-quote,\n.hljs-template-tag,\n.hljs-deletion {\n  color: #005C5F;\n}\n\n.hljs-title,\n.hljs-section {\n  color: #880000;\n  font-weight: bold;\n}\n\n.hljs-comment {\n  color: rgba(149,165,166,.8);\n}\n\n.hljs-meta-keyword {\n  color: #728E00;\n}\n\n.hljs-meta {\n  color: #728E00;\n  color: #434f54;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n\n.hljs-function {\n  color: #728E00;\n}\n\n.hljs-number {\n  color: #8A7B52;  \n}\n"
  },
  {
    "path": "www/static/highlight/styles/arta.css",
    "content": "/*\nDate: 17.V.2011\nAuthor: pumbur <pumbur@pumbur.net>\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #222;\n}\n\n.hljs,\n.hljs-subst {\n  color: #aaa;\n}\n\n.hljs-section {\n  color: #fff;\n}\n\n.hljs-comment,\n.hljs-quote,\n.hljs-meta {\n  color: #444;\n}\n\n.hljs-string,\n.hljs-symbol,\n.hljs-bullet,\n.hljs-regexp {\n  color: #ffcc33;\n}\n\n.hljs-number,\n.hljs-addition {\n  color: #00cc66;\n}\n\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-literal,\n.hljs-type,\n.hljs-template-variable,\n.hljs-attribute,\n.hljs-link {\n  color: #32aaee;\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class {\n  color: #6644aa;\n}\n\n.hljs-title,\n.hljs-variable,\n.hljs-deletion,\n.hljs-template-tag {\n  color: #bb1166;\n}\n\n.hljs-section,\n.hljs-doctag,\n.hljs-strong {\n  font-weight: bold;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/ascetic.css",
    "content": "/*\n\nOriginal style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>\n\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: white;\n  color: black;\n}\n\n.hljs-string,\n.hljs-variable,\n.hljs-template-variable,\n.hljs-symbol,\n.hljs-bullet,\n.hljs-section,\n.hljs-addition,\n.hljs-attribute,\n.hljs-link {\n  color: #888;\n}\n\n.hljs-comment,\n.hljs-quote,\n.hljs-meta,\n.hljs-deletion {\n  color: #ccc;\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-section,\n.hljs-name,\n.hljs-type,\n.hljs-strong {\n  font-weight: bold;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/atelier-cave-dark.css",
    "content": "/* Base16 Atelier Cave Dark - Theme */\n/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/cave) */\n/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */\n\n/* Atelier-Cave Comment */\n.hljs-comment,\n.hljs-quote {\n  color: #7e7887;\n}\n\n/* Atelier-Cave Red */\n.hljs-variable,\n.hljs-template-variable,\n.hljs-attribute,\n.hljs-regexp,\n.hljs-link,\n.hljs-tag,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class {\n  color: #be4678;\n}\n\n/* Atelier-Cave Orange */\n.hljs-number,\n.hljs-meta,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-literal,\n.hljs-type,\n.hljs-params {\n  color: #aa573c;\n}\n\n/* Atelier-Cave Green */\n.hljs-string,\n.hljs-symbol,\n.hljs-bullet {\n  color: #2a9292;\n}\n\n/* Atelier-Cave Blue */\n.hljs-title,\n.hljs-section {\n  color: #576ddb;\n}\n\n/* Atelier-Cave Purple */\n.hljs-keyword,\n.hljs-selector-tag {\n  color: #955ae7;\n}\n\n.hljs-deletion,\n.hljs-addition {\n  color: #19171c;\n  display: inline-block;\n  width: 100%;\n}\n\n.hljs-deletion {\n  background-color: #be4678;\n}\n\n.hljs-addition {\n  background-color: #2a9292;\n}\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  background: #19171c;\n  color: #8b8792;\n  padding: 0.5em;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/atelier-cave-light.css",
    "content": "/* Base16 Atelier Cave Light - Theme */\n/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/cave) */\n/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */\n\n/* Atelier-Cave Comment */\n.hljs-comment,\n.hljs-quote {\n  color: #655f6d;\n}\n\n/* Atelier-Cave Red */\n.hljs-variable,\n.hljs-template-variable,\n.hljs-attribute,\n.hljs-tag,\n.hljs-name,\n.hljs-regexp,\n.hljs-link,\n.hljs-name,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class {\n  color: #be4678;\n}\n\n/* Atelier-Cave Orange */\n.hljs-number,\n.hljs-meta,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-literal,\n.hljs-type,\n.hljs-params {\n  color: #aa573c;\n}\n\n/* Atelier-Cave Green */\n.hljs-string,\n.hljs-symbol,\n.hljs-bullet {\n  color: #2a9292;\n}\n\n/* Atelier-Cave Blue */\n.hljs-title,\n.hljs-section {\n  color: #576ddb;\n}\n\n/* Atelier-Cave Purple */\n.hljs-keyword,\n.hljs-selector-tag {\n  color: #955ae7;\n}\n\n.hljs-deletion,\n.hljs-addition {\n  color: #19171c;\n  display: inline-block;\n  width: 100%;\n}\n\n.hljs-deletion {\n  background-color: #be4678;\n}\n\n.hljs-addition {\n  background-color: #2a9292;\n}\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  background: #efecf4;\n  color: #585260;\n  padding: 0.5em;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/atelier-dune-dark.css",
    "content": "/* Base16 Atelier Dune Dark - Theme */\n/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/dune) */\n/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */\n\n/* Atelier-Dune Comment */\n.hljs-comment,\n.hljs-quote {\n  color: #999580;\n}\n\n/* Atelier-Dune Red */\n.hljs-variable,\n.hljs-template-variable,\n.hljs-attribute,\n.hljs-tag,\n.hljs-name,\n.hljs-regexp,\n.hljs-link,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class {\n  color: #d73737;\n}\n\n/* Atelier-Dune Orange */\n.hljs-number,\n.hljs-meta,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-literal,\n.hljs-type,\n.hljs-params {\n  color: #b65611;\n}\n\n/* Atelier-Dune Green */\n.hljs-string,\n.hljs-symbol,\n.hljs-bullet {\n  color: #60ac39;\n}\n\n/* Atelier-Dune Blue */\n.hljs-title,\n.hljs-section {\n  color: #6684e1;\n}\n\n/* Atelier-Dune Purple */\n.hljs-keyword,\n.hljs-selector-tag {\n  color: #b854d4;\n}\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  background: #20201d;\n  color: #a6a28c;\n  padding: 0.5em;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/atelier-dune-light.css",
    "content": "/* Base16 Atelier Dune Light - Theme */\n/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/dune) */\n/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */\n\n/* Atelier-Dune Comment */\n.hljs-comment,\n.hljs-quote {\n  color: #7d7a68;\n}\n\n/* Atelier-Dune Red */\n.hljs-variable,\n.hljs-template-variable,\n.hljs-attribute,\n.hljs-tag,\n.hljs-name,\n.hljs-regexp,\n.hljs-link,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class {\n  color: #d73737;\n}\n\n/* Atelier-Dune Orange */\n.hljs-number,\n.hljs-meta,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-literal,\n.hljs-type,\n.hljs-params {\n  color: #b65611;\n}\n\n/* Atelier-Dune Green */\n.hljs-string,\n.hljs-symbol,\n.hljs-bullet {\n  color: #60ac39;\n}\n\n/* Atelier-Dune Blue */\n.hljs-title,\n.hljs-section {\n  color: #6684e1;\n}\n\n/* Atelier-Dune Purple */\n.hljs-keyword,\n.hljs-selector-tag {\n  color: #b854d4;\n}\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  background: #fefbec;\n  color: #6e6b5e;\n  padding: 0.5em;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/atelier-estuary-dark.css",
    "content": "/* Base16 Atelier Estuary Dark - Theme */\n/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/estuary) */\n/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */\n\n/* Atelier-Estuary Comment */\n.hljs-comment,\n.hljs-quote {\n  color: #878573;\n}\n\n/* Atelier-Estuary Red */\n.hljs-variable,\n.hljs-template-variable,\n.hljs-attribute,\n.hljs-tag,\n.hljs-name,\n.hljs-regexp,\n.hljs-link,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class {\n  color: #ba6236;\n}\n\n/* Atelier-Estuary Orange */\n.hljs-number,\n.hljs-meta,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-literal,\n.hljs-type,\n.hljs-params {\n  color: #ae7313;\n}\n\n/* Atelier-Estuary Green */\n.hljs-string,\n.hljs-symbol,\n.hljs-bullet {\n  color: #7d9726;\n}\n\n/* Atelier-Estuary Blue */\n.hljs-title,\n.hljs-section {\n  color: #36a166;\n}\n\n/* Atelier-Estuary Purple */\n.hljs-keyword,\n.hljs-selector-tag {\n  color: #5f9182;\n}\n\n.hljs-deletion,\n.hljs-addition {\n  color: #22221b;\n  display: inline-block;\n  width: 100%;\n}\n\n.hljs-deletion {\n  background-color: #ba6236;\n}\n\n.hljs-addition {\n  background-color: #7d9726;\n}\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  background: #22221b;\n  color: #929181;\n  padding: 0.5em;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/atelier-estuary-light.css",
    "content": "/* Base16 Atelier Estuary Light - Theme */\n/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/estuary) */\n/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */\n\n/* Atelier-Estuary Comment */\n.hljs-comment,\n.hljs-quote {\n  color: #6c6b5a;\n}\n\n/* Atelier-Estuary Red */\n.hljs-variable,\n.hljs-template-variable,\n.hljs-attribute,\n.hljs-tag,\n.hljs-name,\n.hljs-regexp,\n.hljs-link,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class {\n  color: #ba6236;\n}\n\n/* Atelier-Estuary Orange */\n.hljs-number,\n.hljs-meta,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-literal,\n.hljs-type,\n.hljs-params {\n  color: #ae7313;\n}\n\n/* Atelier-Estuary Green */\n.hljs-string,\n.hljs-symbol,\n.hljs-bullet {\n  color: #7d9726;\n}\n\n/* Atelier-Estuary Blue */\n.hljs-title,\n.hljs-section {\n  color: #36a166;\n}\n\n/* Atelier-Estuary Purple */\n.hljs-keyword,\n.hljs-selector-tag {\n  color: #5f9182;\n}\n\n.hljs-deletion,\n.hljs-addition {\n  color: #22221b;\n  display: inline-block;\n  width: 100%;\n}\n\n.hljs-deletion {\n  background-color: #ba6236;\n}\n\n.hljs-addition {\n  background-color: #7d9726;\n}\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  background: #f4f3ec;\n  color: #5f5e4e;\n  padding: 0.5em;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/atelier-forest-dark.css",
    "content": "/* Base16 Atelier Forest Dark - Theme */\n/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/forest) */\n/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */\n\n/* Atelier-Forest Comment */\n.hljs-comment,\n.hljs-quote {\n  color: #9c9491;\n}\n\n/* Atelier-Forest Red */\n.hljs-variable,\n.hljs-template-variable,\n.hljs-attribute,\n.hljs-tag,\n.hljs-name,\n.hljs-regexp,\n.hljs-link,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class {\n  color: #f22c40;\n}\n\n/* Atelier-Forest Orange */\n.hljs-number,\n.hljs-meta,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-literal,\n.hljs-type,\n.hljs-params {\n  color: #df5320;\n}\n\n/* Atelier-Forest Green */\n.hljs-string,\n.hljs-symbol,\n.hljs-bullet {\n  color: #7b9726;\n}\n\n/* Atelier-Forest Blue */\n.hljs-title,\n.hljs-section {\n  color: #407ee7;\n}\n\n/* Atelier-Forest Purple */\n.hljs-keyword,\n.hljs-selector-tag {\n  color: #6666ea;\n}\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  background: #1b1918;\n  color: #a8a19f;\n  padding: 0.5em;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/atelier-forest-light.css",
    "content": "/* Base16 Atelier Forest Light - Theme */\n/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/forest) */\n/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */\n\n/* Atelier-Forest Comment */\n.hljs-comment,\n.hljs-quote {\n  color: #766e6b;\n}\n\n/* Atelier-Forest Red */\n.hljs-variable,\n.hljs-template-variable,\n.hljs-attribute,\n.hljs-tag,\n.hljs-name,\n.hljs-regexp,\n.hljs-link,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class {\n  color: #f22c40;\n}\n\n/* Atelier-Forest Orange */\n.hljs-number,\n.hljs-meta,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-literal,\n.hljs-type,\n.hljs-params {\n  color: #df5320;\n}\n\n/* Atelier-Forest Green */\n.hljs-string,\n.hljs-symbol,\n.hljs-bullet {\n  color: #7b9726;\n}\n\n/* Atelier-Forest Blue */\n.hljs-title,\n.hljs-section {\n  color: #407ee7;\n}\n\n/* Atelier-Forest Purple */\n.hljs-keyword,\n.hljs-selector-tag {\n  color: #6666ea;\n}\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  background: #f1efee;\n  color: #68615e;\n  padding: 0.5em;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/atelier-heath-dark.css",
    "content": "/* Base16 Atelier Heath Dark - Theme */\n/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/heath) */\n/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */\n\n/* Atelier-Heath Comment */\n.hljs-comment,\n.hljs-quote {\n  color: #9e8f9e;\n}\n\n/* Atelier-Heath Red */\n.hljs-variable,\n.hljs-template-variable,\n.hljs-attribute,\n.hljs-tag,\n.hljs-name,\n.hljs-regexp,\n.hljs-link,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class {\n  color: #ca402b;\n}\n\n/* Atelier-Heath Orange */\n.hljs-number,\n.hljs-meta,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-literal,\n.hljs-type,\n.hljs-params {\n  color: #a65926;\n}\n\n/* Atelier-Heath Green */\n.hljs-string,\n.hljs-symbol,\n.hljs-bullet {\n  color: #918b3b;\n}\n\n/* Atelier-Heath Blue */\n.hljs-title,\n.hljs-section {\n  color: #516aec;\n}\n\n/* Atelier-Heath Purple */\n.hljs-keyword,\n.hljs-selector-tag {\n  color: #7b59c0;\n}\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  background: #1b181b;\n  color: #ab9bab;\n  padding: 0.5em;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/atelier-heath-light.css",
    "content": "/* Base16 Atelier Heath Light - Theme */\n/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/heath) */\n/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */\n\n/* Atelier-Heath Comment */\n.hljs-comment,\n.hljs-quote {\n  color: #776977;\n}\n\n/* Atelier-Heath Red */\n.hljs-variable,\n.hljs-template-variable,\n.hljs-attribute,\n.hljs-tag,\n.hljs-name,\n.hljs-regexp,\n.hljs-link,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class {\n  color: #ca402b;\n}\n\n/* Atelier-Heath Orange */\n.hljs-number,\n.hljs-meta,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-literal,\n.hljs-type,\n.hljs-params {\n  color: #a65926;\n}\n\n/* Atelier-Heath Green */\n.hljs-string,\n.hljs-symbol,\n.hljs-bullet {\n  color: #918b3b;\n}\n\n/* Atelier-Heath Blue */\n.hljs-title,\n.hljs-section {\n  color: #516aec;\n}\n\n/* Atelier-Heath Purple */\n.hljs-keyword,\n.hljs-selector-tag {\n  color: #7b59c0;\n}\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  background: #f7f3f7;\n  color: #695d69;\n  padding: 0.5em;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/atelier-lakeside-dark.css",
    "content": "/* Base16 Atelier Lakeside Dark - Theme */\n/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/lakeside) */\n/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */\n\n/* Atelier-Lakeside Comment */\n.hljs-comment,\n.hljs-quote {\n  color: #7195a8;\n}\n\n/* Atelier-Lakeside Red */\n.hljs-variable,\n.hljs-template-variable,\n.hljs-attribute,\n.hljs-tag,\n.hljs-name,\n.hljs-regexp,\n.hljs-link,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class {\n  color: #d22d72;\n}\n\n/* Atelier-Lakeside Orange */\n.hljs-number,\n.hljs-meta,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-literal,\n.hljs-type,\n.hljs-params {\n  color: #935c25;\n}\n\n/* Atelier-Lakeside Green */\n.hljs-string,\n.hljs-symbol,\n.hljs-bullet {\n  color: #568c3b;\n}\n\n/* Atelier-Lakeside Blue */\n.hljs-title,\n.hljs-section {\n  color: #257fad;\n}\n\n/* Atelier-Lakeside Purple */\n.hljs-keyword,\n.hljs-selector-tag {\n  color: #6b6bb8;\n}\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  background: #161b1d;\n  color: #7ea2b4;\n  padding: 0.5em;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/atelier-lakeside-light.css",
    "content": "/* Base16 Atelier Lakeside Light - Theme */\n/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/lakeside) */\n/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */\n\n/* Atelier-Lakeside Comment */\n.hljs-comment,\n.hljs-quote {\n  color: #5a7b8c;\n}\n\n/* Atelier-Lakeside Red */\n.hljs-variable,\n.hljs-template-variable,\n.hljs-attribute,\n.hljs-tag,\n.hljs-name,\n.hljs-regexp,\n.hljs-link,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class {\n  color: #d22d72;\n}\n\n/* Atelier-Lakeside Orange */\n.hljs-number,\n.hljs-meta,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-literal,\n.hljs-type,\n.hljs-params {\n  color: #935c25;\n}\n\n/* Atelier-Lakeside Green */\n.hljs-string,\n.hljs-symbol,\n.hljs-bullet {\n  color: #568c3b;\n}\n\n/* Atelier-Lakeside Blue */\n.hljs-title,\n.hljs-section {\n  color: #257fad;\n}\n\n/* Atelier-Lakeside Purple */\n.hljs-keyword,\n.hljs-selector-tag {\n  color: #6b6bb8;\n}\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  background: #ebf8ff;\n  color: #516d7b;\n  padding: 0.5em;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/atelier-plateau-dark.css",
    "content": "/* Base16 Atelier Plateau Dark - Theme */\n/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/plateau) */\n/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */\n\n/* Atelier-Plateau Comment */\n.hljs-comment,\n.hljs-quote {\n  color: #7e7777;\n}\n\n/* Atelier-Plateau Red */\n.hljs-variable,\n.hljs-template-variable,\n.hljs-attribute,\n.hljs-tag,\n.hljs-name,\n.hljs-regexp,\n.hljs-link,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class {\n  color: #ca4949;\n}\n\n/* Atelier-Plateau Orange */\n.hljs-number,\n.hljs-meta,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-literal,\n.hljs-type,\n.hljs-params {\n  color: #b45a3c;\n}\n\n/* Atelier-Plateau Green */\n.hljs-string,\n.hljs-symbol,\n.hljs-bullet {\n  color: #4b8b8b;\n}\n\n/* Atelier-Plateau Blue */\n.hljs-title,\n.hljs-section {\n  color: #7272ca;\n}\n\n/* Atelier-Plateau Purple */\n.hljs-keyword,\n.hljs-selector-tag {\n  color: #8464c4;\n}\n\n.hljs-deletion,\n.hljs-addition {\n  color: #1b1818;\n  display: inline-block;\n  width: 100%;\n}\n\n.hljs-deletion {\n  background-color: #ca4949;\n}\n\n.hljs-addition {\n  background-color: #4b8b8b;\n}\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  background: #1b1818;\n  color: #8a8585;\n  padding: 0.5em;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/atelier-plateau-light.css",
    "content": "/* Base16 Atelier Plateau Light - Theme */\n/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/plateau) */\n/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */\n\n/* Atelier-Plateau Comment */\n.hljs-comment,\n.hljs-quote {\n  color: #655d5d;\n}\n\n/* Atelier-Plateau Red */\n.hljs-variable,\n.hljs-template-variable,\n.hljs-attribute,\n.hljs-tag,\n.hljs-name,\n.hljs-regexp,\n.hljs-link,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class {\n  color: #ca4949;\n}\n\n/* Atelier-Plateau Orange */\n.hljs-number,\n.hljs-meta,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-literal,\n.hljs-type,\n.hljs-params {\n  color: #b45a3c;\n}\n\n/* Atelier-Plateau Green */\n.hljs-string,\n.hljs-symbol,\n.hljs-bullet {\n  color: #4b8b8b;\n}\n\n/* Atelier-Plateau Blue */\n.hljs-title,\n.hljs-section {\n  color: #7272ca;\n}\n\n/* Atelier-Plateau Purple */\n.hljs-keyword,\n.hljs-selector-tag {\n  color: #8464c4;\n}\n\n.hljs-deletion,\n.hljs-addition {\n  color: #1b1818;\n  display: inline-block;\n  width: 100%;\n}\n\n.hljs-deletion {\n  background-color: #ca4949;\n}\n\n.hljs-addition {\n  background-color: #4b8b8b;\n}\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  background: #f4ecec;\n  color: #585050;\n  padding: 0.5em;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/atelier-savanna-dark.css",
    "content": "/* Base16 Atelier Savanna Dark - Theme */\n/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/savanna) */\n/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */\n\n/* Atelier-Savanna Comment */\n.hljs-comment,\n.hljs-quote {\n  color: #78877d;\n}\n\n/* Atelier-Savanna Red */\n.hljs-variable,\n.hljs-template-variable,\n.hljs-attribute,\n.hljs-tag,\n.hljs-name,\n.hljs-regexp,\n.hljs-link,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class {\n  color: #b16139;\n}\n\n/* Atelier-Savanna Orange */\n.hljs-number,\n.hljs-meta,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-literal,\n.hljs-type,\n.hljs-params {\n  color: #9f713c;\n}\n\n/* Atelier-Savanna Green */\n.hljs-string,\n.hljs-symbol,\n.hljs-bullet {\n  color: #489963;\n}\n\n/* Atelier-Savanna Blue */\n.hljs-title,\n.hljs-section {\n  color: #478c90;\n}\n\n/* Atelier-Savanna Purple */\n.hljs-keyword,\n.hljs-selector-tag {\n  color: #55859b;\n}\n\n.hljs-deletion,\n.hljs-addition {\n  color: #171c19;\n  display: inline-block;\n  width: 100%;\n}\n\n.hljs-deletion {\n  background-color: #b16139;\n}\n\n.hljs-addition {\n  background-color: #489963;\n}\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  background: #171c19;\n  color: #87928a;\n  padding: 0.5em;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/atelier-savanna-light.css",
    "content": "/* Base16 Atelier Savanna Light - Theme */\n/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/savanna) */\n/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */\n\n/* Atelier-Savanna Comment */\n.hljs-comment,\n.hljs-quote {\n  color: #5f6d64;\n}\n\n/* Atelier-Savanna Red */\n.hljs-variable,\n.hljs-template-variable,\n.hljs-attribute,\n.hljs-tag,\n.hljs-name,\n.hljs-regexp,\n.hljs-link,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class {\n  color: #b16139;\n}\n\n/* Atelier-Savanna Orange */\n.hljs-number,\n.hljs-meta,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-literal,\n.hljs-type,\n.hljs-params {\n  color: #9f713c;\n}\n\n/* Atelier-Savanna Green */\n.hljs-string,\n.hljs-symbol,\n.hljs-bullet {\n  color: #489963;\n}\n\n/* Atelier-Savanna Blue */\n.hljs-title,\n.hljs-section {\n  color: #478c90;\n}\n\n/* Atelier-Savanna Purple */\n.hljs-keyword,\n.hljs-selector-tag {\n  color: #55859b;\n}\n\n.hljs-deletion,\n.hljs-addition {\n  color: #171c19;\n  display: inline-block;\n  width: 100%;\n}\n\n.hljs-deletion {\n  background-color: #b16139;\n}\n\n.hljs-addition {\n  background-color: #489963;\n}\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  background: #ecf4ee;\n  color: #526057;\n  padding: 0.5em;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/atelier-seaside-dark.css",
    "content": "/* Base16 Atelier Seaside Dark - Theme */\n/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/seaside) */\n/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */\n\n/* Atelier-Seaside Comment */\n.hljs-comment,\n.hljs-quote {\n  color: #809980;\n}\n\n/* Atelier-Seaside Red */\n.hljs-variable,\n.hljs-template-variable,\n.hljs-attribute,\n.hljs-tag,\n.hljs-name,\n.hljs-regexp,\n.hljs-link,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class {\n  color: #e6193c;\n}\n\n/* Atelier-Seaside Orange */\n.hljs-number,\n.hljs-meta,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-literal,\n.hljs-type,\n.hljs-params {\n  color: #87711d;\n}\n\n/* Atelier-Seaside Green */\n.hljs-string,\n.hljs-symbol,\n.hljs-bullet {\n  color: #29a329;\n}\n\n/* Atelier-Seaside Blue */\n.hljs-title,\n.hljs-section {\n  color: #3d62f5;\n}\n\n/* Atelier-Seaside Purple */\n.hljs-keyword,\n.hljs-selector-tag {\n  color: #ad2bee;\n}\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  background: #131513;\n  color: #8ca68c;\n  padding: 0.5em;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/atelier-seaside-light.css",
    "content": "/* Base16 Atelier Seaside Light - Theme */\n/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/seaside) */\n/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */\n\n/* Atelier-Seaside Comment */\n.hljs-comment,\n.hljs-quote {\n  color: #687d68;\n}\n\n/* Atelier-Seaside Red */\n.hljs-variable,\n.hljs-template-variable,\n.hljs-attribute,\n.hljs-tag,\n.hljs-name,\n.hljs-regexp,\n.hljs-link,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class {\n  color: #e6193c;\n}\n\n/* Atelier-Seaside Orange */\n.hljs-number,\n.hljs-meta,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-literal,\n.hljs-type,\n.hljs-params {\n  color: #87711d;\n}\n\n/* Atelier-Seaside Green */\n.hljs-string,\n.hljs-symbol,\n.hljs-bullet {\n  color: #29a329;\n}\n\n/* Atelier-Seaside Blue */\n.hljs-title,\n.hljs-section {\n  color: #3d62f5;\n}\n\n/* Atelier-Seaside Purple */\n.hljs-keyword,\n.hljs-selector-tag {\n  color: #ad2bee;\n}\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  background: #f4fbf4;\n  color: #5e6e5e;\n  padding: 0.5em;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/atelier-sulphurpool-dark.css",
    "content": "/* Base16 Atelier Sulphurpool Dark - Theme */\n/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/sulphurpool) */\n/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */\n\n/* Atelier-Sulphurpool Comment */\n.hljs-comment,\n.hljs-quote {\n  color: #898ea4;\n}\n\n/* Atelier-Sulphurpool Red */\n.hljs-variable,\n.hljs-template-variable,\n.hljs-attribute,\n.hljs-tag,\n.hljs-name,\n.hljs-regexp,\n.hljs-link,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class {\n  color: #c94922;\n}\n\n/* Atelier-Sulphurpool Orange */\n.hljs-number,\n.hljs-meta,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-literal,\n.hljs-type,\n.hljs-params {\n  color: #c76b29;\n}\n\n/* Atelier-Sulphurpool Green */\n.hljs-string,\n.hljs-symbol,\n.hljs-bullet {\n  color: #ac9739;\n}\n\n/* Atelier-Sulphurpool Blue */\n.hljs-title,\n.hljs-section {\n  color: #3d8fd1;\n}\n\n/* Atelier-Sulphurpool Purple */\n.hljs-keyword,\n.hljs-selector-tag {\n  color: #6679cc;\n}\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  background: #202746;\n  color: #979db4;\n  padding: 0.5em;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/atelier-sulphurpool-light.css",
    "content": "/* Base16 Atelier Sulphurpool Light - Theme */\n/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/sulphurpool) */\n/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */\n\n/* Atelier-Sulphurpool Comment */\n.hljs-comment,\n.hljs-quote {\n  color: #6b7394;\n}\n\n/* Atelier-Sulphurpool Red */\n.hljs-variable,\n.hljs-template-variable,\n.hljs-attribute,\n.hljs-tag,\n.hljs-name,\n.hljs-regexp,\n.hljs-link,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class {\n  color: #c94922;\n}\n\n/* Atelier-Sulphurpool Orange */\n.hljs-number,\n.hljs-meta,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-literal,\n.hljs-type,\n.hljs-params {\n  color: #c76b29;\n}\n\n/* Atelier-Sulphurpool Green */\n.hljs-string,\n.hljs-symbol,\n.hljs-bullet {\n  color: #ac9739;\n}\n\n/* Atelier-Sulphurpool Blue */\n.hljs-title,\n.hljs-section {\n  color: #3d8fd1;\n}\n\n/* Atelier-Sulphurpool Purple */\n.hljs-keyword,\n.hljs-selector-tag {\n  color: #6679cc;\n}\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  background: #f5f7ff;\n  color: #5e6687;\n  padding: 0.5em;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/atom-one-dark.css",
    "content": "/*\n\nAtom One Dark by Daniel Gamage\nOriginal One Dark Syntax theme from https://github.com/atom/one-dark-syntax\n\nbase:    #282c34\nmono-1:  #abb2bf\nmono-2:  #818896\nmono-3:  #5c6370\nhue-1:   #56b6c2\nhue-2:   #61aeee\nhue-3:   #c678dd\nhue-4:   #98c379\nhue-5:   #e06c75\nhue-5-2: #be5046\nhue-6:   #d19a66\nhue-6-2: #e6c07b\n\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  color: #abb2bf;\n  background: #282c34;\n}\n\n.hljs-comment,\n.hljs-quote {\n  color: #5c6370;\n  font-style: italic;\n}\n\n.hljs-doctag,\n.hljs-keyword,\n.hljs-formula {\n  color: #c678dd;\n}\n\n.hljs-section,\n.hljs-name,\n.hljs-selector-tag,\n.hljs-deletion,\n.hljs-subst {\n  color: #e06c75;\n}\n\n.hljs-literal {\n  color: #56b6c2;\n}\n\n.hljs-string,\n.hljs-regexp,\n.hljs-addition,\n.hljs-attribute,\n.hljs-meta-string {\n  color: #98c379;\n}\n\n.hljs-built_in,\n.hljs-class .hljs-title {\n  color: #e6c07b;\n}\n\n.hljs-attr,\n.hljs-variable,\n.hljs-template-variable,\n.hljs-type,\n.hljs-selector-class,\n.hljs-selector-attr,\n.hljs-selector-pseudo,\n.hljs-number {\n  color: #d19a66;\n}\n\n.hljs-symbol,\n.hljs-bullet,\n.hljs-link,\n.hljs-meta,\n.hljs-selector-id,\n.hljs-title {\n  color: #61aeee;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n\n.hljs-link {\n  text-decoration: underline;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/atom-one-light.css",
    "content": "/*\n\nAtom One Light by Daniel Gamage\nOriginal One Light Syntax theme from https://github.com/atom/one-light-syntax\n\nbase:    #fafafa\nmono-1:  #383a42\nmono-2:  #686b77\nmono-3:  #a0a1a7\nhue-1:   #0184bb\nhue-2:   #4078f2\nhue-3:   #a626a4\nhue-4:   #50a14f\nhue-5:   #e45649\nhue-5-2: #c91243\nhue-6:   #986801\nhue-6-2: #c18401\n\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  color: #383a42;\n  background: #fafafa;\n}\n\n.hljs-comment,\n.hljs-quote {\n  color: #a0a1a7;\n  font-style: italic;\n}\n\n.hljs-doctag,\n.hljs-keyword,\n.hljs-formula {\n  color: #a626a4;\n}\n\n.hljs-section,\n.hljs-name,\n.hljs-selector-tag,\n.hljs-deletion,\n.hljs-subst {\n  color: #e45649;\n}\n\n.hljs-literal {\n  color: #0184bb;\n}\n\n.hljs-string,\n.hljs-regexp,\n.hljs-addition,\n.hljs-attribute,\n.hljs-meta-string {\n  color: #50a14f;\n}\n\n.hljs-built_in,\n.hljs-class .hljs-title {\n  color: #c18401;\n}\n\n.hljs-attr,\n.hljs-variable,\n.hljs-template-variable,\n.hljs-type,\n.hljs-selector-class,\n.hljs-selector-attr,\n.hljs-selector-pseudo,\n.hljs-number {\n  color: #986801;\n}\n\n.hljs-symbol,\n.hljs-bullet,\n.hljs-link,\n.hljs-meta,\n.hljs-selector-id,\n.hljs-title {\n  color: #4078f2;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n\n.hljs-link {\n  text-decoration: underline;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/brown-paper.css",
    "content": "/*\n\nBrown Paper style from goldblog.com.ua (c) Zaripov Yura <yur4ik7@ukr.net>\n\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background:#b7a68e url(./brown-papersq.png);\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-literal {\n  color:#005599;\n  font-weight:bold;\n}\n\n.hljs,\n.hljs-subst {\n  color: #363c69;\n}\n\n.hljs-string,\n.hljs-title,\n.hljs-section,\n.hljs-type,\n.hljs-attribute,\n.hljs-symbol,\n.hljs-bullet,\n.hljs-built_in,\n.hljs-addition,\n.hljs-variable,\n.hljs-template-tag,\n.hljs-template-variable,\n.hljs-link,\n.hljs-name {\n  color: #2c009f;\n}\n\n.hljs-comment,\n.hljs-quote,\n.hljs-meta,\n.hljs-deletion {\n  color: #802022;\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-literal,\n.hljs-doctag,\n.hljs-title,\n.hljs-section,\n.hljs-type,\n.hljs-name,\n.hljs-strong {\n  font-weight: bold;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/codepen-embed.css",
    "content": "/*\n  codepen.io Embed Theme\n  Author: Justin Perry <http://github.com/ourmaninamsterdam>\n  Original theme - https://github.com/chriskempson/tomorrow-theme\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #222;\n  color: #fff;\n}\n\n.hljs-comment,\n.hljs-quote {\n  color: #777;\n}\n\n.hljs-variable,\n.hljs-template-variable,\n.hljs-tag,\n.hljs-regexp,\n.hljs-meta,\n.hljs-number,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-literal,\n.hljs-params,\n.hljs-symbol,\n.hljs-bullet,\n.hljs-link,\n.hljs-deletion {\n  color: #ab875d;\n}\n\n.hljs-section,\n.hljs-title,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class,\n.hljs-type,\n.hljs-attribute {\n  color: #9b869b;\n}\n\n.hljs-string,\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-addition {\n  color: #8f9c6c;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/color-brewer.css",
    "content": "/*\n\nColorbrewer theme\nOriginal: https://github.com/mbostock/colorbrewer-theme (c) Mike Bostock <mike@ocks.org>\nPorted by Fabrício Tavares de Oliveira\n\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #fff;\n}\n\n.hljs,\n.hljs-subst {\n  color: #000;\n}\n\n.hljs-string,\n.hljs-meta,\n.hljs-symbol,\n.hljs-template-tag,\n.hljs-template-variable,\n.hljs-addition {\n  color: #756bb1;\n}\n\n.hljs-comment,\n.hljs-quote {\n  color: #636363;\n}\n\n.hljs-number,\n.hljs-regexp,\n.hljs-literal,\n.hljs-bullet,\n.hljs-link {\n  color: #31a354;\n}\n\n.hljs-deletion,\n.hljs-variable {\n  color: #88f;\n}\n\n\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-title,\n.hljs-section,\n.hljs-built_in,\n.hljs-doctag,\n.hljs-type,\n.hljs-tag,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class,\n.hljs-strong {\n  color: #3182bd;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-attribute {\n  color: #e6550d;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/darcula.css",
    "content": "/*\n\nDarcula color scheme from the JetBrains family of IDEs\n\n*/\n\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #2b2b2b;\n}\n\n.hljs {\n  color: #bababa;\n}\n\n.hljs-strong,\n.hljs-emphasis {\n  color: #a8a8a2;\n}\n\n.hljs-bullet,\n.hljs-quote,\n.hljs-link,\n.hljs-number,\n.hljs-regexp,\n.hljs-literal {\n  color: #6896ba;\n}\n\n.hljs-code,\n.hljs-selector-class {\n  color: #a6e22e;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-section,\n.hljs-attribute,\n.hljs-name,\n.hljs-variable {\n  color: #cb7832;\n}\n\n.hljs-params {\n  color: #b9b9b9;\n}\n\n.hljs-string {\n  color: #6a8759;\n}\n\n.hljs-subst,\n.hljs-type,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-symbol,\n.hljs-selector-id,\n.hljs-selector-attr,\n.hljs-selector-pseudo,\n.hljs-template-tag,\n.hljs-template-variable,\n.hljs-addition {\n  color: #e0c46c;\n}\n\n.hljs-comment,\n.hljs-deletion,\n.hljs-meta {\n  color: #7f7f7f;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/dark.css",
    "content": "/*\n\nDark style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>\n\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #444;\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-literal,\n.hljs-section,\n.hljs-link {\n  color: white;\n}\n\n.hljs,\n.hljs-subst {\n  color: #ddd;\n}\n\n.hljs-string,\n.hljs-title,\n.hljs-name,\n.hljs-type,\n.hljs-attribute,\n.hljs-symbol,\n.hljs-bullet,\n.hljs-built_in,\n.hljs-addition,\n.hljs-variable,\n.hljs-template-tag,\n.hljs-template-variable {\n  color: #d88;\n}\n\n.hljs-comment,\n.hljs-quote,\n.hljs-deletion,\n.hljs-meta {\n  color: #777;\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-literal,\n.hljs-title,\n.hljs-section,\n.hljs-doctag,\n.hljs-type,\n.hljs-name,\n.hljs-strong {\n  font-weight: bold;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/darkula.css",
    "content": "/*\n  Deprecated due to a typo in the name and left here for compatibility purpose only.\n  Please use darcula.css instead.\n*/\n\n@import url('darcula.css');\n"
  },
  {
    "path": "www/static/highlight/styles/default.css",
    "content": "/*\n\nOriginal highlight.js style (c) Ivan Sagalaev <maniac@softwaremaniacs.org>\n\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #F0F0F0;\n}\n\n\n/* Base color: saturation 0; */\n\n.hljs,\n.hljs-subst {\n  color: #444;\n}\n\n.hljs-comment {\n  color: #888888;\n}\n\n.hljs-keyword,\n.hljs-attribute,\n.hljs-selector-tag,\n.hljs-meta-keyword,\n.hljs-doctag,\n.hljs-name {\n  font-weight: bold;\n}\n\n\n/* User color: hue: 0 */\n\n.hljs-type,\n.hljs-string,\n.hljs-number,\n.hljs-selector-id,\n.hljs-selector-class,\n.hljs-quote,\n.hljs-template-tag,\n.hljs-deletion {\n  color: #880000;\n}\n\n.hljs-title,\n.hljs-section {\n  color: #880000;\n  font-weight: bold;\n}\n\n.hljs-regexp,\n.hljs-symbol,\n.hljs-variable,\n.hljs-template-variable,\n.hljs-link,\n.hljs-selector-attr,\n.hljs-selector-pseudo {\n  color: #BC6060;\n}\n\n\n/* Language color: hue: 90; */\n\n.hljs-literal {\n  color: #78A960;\n}\n\n.hljs-built_in,\n.hljs-bullet,\n.hljs-code,\n.hljs-addition {\n  color: #397300;\n}\n\n\n/* Meta color: hue: 200 */\n\n.hljs-meta {\n  color: #1f7199;\n}\n\n.hljs-meta-string {\n  color: #4d99bf;\n}\n\n\n/* Misc effects */\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/docco.css",
    "content": "/*\nDocco style used in http://jashkenas.github.com/docco/ converted by Simon Madine (@thingsinjars)\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  color: #000;\n  background: #f8f8ff;\n}\n\n.hljs-comment,\n.hljs-quote {\n  color: #408080;\n  font-style: italic;\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-literal,\n.hljs-subst {\n  color: #954121;\n}\n\n.hljs-number {\n  color: #40a070;\n}\n\n.hljs-string,\n.hljs-doctag {\n  color: #219161;\n}\n\n.hljs-selector-id,\n.hljs-selector-class,\n.hljs-section,\n.hljs-type {\n  color: #19469d;\n}\n\n.hljs-params {\n  color: #00f;\n}\n\n.hljs-title {\n  color: #458;\n  font-weight: bold;\n}\n\n.hljs-tag,\n.hljs-name,\n.hljs-attribute {\n  color: #000080;\n  font-weight: normal;\n}\n\n.hljs-variable,\n.hljs-template-variable {\n  color: #008080;\n}\n\n.hljs-regexp,\n.hljs-link {\n  color: #b68;\n}\n\n.hljs-symbol,\n.hljs-bullet {\n  color: #990073;\n}\n\n.hljs-built_in,\n.hljs-builtin-name {\n  color: #0086b3;\n}\n\n.hljs-meta {\n  color: #999;\n  font-weight: bold;\n}\n\n.hljs-deletion {\n  background: #fdd;\n}\n\n.hljs-addition {\n  background: #dfd;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/dracula.css",
    "content": "/*\n\nDracula Theme v1.2.0\n\nhttps://github.com/zenorocha/dracula-theme\n\nCopyright 2015, All rights reserved\n\nCode licensed under the MIT license\nhttp://zenorocha.mit-license.org\n\n@author Éverton Ribeiro <nuxlli@gmail.com>\n@author Zeno Rocha <hi@zenorocha.com>\n\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #282a36;\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-literal,\n.hljs-section,\n.hljs-link {\n  color: #8be9fd;\n}\n\n.hljs-function .hljs-keyword {\n  color: #ff79c6;\n}\n\n.hljs,\n.hljs-subst {\n  color: #f8f8f2;\n}\n\n.hljs-string,\n.hljs-title,\n.hljs-name,\n.hljs-type,\n.hljs-attribute,\n.hljs-symbol,\n.hljs-bullet,\n.hljs-addition,\n.hljs-variable,\n.hljs-template-tag,\n.hljs-template-variable {\n  color: #f1fa8c;\n}\n\n.hljs-comment,\n.hljs-quote,\n.hljs-deletion,\n.hljs-meta {\n  color: #6272a4;\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-literal,\n.hljs-title,\n.hljs-section,\n.hljs-doctag,\n.hljs-type,\n.hljs-name,\n.hljs-strong {\n  font-weight: bold;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/far.css",
    "content": "/*\n\nFAR Style (c) MajestiC <majestic2k@gmail.com>\n\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #000080;\n}\n\n.hljs,\n.hljs-subst {\n  color: #0ff;\n}\n\n.hljs-string,\n.hljs-attribute,\n.hljs-symbol,\n.hljs-bullet,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-template-tag,\n.hljs-template-variable,\n.hljs-addition {\n  color: #ff0;\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-section,\n.hljs-type,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class,\n.hljs-variable {\n  color: #fff;\n}\n\n.hljs-comment,\n.hljs-quote,\n.hljs-doctag,\n.hljs-deletion {\n  color: #888;\n}\n\n.hljs-number,\n.hljs-regexp,\n.hljs-literal,\n.hljs-link {\n  color: #0f0;\n}\n\n.hljs-meta {\n  color: #008080;\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-title,\n.hljs-section,\n.hljs-name,\n.hljs-strong {\n  font-weight: bold;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/foundation.css",
    "content": "/*\nDescription: Foundation 4 docs style for highlight.js\nAuthor: Dan Allen <dan.j.allen@gmail.com>\nWebsite: http://foundation.zurb.com/docs/\nVersion: 1.0\nDate: 2013-04-02\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #eee; color: black;\n}\n\n.hljs-link,\n.hljs-emphasis,\n.hljs-attribute,\n.hljs-addition {\n  color: #070;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong,\n.hljs-string,\n.hljs-deletion {\n  color: #d14;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n\n.hljs-quote,\n.hljs-comment {\n  color: #998;\n  font-style: italic;\n}\n\n.hljs-section,\n.hljs-title {\n  color: #900;\n}\n\n.hljs-class .hljs-title,\n.hljs-type {\n  color: #458;\n}\n\n.hljs-variable,\n.hljs-template-variable {\n  color: #336699;\n}\n\n.hljs-bullet {\n  color: #997700;\n}\n\n.hljs-meta {\n  color: #3344bb;\n}\n\n.hljs-code,\n.hljs-number,\n.hljs-literal,\n.hljs-keyword,\n.hljs-selector-tag {\n  color: #099;\n}\n\n.hljs-regexp {\n  background-color: #fff0ff;\n  color: #880088;\n}\n\n.hljs-symbol {\n  color: #990073;\n}\n\n.hljs-tag,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class {\n  color: #007700;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/github-gist.css",
    "content": "/**\n * GitHub Gist Theme\n * Author : Louis Barranqueiro - https://github.com/LouisBarranqueiro\n */\n\n.hljs {\n  display: block;\n  background: white;\n  padding: 0.5em;\n  color: #333333;\n  overflow-x: auto;\n}\n\n.hljs-comment,\n.hljs-meta {\n  color: #969896;\n}\n\n.hljs-string,\n.hljs-variable,\n.hljs-template-variable,\n.hljs-strong,\n.hljs-emphasis,\n.hljs-quote {\n  color: #df5000;\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-type {\n  color: #a71d5d;\n}\n\n.hljs-literal,\n.hljs-symbol,\n.hljs-bullet,\n.hljs-attribute {\n  color: #0086b3;\n}\n\n.hljs-section,\n.hljs-name {\n  color: #63a35c;\n}\n\n.hljs-tag {\n  color: #333333;\n}\n\n.hljs-title,\n.hljs-attr,\n.hljs-selector-id,\n.hljs-selector-class,\n.hljs-selector-attr,\n.hljs-selector-pseudo {\n  color: #795da3;\n}\n\n.hljs-addition {\n  color: #55a532;\n  background-color: #eaffea;\n}\n\n.hljs-deletion {\n  color: #bd2c00;\n  background-color: #ffecec;\n}\n\n.hljs-link {\n  text-decoration: underline;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/github.css",
    "content": "/*\n\ngithub.com style (c) Vasily Polovnyov <vast@whiteants.net>\n\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  color: #333;\n  background: #f8f8f8;\n}\n\n.hljs-comment,\n.hljs-quote {\n  color: #998;\n  font-style: italic;\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-subst {\n  color: #333;\n  font-weight: bold;\n}\n\n.hljs-number,\n.hljs-literal,\n.hljs-variable,\n.hljs-template-variable,\n.hljs-tag .hljs-attr {\n  color: #008080;\n}\n\n.hljs-string,\n.hljs-doctag {\n  color: #d14;\n}\n\n.hljs-title,\n.hljs-section,\n.hljs-selector-id {\n  color: #900;\n  font-weight: bold;\n}\n\n.hljs-subst {\n  font-weight: normal;\n}\n\n.hljs-type,\n.hljs-class .hljs-title {\n  color: #458;\n  font-weight: bold;\n}\n\n.hljs-tag,\n.hljs-name,\n.hljs-attribute {\n  color: #000080;\n  font-weight: normal;\n}\n\n.hljs-regexp,\n.hljs-link {\n  color: #009926;\n}\n\n.hljs-symbol,\n.hljs-bullet {\n  color: #990073;\n}\n\n.hljs-built_in,\n.hljs-builtin-name {\n  color: #0086b3;\n}\n\n.hljs-meta {\n  color: #999;\n  font-weight: bold;\n}\n\n.hljs-deletion {\n  background: #fdd;\n}\n\n.hljs-addition {\n  background: #dfd;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/googlecode.css",
    "content": "/*\n\nGoogle Code style (c) Aahan Krish <geekpanth3r@gmail.com>\n\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: white;\n  color: black;\n}\n\n.hljs-comment,\n.hljs-quote {\n  color: #800;\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-section,\n.hljs-title,\n.hljs-name {\n  color: #008;\n}\n\n.hljs-variable,\n.hljs-template-variable {\n  color: #660;\n}\n\n.hljs-string,\n.hljs-selector-attr,\n.hljs-selector-pseudo,\n.hljs-regexp {\n  color: #080;\n}\n\n.hljs-literal,\n.hljs-symbol,\n.hljs-bullet,\n.hljs-meta,\n.hljs-number,\n.hljs-link {\n  color: #066;\n}\n\n.hljs-title,\n.hljs-doctag,\n.hljs-type,\n.hljs-attr,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-params {\n  color: #606;\n}\n\n.hljs-attribute,\n.hljs-subst {\n  color: #000;\n}\n\n.hljs-formula {\n  background-color: #eee;\n  font-style: italic;\n}\n\n.hljs-selector-id,\n.hljs-selector-class {\n  color: #9B703F\n}\n\n.hljs-addition {\n  background-color: #baeeba;\n}\n\n.hljs-deletion {\n  background-color: #ffc8bd;\n}\n\n.hljs-doctag,\n.hljs-strong {\n  font-weight: bold;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/grayscale.css",
    "content": "/*\n\ngrayscale style (c) MY Sun <simonmysun@gmail.com>\n\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  color: #333;\n  background: #fff;\n}\n\n.hljs-comment,\n.hljs-quote {\n  color: #777;\n  font-style: italic;\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-subst {\n  color: #333;\n  font-weight: bold;\n}\n\n.hljs-number,\n.hljs-literal {\n  color: #777;\n}\n\n.hljs-string,\n.hljs-doctag,\n.hljs-formula {\n  color: #333;\n  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAJ0lEQVQIW2O8e/fufwYGBgZBQUEQxcCIIfDu3Tuwivfv30NUoAsAALHpFMMLqZlPAAAAAElFTkSuQmCC) repeat;\n}\n\n.hljs-title,\n.hljs-section,\n.hljs-selector-id {\n  color: #000;\n  font-weight: bold;\n}\n\n.hljs-subst {\n  font-weight: normal;\n}\n\n.hljs-class .hljs-title,\n.hljs-type,\n.hljs-name {\n  color: #333;\n  font-weight: bold;\n}\n\n.hljs-tag {\n  color: #333;\n}\n\n.hljs-regexp {\n    color: #333;\n    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAICAYAAADA+m62AAAAPUlEQVQYV2NkQAN37979r6yszIgujiIAU4RNMVwhuiQ6H6wQl3XI4oy4FMHcCJPHcDS6J2A2EqUQpJhohQDexSef15DBCwAAAABJRU5ErkJggg==) repeat;\n}\n\n.hljs-symbol,\n.hljs-bullet,\n.hljs-link {\n  color: #000;\n  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAKElEQVQIW2NkQAO7d+/+z4gsBhJwdXVlhAvCBECKwIIwAbhKZBUwBQA6hBpm5efZsgAAAABJRU5ErkJggg==) repeat;\n}\n\n.hljs-built_in,\n.hljs-builtin-name {\n  color: #000;\n  text-decoration: underline;\n}\n\n.hljs-meta {\n  color: #999;\n  font-weight: bold;\n}\n\n.hljs-deletion {\n  color: #fff;\n  background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAADCAYAAABS3WWCAAAAE0lEQVQIW2MMDQ39zzhz5kwIAQAyxweWgUHd1AAAAABJRU5ErkJggg==) repeat;\n}\n\n.hljs-addition {\n  color: #000;\n  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAALUlEQVQYV2N89+7dfwYk8P79ewZBQUFkIQZGOiu6e/cuiptQHAPl0NtNxAQBAM97Oejj3Dg7AAAAAElFTkSuQmCC) repeat;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/gruvbox-dark.css",
    "content": "/*\n\nGruvbox style (dark) (c) Pavel Pertsev (original style at https://github.com/morhetz/gruvbox)\n\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #282828;\n}\n\n.hljs,\n.hljs-subst {\n  color: #ebdbb2;\n}\n\n/* Gruvbox Red */\n.hljs-deletion,\n.hljs-formula,\n.hljs-keyword,\n.hljs-link,\n.hljs-selector-tag {\n  color: #fb4934;\n}\n\n/* Gruvbox Blue */\n.hljs-built_in,\n.hljs-emphasis,\n.hljs-name,\n.hljs-quote,\n.hljs-strong,\n.hljs-title,\n.hljs-variable {\n  color: #83a598;\n}\n\n/* Gruvbox Yellow */\n.hljs-attr,\n.hljs-params,\n.hljs-template-tag,\n.hljs-type {\n  color: #fabd2f;\n}\n\n/* Gruvbox Purple */\n.hljs-builtin-name,\n.hljs-doctag,\n.hljs-literal,\n.hljs-number {\n  color: #8f3f71;\n}\n\n/* Gruvbox Orange */\n.hljs-code,\n.hljs-meta,\n.hljs-regexp,\n.hljs-selector-id,\n.hljs-template-variable {\n  color: #fe8019;\n}\n\n/* Gruvbox Green */\n.hljs-addition,\n.hljs-meta-string,\n.hljs-section,\n.hljs-selector-attr,\n.hljs-selector-class,\n.hljs-string,\n.hljs-symbol {\n  color: #b8bb26;\n}\n\n/* Gruvbox Aqua */\n.hljs-attribute,\n.hljs-bullet,\n.hljs-class,\n.hljs-function,\n.hljs-function .hljs-keyword,\n.hljs-meta-keyword,\n.hljs-selector-pseudo,\n.hljs-tag {\n  color: #8ec07c;\n}\n\n/* Gruvbox Gray */\n.hljs-comment {\n  color: #928374;\n}\n\n/* Gruvbox Purple */\n.hljs-link_label,\n.hljs-literal,\n.hljs-number {\n  color: #d3869b;\n}\n\n.hljs-comment,\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-section,\n.hljs-strong,\n.hljs-tag {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/gruvbox-light.css",
    "content": "/*\n\nGruvbox style (light) (c) Pavel Pertsev (original style at https://github.com/morhetz/gruvbox)\n\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #fbf1c7;\n}\n\n.hljs,\n.hljs-subst {\n  color: #3c3836;\n}\n\n/* Gruvbox Red */\n.hljs-deletion,\n.hljs-formula,\n.hljs-keyword,\n.hljs-link,\n.hljs-selector-tag {\n  color: #9d0006;\n}\n\n/* Gruvbox Blue */\n.hljs-built_in,\n.hljs-emphasis,\n.hljs-name,\n.hljs-quote,\n.hljs-strong,\n.hljs-title,\n.hljs-variable {\n  color: #076678;\n}\n\n/* Gruvbox Yellow */\n.hljs-attr,\n.hljs-params,\n.hljs-template-tag,\n.hljs-type {\n  color: #b57614;\n}\n\n/* Gruvbox Purple */\n.hljs-builtin-name,\n.hljs-doctag,\n.hljs-literal,\n.hljs-number {\n  color: #8f3f71;\n}\n\n/* Gruvbox Orange */\n.hljs-code,\n.hljs-meta,\n.hljs-regexp,\n.hljs-selector-id,\n.hljs-template-variable {\n  color: #af3a03;\n}\n\n/* Gruvbox Green */\n.hljs-addition,\n.hljs-meta-string,\n.hljs-section,\n.hljs-selector-attr,\n.hljs-selector-class,\n.hljs-string,\n.hljs-symbol {\n  color: #79740e;\n}\n\n/* Gruvbox Aqua */\n.hljs-attribute,\n.hljs-bullet,\n.hljs-class,\n.hljs-function,\n.hljs-function .hljs-keyword,\n.hljs-meta-keyword,\n.hljs-selector-pseudo,\n.hljs-tag {\n  color: #427b58;\n}\n\n/* Gruvbox Gray */\n.hljs-comment {\n  color: #928374;\n}\n\n/* Gruvbox Purple */\n.hljs-link_label,\n.hljs-literal,\n.hljs-number {\n  color: #8f3f71;\n}\n\n.hljs-comment,\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-section,\n.hljs-strong,\n.hljs-tag {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/hopscotch.css",
    "content": "/*\n * Hopscotch\n * by Jan T. Sott\n * https://github.com/idleberg/Hopscotch\n *\n * This work is licensed under the Creative Commons CC0 1.0 Universal License\n */\n\n/* Comment */\n.hljs-comment,\n.hljs-quote {\n  color: #989498;\n}\n\n/* Red */\n.hljs-variable,\n.hljs-template-variable,\n.hljs-attribute,\n.hljs-tag,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class,\n.hljs-regexp,\n.hljs-link,\n.hljs-deletion {\n  color: #dd464c;\n}\n\n/* Orange */\n.hljs-number,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-literal,\n.hljs-type,\n.hljs-params {\n  color: #fd8b19;\n}\n\n/* Yellow */\n.hljs-class .hljs-title {\n  color: #fdcc59;\n}\n\n/* Green */\n.hljs-string,\n.hljs-symbol,\n.hljs-bullet,\n.hljs-addition {\n  color: #8fc13e;\n}\n\n/* Aqua */\n.hljs-meta {\n  color: #149b93;\n}\n\n/* Blue */\n.hljs-function,\n.hljs-section,\n.hljs-title {\n  color: #1290bf;\n}\n\n/* Purple */\n.hljs-keyword,\n.hljs-selector-tag {\n  color: #c85e7c;\n}\n\n.hljs {\n  display: block;\n  background: #322931;\n  color: #b9b5b8;\n  padding: 0.5em;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/hybrid.css",
    "content": "/*\n\nvim-hybrid theme by w0ng (https://github.com/w0ng/vim-hybrid)\n\n*/\n\n/*background color*/\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #1d1f21;\n}\n\n/*selection color*/\n.hljs::selection,\n.hljs span::selection {\n  background: #373b41;\n}\n\n.hljs::-moz-selection,\n.hljs span::-moz-selection {\n  background: #373b41;\n}\n\n/*foreground color*/\n.hljs {\n  color: #c5c8c6;\n}\n\n/*color: fg_yellow*/\n.hljs-title,\n.hljs-name {\n  color: #f0c674;\n}\n\n/*color: fg_comment*/\n.hljs-comment,\n.hljs-meta,\n.hljs-meta .hljs-keyword {\n  color: #707880;\n}\n\n/*color: fg_red*/\n.hljs-number,\n.hljs-symbol,\n.hljs-literal,\n.hljs-deletion,\n.hljs-link {\n color: #cc6666\n}\n\n/*color: fg_green*/\n.hljs-string,\n.hljs-doctag,\n.hljs-addition,\n.hljs-regexp,\n.hljs-selector-attr,\n.hljs-selector-pseudo {\n  color: #b5bd68;\n}\n\n/*color: fg_purple*/\n.hljs-attribute,\n.hljs-code,\n.hljs-selector-id {\n color: #b294bb;\n}\n\n/*color: fg_blue*/\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-bullet,\n.hljs-tag {\n color: #81a2be;\n}\n\n/*color: fg_aqua*/\n.hljs-subst,\n.hljs-variable,\n.hljs-template-tag,\n.hljs-template-variable {\n  color: #8abeb7;\n}\n\n/*color: fg_orange*/\n.hljs-type,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-quote,\n.hljs-section,\n.hljs-selector-class {\n  color: #de935f;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/idea.css",
    "content": "/*\n\nIntellij Idea-like styling (c) Vasily Polovnyov <vast@whiteants.net>\n\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  color: #000;\n  background: #fff;\n}\n\n.hljs-subst,\n.hljs-title {\n  font-weight: normal;\n  color: #000;\n}\n\n.hljs-comment,\n.hljs-quote {\n  color: #808080;\n  font-style: italic;\n}\n\n.hljs-meta {\n  color: #808000;\n}\n\n.hljs-tag {\n  background: #efefef;\n}\n\n.hljs-section,\n.hljs-name,\n.hljs-literal,\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-type,\n.hljs-selector-id,\n.hljs-selector-class {\n  font-weight: bold;\n  color: #000080;\n}\n\n.hljs-attribute,\n.hljs-number,\n.hljs-regexp,\n.hljs-link {\n  font-weight: bold;\n  color: #0000ff;\n}\n\n.hljs-number,\n.hljs-regexp,\n.hljs-link {\n  font-weight: normal;\n}\n\n.hljs-string {\n  color: #008000;\n  font-weight: bold;\n}\n\n.hljs-symbol,\n.hljs-bullet,\n.hljs-formula {\n  color: #000;\n  background: #d0eded;\n  font-style: italic;\n}\n\n.hljs-doctag {\n  text-decoration: underline;\n}\n\n.hljs-variable,\n.hljs-template-variable {\n  color: #660e7a;\n}\n\n.hljs-addition {\n  background: #baeeba;\n}\n\n.hljs-deletion {\n  background: #ffc8bd;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/ir-black.css",
    "content": "/*\n  IR_Black style (c) Vasily Mikhailitchenko <vaskas@programica.ru>\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #000;\n  color: #f8f8f8;\n}\n\n.hljs-comment,\n.hljs-quote,\n.hljs-meta {\n  color: #7c7c7c;\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-tag,\n.hljs-name {\n  color: #96cbfe;\n}\n\n.hljs-attribute,\n.hljs-selector-id {\n  color: #ffffb6;\n}\n\n.hljs-string,\n.hljs-selector-attr,\n.hljs-selector-pseudo,\n.hljs-addition {\n  color: #a8ff60;\n}\n\n.hljs-subst {\n  color: #daefa3;\n}\n\n.hljs-regexp,\n.hljs-link {\n  color: #e9c062;\n}\n\n.hljs-title,\n.hljs-section,\n.hljs-type,\n.hljs-doctag {\n  color: #ffffb6;\n}\n\n.hljs-symbol,\n.hljs-bullet,\n.hljs-variable,\n.hljs-template-variable,\n.hljs-literal {\n  color: #c6c5fe;\n}\n\n.hljs-number,\n.hljs-deletion {\n  color:#ff73fd;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/kimbie.dark.css",
    "content": "/*\n    Name:     Kimbie (dark)\n    Author:   Jan T. Sott\n    License:  Creative Commons Attribution-ShareAlike 4.0 Unported License\n    URL:      https://github.com/idleberg/Kimbie-highlight.js\n*/\n\n/* Kimbie Comment */\n.hljs-comment,\n.hljs-quote {\n  color: #d6baad;\n}\n\n/* Kimbie Red */\n.hljs-variable,\n.hljs-template-variable,\n.hljs-tag,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class,\n.hljs-regexp,\n.hljs-meta {\n  color: #dc3958;\n}\n\n/* Kimbie Orange */\n.hljs-number,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-literal,\n.hljs-type,\n.hljs-params,\n.hljs-deletion,\n.hljs-link {\n  color: #f79a32;\n}\n\n/* Kimbie Yellow */\n.hljs-title,\n.hljs-section,\n.hljs-attribute {\n  color: #f06431;\n}\n\n/* Kimbie Green */\n.hljs-string,\n.hljs-symbol,\n.hljs-bullet,\n.hljs-addition {\n  color: #889b4a;\n}\n\n/* Kimbie Purple */\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-function {\n  color: #98676a;\n}\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  background: #221a0f;\n  color: #d3af86;\n  padding: 0.5em;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/kimbie.light.css",
    "content": "/*\n    Name:     Kimbie (light)\n    Author:   Jan T. Sott\n    License:  Creative Commons Attribution-ShareAlike 4.0 Unported License\n    URL:      https://github.com/idleberg/Kimbie-highlight.js\n*/\n\n/* Kimbie Comment */\n.hljs-comment,\n.hljs-quote {\n  color: #a57a4c;\n}\n\n/* Kimbie Red */\n.hljs-variable,\n.hljs-template-variable,\n.hljs-tag,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class,\n.hljs-regexp,\n.hljs-meta {\n  color: #dc3958;\n}\n\n/* Kimbie Orange */\n.hljs-number,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-literal,\n.hljs-type,\n.hljs-params,\n.hljs-deletion,\n.hljs-link {\n  color: #f79a32;\n}\n\n/* Kimbie Yellow */\n.hljs-title,\n.hljs-section,\n.hljs-attribute {\n  color: #f06431;\n}\n\n/* Kimbie Green */\n.hljs-string,\n.hljs-symbol,\n.hljs-bullet,\n.hljs-addition {\n  color: #889b4a;\n}\n\n/* Kimbie Purple */\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-function {\n  color: #98676a;\n}\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  background: #fbebd4;\n  color: #84613d;\n  padding: 0.5em;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/magula.css",
    "content": "/*\nDescription: Magula style for highligh.js\nAuthor: Ruslan Keba <rukeba@gmail.com>\nWebsite: http://rukeba.com/\nVersion: 1.0\nDate: 2009-01-03\nMusic: Aphex Twin / Xtal\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background-color: #f4f4f4;\n}\n\n.hljs,\n.hljs-subst {\n  color: black;\n}\n\n.hljs-string,\n.hljs-title,\n.hljs-symbol,\n.hljs-bullet,\n.hljs-attribute,\n.hljs-addition,\n.hljs-variable,\n.hljs-template-tag,\n.hljs-template-variable {\n  color: #050;\n}\n\n.hljs-comment,\n.hljs-quote {\n  color: #777;\n}\n\n.hljs-number,\n.hljs-regexp,\n.hljs-literal,\n.hljs-type,\n.hljs-link {\n  color: #800;\n}\n\n.hljs-deletion,\n.hljs-meta {\n  color: #00e;\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-doctag,\n.hljs-title,\n.hljs-section,\n.hljs-built_in,\n.hljs-tag,\n.hljs-name {\n  font-weight: bold;\n  color: navy;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/mono-blue.css",
    "content": "/*\n  Five-color theme from a single blue hue.\n*/\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #eaeef3;\n}\n\n.hljs {\n  color: #00193a;\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-title,\n.hljs-section,\n.hljs-doctag,\n.hljs-name,\n.hljs-strong {\n  font-weight: bold;\n}\n\n.hljs-comment {\n  color: #738191;\n}\n\n.hljs-string,\n.hljs-title,\n.hljs-section,\n.hljs-built_in,\n.hljs-literal,\n.hljs-type,\n.hljs-addition,\n.hljs-tag,\n.hljs-quote,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class {\n  color: #0048ab;\n}\n\n.hljs-meta,\n.hljs-subst,\n.hljs-symbol,\n.hljs-regexp,\n.hljs-attribute,\n.hljs-deletion,\n.hljs-variable,\n.hljs-template-variable,\n.hljs-link,\n.hljs-bullet {\n  color: #4c81c9;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/monokai-sublime.css",
    "content": "/*\n\nMonokai Sublime style. Derived from Monokai by noformnocontent http://nn.mit-license.org/\n\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #23241f;\n}\n\n.hljs,\n.hljs-tag,\n.hljs-subst {\n  color: #f8f8f2;\n}\n\n.hljs-strong,\n.hljs-emphasis {\n  color: #a8a8a2;\n}\n\n.hljs-bullet,\n.hljs-quote,\n.hljs-number,\n.hljs-regexp,\n.hljs-literal,\n.hljs-link {\n  color: #ae81ff;\n}\n\n.hljs-code,\n.hljs-title,\n.hljs-section,\n.hljs-selector-class {\n  color: #a6e22e;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-name,\n.hljs-attr {\n  color: #f92672;\n}\n\n.hljs-function .hljs-keyword,\n.hljs-symbol,\n.hljs-attribute {\n  color: #66d9ef;\n}\n\n.hljs-params,\n.hljs-class .hljs-title {\n  color: #f8f8f2;\n}\n\n.hljs-string,\n.hljs-type,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-selector-id,\n.hljs-selector-attr,\n.hljs-selector-pseudo,\n.hljs-addition,\n.hljs-variable,\n.hljs-template-variable {\n  color: #e6db74;\n}\n\n.hljs-comment,\n.hljs-deletion,\n.hljs-meta {\n  color: #75715e;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/monokai.css",
    "content": "/*\nMonokai style - ported by Luigi Maselli - http://grigio.org\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #272822; color: #ddd;\n}\n\n.hljs-tag,\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-literal,\n.hljs-strong,\n.hljs-name {\n  color: #f92672;\n}\n\n.hljs-code {\n  color: #66d9ef;\n}\n\n.hljs-class .hljs-title {\n  color: white;\n}\n\n.hljs-attribute,\n.hljs-symbol,\n.hljs-regexp,\n.hljs-link {\n  color: #bf79db;\n}\n\n.hljs-string,\n.hljs-bullet,\n.hljs-subst,\n.hljs-title,\n.hljs-section,\n.hljs-emphasis,\n.hljs-type,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-selector-attr,\n.hljs-selector-pseudo,\n.hljs-addition,\n.hljs-variable,\n.hljs-template-tag,\n.hljs-template-variable {\n  color: #a6e22e;\n}\n\n.hljs-comment,\n.hljs-quote,\n.hljs-deletion,\n.hljs-meta {\n  color: #75715e;\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-literal,\n.hljs-doctag,\n.hljs-title,\n.hljs-section,\n.hljs-type,\n.hljs-selector-id {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/obsidian.css",
    "content": "/**\n * Obsidian style\n * ported by Alexander Marenin (http://github.com/ioncreature)\n */\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #282b2e;\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-literal,\n.hljs-selector-id {\n  color: #93c763;\n}\n\n.hljs-number {\n  color: #ffcd22;\n}\n\n.hljs {\n  color: #e0e2e4;\n}\n\n.hljs-attribute {\n  color: #668bb0;\n}\n\n.hljs-code,\n.hljs-class .hljs-title,\n.hljs-section {\n  color: white;\n}\n\n.hljs-regexp,\n.hljs-link {\n  color: #d39745;\n}\n\n.hljs-meta {\n  color: #557182;\n}\n\n.hljs-tag,\n.hljs-name,\n.hljs-bullet,\n.hljs-subst,\n.hljs-emphasis,\n.hljs-type,\n.hljs-built_in,\n.hljs-selector-attr,\n.hljs-selector-pseudo,\n.hljs-addition,\n.hljs-variable,\n.hljs-template-tag,\n.hljs-template-variable {\n  color: #8cbbad;\n}\n\n.hljs-string,\n.hljs-symbol {\n  color: #ec7600;\n}\n\n.hljs-comment,\n.hljs-quote,\n.hljs-deletion {\n  color: #818e96;\n}\n\n.hljs-selector-class {\n  color: #A082BD\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-literal,\n.hljs-doctag,\n.hljs-title,\n.hljs-section,\n.hljs-type,\n.hljs-name,\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/ocean.css",
    "content": "/* Ocean Dark Theme */\n/* https://github.com/gavsiu */\n/* Original theme - https://github.com/chriskempson/base16 */\n\n/* Ocean Comment */\n.hljs-comment,\n.hljs-quote {\n  color: #65737e;\n}\n\n/* Ocean Red */\n.hljs-variable,\n.hljs-template-variable,\n.hljs-tag,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class,\n.hljs-regexp,\n.hljs-deletion {\n  color: #bf616a;\n}\n\n/* Ocean Orange */\n.hljs-number,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-literal,\n.hljs-type,\n.hljs-params,\n.hljs-meta,\n.hljs-link {\n  color: #d08770;\n}\n\n/* Ocean Yellow */\n.hljs-attribute {\n  color: #ebcb8b;\n}\n\n/* Ocean Green */\n.hljs-string,\n.hljs-symbol,\n.hljs-bullet,\n.hljs-addition {\n  color: #a3be8c;\n}\n\n/* Ocean Blue */\n.hljs-title,\n.hljs-section {\n  color: #8fa1b3;\n}\n\n/* Ocean Purple */\n.hljs-keyword,\n.hljs-selector-tag {\n  color: #b48ead;\n}\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  background: #2b303b;\n  color: #c0c5ce;\n  padding: 0.5em;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/paraiso-dark.css",
    "content": "/*\n    Paraíso (dark)\n    Created by Jan T. Sott (http://github.com/idleberg)\n    Inspired by the art of Rubens LP (http://www.rubenslp.com.br)\n*/\n\n/* Paraíso Comment */\n.hljs-comment,\n.hljs-quote {\n  color: #8d8687;\n}\n\n/* Paraíso Red */\n.hljs-variable,\n.hljs-template-variable,\n.hljs-tag,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class,\n.hljs-regexp,\n.hljs-link,\n.hljs-meta {\n  color: #ef6155;\n}\n\n/* Paraíso Orange */\n.hljs-number,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-literal,\n.hljs-type,\n.hljs-params,\n.hljs-deletion {\n  color: #f99b15;\n}\n\n/* Paraíso Yellow */\n.hljs-title,\n.hljs-section,\n.hljs-attribute {\n  color: #fec418;\n}\n\n/* Paraíso Green */\n.hljs-string,\n.hljs-symbol,\n.hljs-bullet,\n.hljs-addition {\n  color: #48b685;\n}\n\n/* Paraíso Purple */\n.hljs-keyword,\n.hljs-selector-tag {\n  color: #815ba4;\n}\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  background: #2f1e2e;\n  color: #a39e9b;\n  padding: 0.5em;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/paraiso-light.css",
    "content": "/*\n    Paraíso (light)\n    Created by Jan T. Sott (http://github.com/idleberg)\n    Inspired by the art of Rubens LP (http://www.rubenslp.com.br)\n*/\n\n/* Paraíso Comment */\n.hljs-comment,\n.hljs-quote {\n  color: #776e71;\n}\n\n/* Paraíso Red */\n.hljs-variable,\n.hljs-template-variable,\n.hljs-tag,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class,\n.hljs-regexp,\n.hljs-link,\n.hljs-meta {\n  color: #ef6155;\n}\n\n/* Paraíso Orange */\n.hljs-number,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-literal,\n.hljs-type,\n.hljs-params,\n.hljs-deletion {\n  color: #f99b15;\n}\n\n/* Paraíso Yellow */\n.hljs-title,\n.hljs-section,\n.hljs-attribute {\n  color: #fec418;\n}\n\n/* Paraíso Green */\n.hljs-string,\n.hljs-symbol,\n.hljs-bullet,\n.hljs-addition {\n  color: #48b685;\n}\n\n/* Paraíso Purple */\n.hljs-keyword,\n.hljs-selector-tag {\n  color: #815ba4;\n}\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  background: #e7e9db;\n  color: #4f424c;\n  padding: 0.5em;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/pojoaque.css",
    "content": "/*\n\nPojoaque Style by Jason Tate\nhttp://web-cms-designs.com/ftopict-10-pojoaque-style-for-highlight-js-code-highlighter.html\nBased on Solarized Style from http://ethanschoonover.com/solarized\n\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  color: #dccf8f;\n  background: url(./pojoaque.jpg) repeat scroll left top #181914;\n}\n\n.hljs-comment,\n.hljs-quote {\n  color: #586e75;\n  font-style: italic;\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-literal,\n.hljs-addition {\n  color: #b64926;\n}\n\n.hljs-number,\n.hljs-string,\n.hljs-doctag,\n.hljs-regexp {\n  color: #468966;\n}\n\n.hljs-title,\n.hljs-section,\n.hljs-built_in,\n.hljs-name {\n  color: #ffb03b;\n}\n\n.hljs-variable,\n.hljs-template-variable,\n.hljs-class .hljs-title,\n.hljs-type,\n.hljs-tag {\n  color: #b58900;\n}\n\n.hljs-attribute {\n  color: #b89859;\n}\n\n.hljs-symbol,\n.hljs-bullet,\n.hljs-link,\n.hljs-subst,\n.hljs-meta {\n  color: #cb4b16;\n}\n\n.hljs-deletion {\n  color: #dc322f;\n}\n\n.hljs-selector-id,\n.hljs-selector-class {\n  color: #d3a60c;\n}\n\n.hljs-formula {\n  background: #073642;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/purebasic.css",
    "content": "/*\n\nPureBASIC native IDE style ( version 1.0 - April 2016 )\n\nby Tristano Ajmone <tajmone@gmail.com>\n\nPublic Domain\n\nNOTE_1:\tPureBASIC code syntax highlighting only applies the following classes:\n\t\t\t.hljs-comment\n\t\t\t.hljs-function\n\t\t\t.hljs-keywords\n\t\t\t.hljs-string\n\t\t\t.hljs-symbol\n\n\t\tOther classes are added here for the benefit of styling other languages with the look and feel of PureBASIC native IDE style.\n\t\tIf you need to customize a stylesheet for PureBASIC only, remove all non-relevant classes -- PureBASIC-related classes are followed by\n\t\ta \"--- used for PureBASIC ... ---\" comment on same line.\n\nNOTE_2:\tColor names provided in comments were derived using \"Name that Color\" online tool:\n\t\t\thttp://chir.ag/projects/name-that-color\n*/\n\n.hljs { /* Common set of rules required by highlight.js (don'r remove!) */\n\tdisplay: block;\n\toverflow-x: auto;\n\tpadding: 0.5em;\n\tbackground: #FFFFDF; /* Half and Half (approx.) */\n/* --- Uncomment to add PureBASIC native IDE styled font!\n\tfont-family: Consolas;\n*/\n}\n\n.hljs, /* --- used for PureBASIC base color --- */\n.hljs-type,  /* --- used for PureBASIC Procedures return type --- */\n.hljs-function, /* --- used for wrapping PureBASIC Procedures definitions --- */\n.hljs-name,\n.hljs-number,\n.hljs-attr,\n.hljs-params,\n.hljs-subst {\n\tcolor: #000000; /* Black */\n}\n\n.hljs-comment, /* --- used for PureBASIC Comments --- */\n.hljs-regexp,\n.hljs-section,\n.hljs-selector-pseudo,\n.hljs-addition {\n\tcolor: #00AAAA; /* Persian Green (approx.) */\n}\n\n.hljs-title, /* --- used for PureBASIC Procedures Names --- */\n.hljs-tag,\n.hljs-variable,\n.hljs-code  {\n\tcolor: #006666; /* Blue Stone (approx.) */\n}\n\n.hljs-keyword, /* --- used for PureBASIC Keywords --- */\n.hljs-class,\n.hljs-meta-keyword,\n.hljs-selector-class,\n.hljs-built_in,\n.hljs-builtin-name {\n\tcolor: #006666; /* Blue Stone (approx.) */\n\tfont-weight: bold;\n}\n\n.hljs-string, /* --- used for PureBASIC Strings --- */\n.hljs-selector-attr {\n\tcolor: #0080FF; /* Azure Radiance (approx.) */\n}\n\n.hljs-symbol, /* --- used for PureBASIC Constants --- */\n.hljs-link,\n.hljs-deletion,\n.hljs-attribute {\n\tcolor: #924B72; /* Cannon Pink (approx.) */\n}\n\n.hljs-meta,\n.hljs-literal,\n.hljs-selector-id {\n\tcolor: #924B72; /* Cannon Pink (approx.) */\n\tfont-weight: bold;\n}\n\n.hljs-strong,\n.hljs-name {\n\tfont-weight: bold;\n}\n\n.hljs-emphasis {\n\tfont-style: italic;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/qtcreator_dark.css",
    "content": "/*\n\nQt Creator dark color scheme\n\n*/\n\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #000000;\n}\n\n.hljs,\n.hljs-subst,\n.hljs-tag,\n.hljs-title {\n  color: #aaaaaa;\n}\n\n.hljs-strong,\n.hljs-emphasis {\n  color: #a8a8a2;\n}\n\n.hljs-bullet,\n.hljs-quote,\n.hljs-number,\n.hljs-regexp,\n.hljs-literal {\n  color: #ff55ff;\n}\n\n.hljs-code\n.hljs-selector-class {\n  color: #aaaaff;\n}\n\n.hljs-emphasis,\n.hljs-stronge,\n.hljs-type {\n  font-style: italic;\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-function,\n.hljs-section,\n.hljs-symbol,\n.hljs-name {\n  color: #ffff55;\n}\n\n.hljs-attribute {\n  color: #ff5555;\n}\n\n.hljs-variable,\n.hljs-params,\n.hljs-class .hljs-title {\n  color: #8888ff;\n}\n\n.hljs-string,\n.hljs-selector-id,\n.hljs-selector-attr,\n.hljs-selector-pseudo,\n.hljs-type,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-template-tag,\n.hljs-template-variable,\n.hljs-addition,\n.hljs-link {\n  color: #ff55ff;\n}\n\n.hljs-comment,\n.hljs-meta,\n.hljs-deletion {\n  color: #55ffff;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/qtcreator_light.css",
    "content": "/*\n\nQt Creator light color scheme\n\n*/\n\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #ffffff;\n}\n\n.hljs,\n.hljs-subst,\n.hljs-tag,\n.hljs-title {\n  color: #000000;\n}\n\n.hljs-strong,\n.hljs-emphasis {\n  color: #000000;\n}\n\n.hljs-bullet,\n.hljs-quote,\n.hljs-number,\n.hljs-regexp,\n.hljs-literal {\n  color: #000080;\n}\n\n.hljs-code\n.hljs-selector-class {\n  color: #800080;\n}\n\n.hljs-emphasis,\n.hljs-stronge,\n.hljs-type {\n  font-style: italic;\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-function,\n.hljs-section,\n.hljs-symbol,\n.hljs-name {\n  color: #808000;\n}\n\n.hljs-attribute {\n  color: #800000;\n}\n\n.hljs-variable,\n.hljs-params,\n.hljs-class .hljs-title {\n  color: #0055AF;\n}\n\n.hljs-string,\n.hljs-selector-id,\n.hljs-selector-attr,\n.hljs-selector-pseudo,\n.hljs-type,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-template-tag,\n.hljs-template-variable,\n.hljs-addition,\n.hljs-link {\n  color: #008000;\n}\n\n.hljs-comment,\n.hljs-meta,\n.hljs-deletion {\n  color: #008000;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/railscasts.css",
    "content": "/*\n\nRailscasts-like style (c) Visoft, Inc. (Damien White)\n\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #232323;\n  color: #e6e1dc;\n}\n\n.hljs-comment,\n.hljs-quote {\n  color: #bc9458;\n  font-style: italic;\n}\n\n.hljs-keyword,\n.hljs-selector-tag {\n  color: #c26230;\n}\n\n.hljs-string,\n.hljs-number,\n.hljs-regexp,\n.hljs-variable,\n.hljs-template-variable {\n  color: #a5c261;\n}\n\n.hljs-subst {\n  color: #519f50;\n}\n\n.hljs-tag,\n.hljs-name {\n  color: #e8bf6a;\n}\n\n.hljs-type {\n  color: #da4939;\n}\n\n\n.hljs-symbol,\n.hljs-bullet,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-attr,\n.hljs-link {\n  color: #6d9cbe;\n}\n\n.hljs-params {\n  color: #d0d0ff;\n}\n\n.hljs-attribute {\n  color: #cda869;\n}\n\n.hljs-meta {\n  color: #9b859d;\n}\n\n.hljs-title,\n.hljs-section {\n  color: #ffc66d;\n}\n\n.hljs-addition {\n  background-color: #144212;\n  color: #e6e1dc;\n  display: inline-block;\n  width: 100%;\n}\n\n.hljs-deletion {\n  background-color: #600;\n  color: #e6e1dc;\n  display: inline-block;\n  width: 100%;\n}\n\n.hljs-selector-class {\n  color: #9b703f;\n}\n\n.hljs-selector-id {\n  color: #8b98ab;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n\n.hljs-link {\n  text-decoration: underline;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/rainbow.css",
    "content": "/*\n\nStyle with support for rainbow parens\n\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #474949;\n  color: #d1d9e1;\n}\n\n\n.hljs-comment,\n.hljs-quote {\n  color: #969896;\n  font-style: italic;\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-literal,\n.hljs-type,\n.hljs-addition {\n  color: #cc99cc;\n}\n\n.hljs-number,\n.hljs-selector-attr,\n.hljs-selector-pseudo {\n  color: #f99157;\n}\n\n.hljs-string,\n.hljs-doctag,\n.hljs-regexp {\n  color: #8abeb7;\n}\n\n.hljs-title,\n.hljs-name,\n.hljs-section,\n.hljs-built_in {\n  color: #b5bd68;\n}\n\n.hljs-variable,\n.hljs-template-variable,\n.hljs-selector-id,\n.hljs-class .hljs-title {\n   color: #ffcc66;\n}\n\n.hljs-section,\n.hljs-name,\n.hljs-strong {\n  font-weight: bold;\n}\n\n.hljs-symbol,\n.hljs-bullet,\n.hljs-subst,\n.hljs-meta,\n.hljs-link {\n  color: #f99157;\n}\n\n.hljs-deletion {\n  color: #dc322f;\n}\n\n.hljs-formula {\n  background: #eee8d5;\n}\n\n.hljs-attr,\n.hljs-attribute {\n  color: #81a2be;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/school-book.css",
    "content": "/*\n\nSchool Book style from goldblog.com.ua (c) Zaripov Yura <yur4ik7@ukr.net>\n\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 15px 0.5em 0.5em 30px;\n  font-size: 11px;\n  line-height:16px;\n}\n\npre{\n  background:#f6f6ae url(./school-book.png);\n  border-top: solid 2px #d2e8b9;\n  border-bottom: solid 1px #d2e8b9;\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-literal {\n  color:#005599;\n  font-weight:bold;\n}\n\n.hljs,\n.hljs-subst {\n  color: #3e5915;\n}\n\n.hljs-string,\n.hljs-title,\n.hljs-section,\n.hljs-type,\n.hljs-symbol,\n.hljs-bullet,\n.hljs-attribute,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-addition,\n.hljs-variable,\n.hljs-template-tag,\n.hljs-template-variable,\n.hljs-link {\n  color: #2c009f;\n}\n\n.hljs-comment,\n.hljs-quote,\n.hljs-deletion,\n.hljs-meta {\n  color: #e60415;\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-literal,\n.hljs-doctag,\n.hljs-title,\n.hljs-section,\n.hljs-type,\n.hljs-name,\n.hljs-selector-id,\n.hljs-strong {\n  font-weight: bold;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/solarized-dark.css",
    "content": "/*\n\nOrginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmail.com>\n\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #002b36;\n  color: #839496;\n}\n\n.hljs-comment,\n.hljs-quote {\n  color: #586e75;\n}\n\n/* Solarized Green */\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-addition {\n  color: #859900;\n}\n\n/* Solarized Cyan */\n.hljs-number,\n.hljs-string,\n.hljs-meta .hljs-meta-string,\n.hljs-literal,\n.hljs-doctag,\n.hljs-regexp {\n  color: #2aa198;\n}\n\n/* Solarized Blue */\n.hljs-title,\n.hljs-section,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class {\n  color: #268bd2;\n}\n\n/* Solarized Yellow */\n.hljs-attribute,\n.hljs-attr,\n.hljs-variable,\n.hljs-template-variable,\n.hljs-class .hljs-title,\n.hljs-type {\n  color: #b58900;\n}\n\n/* Solarized Orange */\n.hljs-symbol,\n.hljs-bullet,\n.hljs-subst,\n.hljs-meta,\n.hljs-meta .hljs-keyword,\n.hljs-selector-attr,\n.hljs-selector-pseudo,\n.hljs-link {\n  color: #cb4b16;\n}\n\n/* Solarized Red */\n.hljs-built_in,\n.hljs-deletion {\n  color: #dc322f;\n}\n\n.hljs-formula {\n  background: #073642;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/solarized-light.css",
    "content": "/*\n\nOrginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmail.com>\n\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #fdf6e3;\n  color: #657b83;\n}\n\n.hljs-comment,\n.hljs-quote {\n  color: #93a1a1;\n}\n\n/* Solarized Green */\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-addition {\n  color: #859900;\n}\n\n/* Solarized Cyan */\n.hljs-number,\n.hljs-string,\n.hljs-meta .hljs-meta-string,\n.hljs-literal,\n.hljs-doctag,\n.hljs-regexp {\n  color: #2aa198;\n}\n\n/* Solarized Blue */\n.hljs-title,\n.hljs-section,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class {\n  color: #268bd2;\n}\n\n/* Solarized Yellow */\n.hljs-attribute,\n.hljs-attr,\n.hljs-variable,\n.hljs-template-variable,\n.hljs-class .hljs-title,\n.hljs-type {\n  color: #b58900;\n}\n\n/* Solarized Orange */\n.hljs-symbol,\n.hljs-bullet,\n.hljs-subst,\n.hljs-meta,\n.hljs-meta .hljs-keyword,\n.hljs-selector-attr,\n.hljs-selector-pseudo,\n.hljs-link {\n  color: #cb4b16;\n}\n\n/* Solarized Red */\n.hljs-built_in,\n.hljs-deletion {\n  color: #dc322f;\n}\n\n.hljs-formula {\n  background: #eee8d5;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/sunburst.css",
    "content": "/*\n\nSunburst-like style (c) Vasily Polovnyov <vast@whiteants.net>\n\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #000;\n  color: #f8f8f8;\n}\n\n.hljs-comment,\n.hljs-quote {\n  color: #aeaeae;\n  font-style: italic;\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-type {\n  color: #e28964;\n}\n\n.hljs-string {\n  color: #65b042;\n}\n\n.hljs-subst {\n  color: #daefa3;\n}\n\n.hljs-regexp,\n.hljs-link {\n  color: #e9c062;\n}\n\n.hljs-title,\n.hljs-section,\n.hljs-tag,\n.hljs-name {\n  color: #89bdff;\n}\n\n.hljs-class .hljs-title,\n.hljs-doctag {\n  text-decoration: underline;\n}\n\n.hljs-symbol,\n.hljs-bullet,\n.hljs-number {\n  color: #3387cc;\n}\n\n.hljs-params,\n.hljs-variable,\n.hljs-template-variable {\n  color: #3e87e3;\n}\n\n.hljs-attribute {\n  color: #cda869;\n}\n\n.hljs-meta {\n  color: #8996a8;\n}\n\n.hljs-formula {\n  background-color: #0e2231;\n  color: #f8f8f8;\n  font-style: italic;\n}\n\n.hljs-addition {\n  background-color: #253b22;\n  color: #f8f8f8;\n}\n\n.hljs-deletion {\n  background-color: #420e09;\n  color: #f8f8f8;\n}\n\n.hljs-selector-class {\n  color: #9b703f;\n}\n\n.hljs-selector-id {\n  color: #8b98ab;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/tomorrow-night-blue.css",
    "content": "/* Tomorrow Night Blue Theme */\n/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */\n/* Original theme - https://github.com/chriskempson/tomorrow-theme */\n/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */\n\n/* Tomorrow Comment */\n.hljs-comment,\n.hljs-quote {\n  color: #7285b7;\n}\n\n/* Tomorrow Red */\n.hljs-variable,\n.hljs-template-variable,\n.hljs-tag,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class,\n.hljs-regexp,\n.hljs-deletion {\n  color: #ff9da4;\n}\n\n/* Tomorrow Orange */\n.hljs-number,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-literal,\n.hljs-type,\n.hljs-params,\n.hljs-meta,\n.hljs-link {\n  color: #ffc58f;\n}\n\n/* Tomorrow Yellow */\n.hljs-attribute {\n  color: #ffeead;\n}\n\n/* Tomorrow Green */\n.hljs-string,\n.hljs-symbol,\n.hljs-bullet,\n.hljs-addition {\n  color: #d1f1a9;\n}\n\n/* Tomorrow Blue */\n.hljs-title,\n.hljs-section {\n  color: #bbdaff;\n}\n\n/* Tomorrow Purple */\n.hljs-keyword,\n.hljs-selector-tag {\n  color: #ebbbff;\n}\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  background: #002451;\n  color: white;\n  padding: 0.5em;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/tomorrow-night-bright.css",
    "content": "/* Tomorrow Night Bright Theme */\n/* Original theme - https://github.com/chriskempson/tomorrow-theme */\n/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */\n\n/* Tomorrow Comment */\n.hljs-comment,\n.hljs-quote {\n  color: #969896;\n}\n\n/* Tomorrow Red */\n.hljs-variable,\n.hljs-template-variable,\n.hljs-tag,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class,\n.hljs-regexp,\n.hljs-deletion {\n  color: #d54e53;\n}\n\n/* Tomorrow Orange */\n.hljs-number,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-literal,\n.hljs-type,\n.hljs-params,\n.hljs-meta,\n.hljs-link {\n  color: #e78c45;\n}\n\n/* Tomorrow Yellow */\n.hljs-attribute {\n  color: #e7c547;\n}\n\n/* Tomorrow Green */\n.hljs-string,\n.hljs-symbol,\n.hljs-bullet,\n.hljs-addition {\n  color: #b9ca4a;\n}\n\n/* Tomorrow Blue */\n.hljs-title,\n.hljs-section {\n  color: #7aa6da;\n}\n\n/* Tomorrow Purple */\n.hljs-keyword,\n.hljs-selector-tag {\n  color: #c397d8;\n}\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  background: black;\n  color: #eaeaea;\n  padding: 0.5em;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/tomorrow-night-eighties.css",
    "content": "/* Tomorrow Night Eighties Theme */\n/* Original theme - https://github.com/chriskempson/tomorrow-theme */\n/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */\n\n/* Tomorrow Comment */\n.hljs-comment,\n.hljs-quote {\n  color: #999999;\n}\n\n/* Tomorrow Red */\n.hljs-variable,\n.hljs-template-variable,\n.hljs-tag,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class,\n.hljs-regexp,\n.hljs-deletion {\n  color: #f2777a;\n}\n\n/* Tomorrow Orange */\n.hljs-number,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-literal,\n.hljs-type,\n.hljs-params,\n.hljs-meta,\n.hljs-link {\n  color: #f99157;\n}\n\n/* Tomorrow Yellow */\n.hljs-attribute {\n  color: #ffcc66;\n}\n\n/* Tomorrow Green */\n.hljs-string,\n.hljs-symbol,\n.hljs-bullet,\n.hljs-addition {\n  color: #99cc99;\n}\n\n/* Tomorrow Blue */\n.hljs-title,\n.hljs-section {\n  color: #6699cc;\n}\n\n/* Tomorrow Purple */\n.hljs-keyword,\n.hljs-selector-tag {\n  color: #cc99cc;\n}\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  background: #2d2d2d;\n  color: #cccccc;\n  padding: 0.5em;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/tomorrow-night.css",
    "content": "/* Tomorrow Night Theme */\n/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */\n/* Original theme - https://github.com/chriskempson/tomorrow-theme */\n/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */\n\n/* Tomorrow Comment */\n.hljs-comment,\n.hljs-quote {\n  color: #969896;\n}\n\n/* Tomorrow Red */\n.hljs-variable,\n.hljs-template-variable,\n.hljs-tag,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class,\n.hljs-regexp,\n.hljs-deletion {\n  color: #cc6666;\n}\n\n/* Tomorrow Orange */\n.hljs-number,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-literal,\n.hljs-type,\n.hljs-params,\n.hljs-meta,\n.hljs-link {\n  color: #de935f;\n}\n\n/* Tomorrow Yellow */\n.hljs-attribute {\n  color: #f0c674;\n}\n\n/* Tomorrow Green */\n.hljs-string,\n.hljs-symbol,\n.hljs-bullet,\n.hljs-addition {\n  color: #b5bd68;\n}\n\n/* Tomorrow Blue */\n.hljs-title,\n.hljs-section {\n  color: #81a2be;\n}\n\n/* Tomorrow Purple */\n.hljs-keyword,\n.hljs-selector-tag {\n  color: #b294bb;\n}\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  background: #1d1f21;\n  color: #c5c8c6;\n  padding: 0.5em;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/tomorrow.css",
    "content": "/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */\n\n/* Tomorrow Comment */\n.hljs-comment,\n.hljs-quote {\n  color: #8e908c;\n}\n\n/* Tomorrow Red */\n.hljs-variable,\n.hljs-template-variable,\n.hljs-tag,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class,\n.hljs-regexp,\n.hljs-deletion {\n  color: #c82829;\n}\n\n/* Tomorrow Orange */\n.hljs-number,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-literal,\n.hljs-type,\n.hljs-params,\n.hljs-meta,\n.hljs-link {\n  color: #f5871f;\n}\n\n/* Tomorrow Yellow */\n.hljs-attribute {\n  color: #eab700;\n}\n\n/* Tomorrow Green */\n.hljs-string,\n.hljs-symbol,\n.hljs-bullet,\n.hljs-addition {\n  color: #718c00;\n}\n\n/* Tomorrow Blue */\n.hljs-title,\n.hljs-section {\n  color: #4271ae;\n}\n\n/* Tomorrow Purple */\n.hljs-keyword,\n.hljs-selector-tag {\n  color: #8959a8;\n}\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  background: white;\n  color: #4d4d4c;\n  padding: 0.5em;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/vs.css",
    "content": "/*\n\nVisual Studio-like style based on original C# coloring by Jason Diamond <jason@diamond.name>\n\n*/\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: white;\n  color: black;\n}\n\n.hljs-comment,\n.hljs-quote,\n.hljs-variable {\n  color: #008000;\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-built_in,\n.hljs-name,\n.hljs-tag {\n  color: #00f;\n}\n\n.hljs-string,\n.hljs-title,\n.hljs-section,\n.hljs-attribute,\n.hljs-literal,\n.hljs-template-tag,\n.hljs-template-variable,\n.hljs-type,\n.hljs-addition {\n  color: #a31515;\n}\n\n.hljs-deletion,\n.hljs-selector-attr,\n.hljs-selector-pseudo,\n.hljs-meta {\n  color: #2b91af;\n}\n\n.hljs-doctag {\n  color: #808080;\n}\n\n.hljs-attr {\n  color: #f00;\n}\n\n.hljs-symbol,\n.hljs-bullet,\n.hljs-link {\n  color: #00b0e8;\n}\n\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/xcode.css",
    "content": "/*\n\nXCode style (c) Angel Garcia <angelgarcia.mail@gmail.com>\n\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #fff;\n  color: black;\n}\n\n.hljs-comment,\n.hljs-quote {\n  color: #006a00;\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-literal {\n  color: #aa0d91;\n}\n\n.hljs-name {\n  color: #008;\n}\n\n.hljs-variable,\n.hljs-template-variable {\n  color: #660;\n}\n\n.hljs-string {\n  color: #c41a16;\n}\n\n.hljs-regexp,\n.hljs-link {\n  color: #080;\n}\n\n.hljs-title,\n.hljs-tag,\n.hljs-symbol,\n.hljs-bullet,\n.hljs-number,\n.hljs-meta {\n  color: #1c00cf;\n}\n\n.hljs-section,\n.hljs-class .hljs-title,\n.hljs-type,\n.hljs-attr,\n.hljs-built_in,\n.hljs-builtin-name,\n.hljs-params {\n  color: #5c2699;\n}\n\n.hljs-attribute,\n.hljs-subst {\n  color: #000;\n}\n\n.hljs-formula {\n  background-color: #eee;\n  font-style: italic;\n}\n\n.hljs-addition {\n  background-color: #baeeba;\n}\n\n.hljs-deletion {\n  background-color: #ffc8bd;\n}\n\n.hljs-selector-id,\n.hljs-selector-class {\n  color: #9b703f;\n}\n\n.hljs-doctag,\n.hljs-strong {\n  font-weight: bold;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/xt256.css",
    "content": "\n/*\n  xt256.css\n\n  Contact: initbar [at] protonmail [dot] ch\n         : github.com/initbar\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  color: #eaeaea;\n  background: #000;\n  padding: 0.5;\n}\n\n.hljs-subst {\n  color: #eaeaea;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n\n.hljs-builtin-name,\n.hljs-type {\n  color: #eaeaea;\n}\n\n.hljs-params {\n  color: #da0000;\n}\n\n.hljs-literal,\n.hljs-number,\n.hljs-name {\n  color: #ff0000;\n  font-weight: bolder;\n}\n\n.hljs-comment {\n  color: #969896;\n}\n\n.hljs-selector-id,\n.hljs-quote {\n  color: #00ffff;\n}\n\n.hljs-template-variable,\n.hljs-variable,\n.hljs-title {\n  color: #00ffff;\n  font-weight: bold;\n}\n\n.hljs-selector-class,\n.hljs-keyword,\n.hljs-symbol {\n  color: #fff000;\n}\n\n.hljs-string,\n.hljs-bullet {\n  color: #00ff00;\n}\n\n.hljs-tag,\n.hljs-section {\n  color: #000fff;\n}\n\n.hljs-selector-tag {\n  color: #000fff;\n  font-weight: bold;\n}\n\n.hljs-attribute,\n.hljs-built_in,\n.hljs-regexp,\n.hljs-link {\n  color: #ff00ff;\n}\n\n.hljs-meta {\n  color: #fff;\n  font-weight: bolder;\n}\n"
  },
  {
    "path": "www/static/highlight/styles/zenburn.css",
    "content": "/*\n\nZenburn style from voldmar.ru (c) Vladimir Epifanov <voldmar@voldmar.ru>\nbased on dark.css by Ivan Sagalaev\n\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #3f3f3f;\n  color: #dcdcdc;\n}\n\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-tag {\n  color: #e3ceab;\n}\n\n.hljs-template-tag {\n  color: #dcdcdc;\n}\n\n.hljs-number {\n  color: #8cd0d3;\n}\n\n.hljs-variable,\n.hljs-template-variable,\n.hljs-attribute {\n  color: #efdcbc;\n}\n\n.hljs-literal {\n  color: #efefaf;\n}\n\n.hljs-subst {\n  color: #8f8f8f;\n}\n\n.hljs-title,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class,\n.hljs-section,\n.hljs-type {\n  color: #efef8f;\n}\n\n.hljs-symbol,\n.hljs-bullet,\n.hljs-link {\n  color: #dca3a3;\n}\n\n.hljs-deletion,\n.hljs-string,\n.hljs-built_in,\n.hljs-builtin-name {\n  color: #cc9393;\n}\n\n.hljs-addition,\n.hljs-comment,\n.hljs-quote,\n.hljs-meta {\n  color: #7f9f7f;\n}\n\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "www/static/js/controller.js",
    "content": "$.U=function(url){\n\treturn apiPath.replace(/\\{.+?\\}/g,url);\n};\n\nvar \ntranH=function(t,f,ff){\n\tswitch(typeof f){\n\t\tcase 'function':\n\t\t\tf(t);\n\t\t\tbreak;\n\t\tcase 'object':\n\t\t\tf.innerHTML=t;\n\t\t\tbreak;\n\t\tcase 'string':\n\t\t\t$(f).innerHTML=t;\n\t\t\tbreak;\n\t\tdefault:\n\t\t\treturn t;\n\t\t\tbreak;\n\t}\n\n\tswitch(typeof ff){\n\t\tcase 'function':\n\t\t\tff(t);\n\t\t\tbreak;\n\t}\n},\nMD=function(t,i,r,f,ff){\n\tif(!f||typeof r!='function'){\n\t\tff=f;\n\t\tf=r;\n\t\tr=function(i){return i};\n\t}\n\tt=getTemplet(t);\n\t\n\tt=模板.运转(t,r(i));\n\t// t=Mustache.render(t,r(i));\n\tif(f)\n\t\ttranH(t,f,ff);\n\n\treturn t;\n},\nMX=function(t,d,r,f,ff){\n\tif(!f||typeof r!='function'){\n\t\tff=f;\n\t\tf=r;\n\t\tr=function(i){return i};\n\t}\n\tt=getTemplet(t);\n\treturn $.x(d,function(i){\n\t\t// if(i.error)\n\t\t// \treturn r?r(i):alert(i.error);\n\n\t\tt=模板.运转(t,r(i));\n\t\t// t=Mustache.render(t,r(i));\n\t\tif(f)\n\t\t\ttranH(t,f,ff);\n\t});\n},\nME,\nPOST={},\ntext2html=function(txt){\n\n\ttxt=txt.replace(/<image w=(\\d+) h=(\\d+) describe=([^>]+?)? name=(Notes_\\d+\\.(jpeg|png|jpg|gif)|\\w{16,32})>/g,function(全,宽,高,说明文字,图片文件名){\n//\t\tconsole.log(全,宽,高,说明文字,图片文件名);\n\n\t\tvar \n\t\t输出宽=宽,\n\t\t输出高=高,\n\t\t比例=高/宽;\n\n\t\t说明文字=说明文字||'';\n\n\t\tif(宽>400){\n\t\t\t输出宽=400;\n\t\t\t输出高=Math.floor(输出宽*高/宽);\n\t\t}\n\n\t\tif(宽<400 && 高>600){\n\t\t\t输出高=600;\n\t\t\t输出宽=Math.floor(输出高*宽/高);\n\t\t}\n\n\t\tvar \n\t\tsrc='https://cloud.smartisan.com/notesimage/'+图片文件名;\n\n\t\tif(图片文件名.match(/^\\w{16,32}$/i)){\n\t\t\tsrc='http://ww2.sinaimg.cn/mw1024/'+图片文件名;\n\t\t}\n\n\t\t// if(PIC[src])\n\t\t// \tsrc='http://ww2.sinaimg.cn/mw1024/'+PIC[src];\n\n\t\treturn '<img class=\"sm-pic\" src=\"'+src+'\" width=\"'+输出宽+'\" height=\"'+输出高+'\" alt=\"'+说明文字+'\">';\n\n\t\treturn '!['+说明文字+']('+src+')';\n\t});\n\n\t// txt=markdown.toHTML(txt);\n\ttxt=_md2html(txt);\n\treturn txt;\n},\n时间格式化=function(t){\n\treturn t.reDate();\n},\nC=new Markdown.Converter(),\n_md2html=function(i){\n\ti=i.replace(/```(|[\\w]+)[\\r\\n]+([\\W.\\S]*?)```/mg,function(i,a,b){\n\t\treturn '<pre><code class=\"'+a+'\">'+b.replace(/&/g,\"&amp;\").replace(/</g,\"&lt;\").replace(/>/g,\"&gt;\").replace(/\\'/g,\"&#39;\").replace(/\\\"/g,\"&quot;\")+'</code></pre>'\n\t})//.replace(/(^|[^\\\"\\'\\]>])(http\\:\\/\\/ww[0-9]{1}\\.sinaimg\\.cn\\/)([\\w]{4,10})(\\/[\\w]{16,32})(|\\.gif|\\.jpg|\\.jpeg)/g,\"<img src=\\\"$2mw1024$4$5\\\">\")\n\n\ti=C.makeHtml(i);\n\treturn i\n};\n\n\n\nvar \nbody=document.body;\n\nQ.reg('p',function(pid){//打开具体某篇文章时\n\n\tbody.setAttribute('step','post');\n\n\tif(!pid||!POST[pid])\n\t\treturn location.hash='#/home';\n\n\n\tvar \n\tpNavDom;\n\n\t\n\tif(pNavDom=$('.posts .active'))\n\t\tpNavDom.className='post ';\n\n\n\tif(pNavDom=$('#p_'+pid))\n\t\tpNavDom.className='post active';\n\n\n\n\tvar\n\tP=POST[pid];\n\n\n\tdocument.title=P.title;\n\tP.text=text2html(P.detail).replace(/<\\/h1>/,function(){\n\t\treturn '<\\/h1>\\n<time>'+时间格式化(P.modify_time)+'</time>\\n';\n\t});\n\t\n\n\tMD('article',P,'.article-box');\n\n\tif($('pre code')){\n\t\t// hljs.initHighlighting();\n\t\t$$('pre code').forEach(function(block) {\n\t\t\thljs.highlightBlock(block);\n\t\t});\n\t}\n\n\t$('.article-box').scrollTop=0;\n\n}).reg('home',function(){//打开首页\n\tbody.setAttribute('step','home');\n\tvar \n\tpNavDom;\n\tdocument.title=ME.nickname+' - 锤子';\n\t\n\tif(pNavDom=$('.posts .active'))\n\t\tpNavDom.className='post ';\n})\n\n\n\n\n\n\n\n//$.x('x/?info&_r='+Math.random(),function(r){\n$.x($.U('info'),function(r){\n\tME=r;\n\n\tdocument.title=r.nickname+' - 锤子';\n\n\tMD('header',ME,'header');\n\n\t$.x($.U('post'),function(post){\n\t\t// r=r.data;\n\n\t\t// var\n\t\t// post=r.note;\n\n\n\n\t\tvar \n\t\ti=post.length,\n\t\to,\n\t\t_post=[];\n\n\t\twhile(i--){\n\t\t\to=post[i];\n\n\n\t\t\t// o.time=o.modify_time.reDate();\n\t\t\to.title=o.title.replace(/^#\\s?/,'');\n\t\t\t// o.count=o.detail.length;\n\t\t\t// o.text=markdown.toHTML(o.detail);\n\t\t\to.hasImage=!!o.detail.match(/<image/);\n\t\t\tPOST[o.pos]=o;\n\n\t\t\t// if(o.favorite)\n\t\t\t\t_post.push(o);\n\t\t}\n\n\n\t\tMD('posts',{\n\t\t\tpost:_post\n\t\t},'.posts');\n\n\t\tQ.init({\n\t\t\tkey:'/',\n\t\t\tindex:'home'\n\t\t});\n\t});\n\n});\n\n\n\nvar \npop=function(){\n\tvar hash=location.hash.match(/[\\w\\/]+/)+'';\n\n};"
  },
  {
    "path": "www/static/js/itorr2.js",
    "content": "var iTorr=function(W,D,$,$$){\n\n\t$=function(i,p){\n\t\treturn (p||D).querySelector(i);\n\t};\n\t$$=function(i,p){\n\t\treturn toArr((p||D).querySelectorAll(i));\n\t};\n\tvar toArr=$.toArr=function(r){\n\t\treturn Array.prototype.slice.apply(r)\n\t};\n\tvar\n\t_D=Element.prototype,\n\t_S=String.prototype,\n\t_N=Number.prototype,\n\t_A=Array.prototype,\n\t_O=Object.prototype,\n\ten=encodeURIComponent,\n\tde=decodeURIComponent;\n\n\t_D.css=function(i){\n\t\tif(!i)\n\t\t\treturn this.style.cssText;\n\n\t\tthis.style.cssText+=(';'+i);\n\t\treturn this\n\t};\n\n\n\t$.x=function(d){\n\t\treturn function(){\n\t\t\tvar\n\t\t\tmethod,url,data,func,err,x,j,\n\t\t\tpar,\n\t\t\targ=toArr(arguments);\n\n\t\t\tif(arg[0]&&typeof arg[0]=='string'&&arg[0].match(/^(put|get|post|delete)$/i))\n\t\t\t\tmethod=arg.shift().toUpperCase();\n\n\n\t\t\tif(arg[0]&&typeof arg[0]=='object')\n\t\t\t\tpar=arg.shift();\n\n\t\t\turl=arg.shift();\n\n\n\t\t\tif(arg[0]&&typeof arg[0]=='object'){\n\t\t\t\tdd=arg.shift();\n\t\t\t\tdata=[];\n\t\t\t\tvar o;\n\t\t\t\tfor(var i in dd){\n\t\t\t\t\to=dd[i];\n\t\t\t\t\tdata.push(en(i)+'='+en(o))\n\t\t\t\t}\n\t\t\t\tdata=data.join('&');\n\t\t\t}else if(arg[0]&&typeof arg[0]=='string')\n\t\t\t\tdata=arg.shift();\n\t\t\telse\n\t\t\t\tdata='';\n\n\t\t\tif(!method)\n\t\t\t\tmethod=data?'POST':'GET';\n\n\t\t\tif(arg[0]&&typeof arg[0]=='function')\n\t\t\t\tfunc=arg.shift();\n\n\t\t\tif(arg[0]&&typeof arg[0]=='function')\n\t\t\t\terr=arg.shift();\n\n\t\t\tif(d[url]&&method=='GET')\n\t\t\t\treturn func(d[url]);\n\n\t\t\t(x=new XMLHttpRequest()).open(method,url,1);\n\n\t\t\tif(arg[0]&&arg[0]=='x')\n\t\t\t\tx.withCredentials=true;\n\n\t\t\t//console.log(par)\n\t\t\tif(par){\n\t\t\t\tvar v;\n\t\t\t\tfor(var k in par){\n\t\t\t\t\tv=dd[k];\n\t\t\t\t\tx[k]=v\n\t\t\t\t}\n\t\t\t}\n\t\t\n\n\t\t\t!data||x.setRequestHeader('Content-Type','application/x-www-form-urlencoded');\n\n\t\t\tif(func||err)\n\t\t\t\tx.onreadystatechange=function(){\n\t\t\t\t\tif(x.readyState==4){\n\t\t\t\t\t\t//console.log(x.response,x.status)\n\t\t\t\t\t\tif((x.status>199&&x.status<301)||x.status==304||x.status==0){\n\t\t\t\t\t\t\t//console.log(x)\n\t\t\t\t\t\t\tif(x.responseType=='blob')\n\t\t\t\t\t\t\t\tj=x.response;\n\t\t\t\t\t\t\telse\n\t\t\t\t\t\t\t\tj=x.responseText;\n\n\t\t\t\t\t\t\tif((x.getResponseHeader('Content-Type')||'').match(/json/)||url.match(/\\.json$/))\n\t\t\t\t\t\t\t\tj=JSON.parse(j||null);\n\n\t\t\t\t\t\t\tif(!data)\n\t\t\t\t\t\t\t\td[url]=j;\n\n\t\t\t\t\t\t\tfunc(j);\n\t\t\t\t\t\t}else if(err)\n\t\t\t\t\t\t\terr(x.status);\n\n\t\t\t\t\t}\n\t\t\t\t};\n\n\t\t\tx.send(data);\n\t\t\treturn x;\n\t\t};\n\t}({});\n\n\t_D.x=function(u,p,f,m){\n\t\tif(typeof p=='function'){\n\t\t\tf=p\n\t\t\tp=0\n\t\t}\n\t\tm=this;\n\t\t$.x(u,p,function(data){\n\t\t\tif(typeof data=='string' && !f){\n\t\t\t\tm.innerHTML=data;\n\t\t\t}else if(f){\n\t\t\t\tm.innerHTML=f(data)||'';\n\t\t\t}\n\t\t});\n\t\treturn m;\n\t}\n\n\t$.cookie=function(name,data,time,path,domain,secure){\n\t\tif(typeof data=='undefined'){\n\t\t\tdata=D.cookie.match(new RegExp('(^| )'+name+'=([^;]*)(;|$)'));\n\t\t\treturn data==null?null:unescape(data[2]);\n\t\t}\n\n\t\tif(path && (typeof path==='number' || typeof path==='object') || (typeof path=='string' && path.match(/^\\d$/)) ){\n\t\t\ttime=path;\n\t\t\tpath='';\n\t\t}\n\t\tvar r=[];\n\n\t\ttime=time||31536000;\n\n\t\tr.push(en(name)+'='+en(data)); // key value\n\n\t\tif(path)\n\t\t\tr.push('path='+path); // path\n\n\t\tif(time){\n\t\t\tvar j=new Date();\n\t\t\tj.setTime(+j+time*1000);\n\n\t\t\tr.push('expires='+j.toUTCString()); // time\n\t\t}\n\n\t\tif(secure) //安全\n\t\t\tr.push('secure');\n\n\n\t\treturn D.cookie=r.join(';');\n\n\t};\n\n\n\tW.$Stor=W.localStorage;\n\n\t$.stor=function(Stor){\n\t\treturn function(name,data){\n\t\t\tif(typeof data=='undefined')\n\t\t\t\treturn Stor[name];\n\n\t\t\treturn Stor[name]=data;\n\t\t};\n\t}($Stor);\n\n\t$.j=\n\t$.l=function(cssLoadEnd){\n\t\treturn function(url,fun,err,dom,callBackFunName){\n\t\t\tif(url.match(/\\.css$/)){\n\t\t\t\tif(cssLoadEnd.indexOf(url)>-1)\n\t\t\t\t\treturn;\n\n\t\t\t\tcssLoadEnd+=url+'|';\n\n\n\t\t\t\tdom=$.D('link');\n\t\t\t\tdom.href=url;\n\t\t\t\tdom.rel='stylesheet';\n\t\t\t\tdom.charset='UTF-8';\n\t\t\t\tif(fun)\n\t\t\t\t\tdom.onload=fun;\n\t\t\t\tif(err)\n\t\t\t\t\terr.onload=err;\n\t\t\t\t$('head').add(dom);\n\t\t\t}else if(url.match(/\\w+\\.html$/)){\n\t\t\t\terr=[];\n\t\t\t\t$.x(url,function(H){\n\t\t\t\t\tdom=$.D('div');\n\n\t\t\t\t\tvar A;\n\t\t\t\t\tif(A=url.match(/(\\w+)\\.html/))\n\t\t\t\t\t\tdom.className=A[1]+'-box'\n\n\t\t\t\t\tdom.setAttribute('mode',url);\n\t\t\t\t\th=H;\n\n\t\t\t\t\t//console.log(H)\n\n\t\t\t\t\tH.replace(/<script[\\w\\s=\"\\/]*?>[.\\s\\S]+?<\\/script>/igm,function(o){\n\t\t\t\t\t\t//console.log(o)\n\t\t\t\t\t\terr.push(o.replace(/^<script[\\w\\s=\"\\/]*?>|<\\/script>$/ig,''));\n\t\t\t\t\t\treturn '';\n\t\t\t\t\t});\n\t\t\t\t\t//console.log(H);\n\t\t\t\t\tif((typeof fun=='function'||!fun)&&W.m){\n\t\t\t\t\t\tm.innerHTML=H;\n\t\t\t\t\t\tif(fun)\n\t\t\t\t\t\t\tfun();\n\t\t\t\t\t}else{\n\t\t\t\t\t\tdom.innerHTML=H;\n\t\t\t\t\t\tdom.addTo(fun||D.body);\n\t\t\t\t\t}\n\n\t\t\t\t\t//console.log(err);\n\t\t\t\t\terr.map(eval);//运行所有内联script标签\n\t\t\t\t});\n\t\t\t}else{\n\n\t\t\t\tcallBackFunName='cb'+new Date().valueOf()+(Math.random()+'').substring(3);\n\n\t\t\t\tif(fun&&url.match(/\\{cb\\}/)){\n\t\t\t\t\tW[callBackFunName]=fun;\n\t\t\t\t}\n\n\t\t\t\tdom=$.D('script');\n\t\t\t\tdom.src=url.replace(/\\{cb\\}/,callBackFunName);\n\t\t\t\tdom.charset='UTF-8';\n\t\t\t\tdom.onload=function(){\n\t\t\t\t\tif(fun&&!url.match(/\\{cb\\}/))\n\t\t\t\t\t\tfun();\n\n\t\t\t\t\tdom.del();\n\t\t\t\t};\n\t\t\t\tdom.onerror=function(){\n\t\t\t\t\tif(err)\n\t\t\t\t\t\terr();\n\t\t\t\t\tdom.del();\n\t\t\t\t};\n\t\t\t\tdom.addTo();\n\t\t\t}\n\n\t\t};\n\t}('|');\n\n\n\t_D.addClass=function(i){\n\t\tif(this.hasClass(i))\n\t\t\treturn this;\n\t\tthis.className+=' '+i\n\t\treturn this\n\t}\n\n\t_D.hasClass=function(i){\n\t\treturn this.className.match(new RegExp(i))\n\t}\n\t_D.delClass=function(i){\n\t\tthis.className=(' '+this.className+' ')\n\t\t\t.replace(new RegExp(' '+i+' ','g'),' ')\n\t\t\t.replace(/^\\s+|\\s+$/,'')\n\t\t\t.replace(/\\s+/g,' ')\n\t\treturn this\n\t}\n\n\n\t$.D=function(d){\n\t\treturn D.createElement(d);\n\t}\n\t_D.add=function(d){\n\t\tif(d)\n\t\t\tthis.appendChild(d);\n\t\treturn this\n\t}\n\t_D.addTo=function(d){\n\t\t(d||D.body).appendChild(this);\n\t\treturn this\n\t}\n\t_D.addToFront=\n\t_D.addEnd=function(d){\n\t\tthis.insertBefore(d,this.childNodes[0]);\n\t\treturn this\n\t}\n\n\t_D.addBefore=function(d){//把 d 增加到 this 前面\n\t\tvar pa=this.parentNode;\n\t\tpa.insertBefore(d,this);\n\t\treturn this\n\t}\n\t_D.addToBefore=function(d){//把 this 增加到 d 前面\n\t\td.addBefore(this);\n\t\t//var pa=d.parentNode;\n\t\t//pa.insertBefore(d,this);\n\t\treturn this\n\t}\n\t_D.addAfter=function(d){//把 d 增加到 this 后面\n\t\tvar pa=this.parentNode;\n\t\tif (pa.lastChild==this)// 如果最后的节点是目标元素，则直接添加。因为默认是最后\n\t\t\tpa.appendChild(d);\n\t\telse\n\t\t\tpa.insertBefore(d,this.nextSibling);\n\t\t\t//如果不是，则插入在目标元素的下一个兄弟节点 的前面。也就是目标元素的后面\n\t}\n\t_D.addToAfter=function(d){//把 this 增加到 d 后面\n\t\td.addAfter(this);\n\t\treturn this\n\t}\n\t_D.del=function(f){\n\t\tif(f=this.parentNode)\n\t\t\tf.removeChild(this);\n\t\treturn f\n\t}\n\t_D.copy=function(){\n\t\treturn this.cloneNode(1);\n\t}\n\t_D.index=function(){\n\t\tvar pa,r;\n\t\tif(!(pa=this.parentNode))\n\t\t\treturn -1;\n\t\tr=toArr(pa.children);\n\t\treturn r.indexOf(this);\n\t};\n\n\tvar\n\taniTime=300;\n\n\t_D.show=function(t,f){\n\t\tvar o=this;\n\t\tif(typeof t=='function')\n\t\t\tf=t;\n\n\t\tsetTimeout(function(){\n\t\t\to.classDel('del')\n\t\t\to.classAdd('ani')\n\n\t\t\tsetTimeout(function(){\n\t\t\t\to.classDel('h')\n\n\t\t\t\tsetTimeout(function(){\n\t\t\t\t\to.classDel('ani')\n\t\t\t\t\tif(f)\n\t\t\t\t\t\tf(o)\n\t\t\t\t},aniTime);\n\t\t\t},1);\n\n\t\t},typeof t=='Number'?t:1);\n\n\t\t//console.log('show')\n\t\treturn this\n\t}\n\t_D.hide=function(t){\n\t\tvar o=this;\n\t\tif(typeof t=='function')\n\t\t\tf=t;\n\n\t\tsetTimeout(function(){\n\t\t\to.classAdd('h ani');\n\n\t\t\tsetTimeout(function(){\n\t\t\t\to.classAdd('del');\n\t\t\t\to.classDel('ani')\n\t\t\t\tif(f)\n\t\t\t\t\tf(o)\n\t\t\t},aniTime);\n\n\t\t},typeof t=='Number'?t:1);\n\n\t\t//console.log('hide')\n\t\treturn this\n\t}\n\n\n\t_N.reDate=\n\t_S.reDate=function(){\n\n\t\tvar\n\t\te=this,\n\t\th=new Date(),\n\t\td;\n\t\t\n\t\tif((e+'').match(/^\\d{13}$/)){\n\t\t\td=new Date(e);\n\t\t}else if((e+'').match(/^\\d{10}$/)){\n\t\t\td=new Date(e*1000);\n\t\t}else{\n\t\t\tvar arr=e.split(/[-\\/ :]/);\n\t\t\td=new Date(arr[0], arr[1]-1, arr[2], arr[3], arr[4], arr[5]);\n\t\t}\n\n\t\tvar\n\t\tg=parseInt,\n\t\tf=g((h-d)/1000);\n\n\t\treturn !e||f<0?'刚刚':\n\t\tf<60?(f+'秒前'):\n\t\t(f/=60)<60?g(f)+'分前':\n\t\t(f/=60)<24?g(f)+'时前':\n\t\t(f/=24)<7?g(f)+'天前':\n\t\t(f/=7)<2?g(f)+'周前':\n\t\td>new Date(h.getFullYear()+'-01-01')?(d.getMonth()+1)+'月'+d.getDate()+'日':\n\t\td.getFullYear()+'年'+(d.getMonth()+1)+'月'+d.getDate()+'日';\n\t};\n\n\t_S.enTxt=function(){\n\t\treturn this.replace(/(^\\s*)|(\\s*$)/g,'')\n\t\t\t.replace(/&/g,\"&amp;\")\n\t\t\t.replace(/</g,\"&lt;\")\n\t\t\t.replace(/>/g,\"&gt;\")\n\t\t\t.replace(/\\t/g,\"&nbsp;&nbsp;&nbsp;&nbsp;\")\n\t\t\t.replace(/\\'/g,\"&#39;\")\n\t\t\t.replace(/\\\"/g,\"&quot;\")\n\t\t\t.replace(/\\n/g,\"<br>\");\n\t};\n\n\t_S.enHtml=function(){\n\t\treturn this.replace(/(^\\s*)|(\\s*$)/g,'')\n\t\t\t.replace(/(http\\:\\/\\/[\\w\\/.#&!?%:;=_]+\\.)(gif|jpg|jpeg|png)/g,'<img src=\"$1$2\">')\n\t\t\t.replace(/(http\\:\\/\\/ww[0-9]{1}\\.sinaimg\\.cn\\/)([\\w]{4,10})(\\/[\\w]{16,32}\\.)(gif|jpg|jpeg|png)/g,\"$1mw1024$3$4\")\n\t\t\t.replace(/http:\\/\\/www\\.xiami\\.com\\/song\\/([0-9]{5,12})[\\?\\w\\.\\=]*/g,'<a href=\"//www.xiami.com/song/$1\" target=\"_blank\" class=\"xiami\">http://www.xiami.com/song/$1</a>')\n\t\t\t.replace(/(@)([\\u0800-\\u9fa5\\w\\-_]{2,32})/g,'<a href=\"//weibo.com/n/$2\" target=\"_blank\" class=\"at\">$1$2</a>')\n\t\t\t.replace(/(^|[^\\\"\\'\\]>])(http|ftp|mms|rstp|news|https|telnet)\\:\\/\\/([\\w\\/.#&!?%:;=\\-_]+)/g,'$1<a href=\"$2://$3\" rel=\"external nofollow noreferer\" class=\"link\" target=\"_blank\">$2://$3</a>')\n\t\t\t.replace(/\\n/g,\"<br>\");\n\t};\n\n\n\n\t\n\tif(!_A.indexOf)\n\t\t_A.indexOf=function(searchElement,fromIndex){\n\t\t\tvar \n\t\t\tindex=-1;\n\t\t\tfromIndex=fromIndex*1||0;\n\n\t\t\tfor (var k = 0, length = this.length; k < length; k++)\n\t\t\t\tif (k >= fromIndex && this[k] === searchElement) {\n\t\t\t\t\tindex = k;\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\treturn index;\n\t\t};\n\n\n\n\n\n\tif(!W.$)\n\t\tW.$=$;\n\n\tif(!W.$$)\n\t\tW.$$=$$;\n\n\treturn $\n}(this,document);"
  },
  {
    "path": "www/static/js/less.js",
    "content": "/*!\n * Less - Leaner CSS v2.5.1\n * http://lesscss.org\n *\n * Copyright (c) 2009-2015, Alexis Sellier <self@cloudhead.net>\n * Licensed under the Apache v2 License.\n *\n */\n\n/** * @license Apache v2\n */\n\n(function(f) {\n    if (typeof exports === \"object\" && typeof module !== \"undefined\") {\n        module.exports = f()\n    } else if (typeof define === \"function\" && define.amd) {\n        define([], f)\n    } else {\n        var g;\n        if (typeof window !== \"undefined\") {\n            g = window\n        } else if (typeof global !== \"undefined\") {\n            g = global\n        } else if (typeof self !== \"undefined\") {\n            g = self\n        } else {\n            g = this\n        }\n        g.less = f()\n    }\n})(function() {\n    var define, module, exports;\n    return (function e(t, n, r) {\n        function s(o, u) {\n            if (!n[o]) {\n                if (!t[o]) {\n                    var a = typeof require == \"function\" && require;\n                    if (!u && a)\n                        return a(o, !0);\n                    if (i)\n                        return i(o, !0);\n                    var f = new Error(\"Cannot find module '\" + o + \"'\");\n                    throw f.code = \"MODULE_NOT_FOUND\", f\n                }\n                var l = n[o] = {\n                    exports: {}\n                };\n                t[o][0].call(l.exports, function(e) {\n                    var n = t[o][1][e];\n                    return s(n ? n : e)\n                }, l, l.exports, e, t, n, r)\n            }\n            return n[o].exports\n        }\n        var i = typeof require == \"function\" && require;\n        for (var o = 0; o < r.length; o++)\n            s(r[o]);\n        return s\n    })({\n        1: [function(require, module, exports) {\n            var addDataAttr = require(\"./utils\").addDataAttr,\n            browser = require(\"./browser\");\n\n            module.exports = function(window, options) {\n\n                // use options from the current script tag data attribues\n                addDataAttr(options, browser.currentScript(window));\n\n                if (options.isFileProtocol === undefined) {\n                    options.isFileProtocol = /^(file|(chrome|safari)(-extension)?|resource|qrc|app):/.test(window.location.protocol);\n                }\n\n                // Load styles asynchronously (default: false)\n                //\n                // This is set to `false` by default, so that the body\n                // doesn't start loading before the stylesheets are parsed.\n                // Setting this to `true` can result in flickering.\n                //\n                options.async = options.async || false;\n                options.fileAsync = options.fileAsync || false;\n\n                // Interval between watch polls\n                options.poll = options.poll || (options.isFileProtocol ? 1000 : 1500);\n\n                options.env = options.env || (window.location.hostname == '127.0.0.1' ||\n                window.location.hostname == '0.0.0.0' ||\n                window.location.hostname == 'localhost' ||\n                (window.location.port &&\n                window.location.port.length > 0) ||\n                options.isFileProtocol ? 'development'\n                : 'production');\n\n                var dumpLineNumbers = /!dumpLineNumbers:(comments|mediaquery|all)/.exec(window.location.hash);\n                if (dumpLineNumbers) {\n                    options.dumpLineNumbers = dumpLineNumbers[1];\n                }\n\n                if (options.useFileCache === undefined) {\n                    options.useFileCache = true;\n                }\n\n                if (options.onReady === undefined) {\n                    options.onReady = true;\n                }\n\n            };\n\n        }, {\n            \"./browser\": 3,\n            \"./utils\": 9\n        }\n        ],\n        2: [function(require, module, exports) {\n            /**\n             * Kicks off less and compiles any stylesheets\n             * used in the browser distributed version of less\n             * to kick-start less using the browser api\n             */\n            /*global window */\n\n            // shim Promise if required\n            require('promise/polyfill.js');\n\n            var options = window.less || {};\n            require(\"./add-default-options\")(window, options);\n\n            var less = module.exports = require(\"./index\")(window, options);\n\n            window.less = less;\n\n            if (options.onReady) {\n                if (/!watch/.test(window.location.hash)) {\n                    less.watch();\n                }\n\n                less.registerStylesheetsImmediately();\n                less.pageLoadFinished = less.refresh(less.env === 'development');\n            }\n\n        }, {\n            \"./add-default-options\": 1,\n            \"./index\": 7,\n            \"promise/polyfill.js\": 94\n        }\n        ],\n        3: [function(require, module, exports) {\n            var utils = require(\"./utils\");\n            module.exports = {\n                createCSS: function (document, styles, sheet) {\n                    // Strip the query-string\n                    var href = sheet.href || '';\n\n                    // If there is no title set, use the filename, minus the extension\n                    var id = 'less:' + (sheet.title || utils.extractId(href));\n\n                    // If this has already been inserted into the DOM, we may need to replace it\n                    var oldStyleNode = document.getElementById(id);\n                    var keepOldStyleNode = false;\n\n                    // Create a new stylesheet node for insertion or (if necessary) replacement\n                    var styleNode = document.createElement('style');\n                    styleNode.setAttribute('type', 'text/css');\n                    if (sheet.media) {\n                        styleNode.setAttribute('media', sheet.media);\n                    }\n                    styleNode.id = id;\n\n                    if (!styleNode.styleSheet) {\n                        styleNode.appendChild(document.createTextNode(styles));\n\n                        // If new contents match contents of oldStyleNode, don't replace oldStyleNode\n                        keepOldStyleNode = (oldStyleNode !== null && oldStyleNode.childNodes.length > 0 && styleNode.childNodes.length > 0 &&\n                        oldStyleNode.firstChild.nodeValue === styleNode.firstChild.nodeValue);\n                    }\n\n                    var head = document.getElementsByTagName('head')[0];\n\n                    // If there is no oldStyleNode, just append; otherwise, only append if we need\n                    // to replace oldStyleNode with an updated stylesheet\n                    if (oldStyleNode === null || keepOldStyleNode === false) {\n                        var nextEl = sheet && sheet.nextSibling || null;\n                        if (nextEl) {\n                            nextEl.parentNode.insertBefore(styleNode, nextEl);\n                        } else {\n                            head.appendChild(styleNode);\n                        }\n                    }\n                    if (oldStyleNode && keepOldStyleNode === false) {\n                        oldStyleNode.parentNode.removeChild(oldStyleNode);\n                    }\n\n                    // For IE.\n                    // This needs to happen *after* the style element is added to the DOM, otherwise IE 7 and 8 may crash.\n                    // See http://social.msdn.microsoft.com/Forums/en-US/7e081b65-878a-4c22-8e68-c10d39c2ed32/internet-explorer-crashes-appending-style-element-to-head\n                    if (styleNode.styleSheet) {\n                        try {\n                            styleNode.styleSheet.cssText = styles;\n                        } catch (e) {\n                            throw new Error(\"Couldn't reassign styleSheet.cssText.\");\n                        }\n                    }\n                },\n                currentScript: function(window) {\n                    var document = window.document;\n                    return document.currentScript || (function() {\n                        var scripts = document.getElementsByTagName(\"script\");\n                        return scripts[scripts.length - 1];\n                    })();\n                }\n            };\n\n        }, {\n            \"./utils\": 9\n        }\n        ],\n        4: [function(require, module, exports) {\n            // Cache system is a bit outdated and could do with work\n\n            module.exports = function(window, options, logger) {\n                var cache = null;\n                if (options.env !== 'development') {\n                    try {\n                        cache = (typeof window.localStorage === 'undefined') ? null : window.localStorage;\n                    } catch (_) {}\n                }\n                return {\n                    setCSS: function(path, lastModified, styles) {\n                        if (cache) {\n                            logger.info('saving ' + path + ' to cache.');\n                            try {\n                                cache.setItem(path, styles);\n                                cache.setItem(path + ':timestamp', lastModified);\n                            } catch (e) {\n                                //TODO - could do with adding more robust error handling\n                                logger.error('failed to save \"' + path + '\" to local storage for caching.');\n                            }\n                        }\n                    },\n                    getCSS: function(path, webInfo) {\n                        var css = cache && cache.getItem(path),\n                        timestamp = cache && cache.getItem(path + ':timestamp');\n\n                        if (timestamp && webInfo.lastModified &&\n                        (new Date(webInfo.lastModified).valueOf() ===\n                        new Date(timestamp).valueOf())) {\n                            // Use local copy\n                            return css;\n                        }\n                    }\n                };\n            };\n\n        }, {}\n        ],\n        5: [function(require, module, exports) {\n            var utils = require(\"./utils\"),\n            browser = require(\"./browser\");\n\n            module.exports = function(window, less, options) {\n\n                function errorHTML(e, rootHref) {\n                    var id = 'less-error-message:' + utils.extractId(rootHref || \"\");\n                    var template = '<li><label>{line}</label><pre class=\"{class}\">{content}</pre></li>';\n                    var elem = window.document.createElement('div'), timer, content, errors = [];\n                    var filename = e.filename || rootHref;\n                    var filenameNoPath = filename.match(/([^\\/]+(\\?.*)?)$/)[1];\n\n                    elem.id = id;\n                    elem.className = \"less-error-message\";\n\n                    content = '<h3>' + (e.type || \"Syntax\") + \"Error: \" + (e.message || 'There is an error in your .less file') +\n                    '</h3>' + '<p>in <a href=\"' + filename + '\">' + filenameNoPath + \"</a> \";\n\n                    var errorline = function (e, i, classname) {\n                        if (e.extract[i] !== undefined) {\n                            errors.push(template.replace(/\\{line\\}/, (parseInt(e.line, 10) || 0) + (i - 1))\n                            .replace(/\\{class\\}/, classname)\n                            .replace(/\\{content\\}/, e.extract[i]));\n                        }\n                    };\n\n                    if (e.extract) {\n                        errorline(e, 0, '');\n                        errorline(e, 1, 'line');\n                        errorline(e, 2, '');\n                        content += 'on line ' + e.line + ', column ' + (e.column + 1) + ':</p>' +\n                        '<ul>' + errors.join('') + '</ul>';\n                    }\n                    if (e.stack && (e.extract || options.logLevel >= 4)) {\n                        content += '<br/>Stack Trace</br />' + e.stack.split('\\n').slice(1).join('<br/>');\n                    }\n                    elem.innerHTML = content;\n\n                    // CSS for error messages\n                    browser.createCSS(window.document, [\n                    '.less-error-message ul, .less-error-message li {',\n                    'list-style-type: none;',\n                    'margin-right: 15px;',\n                    'padding: 4px 0;',\n                    'margin: 0;',\n                    '}',\n                    '.less-error-message label {',\n                    'font-size: 12px;',\n                    'margin-right: 15px;',\n                    'padding: 4px 0;',\n                    'color: #cc7777;',\n                    '}',\n                    '.less-error-message pre {',\n                    'color: #dd6666;',\n                    'padding: 4px 0;',\n                    'margin: 0;',\n                    'display: inline-block;',\n                    '}',\n                    '.less-error-message pre.line {',\n                    'color: #ff0000;',\n                    '}',\n                    '.less-error-message h3 {',\n                    'font-size: 20px;',\n                    'font-weight: bold;',\n                    'padding: 15px 0 5px 0;',\n                    'margin: 0;',\n                    '}',\n                    '.less-error-message a {',\n                    'color: #10a',\n                    '}',\n                    '.less-error-message .error {',\n                    'color: red;',\n                    'font-weight: bold;',\n                    'padding-bottom: 2px;',\n                    'border-bottom: 1px dashed red;',\n                    '}'\n                    ].join('\\n'), {\n                        title: 'error-message' \n                    });\n\n                    elem.style.cssText = [\n                    \"font-family: Arial, sans-serif\",\n                    \"border: 1px solid #e00\",\n                    \"background-color: #eee\",\n                    \"border-radius: 5px\",\n                    \"-webkit-border-radius: 5px\",\n                    \"-moz-border-radius: 5px\",\n                    \"color: #e00\",\n                    \"padding: 15px\",\n                    \"margin-bottom: 15px\"\n                    ].join(';');\n\n                    if (options.env === 'development') {\n                        timer = setInterval(function () {\n                            var document = window.document,\n                            body = document.body;\n                            if (body) {\n                                if (document.getElementById(id)) {\n                                    body.replaceChild(elem, document.getElementById(id));\n                                } else {\n                                    body.insertBefore(elem, body.firstChild);\n                                }\n                                clearInterval(timer);\n                            }\n                        }, 10);\n                    }\n                }\n\n                function error(e, rootHref) {\n                    if (!options.errorReporting || options.errorReporting === \"html\") {\n                        errorHTML(e, rootHref);\n                    } else if (options.errorReporting === \"console\") {\n                        errorConsole(e, rootHref);\n                    } else if (typeof options.errorReporting === 'function') {\n                        options.errorReporting(\"add\", e, rootHref);\n                    }\n                }\n\n                function removeErrorHTML(path) {\n                    var node = window.document.getElementById('less-error-message:' + utils.extractId(path));\n                    if (node) {\n                        node.parentNode.removeChild(node);\n                    }\n                }\n\n                function removeErrorConsole(path) {\n                    //no action\n                }\n\n                function removeError(path) {\n                    if (!options.errorReporting || options.errorReporting === \"html\") {\n                        removeErrorHTML(path);\n                    } else if (options.errorReporting === \"console\") {\n                        removeErrorConsole(path);\n                    } else if (typeof options.errorReporting === 'function') {\n                        options.errorReporting(\"remove\", path);\n                    }\n                }\n\n                function errorConsole(e, rootHref) {\n                    var template = '{line} {content}';\n                    var filename = e.filename || rootHref;\n                    var errors = [];\n                    var content = (e.type || \"Syntax\") + \"Error: \" + (e.message || 'There is an error in your .less file') +\n                    \" in \" + filename + \" \";\n\n                    var errorline = function (e, i, classname) {\n                        if (e.extract[i] !== undefined) {\n                            errors.push(template.replace(/\\{line\\}/, (parseInt(e.line, 10) || 0) + (i - 1))\n                            .replace(/\\{class\\}/, classname)\n                            .replace(/\\{content\\}/, e.extract[i]));\n                        }\n                    };\n\n                    if (e.extract) {\n                        errorline(e, 0, '');\n                        errorline(e, 1, 'line');\n                        errorline(e, 2, '');\n                        content += 'on line ' + e.line + ', column ' + (e.column + 1) + ':\\n' +\n                        errors.join('\\n');\n                    }\n                    if (e.stack && (e.extract || options.logLevel >= 4)) {\n                        content += '\\nStack Trace\\n' + e.stack;\n                    }\n                    less.logger.error(content);\n                }\n\n                return {\n                    add: error,\n                    remove: removeError\n                };\n            };\n\n        }, {\n            \"./browser\": 3,\n            \"./utils\": 9\n        }\n        ],\n        6: [function(require, module, exports) {\n            /*global window, XMLHttpRequest */\n\n            module.exports = function(options, logger) {\n\n                var AbstractFileManager = require(\"../less/environment/abstract-file-manager.js\");\n\n                var fileCache = {};\n\n                //TODOS - move log somewhere. pathDiff and doing something similar in node. use pathDiff in the other browser file for the initial load\n\n                function getXMLHttpRequest() {\n                    if (window.XMLHttpRequest && (window.location.protocol !== \"file:\" || !(\"ActiveXObject\" in window))) {\n                        return new XMLHttpRequest();\n                    } else {\n                        try {\n                            /*global ActiveXObject */\n                            return new ActiveXObject(\"Microsoft.XMLHTTP\");\n                        } catch (e) {\n                            logger.error(\"browser doesn't support AJAX.\");\n                            return null;\n                        }\n                    }\n                }\n\n                var FileManager = function() {};\n\n                FileManager.prototype = new AbstractFileManager();\n\n                FileManager.prototype.alwaysMakePathsAbsolute = function alwaysMakePathsAbsolute() {\n                    return true;\n                };\n                FileManager.prototype.join = function join(basePath, laterPath) {\n                    if (!basePath) {\n                        return laterPath;\n                    }\n                    return this.extractUrlParts(laterPath, basePath).path;\n                };\n                FileManager.prototype.doXHR = function doXHR(url, type, callback, errback) {\n\n                    var xhr = getXMLHttpRequest();\n                    var async = options.isFileProtocol ? options.fileAsync : options.async;\n\n                    if (typeof xhr.overrideMimeType === 'function') {\n                        xhr.overrideMimeType('text/css');\n                    }\n                    logger.debug(\"XHR: Getting '\" + url + \"'\");\n                    xhr.open('GET', url, async);\n                    xhr.setRequestHeader('Accept', type || 'text/x-less, text/css; q=0.9, */*; q=0.5');\n                    xhr.send(null);\n\n                    function handleResponse(xhr, callback, errback) {\n                        if (xhr.status >= 200 && xhr.status < 300) {\n                            callback(xhr.responseText,\n                            xhr.getResponseHeader(\"Last-Modified\"));\n                        } else if (typeof errback === 'function') {\n                            errback(xhr.status, url);\n                        }\n                    }\n\n                    if (options.isFileProtocol && !options.fileAsync) {\n                        if (xhr.status === 0 || (xhr.status >= 200 && xhr.status < 300)) {\n                            callback(xhr.responseText);\n                        } else {\n                            errback(xhr.status, url);\n                        }\n                    } else if (async) {\n                        xhr.onreadystatechange = function () {\n                            if (xhr.readyState == 4) {\n                                handleResponse(xhr, callback, errback);\n                            }\n                        };\n                    } else {\n                        handleResponse(xhr, callback, errback);\n                    }\n                };\n                FileManager.prototype.supports = function(filename, currentDirectory, options, environment) {\n                    return true;\n                };\n\n                FileManager.prototype.clearFileCache = function() {\n                    fileCache = {};\n                };\n\n                FileManager.prototype.loadFile = function loadFile(filename, currentDirectory, options, environment, callback) {\n                    if (currentDirectory && !this.isPathAbsolute(filename)) {\n                        filename = currentDirectory + filename;\n                    }\n\n                    options = options || {};\n\n                    // sheet may be set to the stylesheet for the initial load or a collection of properties including\n                    // some context variables for imports\n                    var hrefParts = this.extractUrlParts(filename, window.location.href);\n                    var href = hrefParts.url;\n\n                    if (options.useFileCache && fileCache[href]) {\n                        try {\n                            var lessText = fileCache[href];\n                            callback(null, {\n                                contents: lessText,\n                                filename: href,\n                                webInfo: {\n                                    lastModified: new Date() \n                                }\n                            });\n                        } catch (e) {\n                            callback({\n                                filename: href,\n                                message: \"Error loading file \" + href + \" error was \" + e.message\n                            });\n                        }\n                        return;\n                    }\n\n                    this.doXHR(href, options.mime, function doXHRCallback(data, lastModified) {\n                        // per file cache\n                        fileCache[href] = data;\n\n                        // Use remote copy (re-parse)\n                        callback(null, {\n                            contents: data,\n                            filename: href,\n                            webInfo: {\n                                lastModified: lastModified \n                            }\n                        });\n                    }, function doXHRError(status, url) {\n                        callback({\n                            type: 'File',\n                            message: \"'\" + url + \"' wasn't found (\" + status + \")\",\n                            href: href \n                        });\n                    });\n                };\n\n                return FileManager;\n            };\n\n        }, {\n            \"../less/environment/abstract-file-manager.js\": 14\n        }\n        ],\n        7: [function(require, module, exports) {\n            //\n            // index.js\n            // Should expose the additional browser functions on to the less object\n            //\n            var addDataAttr = require(\"./utils\").addDataAttr,\n            browser = require(\"./browser\");\n\n            module.exports = function(window, options) {\n                var document = window.document;\n                var less = require('../less')();\n                //module.exports = less;\n                less.options = options;\n                var environment = less.environment,\n                FileManager = require(\"./file-manager\")(options, less.logger),\n                fileManager = new FileManager();\n                environment.addFileManager(fileManager);\n                less.FileManager = FileManager;\n\n                require(\"./log-listener\")(less, options);\n                var errors = require(\"./error-reporting\")(window, less, options);\n                var cache = less.cache = options.cache || require(\"./cache\")(window, options, less.logger);\n\n                //Setup user functions\n                if (options.functions) {\n                    less.functions.functionRegistry.addMultiple(options.functions);\n                }\n\n                var typePattern = /^text\\/(x-)?less$/;\n\n                function postProcessCSS(styles) {\n                    // deprecated, use a plugin for postprocesstasks\n                    if (options.postProcessor && typeof options.postProcessor === 'function') {\n                        styles = options.postProcessor.call(styles, styles) || styles;\n                    }\n                    return styles;\n                }\n\n                function clone(obj) {\n                    var cloned = {};\n                    for (var prop in obj) {\n                        if (obj.hasOwnProperty(prop)) {\n                            cloned[prop] = obj[prop];\n                        }\n                    }\n                    return cloned;\n                }\n\n                // only really needed for phantom\n                function bind(func, thisArg) {\n                    var curryArgs = Array.prototype.slice.call(arguments, 2);\n                    return function() {\n                        var args = curryArgs.concat(Array.prototype.slice.call(arguments, 0));\n                        return func.apply(thisArg, args);\n                    };\n                }\n\n                function loadStyles(modifyVars) {\n                    var styles = document.getElementsByTagName('style'),\n                    style;\n\n                    for (var i = 0; i < styles.length; i++) {\n                        style = styles[i];\n                        if (style.type.match(typePattern)) {\n                            var instanceOptions = clone(options);\n                            instanceOptions.modifyVars = modifyVars;\n                            var lessText = style.innerHTML || '';\n                            instanceOptions.filename = document.location.href.replace(/#.*$/, '');\n\n                            /*jshint loopfunc:true */\n                            // use closure to store current style\n                            less.render(lessText, instanceOptions,\n                            bind(function(style, e, result) {\n                                if (e) {\n                                    errors.add(e, \"inline\");\n                                } else {\n                                    style.type = 'text/css';\n                                    if (style.styleSheet) {\n                                        style.styleSheet.cssText = result.css;\n                                    } else {\n                                        style.innerHTML = result.css;\n                                    }\n                                }\n                            }, null, style));\n                        }\n                    }\n                }\n\n                function loadStyleSheet(sheet, callback, reload, remaining, modifyVars) {\n\n                    var instanceOptions = clone(options);\n                    addDataAttr(instanceOptions, sheet);\n                    instanceOptions.mime = sheet.type;\n\n                    if (modifyVars) {\n                        instanceOptions.modifyVars = modifyVars;\n                    }\n\n                    function loadInitialFileCallback(loadedFile) {\n\n                        var data = loadedFile.contents,\n                        path = loadedFile.filename,\n                        webInfo = loadedFile.webInfo;\n\n                        var newFileInfo = {\n                            currentDirectory: fileManager.getPath(path),\n                            filename: path,\n                            rootFilename: path,\n                            relativeUrls: instanceOptions.relativeUrls\n                        };\n\n                        newFileInfo.entryPath = newFileInfo.currentDirectory;\n                        newFileInfo.rootpath = instanceOptions.rootpath || newFileInfo.currentDirectory;\n\n                        if (webInfo) {\n                            webInfo.remaining = remaining;\n\n                            if (!instanceOptions.modifyVars) {\n                                var css = cache.getCSS(path, webInfo);\n                                if (!reload && css) {\n                                    webInfo.local = true;\n                                    callback(null, css, data, sheet, webInfo, path);\n                                    return;\n                                }\n                            }\n                        }\n\n                        //TODO add tests around how this behaves when reloading\n                        errors.remove(path);\n\n                        instanceOptions.rootFileInfo = newFileInfo;\n                        less.render(data, instanceOptions, function(e, result) {\n                            if (e) {\n                                e.href = path;\n                                callback(e);\n                            } else {\n                                result.css = postProcessCSS(result.css);\n                                if (!instanceOptions.modifyVars) {\n                                    cache.setCSS(sheet.href, webInfo.lastModified, result.css);\n                                }\n                                callback(null, result.css, data, sheet, webInfo, path);\n                            }\n                        });\n                    }\n\n                    fileManager.loadFile(sheet.href, null, instanceOptions, environment, function(e, loadedFile) {\n                        if (e) {\n                            callback(e);\n                            return;\n                        }\n                        loadInitialFileCallback(loadedFile);\n                    });\n                }\n\n                function loadStyleSheets(callback, reload, modifyVars) {\n                    for (var i = 0; i < less.sheets.length; i++) {\n                        loadStyleSheet(less.sheets[i], callback, reload, less.sheets.length - (i + 1), modifyVars);\n                    }\n                }\n\n                function initRunningMode() {\n                    if (less.env === 'development') {\n                        less.watchTimer = setInterval(function () {\n                            if (less.watchMode) {\n                                fileManager.clearFileCache();\n                                loadStyleSheets(function (e, css, _, sheet, webInfo) {\n                                    if (e) {\n                                        errors.add(e, e.href || sheet.href);\n                                    } else if (css) {\n                                        browser.createCSS(window.document, css, sheet);\n                                    }\n                                });\n                            }\n                        }, options.poll);\n                    }\n                }\n\n                //\n                // Watch mode\n                //\n                less.watch = function () {\n                    if (!less.watchMode ) {\n                        less.env = 'development';\n                        initRunningMode();\n                    }\n                    this.watchMode = true;\n                    return true;\n                };\n\n                less.unwatch = function () {\n                    clearInterval(less.watchTimer);\n                    this.watchMode = false;\n                    return false;\n                };\n\n                //\n                // Synchronously get all <link> tags with the 'rel' attribute set to\n                // \"stylesheet/less\".\n                //\n                less.registerStylesheetsImmediately = function() {\n                    var links = document.getElementsByTagName('link');\n                    less.sheets = [];\n\n                    for (var i = 0; i < links.length; i++) {\n                        if (links[i].rel === 'stylesheet/less' || (links[i].rel.match(/stylesheet/) &&\n                        (links[i].type.match(typePattern)))) {\n                            less.sheets.push(links[i]);\n                        }\n                    }\n                };\n\n                //\n                // Asynchronously get all <link> tags with the 'rel' attribute set to\n                // \"stylesheet/less\", returning a Promise.\n                //\n                less.registerStylesheets = function() {\n                    return new Promise(function(resolve, reject) {\n                        less.registerStylesheetsImmediately();\n                        resolve();\n                    });\n                };\n\n                //\n                // With this function, it's possible to alter variables and re-render\n                // CSS without reloading less-files\n                //\n                less.modifyVars = function(record) {\n                    return less.refresh(true, record, false);\n                };\n\n                less.refresh = function (reload, modifyVars, clearFileCache) {\n                    if ((reload || clearFileCache) && clearFileCache !== false) {\n                        fileManager.clearFileCache();\n                    }\n                    return new Promise(function (resolve, reject) {\n                        var startTime, endTime, totalMilliseconds;\n                        startTime = endTime = new Date();\n\n                        loadStyleSheets(function (e, css, _, sheet, webInfo) {\n                            if (e) {\n                                errors.add(e, e.href || sheet.href);\n                                reject(e);\n                                return;\n                            }\n                            if (webInfo.local) {\n                                less.logger.info(\"loading \" + sheet.href + \" from cache.\");\n                            } else {\n                                less.logger.info(\"rendered \" + sheet.href + \" successfully.\");\n                            }\n                            browser.createCSS(window.document, css, sheet);\n                            less.logger.info(\"css for \" + sheet.href + \" generated in \" + (new Date() - endTime) + 'ms');\n                            if (webInfo.remaining === 0) {\n                                totalMilliseconds = new Date() - startTime;\n                                less.logger.info(\"less has finished. css generated in \" + totalMilliseconds + 'ms');\n                                resolve({\n                                    startTime: startTime,\n                                    endTime: endTime,\n                                    totalMilliseconds: totalMilliseconds,\n                                    sheets: less.sheets.length\n                                });\n                            }\n                            endTime = new Date();\n                        }, reload, modifyVars);\n\n                        loadStyles(modifyVars);\n                    });\n                };\n\n                less.refreshStyles = loadStyles;\n                return less;\n            };\n\n        }, {\n            \"../less\": 29,\n            \"./browser\": 3,\n            \"./cache\": 4,\n            \"./error-reporting\": 5,\n            \"./file-manager\": 6,\n            \"./log-listener\": 8,\n            \"./utils\": 9\n        }\n        ],\n        8: [function(require, module, exports) {\n            module.exports = function(less, options) {\n\n                var logLevel_debug = 4,\n                logLevel_info = 3,\n                logLevel_warn = 2,\n                logLevel_error = 1;\n\n                // The amount of logging in the javascript console.\n                // 3 - Debug, information and errors\n                // 2 - Information and errors\n                // 1 - Errors\n                // 0 - None\n                // Defaults to 2\n                options.logLevel = typeof options.logLevel !== 'undefined' ? options.logLevel : (options.env === 'development' ? logLevel_info : logLevel_error);\n\n                if (!options.loggers) {\n                    options.loggers = [{\n                        debug: function(msg) {\n                            if (options.logLevel >= logLevel_debug) {\n                                console.log(msg);\n                            }\n                        },\n                        info: function(msg) {\n                            if (options.logLevel >= logLevel_info) {\n                                console.log(msg);\n                            }\n                        },\n                        warn: function(msg) {\n                            if (options.logLevel >= logLevel_warn) {\n                                console.warn(msg);\n                            }\n                        },\n                        error: function(msg) {\n                            if (options.logLevel >= logLevel_error) {\n                                console.error(msg);\n                            }\n                        }\n                    }\n                    ];\n                }\n                for (var i = 0; i < options.loggers.length; i++) {\n                    less.logger.addListener(options.loggers[i]);\n                }\n            };\n\n        }, {}\n        ],\n        9: [function(require, module, exports) {\n            module.exports = {\n                extractId: function(href) {\n                    return href.replace(/^[a-z-]+:\\/+?[^\\/]+/, '') // Remove protocol & domain\n                    .replace(/[\\?\\&]livereload=\\w+/, '') // Remove LiveReload cachebuster\n                    .replace(/^\\//, '') // Remove root /\n                    .replace(/\\.[a-zA-Z]+$/, '') // Remove simple extension\n                    .replace(/[^\\.\\w-]+/g, '-') // Replace illegal characters\n                    .replace(/\\./g, ':'); // Replace dots with colons(for valid id)\n                },\n                addDataAttr: function(options, tag) {\n                    for (var opt in tag.dataset) {\n                        if (tag.dataset.hasOwnProperty(opt)) {\n                            if (opt === \"env\" || opt === \"dumpLineNumbers\" || opt === \"rootpath\" || opt === \"errorReporting\") {\n                                options[opt] = tag.dataset[opt];\n                            } else {\n                                try {\n                                    options[opt] = JSON.parse(tag.dataset[opt]);\n                                } catch (_) {}\n                            }\n                        }\n                    }\n                }\n            };\n\n        }, {}\n        ],\n        10: [function(require, module, exports) {\n            var contexts = {};\n            module.exports = contexts;\n\n            var copyFromOriginal = function copyFromOriginal(original, destination, propertiesToCopy) {\n                if (!original) {\n                    return;\n                }\n\n                for (var i = 0; i < propertiesToCopy.length; i++) {\n                    if (original.hasOwnProperty(propertiesToCopy[i])) {\n                        destination[propertiesToCopy[i]] = original[propertiesToCopy[i]];\n                    }\n                }\n            };\n\n            /*\n             parse is used whilst parsing\n             */\n            var parseCopyProperties = [\n            // options\n            'paths', // option - unmodified - paths to search for imports on\n            'relativeUrls', // option - whether to adjust URL's to be relative\n            'rootpath', // option - rootpath to append to URL's\n            'strictImports', // option -\n            'insecure', // option - whether to allow imports from insecure ssl hosts\n            'dumpLineNumbers', // option - whether to dump line numbers\n            'compress', // option - whether to compress\n            'syncImport', // option - whether to import synchronously\n            'chunkInput', // option - whether to chunk input. more performant but causes parse issues.\n            'mime', // browser only - mime type for sheet import\n            'useFileCache', // browser only - whether to use the per file session cache\n            // context\n            'processImports', // option & context - whether to process imports. if false then imports will not be imported.\n            // Used by the import manager to stop multiple import visitors being created.\n            'reference', // Used to indicate that the contents are imported by reference\n            'pluginManager' // Used as the plugin manager for the session\n            ];\n\n            contexts.Parse = function(options) {\n                copyFromOriginal(options, this, parseCopyProperties);\n\n                if (typeof this.paths === \"string\") {\n                    this.paths = [this.paths];\n                }\n            };\n\n            var evalCopyProperties = [\n            'paths', // additional include paths\n            'compress', // whether to compress\n            'ieCompat', // whether to enforce IE compatibility (IE8 data-uri)\n            'strictMath', // whether math has to be within parenthesis\n            'strictUnits', // whether units need to evaluate correctly\n            'sourceMap', // whether to output a source map\n            'importMultiple', // whether we are currently importing multiple copies\n            'urlArgs', // whether to add args into url tokens\n            'javascriptEnabled', // option - whether JavaScript is enabled. if undefined, defaults to true\n            'pluginManager', // Used as the plugin manager for the session\n            'importantScope' // used to bubble up !important statements\n            ];\n\n            contexts.Eval = function(options, frames) {\n                copyFromOriginal(options, this, evalCopyProperties);\n\n                if (typeof this.paths === \"string\") {\n                    this.paths = [this.paths];\n                }\n\n                this.frames = frames || [];\n                this.importantScope = this.importantScope || [];\n            };\n\n            contexts.Eval.prototype.inParenthesis = function () {\n                if (!this.parensStack) {\n                    this.parensStack = [];\n                }\n                this.parensStack.push(true);\n            };\n\n            contexts.Eval.prototype.outOfParenthesis = function () {\n                this.parensStack.pop();\n            };\n\n            contexts.Eval.prototype.isMathOn = function () {\n                return this.strictMath ? (this.parensStack && this.parensStack.length) : true;\n            };\n\n            contexts.Eval.prototype.isPathRelative = function (path) {\n                return !/^(?:[a-z-]+:|\\/|#)/i.test(path);\n            };\n\n            contexts.Eval.prototype.normalizePath = function( path ) {\n                var\n                segments = path.split(\"/\").reverse(),\n                segment;\n\n                path = [];\n                while (segments.length !== 0 ) {\n                    segment = segments.pop();\n                    switch ( segment ) {\n                    case \".\":\n                        break;\n                    case \"..\":\n                        if ((path.length === 0) || (path[path.length - 1] === \"..\")) {\n                            path.push( segment );\n                        } else {\n                            path.pop();\n                        }\n                        break;\n                    default:\n                        path.push( segment );\n                        break;\n                    }\n                }\n\n                return path.join(\"/\");\n            };\n\n            //todo - do the same for the toCSS ?\n\n        }, {}\n        ],\n        11: [function(require, module, exports) {\n            module.exports = {\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                'rebeccapurple': '#663399',\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            };\n        }, {}\n        ],\n        12: [function(require, module, exports) {\n            module.exports = {\n                colors: require(\"./colors\"),\n                unitConversions: require(\"./unit-conversions\")\n            };\n\n        }, {\n            \"./colors\": 11,\n            \"./unit-conversions\": 13\n        }\n        ],\n        13: [function(require, module, exports) {\n            module.exports = {\n                length: {\n                    'm': 1,\n                    'cm': 0.01,\n                    'mm': 0.001,\n                    'in': 0.0254,\n                    'px': 0.0254 / 96,\n                    'pt': 0.0254 / 72,\n                    'pc': 0.0254 / 72 * 12\n                },\n                duration: {\n                    's': 1,\n                    'ms': 0.001\n                },\n                angle: {\n                    'rad': 1 / (2 * Math.PI),\n                    'deg': 1 / 360,\n                    'grad': 1 / 400,\n                    'turn': 1\n                }\n            };\n        }, {}\n        ],\n        14: [function(require, module, exports) {\n            var abstractFileManager = function() {};\n\n            abstractFileManager.prototype.getPath = function (filename) {\n                var j = filename.lastIndexOf('?');\n                if (j > 0) {\n                    filename = filename.slice(0, j);\n                }\n                j = filename.lastIndexOf('/');\n                if (j < 0) {\n                    j = filename.lastIndexOf('\\\\');\n                }\n                if (j < 0) {\n                    return \"\";\n                }\n                return filename.slice(0, j + 1);\n            };\n\n            abstractFileManager.prototype.tryAppendExtension = function(path, ext) {\n                return /(\\.[a-z]*$)|([\\?;].*)$/.test(path) ? path : path + ext;\n            };\n\n            abstractFileManager.prototype.tryAppendLessExtension = function(path) {\n                return this.tryAppendExtension(path, '.less');\n            };\n\n            abstractFileManager.prototype.supportsSync = function() {\n                return false;\n            };\n\n            abstractFileManager.prototype.alwaysMakePathsAbsolute = function() {\n                return false;\n            };\n\n            abstractFileManager.prototype.isPathAbsolute = function(filename) {\n                return (/^(?:[a-z-]+:|\\/|\\\\|#)/i).test(filename);\n            };\n\n            abstractFileManager.prototype.join = function(basePath, laterPath) {\n                if (!basePath) {\n                    return laterPath;\n                }\n                return basePath + laterPath;\n            };\n            abstractFileManager.prototype.pathDiff = function pathDiff(url, baseUrl) {\n                // diff between two paths to create a relative path\n\n                var urlParts = this.extractUrlParts(url),\n                baseUrlParts = this.extractUrlParts(baseUrl),\n                i, max, urlDirectories, baseUrlDirectories, diff = \"\";\n                if (urlParts.hostPart !== baseUrlParts.hostPart) {\n                    return \"\";\n                }\n                max = Math.max(baseUrlParts.directories.length, urlParts.directories.length);\n                for (i = 0; i < max; i++) {\n                    if (baseUrlParts.directories[i] !== urlParts.directories[i]) {\n                        break;\n                    }\n                }\n                baseUrlDirectories = baseUrlParts.directories.slice(i);\n                urlDirectories = urlParts.directories.slice(i);\n                for (i = 0; i < baseUrlDirectories.length - 1; i++) {\n                    diff += \"../\";\n                }\n                for (i = 0; i < urlDirectories.length - 1; i++) {\n                    diff += urlDirectories[i] + \"/\";\n                }\n                return diff;\n            };\n            // helper function, not part of API\n            abstractFileManager.prototype.extractUrlParts = function extractUrlParts(url, baseUrl) {\n                // urlParts[1] = protocol&hostname || /\n                // urlParts[2] = / if path relative to host base\n                // urlParts[3] = directories\n                // urlParts[4] = filename\n                // urlParts[5] = parameters\n\n                var urlPartsRegex = /^((?:[a-z-]+:)?\\/+?(?:[^\\/\\?#]*\\/)|([\\/\\\\]))?((?:[^\\/\\\\\\?#]*[\\/\\\\])*)([^\\/\\\\\\?#]*)([#\\?].*)?$/i,\n                urlParts = url.match(urlPartsRegex),\n                returner = {}, directories = [], i, baseUrlParts;\n\n                if (!urlParts) {\n                    throw new Error(\"Could not parse sheet href - '\" + url + \"'\");\n                }\n\n                // Stylesheets in IE don't always return the full path\n                if (baseUrl && (!urlParts[1] || urlParts[2])) {\n                    baseUrlParts = baseUrl.match(urlPartsRegex);\n                    if (!baseUrlParts) {\n                        throw new Error(\"Could not parse page url - '\" + baseUrl + \"'\");\n                    }\n                    urlParts[1] = urlParts[1] || baseUrlParts[1] || \"\";\n                    if (!urlParts[2]) {\n                        urlParts[3] = baseUrlParts[3] + urlParts[3];\n                    }\n                }\n\n                if (urlParts[3]) {\n                    directories = urlParts[3].replace(/\\\\/g, \"/\").split(\"/\");\n\n                    // extract out . before .. so .. doesn't absorb a non-directory\n                    for (i = 0; i < directories.length; i++) {\n                        if (directories[i] === \".\") {\n                            directories.splice(i, 1);\n                            i -= 1;\n                        }\n                    }\n\n                    for (i = 0; i < directories.length; i++) {\n                        if (directories[i] === \"..\" && i > 0) {\n                            directories.splice(i - 1, 2);\n                            i -= 2;\n                        }\n                    }\n                }\n\n                returner.hostPart = urlParts[1];\n                returner.directories = directories;\n                returner.path = (urlParts[1] || \"\") + directories.join(\"/\");\n                returner.fileUrl = returner.path + (urlParts[4] || \"\");\n                returner.url = returner.fileUrl + (urlParts[5] || \"\");\n                return returner;\n            };\n\n            module.exports = abstractFileManager;\n\n        }, {}\n        ],\n        15: [function(require, module, exports) {\n            var logger = require(\"../logger\");\n            var environment = function(externalEnvironment, fileManagers) {\n                this.fileManagers = fileManagers || [];\n                externalEnvironment = externalEnvironment || {};\n\n                var optionalFunctions = [\"encodeBase64\", \"mimeLookup\", \"charsetLookup\", \"getSourceMapGenerator\"],\n                requiredFunctions = [],\n                functions = requiredFunctions.concat(optionalFunctions);\n\n                for (var i = 0; i < functions.length; i++) {\n                    var propName = functions[i],\n                    environmentFunc = externalEnvironment[propName];\n                    if (environmentFunc) {\n                        this[propName] = environmentFunc.bind(externalEnvironment);\n                    } else if (i < requiredFunctions.length) {\n                        this.warn(\"missing required function in environment - \" + propName);\n                    }\n                }\n            };\n\n            environment.prototype.getFileManager = function (filename, currentDirectory, options, environment, isSync) {\n\n                if (!filename) {\n                    logger.warn(\"getFileManager called with no filename.. Please report this issue. continuing.\");\n                }\n                if (currentDirectory == null) {\n                    logger.warn(\"getFileManager called with null directory.. Please report this issue. continuing.\");\n                }\n\n                var fileManagers = this.fileManagers;\n                if (options.pluginManager) {\n                    fileManagers = [].concat(fileManagers).concat(options.pluginManager.getFileManagers());\n                }\n                for (var i = fileManagers.length - 1; i >= 0 ; i--) {\n                    var fileManager = fileManagers[i];\n                    if (fileManager[isSync ? \"supportsSync\" : \"supports\"](filename, currentDirectory, options, environment)) {\n                        return fileManager;\n                    }\n                }\n                return null;\n            };\n\n            environment.prototype.addFileManager = function (fileManager) {\n                this.fileManagers.push(fileManager);\n            };\n\n            environment.prototype.clearFileManagers = function () {\n                this.fileManagers = [];\n            };\n\n            module.exports = environment;\n\n        }, {\n            \"../logger\": 31\n        }\n        ],\n        16: [function(require, module, exports) {\n            var Color = require(\"../tree/color\"),\n            functionRegistry = require(\"./function-registry\");\n\n            // Color Blending\n            // ref: http://www.w3.org/TR/compositing-1\n\n            function colorBlend(mode, color1, color2) {\n                var ab = color1.alpha, cb, // backdrop\n                as = color2.alpha, cs, // source\n                ar, cr, r = []; // result\n\n                ar = as + ab * (1 - as);\n                for (var i = 0; i < 3; i++) {\n                    cb = color1.rgb[i] / 255;\n                    cs = color2.rgb[i] / 255;\n                    cr = mode(cb, cs);\n                    if (ar) {\n                        cr = (as * cs + ab * (cb -\n                        as * (cb + cs - cr))) / ar;\n                    }\n                    r[i] = cr * 255;\n                }\n\n                return new Color(r, ar);\n            }\n\n            var colorBlendModeFunctions = {\n                multiply: function(cb, cs) {\n                    return cb * cs;\n                },\n                screen: function(cb, cs) {\n                    return cb + cs - cb * cs;\n                },\n                overlay: function(cb, cs) {\n                    cb *= 2;\n                    return (cb <= 1) ?\n                    colorBlendModeFunctions.multiply(cb, cs) :\n                    colorBlendModeFunctions.screen(cb - 1, cs);\n                },\n                softlight: function(cb, cs) {\n                    var d = 1, e = cb;\n                    if (cs > 0.5) {\n                        e = 1;\n                        d = (cb > 0.25) ? Math.sqrt(cb)\n                        : ((16 * cb - 12) * cb + 4) * cb;\n                    }\n                    return cb - (1 - 2 * cs) * e * (d - cb);\n                },\n                hardlight: function(cb, cs) {\n                    return colorBlendModeFunctions.overlay(cs, cb);\n                },\n                difference: function(cb, cs) {\n                    return Math.abs(cb - cs);\n                },\n                exclusion: function(cb, cs) {\n                    return cb + cs - 2 * cb * cs;\n                },\n\n                // non-w3c functions:\n                average: function(cb, cs) {\n                    return (cb + cs) / 2;\n                },\n                negation: function(cb, cs) {\n                    return 1 - Math.abs(cb + cs - 1);\n                }\n            };\n\n            for (var f in colorBlendModeFunctions) {\n                if (colorBlendModeFunctions.hasOwnProperty(f)) {\n                    colorBlend[f] = colorBlend.bind(null, colorBlendModeFunctions[f]);\n                }\n            }\n\n            functionRegistry.addMultiple(colorBlend);\n\n        }, {\n            \"../tree/color\": 48,\n            \"./function-registry\": 21\n        }\n        ],\n        17: [function(require, module, exports) {\n            var Dimension = require(\"../tree/dimension\"),\n            Color = require(\"../tree/color\"),\n            Quoted = require(\"../tree/quoted\"),\n            Anonymous = require(\"../tree/anonymous\"),\n            functionRegistry = require(\"./function-registry\"),\n            colorFunctions;\n\n            function clamp(val) {\n                return Math.min(1, Math.max(0, val));\n            }\n            function hsla(color) {\n                return colorFunctions.hsla(color.h, color.s, color.l, color.a);\n            }\n            function number(n) {\n                if (n instanceof Dimension) {\n                    return parseFloat(n.unit.is('%') ? n.value / 100 : n.value);\n                } else if (typeof n === 'number') {\n                    return n;\n                } else {\n                    throw {\n                        type: \"Argument\",\n                        message: \"color functions take numbers as parameters\"\n                    };\n                }\n            }\n            function scaled(n, size) {\n                if (n instanceof Dimension && n.unit.is('%')) {\n                    return parseFloat(n.value * size / 100);\n                } else {\n                    return number(n);\n                }\n            }\n            colorFunctions = {\n                rgb: function (r, g, b) {\n                    return colorFunctions.rgba(r, g, b, 1.0);\n                },\n                rgba: function (r, g, b, a) {\n                    var rgb = [r, g, b].map(function (c) {\n                        return scaled(c, 255);\n                    });\n                    a = number(a);\n                    return new Color(rgb, a);\n                },\n                hsl: function (h, s, l) {\n                    return colorFunctions.hsla(h, s, l, 1.0);\n                },\n                hsla: function (h, s, l, a) {\n                    function hue(h) {\n                        h = h < 0 ? h + 1 : (h > 1 ? h - 1 : h);\n                        if (h * 6 < 1) {\n                            return m1 + (m2 - m1) * h * 6;\n                        } else if (h * 2 < 1) {\n                            return m2;\n                        } else if (h * 3 < 2) {\n                            return m1 + (m2 - m1) * (2 / 3 - h) * 6;\n                        } else {\n                            return m1;\n                        }\n                    }\n\n                    h = (number(h) % 360) / 360;\n                    s = clamp(number(s));\n                    l = clamp(number(l));\n                    a = clamp(number(a));\n\n                    var m2 = l <= 0.5 ? l * (s + 1) : l + s - l * s;\n                    var m1 = l * 2 - m2;\n\n                    return colorFunctions.rgba(hue(h + 1 / 3) * 255,\n                    hue(h) * 255,\n                    hue(h - 1 / 3) * 255,\n                    a);\n                },\n\n                hsv: function(h, s, v) {\n                    return colorFunctions.hsva(h, s, v, 1.0);\n                },\n\n                hsva: function(h, s, v, a) {\n                    h = ((number(h) % 360) / 360) * 360;\n                    s = number(s);\n                    v = number(v);\n                    a = number(a);\n\n                    var i, f;\n                    i = Math.floor((h / 60) % 6);\n                    f = (h / 60) - i;\n\n                    var vs = [v,\n                    v * (1 - s),\n                    v * (1 - f * s),\n                    v * (1 - (1 - f) * s)];\n                    var perm = [[0, 3, 1],\n                    [2, 0, 1],\n                    [1, 0, 3],\n                    [1, 2, 0],\n                    [3, 1, 0],\n                    [0, 1, 2]];\n\n                    return colorFunctions.rgba(vs[perm[i][0]] * 255,\n                    vs[perm[i][1]] * 255,\n                    vs[perm[i][2]] * 255,\n                    a);\n                },\n\n                hue: function (color) {\n                    return new Dimension(color.toHSL().h);\n                },\n                saturation: function (color) {\n                    return new Dimension(color.toHSL().s * 100, '%');\n                },\n                lightness: function (color) {\n                    return new Dimension(color.toHSL().l * 100, '%');\n                },\n                hsvhue: function(color) {\n                    return new Dimension(color.toHSV().h);\n                },\n                hsvsaturation: function (color) {\n                    return new Dimension(color.toHSV().s * 100, '%');\n                },\n                hsvvalue: function (color) {\n                    return new Dimension(color.toHSV().v * 100, '%');\n                },\n                red: function (color) {\n                    return new Dimension(color.rgb[0]);\n                },\n                green: function (color) {\n                    return new Dimension(color.rgb[1]);\n                },\n                blue: function (color) {\n                    return new Dimension(color.rgb[2]);\n                },\n                alpha: function (color) {\n                    return new Dimension(color.toHSL().a);\n                },\n                luma: function (color) {\n                    return new Dimension(color.luma() * color.alpha * 100, '%');\n                },\n                luminance: function (color) {\n                    var luminance =\n                    (0.2126 * color.rgb[0] / 255) +\n                    (0.7152 * color.rgb[1] / 255) +\n                    (0.0722 * color.rgb[2] / 255);\n\n                    return new Dimension(luminance * color.alpha * 100, '%');\n                },\n                saturate: function (color, amount, method) {\n                    // filter: saturate(3.2);\n                    // should be kept as is, so check for color\n                    if (!color.rgb) {\n                        return null;\n                    }\n                    var hsl = color.toHSL();\n\n                    if (typeof method !== \"undefined\" && method.value === \"relative\") {\n                        hsl.s += hsl.s * amount.value / 100;\n                    } else {\n                        hsl.s += amount.value / 100;\n                    }\n                    hsl.s = clamp(hsl.s);\n                    return hsla(hsl);\n                },\n                desaturate: function (color, amount, method) {\n                    var hsl = color.toHSL();\n\n                    if (typeof method !== \"undefined\" && method.value === \"relative\") {\n                        hsl.s -= hsl.s * amount.value / 100;\n                    } else {\n                        hsl.s -= amount.value / 100;\n                    }\n                    hsl.s = clamp(hsl.s);\n                    return hsla(hsl);\n                },\n                lighten: function (color, amount, method) {\n                    var hsl = color.toHSL();\n\n                    if (typeof method !== \"undefined\" && method.value === \"relative\") {\n                        hsl.l += hsl.l * amount.value / 100;\n                    } else {\n                        hsl.l += amount.value / 100;\n                    }\n                    hsl.l = clamp(hsl.l);\n                    return hsla(hsl);\n                },\n                darken: function (color, amount, method) {\n                    var hsl = color.toHSL();\n\n                    if (typeof method !== \"undefined\" && method.value === \"relative\") {\n                        hsl.l -= hsl.l * amount.value / 100;\n                    } else {\n                        hsl.l -= amount.value / 100;\n                    }\n                    hsl.l = clamp(hsl.l);\n                    return hsla(hsl);\n                },\n                fadein: function (color, amount, method) {\n                    var hsl = color.toHSL();\n\n                    if (typeof method !== \"undefined\" && method.value === \"relative\") {\n                        hsl.a += hsl.a * amount.value / 100;\n                    } else {\n                        hsl.a += amount.value / 100;\n                    }\n                    hsl.a = clamp(hsl.a);\n                    return hsla(hsl);\n                },\n                fadeout: function (color, amount, method) {\n                    var hsl = color.toHSL();\n\n                    if (typeof method !== \"undefined\" && method.value === \"relative\") {\n                        hsl.a -= hsl.a * amount.value / 100;\n                    } else {\n                        hsl.a -= amount.value / 100;\n                    }\n                    hsl.a = clamp(hsl.a);\n                    return hsla(hsl);\n                },\n                fade: function (color, amount) {\n                    var hsl = color.toHSL();\n\n                    hsl.a = amount.value / 100;\n                    hsl.a = clamp(hsl.a);\n                    return hsla(hsl);\n                },\n                spin: function (color, amount) {\n                    var hsl = color.toHSL();\n                    var hue = (hsl.h + amount.value) % 360;\n\n                    hsl.h = hue < 0 ? 360 + hue : hue;\n\n                    return hsla(hsl);\n                },\n                //\n                // Copyright (c) 2006-2009 Hampton Catlin, Nathan Weizenbaum, and Chris Eppstein\n                // http://sass-lang.com\n                //\n                mix: function (color1, color2, weight) {\n                    if (!color1.toHSL || !color2.toHSL) {\n                        console.log(color2.type);\n                        console.dir(color2);\n                    }\n                    if (!weight) {\n                        weight = new Dimension(50);\n                    }\n                    var p = weight.value / 100.0;\n                    var w = p * 2 - 1;\n                    var a = color1.toHSL().a - color2.toHSL().a;\n\n                    var w1 = (((w * a == - 1) ? w : (w + a) / (1 + w * a)) + 1) / 2.0;\n                    var w2 = 1 - w1;\n\n                    var rgb = [color1.rgb[0] * w1 + color2.rgb[0] * w2,\n                    color1.rgb[1] * w1 + color2.rgb[1] * w2,\n                    color1.rgb[2] * w1 + color2.rgb[2] * w2];\n\n                    var alpha = color1.alpha * p + color2.alpha * (1 - p);\n\n                    return new Color(rgb, alpha);\n                },\n                greyscale: function (color) {\n                    return colorFunctions.desaturate(color, new Dimension(100));\n                },\n                contrast: function (color, dark, light, threshold) {\n                    // filter: contrast(3.2);\n                    // should be kept as is, so check for color\n                    if (!color.rgb) {\n                        return null;\n                    }\n                    if (typeof light === 'undefined') {\n                        light = colorFunctions.rgba(255, 255, 255, 1.0);\n                    }\n                    if (typeof dark === 'undefined') {\n                        dark = colorFunctions.rgba(0, 0, 0, 1.0);\n                    }\n                    //Figure out which is actually light and dark!\n                    if (dark.luma() > light.luma()) {\n                        var t = light;\n                        light = dark;\n                        dark = t;\n                    }\n                    if (typeof threshold === 'undefined') {\n                        threshold = 0.43;\n                    } else {\n                        threshold = number(threshold);\n                    }\n                    if (color.luma() < threshold) {\n                        return light;\n                    } else {\n                        return dark;\n                    }\n                },\n                argb: function (color) {\n                    return new Anonymous(color.toARGB());\n                },\n                color: function(c) {\n                    if ((c instanceof Quoted) &&\n                    (/^#([a-f0-9]{6}|[a-f0-9]{3})$/i.test(c.value))) {\n                        return new Color(c.value.slice(1));\n                    }\n                    if ((c instanceof Color) || (c = Color.fromKeyword(c.value))) {\n                        c.value = undefined;\n                        return c;\n                    }\n                    throw {\n                        type: \"Argument\",\n                        message: \"argument must be a color keyword or 3/6 digit hex e.g. #FFF\"\n                    };\n                },\n                tint: function(color, amount) {\n                    return colorFunctions.mix(colorFunctions.rgb(255, 255, 255), color, amount);\n                },\n                shade: function(color, amount) {\n                    return colorFunctions.mix(colorFunctions.rgb(0, 0, 0), color, amount);\n                }\n            };\n            functionRegistry.addMultiple(colorFunctions);\n\n        }, {\n            \"../tree/anonymous\": 44,\n            \"../tree/color\": 48,\n            \"../tree/dimension\": 54,\n            \"../tree/quoted\": 71,\n            \"./function-registry\": 21\n        }\n        ],\n        18: [function(require, module, exports) {\n            module.exports = function(environment) {\n                var Quoted = require(\"../tree/quoted\"),\n                URL = require(\"../tree/url\"),\n                functionRegistry = require(\"./function-registry\"),\n                fallback = function(functionThis, node) {\n                    return new URL(node, functionThis.index, functionThis.currentFileInfo).eval(functionThis.context);\n                },\n                logger = require('../logger');\n\n                functionRegistry.add(\"data-uri\", function(mimetypeNode, filePathNode) {\n\n                    if (!filePathNode) {\n                        filePathNode = mimetypeNode;\n                        mimetypeNode = null;\n                    }\n\n                    var mimetype = mimetypeNode && mimetypeNode.value;\n                    var filePath = filePathNode.value;\n                    var currentFileInfo = this.currentFileInfo;\n                    var currentDirectory = currentFileInfo.relativeUrls ?\n                    currentFileInfo.currentDirectory : currentFileInfo.entryPath;\n\n                    var fragmentStart = filePath.indexOf('#');\n                    var fragment = '';\n                    if (fragmentStart !== - 1) {\n                        fragment = filePath.slice(fragmentStart);\n                        filePath = filePath.slice(0, fragmentStart);\n                    }\n\n                    var fileManager = environment.getFileManager(filePath, currentDirectory, this.context, environment, true);\n\n                    if (!fileManager) {\n                        return fallback(this, filePathNode);\n                    }\n\n                    var useBase64 = false;\n\n                    // detect the mimetype if not given\n                    if (!mimetypeNode) {\n\n                        mimetype = environment.mimeLookup(filePath);\n\n                        if (mimetype === \"image/svg+xml\") {\n                            useBase64 = false;\n                        } else {\n                            // use base 64 unless it's an ASCII or UTF-8 format\n                            var charset = environment.charsetLookup(mimetype);\n                            useBase64 = ['US-ASCII', 'UTF-8'].indexOf(charset) < 0;\n                        }\n                        if (useBase64) {\n                            mimetype += ';base64';\n                        }\n                    } else {\n                        useBase64 = /;base64$/.test(mimetype);\n                    }\n\n                    var fileSync = fileManager.loadFileSync(filePath, currentDirectory, this.context, environment);\n                    if (!fileSync.contents) {\n                        logger.warn(\"Skipped data-uri embedding of \" + filePath + \" because file not found\");\n                        return fallback(this, filePathNode || mimetypeNode);\n                    }\n                    var buf = fileSync.contents;\n                    if (useBase64 && !environment.encodeBase64) {\n                        return fallback(this, filePathNode);\n                    }\n\n                    buf = useBase64 ? environment.encodeBase64(buf) : encodeURIComponent(buf);\n\n                    var uri = \"data:\" + mimetype + ',' + buf + fragment;\n\n                    // IE8 cannot handle a data-uri larger than 32,768 characters. If this is exceeded\n                    // and the --ieCompat flag is enabled, return a normal url() instead.\n                    var DATA_URI_MAX = 32768;\n                    if (uri.length >= DATA_URI_MAX) {\n\n                        if (this.context.ieCompat !== false) {\n                            logger.warn(\"Skipped data-uri embedding of \" + filePath + \" because its size (\" + uri.length +\n                            \" characters) exceeds IE8-safe \" + DATA_URI_MAX + \" characters!\");\n\n                            return fallback(this, filePathNode || mimetypeNode);\n                        }\n                    }\n\n                    return new URL(new Quoted('\"' + uri + '\"', uri, false, this.index, this.currentFileInfo), this.index, this.currentFileInfo);\n                });\n            };\n\n        }, {\n            \"../logger\": 31,\n            \"../tree/quoted\": 71,\n            \"../tree/url\": 78,\n            \"./function-registry\": 21\n        }\n        ],\n        19: [function(require, module, exports) {\n            var Keyword = require(\"../tree/keyword\"),\n            functionRegistry = require(\"./function-registry\");\n\n            var defaultFunc = {\n                eval: function () {\n                    var v = this.value_, e = this.error_;\n                    if (e) {\n                        throw e;\n                    }\n                    if (v != null) {\n                        return v ? Keyword.True : Keyword.False;\n                    }\n                },\n                value: function (v) {\n                    this.value_ = v;\n                },\n                error: function (e) {\n                    this.error_ = e;\n                },\n                reset: function () {\n                    this.value_ = this.error_ = null;\n                }\n            };\n\n            functionRegistry.add(\"default\", defaultFunc.eval.bind(defaultFunc));\n\n            module.exports = defaultFunc;\n\n        }, {\n            \"../tree/keyword\": 63,\n            \"./function-registry\": 21\n        }\n        ],\n        20: [function(require, module, exports) {\n            var Expression = require(\"../tree/expression\");\n\n            var functionCaller = function(name, context, index, currentFileInfo) {\n                this.name = name.toLowerCase();\n                this.index = index;\n                this.context = context;\n                this.currentFileInfo = currentFileInfo;\n\n                this.func = context.frames[0].functionRegistry.get(this.name);\n            };\n            functionCaller.prototype.isValid = function() {\n                return Boolean(this.func);\n            };\n            functionCaller.prototype.call = function(args) {\n\n                // This code is terrible and should be replaced as per this issue...\n                // https://github.com/less/less.js/issues/2477\n                if (Array.isArray(args)) {\n                    args = args.filter(function (item) {\n                        if (item.type === \"Comment\") {\n                            return false;\n                        }\n                        return true;\n                    })\n                    .map(function(item) {\n                        if (item.type === \"Expression\") {\n                            var subNodes = item.value.filter(function (item) {\n                                if (item.type === \"Comment\") {\n                                    return false;\n                                }\n                                return true;\n                            });\n                            if (subNodes.length === 1) {\n                                return subNodes[0];\n                            } else {\n                                return new Expression(subNodes);\n                            }\n                        }\n                        return item;\n                    });\n                }\n\n                return this.func.apply(this, args);\n            };\n\n            module.exports = functionCaller;\n\n        }, {\n            \"../tree/expression\": 57\n        }\n        ],\n        21: [function(require, module, exports) {\n            function makeRegistry( base ) {\n                return {\n                    _data: {},\n                    add: function(name, func) {\n                        // precautionary case conversion, as later querying of\n                        // the registry by function-caller uses lower case as well.\n                        name = name.toLowerCase();\n\n                        if (this._data.hasOwnProperty(name)) {\n                            //TODO warn\n                        }\n                        this._data[name] = func;\n                    },\n                    addMultiple: function(functions) {\n                        Object.keys(functions).forEach(\n                        function(name) {\n                            this.add(name, functions[name]);\n                        }.bind(this));\n                    },\n                    get: function(name) {\n                        return this._data[name] || ( base && base.get( name ));\n                    },\n                    inherit : function() {\n                        return makeRegistry( this );\n                    }\n                };\n            }\n\n            module.exports = makeRegistry( null );\n        }, {}\n        ],\n        22: [function(require, module, exports) {\n            module.exports = function(environment) {\n                var functions = {\n                    functionRegistry: require(\"./function-registry\"),\n                    functionCaller: require(\"./function-caller\")\n                };\n\n                //register functions\n                require(\"./default\");\n                require(\"./color\");\n                require(\"./color-blending\");\n                require(\"./data-uri\")(environment);\n                require(\"./math\");\n                require(\"./number\");\n                require(\"./string\");\n                require(\"./svg\")(environment);\n                require(\"./types\");\n\n                return functions;\n            };\n\n        }, {\n            \"./color\": 17,\n            \"./color-blending\": 16,\n            \"./data-uri\": 18,\n            \"./default\": 19,\n            \"./function-caller\": 20,\n            \"./function-registry\": 21,\n            \"./math\": 23,\n            \"./number\": 24,\n            \"./string\": 25,\n            \"./svg\": 26,\n            \"./types\": 27\n        }\n        ],\n        23: [function(require, module, exports) {\n            var Dimension = require(\"../tree/dimension\"),\n            functionRegistry = require(\"./function-registry\");\n\n            var mathFunctions = {\n                // name,  unit\n                ceil: null,\n                floor: null,\n                sqrt: null,\n                abs: null,\n                tan: \"\",\n                sin: \"\",\n                cos: \"\",\n                atan: \"rad\",\n                asin: \"rad\",\n                acos: \"rad\"\n            };\n\n            function _math(fn, unit, n) {\n                if (!(n instanceof Dimension)) {\n                    throw {\n                        type: \"Argument\",\n                        message: \"argument must be a number\" \n                    };\n                }\n                if (unit == null) {\n                    unit = n.unit;\n                } else {\n                    n = n.unify();\n                }\n                return new Dimension(fn(parseFloat(n.value)), unit);\n            }\n\n            for (var f in mathFunctions) {\n                if (mathFunctions.hasOwnProperty(f)) {\n                    mathFunctions[f] = _math.bind(null, Math[f], mathFunctions[f]);\n                }\n            }\n\n            mathFunctions.round = function (n, f) {\n                var fraction = typeof f === \"undefined\" ? 0 : f.value;\n                return _math(function(num) {\n                    return num.toFixed(fraction);\n                }, null, n);\n            };\n\n            functionRegistry.addMultiple(mathFunctions);\n\n        }, {\n            \"../tree/dimension\": 54,\n            \"./function-registry\": 21\n        }\n        ],\n        24: [function(require, module, exports) {\n            var Dimension = require(\"../tree/dimension\"),\n            Anonymous = require(\"../tree/anonymous\"),\n            functionRegistry = require(\"./function-registry\");\n\n            var minMax = function (isMin, args) {\n                args = Array.prototype.slice.call(args);\n                switch (args.length) {\n                case 0:\n                    throw {\n                        type: \"Argument\",\n                        message: \"one or more arguments required\" \n                    };\n                }\n                var i, j, current, currentUnified, referenceUnified, unit, unitStatic, unitClone,\n                order = [], // elems only contains original argument values.\n                values = {}; // key is the unit.toString() for unified Dimension values,\n                // value is the index into the order array.\n                for (i = 0; i < args.length; i++) {\n                    current = args[i];\n                    if (!(current instanceof Dimension)) {\n                        if (Array.isArray(args[i].value)) {\n                            Array.prototype.push.apply(args, Array.prototype.slice.call(args[i].value));\n                        }\n                        continue;\n                    }\n                    currentUnified = current.unit.toString() === \"\" && unitClone !== undefined ? new Dimension(current.value, unitClone).unify() : current.unify();\n                    unit = currentUnified.unit.toString() === \"\" && unitStatic !== undefined ? unitStatic : currentUnified.unit.toString();\n                    unitStatic = unit !== \"\" && unitStatic === undefined || unit !== \"\" && order[0].unify().unit.toString() === \"\" ? unit : unitStatic;\n                    unitClone = unit !== \"\" && unitClone === undefined ? current.unit.toString() : unitClone;\n                    j = values[\"\"] !== undefined && unit !== \"\" && unit === unitStatic ? values[\"\"] : values[unit];\n                    if (j === undefined) {\n                        if (unitStatic !== undefined && unit !== unitStatic) {\n                            throw {\n                                type: \"Argument\",\n                                message: \"incompatible types\" \n                            };\n                        }\n                        values[unit] = order.length;\n                        order.push(current);\n                        continue;\n                    }\n                    referenceUnified = order[j].unit.toString() === \"\" && unitClone !== undefined ? new Dimension(order[j].value, unitClone).unify() : order[j].unify();\n                    if ( isMin && currentUnified.value < referenceUnified.value ||\n                    !isMin && currentUnified.value > referenceUnified.value) {\n                        order[j] = current;\n                    }\n                }\n                if (order.length == 1) {\n                    return order[0];\n                }\n                args = order.map(function (a) {\n                    return a.toCSS(this.context);\n                }).join(this.context.compress ? \",\" : \", \");\n                return new Anonymous((isMin ? \"min\" : \"max\") + \"(\" + args + \")\");\n            };\n            functionRegistry.addMultiple({\n                min: function () {\n                    return minMax(true, arguments);\n                },\n                max: function () {\n                    return minMax(false, arguments);\n                },\n                convert: function (val, unit) {\n                    return val.convertTo(unit.value);\n                },\n                pi: function () {\n                    return new Dimension(Math.PI);\n                },\n                mod: function(a, b) {\n                    return new Dimension(a.value % b.value, a.unit);\n                },\n                pow: function(x, y) {\n                    if (typeof x === \"number\" && typeof y === \"number\") {\n                        x = new Dimension(x);\n                        y = new Dimension(y);\n                    } else if (!(x instanceof Dimension) || !(y instanceof Dimension)) {\n                        throw {\n                            type: \"Argument\",\n                            message: \"arguments must be numbers\" \n                        };\n                    }\n\n                    return new Dimension(Math.pow(x.value, y.value), x.unit);\n                },\n                percentage: function (n) {\n                    return new Dimension(n.value * 100, '%');\n                }\n            });\n\n        }, {\n            \"../tree/anonymous\": 44,\n            \"../tree/dimension\": 54,\n            \"./function-registry\": 21\n        }\n        ],\n        25: [function(require, module, exports) {\n            var Quoted = require(\"../tree/quoted\"),\n            Anonymous = require(\"../tree/anonymous\"),\n            JavaScript = require(\"../tree/javascript\"),\n            functionRegistry = require(\"./function-registry\");\n\n            functionRegistry.addMultiple({\n                e: function (str) {\n                    return new Anonymous(str instanceof JavaScript ? str.evaluated : str.value);\n                },\n                escape: function (str) {\n                    return new Anonymous(\n                    encodeURI(str.value).replace(/=/g, \"%3D\").replace(/:/g, \"%3A\").replace(/#/g, \"%23\").replace(/;/g, \"%3B\")\n                    .replace(/\\(/g, \"%28\").replace(/\\)/g, \"%29\"));\n                },\n                replace: function (string, pattern, replacement, flags) {\n                    var result = string.value;\n                    replacement = (replacement.type === \"Quoted\") ?\n                    replacement.value : replacement.toCSS();\n                    result = result.replace(new RegExp(pattern.value, flags ? flags.value : ''), replacement);\n                    return new Quoted(string.quote || '', result, string.escaped);\n                },\n                '%': function (string /* arg, arg, ...*/\n                ) {\n                    var args = Array.prototype.slice.call(arguments, 1),\n                    result = string.value;\n\n                    for (var i = 0; i < args.length; i++) {\n                        /*jshint loopfunc:true */\n                        result = result.replace(/%[sda]/i, function(token) {\n                            var value = ((args[i].type === \"Quoted\") &&\n                            token.match(/s/i)) ? args[i].value : args[i].toCSS();\n                            return token.match(/[A-Z]$/) ? encodeURIComponent(value) : value;\n                        });\n                    }\n                    result = result.replace(/%%/g, '%');\n                    return new Quoted(string.quote || '', result, string.escaped);\n                }\n            });\n\n        }, {\n            \"../tree/anonymous\": 44,\n            \"../tree/javascript\": 61,\n            \"../tree/quoted\": 71,\n            \"./function-registry\": 21\n        }\n        ],\n        26: [function(require, module, exports) {\n            module.exports = function(environment) {\n                var Dimension = require(\"../tree/dimension\"),\n                Color = require(\"../tree/color\"),\n                Expression = require(\"../tree/expression\"),\n                Quoted = require(\"../tree/quoted\"),\n                URL = require(\"../tree/url\"),\n                functionRegistry = require(\"./function-registry\");\n\n                functionRegistry.add(\"svg-gradient\", function(direction) {\n\n                    var stops,\n                    gradientDirectionSvg,\n                    gradientType = \"linear\",\n                    rectangleDimension = 'x=\"0\" y=\"0\" width=\"1\" height=\"1\"',\n                    renderEnv = {\n                        compress: false\n                    },\n                    returner,\n                    directionValue = direction.toCSS(renderEnv),\n                    i, color, position, positionValue, alpha;\n\n                    function throwArgumentDescriptor() {\n                        throw {\n                            type: \"Argument\",\n                            message: \"svg-gradient expects direction, start_color [start_position], [color position,]...,\" +\n                            \" end_color [end_position] or direction, color list\" \n                        };\n                    }\n\n                    if (arguments.length == 2) {\n                        if (arguments[1].value.length < 2) {\n                            throwArgumentDescriptor();\n                        }\n                        stops = arguments[1].value;\n                    } else if (arguments.length < 3) {\n                        throwArgumentDescriptor();\n                    } else {\n                        stops = Array.prototype.slice.call(arguments, 1);\n                    }\n\n                    switch (directionValue) {\n                    case \"to bottom\":\n                        gradientDirectionSvg = 'x1=\"0%\" y1=\"0%\" x2=\"0%\" y2=\"100%\"';\n                        break;\n                    case \"to right\":\n                        gradientDirectionSvg = 'x1=\"0%\" y1=\"0%\" x2=\"100%\" y2=\"0%\"';\n                        break;\n                    case \"to bottom right\":\n                        gradientDirectionSvg = 'x1=\"0%\" y1=\"0%\" x2=\"100%\" y2=\"100%\"';\n                        break;\n                    case \"to top right\":\n                        gradientDirectionSvg = 'x1=\"0%\" y1=\"100%\" x2=\"100%\" y2=\"0%\"';\n                        break;\n                    case \"ellipse\":\n                    case \"ellipse at center\":\n                        gradientType = \"radial\";\n                        gradientDirectionSvg = 'cx=\"50%\" cy=\"50%\" r=\"75%\"';\n                        rectangleDimension = 'x=\"-50\" y=\"-50\" width=\"101\" height=\"101\"';\n                        break;\n                    default:\n                        throw {\n                            type: \"Argument\",\n                            message: \"svg-gradient direction must be 'to bottom', 'to right',\" +\n                            \" 'to bottom right', 'to top right' or 'ellipse at center'\" \n                        };\n                    }\n                    returner = '<?xml version=\"1.0\" ?>' +\n                    '<svg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" width=\"100%\" height=\"100%\" viewBox=\"0 0 1 1\" preserveAspectRatio=\"none\">' +\n                    '<' + gradientType + 'Gradient id=\"gradient\" gradientUnits=\"userSpaceOnUse\" ' + gradientDirectionSvg + '>';\n\n                    for (i = 0; i < stops.length; i += 1) {\n                        if (stops[i] instanceof Expression) {\n                            color = stops[i].value[0];\n                            position = stops[i].value[1];\n                        } else {\n                            color = stops[i];\n                            position = undefined;\n                        }\n\n                        if (!(color instanceof Color) || (!((i === 0 || i + 1 === stops.length) && position === undefined) && !(position instanceof Dimension))) {\n                            throwArgumentDescriptor();\n                        }\n                        positionValue = position ? position.toCSS(renderEnv) : i === 0 ? \"0%\" : \"100%\";\n                        alpha = color.alpha;\n                        returner += '<stop offset=\"' + positionValue + '\" stop-color=\"' + color.toRGB() + '\"' + (alpha < 1 ? ' stop-opacity=\"' + alpha + '\"' : '') + '/>';\n                    }\n                    returner += '</' + gradientType + 'Gradient>' +\n                    '<rect ' + rectangleDimension + ' fill=\"url(#gradient)\" /></svg>';\n\n                    returner = encodeURIComponent(returner);\n\n                    returner = \"data:image/svg+xml,\" + returner;\n                    return new URL(new Quoted(\"'\" + returner + \"'\", returner, false, this.index, this.currentFileInfo), this.index, this.currentFileInfo);\n                });\n            };\n\n        }, {\n            \"../tree/color\": 48,\n            \"../tree/dimension\": 54,\n            \"../tree/expression\": 57,\n            \"../tree/quoted\": 71,\n            \"../tree/url\": 78,\n            \"./function-registry\": 21\n        }\n        ],\n        27: [function(require, module, exports) {\n            var Keyword = require(\"../tree/keyword\"),\n            DetachedRuleset = require(\"../tree/detached-ruleset\"),\n            Dimension = require(\"../tree/dimension\"),\n            Color = require(\"../tree/color\"),\n            Quoted = require(\"../tree/quoted\"),\n            Anonymous = require(\"../tree/anonymous\"),\n            URL = require(\"../tree/url\"),\n            Operation = require(\"../tree/operation\"),\n            functionRegistry = require(\"./function-registry\");\n\n            var isa = function (n, Type) {\n                return (n instanceof Type) ? Keyword.True : Keyword.False;\n            },\n            isunit = function (n, unit) {\n                if (unit === undefined) {\n                    throw {\n                        type: \"Argument\",\n                        message: \"missing the required second argument to isunit.\" \n                    };\n                }\n                unit = typeof unit.value === \"string\" ? unit.value : unit;\n                if (typeof unit !== \"string\") {\n                    throw {\n                        type: \"Argument\",\n                        message: \"Second argument to isunit should be a unit or a string.\" \n                    };\n                }\n                return (n instanceof Dimension) && n.unit.is(unit) ? Keyword.True : Keyword.False;\n            },\n            getItemsFromNode = function(node) {\n                // handle non-array values as an array of length 1\n                // return 'undefined' if index is invalid\n                var items = Array.isArray(node.value) ?\n                node.value : Array(node);\n\n                return items;\n            };\n            functionRegistry.addMultiple({\n                isruleset: function (n) {\n                    return isa(n, DetachedRuleset);\n                },\n                iscolor: function (n) {\n                    return isa(n, Color);\n                },\n                isnumber: function (n) {\n                    return isa(n, Dimension);\n                },\n                isstring: function (n) {\n                    return isa(n, Quoted);\n                },\n                iskeyword: function (n) {\n                    return isa(n, Keyword);\n                },\n                isurl: function (n) {\n                    return isa(n, URL);\n                },\n                ispixel: function (n) {\n                    return isunit(n, 'px');\n                },\n                ispercentage: function (n) {\n                    return isunit(n, '%');\n                },\n                isem: function (n) {\n                    return isunit(n, 'em');\n                },\n                isunit: isunit,\n                unit: function (val, unit) {\n                    if (!(val instanceof Dimension)) {\n                        throw {\n                            type: \"Argument\",\n                            message: \"the first argument to unit must be a number\" +\n                            (val instanceof Operation ? \". Have you forgotten parenthesis?\" : \"\") \n                        };\n                    }\n                    if (unit) {\n                        if (unit instanceof Keyword) {\n                            unit = unit.value;\n                        } else {\n                            unit = unit.toCSS();\n                        }\n                    } else {\n                        unit = \"\";\n                    }\n                    return new Dimension(val.value, unit);\n                },\n                \"get-unit\": function (n) {\n                    return new Anonymous(n.unit);\n                },\n                extract: function(values, index) {\n                    index = index.value - 1; // (1-based index)\n\n                    return getItemsFromNode(values)[index];\n                },\n                length: function(values) {\n                    return new Dimension(getItemsFromNode(values).length);\n                }\n            });\n\n        }, {\n            \"../tree/anonymous\": 44,\n            \"../tree/color\": 48,\n            \"../tree/detached-ruleset\": 53,\n            \"../tree/dimension\": 54,\n            \"../tree/keyword\": 63,\n            \"../tree/operation\": 69,\n            \"../tree/quoted\": 71,\n            \"../tree/url\": 78,\n            \"./function-registry\": 21\n        }\n        ],\n        28: [function(require, module, exports) {\n            var contexts = require(\"./contexts\"),\n            Parser = require('./parser/parser'),\n            FunctionImporter = require('./plugins/function-importer');\n\n            module.exports = function(environment) {\n\n                // FileInfo = {\n                //  'relativeUrls' - option - whether to adjust URL's to be relative\n                //  'filename' - full resolved filename of current file\n                //  'rootpath' - path to append to normal URLs for this node\n                //  'currentDirectory' - path to the current file, absolute\n                //  'rootFilename' - filename of the base file\n                //  'entryPath' - absolute path to the entry file\n                //  'reference' - whether the file should not be output and only output parts that are referenced\n\n                var ImportManager = function(context, rootFileInfo) {\n                    this.rootFilename = rootFileInfo.filename;\n                    this.paths = context.paths || []; // Search paths, when importing\n                    this.contents = {}; // map - filename to contents of all the files\n                    this.contentsIgnoredChars = {}; // map - filename to lines at the beginning of each file to ignore\n                    this.mime = context.mime;\n                    this.error = null;\n                    this.context = context;\n                    // Deprecated? Unused outside of here, could be useful.\n                    this.queue = []; // Files which haven't been imported yet\n                    this.files = {}; // Holds the imported parse trees.\n                };\n                /**\n                     * Add an import to be imported\n                     * @param path - the raw path\n                     * @param tryAppendLessExtension - whether to try appending the less extension (if the path has no extension)\n                     * @param currentFileInfo - the current file info (used for instance to work out relative paths)\n                     * @param importOptions - import options\n                     * @param callback - callback for when it is imported\n                     */\n                ImportManager.prototype.push = function (path, tryAppendLessExtension, currentFileInfo, importOptions, callback) {\n                    var importManager = this;\n                    this.queue.push(path);\n\n                    var fileParsedFunc = function (e, root, fullPath) {\n                        importManager.queue.splice(importManager.queue.indexOf(path), 1); // Remove the path from the queue\n\n                        var importedEqualsRoot = fullPath === importManager.rootFilename;\n                        if (importOptions.optional && e) {\n                            callback(null, {\n                                rules: []\n                            }, false, null);\n                        } else {\n                            importManager.files[fullPath] = root;\n                            if (e && !importManager.error) {\n                                importManager.error = e;\n                            }\n                            callback(e, root, importedEqualsRoot, fullPath);\n                        }\n                    };\n\n                    var newFileInfo = {\n                        relativeUrls: this.context.relativeUrls,\n                        entryPath: currentFileInfo.entryPath,\n                        rootpath: currentFileInfo.rootpath,\n                        rootFilename: currentFileInfo.rootFilename\n                    };\n\n                    var fileManager = environment.getFileManager(path, currentFileInfo.currentDirectory, this.context, environment);\n\n                    if (!fileManager) {\n                        fileParsedFunc({\n                            message: \"Could not find a file-manager for \" + path \n                        });\n                        return;\n                    }\n\n                    if (tryAppendLessExtension) {\n                        path = fileManager.tryAppendExtension(path, importOptions.plugin ? \".js\" : \".less\");\n                    }\n\n                    var loadFileCallback = function(loadedFile) {\n                        var resolvedFilename = loadedFile.filename,\n                        contents = loadedFile.contents.replace(/^\\uFEFF/, '');\n\n                        // Pass on an updated rootpath if path of imported file is relative and file\n                        // is in a (sub|sup) directory\n                        //\n                        // Examples:\n                        // - If path of imported file is 'module/nav/nav.less' and rootpath is 'less/',\n                        //   then rootpath should become 'less/module/nav/'\n                        // - If path of imported file is '../mixins.less' and rootpath is 'less/',\n                        //   then rootpath should become 'less/../'\n                        newFileInfo.currentDirectory = fileManager.getPath(resolvedFilename);\n                        if (newFileInfo.relativeUrls) {\n                            newFileInfo.rootpath = fileManager.join(\n                            (importManager.context.rootpath || \"\"),\n                            fileManager.pathDiff(newFileInfo.currentDirectory, newFileInfo.entryPath));\n\n                            if (!fileManager.isPathAbsolute(newFileInfo.rootpath) && fileManager.alwaysMakePathsAbsolute()) {\n                                newFileInfo.rootpath = fileManager.join(newFileInfo.entryPath, newFileInfo.rootpath);\n                            }\n                        }\n                        newFileInfo.filename = resolvedFilename;\n\n                        var newEnv = new contexts.Parse(importManager.context);\n\n                        newEnv.processImports = false;\n                        importManager.contents[resolvedFilename] = contents;\n\n                        if (currentFileInfo.reference || importOptions.reference) {\n                            newFileInfo.reference = true;\n                        }\n\n                        if (importOptions.plugin) {\n                            new FunctionImporter(newEnv, newFileInfo).eval(contents, function (e, root) {\n                                fileParsedFunc(e, root, resolvedFilename);\n                            });\n                        } else if (importOptions.inline) {\n                            fileParsedFunc(null, contents, resolvedFilename);\n                        } else {\n                            new Parser(newEnv, importManager, newFileInfo).parse(contents, function (e, root) {\n                                fileParsedFunc(e, root, resolvedFilename);\n                            });\n                        }\n                    };\n\n                    var promise = fileManager.loadFile(path, currentFileInfo.currentDirectory, this.context, environment,\n                    function(err, loadedFile) {\n                        if (err) {\n                            fileParsedFunc(err);\n                        } else {\n                            loadFileCallback(loadedFile);\n                        }\n                    });\n                    if (promise) {\n                        promise.then(loadFileCallback, fileParsedFunc);\n                    }\n                };\n                return ImportManager;\n            };\n\n        }, {\n            \"./contexts\": 10,\n            \"./parser/parser\": 36,\n            \"./plugins/function-importer\": 38\n        }\n        ],\n        29: [function(require, module, exports) {\n            module.exports = function(environment, fileManagers) {\n                var SourceMapOutput, SourceMapBuilder, ParseTree, ImportManager, Environment;\n\n                var less = {\n                    version: [2, 5, 1],\n                    data: require('./data'),\n                    tree: require('./tree'),\n                    Environment: (Environment = require(\"./environment/environment\")),\n                    AbstractFileManager: require(\"./environment/abstract-file-manager\"),\n                    environment: (environment = new Environment(environment, fileManagers)),\n                    visitors: require('./visitors'),\n                    Parser: require('./parser/parser'),\n                    functions: require('./functions')(environment),\n                    contexts: require(\"./contexts\"),\n                    SourceMapOutput: (SourceMapOutput = require('./source-map-output')(environment)),\n                    SourceMapBuilder: (SourceMapBuilder = require('./source-map-builder')(SourceMapOutput, environment)),\n                    ParseTree: (ParseTree = require('./parse-tree')(SourceMapBuilder)),\n                    ImportManager: (ImportManager = require('./import-manager')(environment)),\n                    render: require(\"./render\")(environment, ParseTree, ImportManager),\n                    parse: require(\"./parse\")(environment, ParseTree, ImportManager),\n                    LessError: require('./less-error'),\n                    transformTree: require('./transform-tree'),\n                    utils: require('./utils'),\n                    PluginManager: require('./plugin-manager'),\n                    logger: require('./logger')\n                };\n\n                return less;\n            };\n\n        }, {\n            \"./contexts\": 10,\n            \"./data\": 12,\n            \"./environment/abstract-file-manager\": 14,\n            \"./environment/environment\": 15,\n            \"./functions\": 22,\n            \"./import-manager\": 28,\n            \"./less-error\": 30,\n            \"./logger\": 31,\n            \"./parse\": 33,\n            \"./parse-tree\": 32,\n            \"./parser/parser\": 36,\n            \"./plugin-manager\": 37,\n            \"./render\": 39,\n            \"./source-map-builder\": 40,\n            \"./source-map-output\": 41,\n            \"./transform-tree\": 42,\n            \"./tree\": 60,\n            \"./utils\": 81,\n            \"./visitors\": 85\n        }\n        ],\n        30: [function(require, module, exports) {\n            var utils = require(\"./utils\");\n\n            var LessError = module.exports = function LessError(e, importManager, currentFilename) {\n\n                Error.call(this);\n\n                var filename = e.filename || currentFilename;\n\n                if (importManager && filename) {\n                    var input = importManager.contents[filename],\n                    loc = utils.getLocation(e.index, input),\n                    line = loc.line,\n                    col = loc.column,\n                    callLine = e.call && utils.getLocation(e.call, input).line,\n                    lines = input.split('\\n');\n\n                    this.type = e.type || 'Syntax';\n                    this.filename = filename;\n                    this.index = e.index;\n                    this.line = typeof line === 'number' ? line + 1 : null;\n                    this.callLine = callLine + 1;\n                    this.callExtract = lines[callLine];\n                    this.column = col;\n                    this.extract = [\n                    lines[line - 1],\n                    lines[line],\n                    lines[line + 1]\n                    ];\n                }\n                this.message = e.message;\n                this.stack = e.stack;\n            };\n\n            if (typeof Object.create === 'undefined') {\n                var F = function () {};\n                F.prototype = Error.prototype;\n                LessError.prototype = new F();\n            } else {\n                LessError.prototype = Object.create(Error.prototype);\n            }\n\n            LessError.prototype.constructor = LessError;\n\n        }, {\n            \"./utils\": 81\n        }\n        ],\n        31: [function(require, module, exports) {\n            module.exports = {\n                error: function(msg) {\n                    this._fireEvent(\"error\", msg);\n                },\n                warn: function(msg) {\n                    this._fireEvent(\"warn\", msg);\n                },\n                info: function(msg) {\n                    this._fireEvent(\"info\", msg);\n                },\n                debug: function(msg) {\n                    this._fireEvent(\"debug\", msg);\n                },\n                addListener: function(listener) {\n                    this._listeners.push(listener);\n                },\n                removeListener: function(listener) {\n                    for (var i = 0; i < this._listeners.length; i++) {\n                        if (this._listeners[i] === listener) {\n                            this._listeners.splice(i, 1);\n                            return;\n                        }\n                    }\n                },\n                _fireEvent: function(type, msg) {\n                    for (var i = 0; i < this._listeners.length; i++) {\n                        var logFunction = this._listeners[i][type];\n                        if (logFunction) {\n                            logFunction(msg);\n                        }\n                    }\n                },\n                _listeners: []\n            };\n\n        }, {}\n        ],\n        32: [function(require, module, exports) {\n            var LessError = require('./less-error'),\n            transformTree = require(\"./transform-tree\"),\n            logger = require(\"./logger\");\n\n            module.exports = function(SourceMapBuilder) {\n                var ParseTree = function(root, imports) {\n                    this.root = root;\n                    this.imports = imports;\n                };\n\n                ParseTree.prototype.toCSS = function(options) {\n                    var evaldRoot, result = {}, sourceMapBuilder;\n                    try {\n                        evaldRoot = transformTree(this.root, options);\n                    } catch (e) {\n                        throw new LessError(e, this.imports);\n                    }\n\n                    try {\n                        var compress = Boolean(options.compress);\n                        if (compress) {\n                            logger.warn(\"The compress option has been deprecated. We recommend you use a dedicated css minifier, for instance see less-plugin-clean-css.\");\n                        }\n\n                        var toCSSOptions = {\n                            compress: compress,\n                            dumpLineNumbers: options.dumpLineNumbers,\n                            strictUnits: Boolean(options.strictUnits),\n                            numPrecision: 8\n                        };\n\n                        if (options.sourceMap) {\n                            sourceMapBuilder = new SourceMapBuilder(options.sourceMap);\n                            result.css = sourceMapBuilder.toCSS(evaldRoot, toCSSOptions, this.imports);\n                        } else {\n                            result.css = evaldRoot.toCSS(toCSSOptions);\n                        }\n                    } catch (e) {\n                        throw new LessError(e, this.imports);\n                    }\n\n                    if (options.pluginManager) {\n                        var postProcessors = options.pluginManager.getPostProcessors();\n                        for (var i = 0; i < postProcessors.length; i++) {\n                            result.css = postProcessors[i].process(result.css, {\n                                sourceMap: sourceMapBuilder,\n                                options: options,\n                                imports: this.imports \n                            });\n                        }\n                    }\n                    if (options.sourceMap) {\n                        result.map = sourceMapBuilder.getExternalSourceMap();\n                    }\n\n                    result.imports = [];\n                    for (var file in this.imports.files) {\n                        if (this.imports.files.hasOwnProperty(file) && file !== this.imports.rootFilename) {\n                            result.imports.push(file);\n                        }\n                    }\n                    return result;\n                };\n                return ParseTree;\n            };\n\n        }, {\n            \"./less-error\": 30,\n            \"./logger\": 31,\n            \"./transform-tree\": 42\n        }\n        ],\n        33: [function(require, module, exports) {\n            var PromiseConstructor,\n            contexts = require(\"./contexts\"),\n            Parser = require('./parser/parser'),\n            PluginManager = require('./plugin-manager');\n\n            module.exports = function(environment, ParseTree, ImportManager) {\n                var parse = function (input, options, callback) {\n                    options = options || {};\n\n                    if (typeof options === 'function') {\n                        callback = options;\n                        options = {};\n                    }\n\n                    if (!callback) {\n                        if (!PromiseConstructor) {\n                            PromiseConstructor = typeof Promise === 'undefined' ? require('promise') : Promise;\n                        }\n                        var self = this;\n                        return new PromiseConstructor(function (resolve, reject) {\n                            parse.call(self, input, options, function(err, output) {\n                                if (err) {\n                                    reject(err);\n                                } else {\n                                    resolve(output);\n                                }\n                            });\n                        });\n                    } else {\n                        var context,\n                        rootFileInfo,\n                        pluginManager = new PluginManager(this);\n\n                        pluginManager.addPlugins(options.plugins);\n                        options.pluginManager = pluginManager;\n\n                        context = new contexts.Parse(options);\n\n                        if (options.rootFileInfo) {\n                            rootFileInfo = options.rootFileInfo;\n                        } else {\n                            var filename = options.filename || \"input\";\n                            var entryPath = filename.replace(/[^\\/\\\\]*$/, \"\");\n                            rootFileInfo = {\n                                filename: filename,\n                                relativeUrls: context.relativeUrls,\n                                rootpath: context.rootpath || \"\",\n                                currentDirectory: entryPath,\n                                entryPath: entryPath,\n                                rootFilename: filename\n                            };\n                            // add in a missing trailing slash\n                            if (rootFileInfo.rootpath && rootFileInfo.rootpath.slice( - 1) !== \"/\") {\n                                rootFileInfo.rootpath += \"/\";\n                            }\n                        }\n\n                        var imports = new ImportManager(context, rootFileInfo);\n\n                        new Parser(context, imports, rootFileInfo)\n                        .parse(input, function (e, root) {\n                            if (e) {\n                                return callback(e);\n                            }\n                            callback(null, root, imports, options);\n                        }, options);\n                    }\n                };\n                return parse;\n            };\n\n        }, {\n            \"./contexts\": 10,\n            \"./parser/parser\": 36,\n            \"./plugin-manager\": 37,\n            \"promise\": undefined\n        }\n        ],\n        34: [function(require, module, exports) {\n            // Split the input into chunks.\n            module.exports = function (input, fail) {\n                var len = input.length, level = 0, parenLevel = 0,\n                lastOpening, lastOpeningParen, lastMultiComment, lastMultiCommentEndBrace,\n                chunks = [], emitFrom = 0,\n                chunkerCurrentIndex, currentChunkStartIndex, cc, cc2, matched;\n\n                function emitChunk(force) {\n                    var len = chunkerCurrentIndex - emitFrom;\n                    if (((len < 512) && !force) || !len) {\n                        return;\n                    }\n                    chunks.push(input.slice(emitFrom, chunkerCurrentIndex + 1));\n                    emitFrom = chunkerCurrentIndex + 1;\n                }\n\n                for (chunkerCurrentIndex = 0; chunkerCurrentIndex < len; chunkerCurrentIndex++) {\n                    cc = input.charCodeAt(chunkerCurrentIndex);\n                    if (((cc >= 97) && (cc <= 122)) || (cc < 34)) {\n                        // a-z or whitespace\n                        continue;\n                    }\n\n                    switch (cc) {\n                    case 40:\n                        // (\n                        parenLevel++;\n                        lastOpeningParen = chunkerCurrentIndex;\n                        continue;\n                    case 41:\n                        // )\n                        if (--parenLevel < 0) {\n                            return fail(\"missing opening `(`\", chunkerCurrentIndex);\n                        }\n                        continue;\n                    case 59:\n                        // ;\n                        if (!parenLevel) {\n                            emitChunk();\n                        }\n                        continue;\n                    case 123:\n                        // {\n                        level++;\n                        lastOpening = chunkerCurrentIndex;\n                        continue;\n                    case 125:\n                        // }\n                        if (--level < 0) {\n                            return fail(\"missing opening `{`\", chunkerCurrentIndex);\n                        }\n                        if (!level && !parenLevel) {\n                            emitChunk();\n                        }\n                        continue;\n                    case 92:\n                        // \\\n                        if (chunkerCurrentIndex < len - 1) {\n                            chunkerCurrentIndex++;\n                            continue;\n                        }\n                        return fail(\"unescaped `\\\\`\", chunkerCurrentIndex);\n                    case 34:\n                    case 39:\n                    case 96:\n                        // \", ' and `\n                        matched = 0;\n                        currentChunkStartIndex = chunkerCurrentIndex;\n                        for (chunkerCurrentIndex = chunkerCurrentIndex + 1; chunkerCurrentIndex < len; chunkerCurrentIndex++) {\n                            cc2 = input.charCodeAt(chunkerCurrentIndex);\n                            if (cc2 > 96) {\n                                continue;\n                            }\n                            if (cc2 == cc) {\n                                matched = 1;\n                                break;\n                            }\n                            if (cc2 == 92) {\n                                // \\\n                                if (chunkerCurrentIndex == len - 1) {\n                                    return fail(\"unescaped `\\\\`\", chunkerCurrentIndex);\n                                }\n                                chunkerCurrentIndex++;\n                            }\n                        }\n                        if (matched) {\n                            continue;\n                        }\n                        return fail(\"unmatched `\" + String.fromCharCode(cc) + \"`\", currentChunkStartIndex);\n                    case 47:\n                        // /, check for comment\n                        if (parenLevel || (chunkerCurrentIndex == len - 1)) {\n                            continue;\n                        }\n                        cc2 = input.charCodeAt(chunkerCurrentIndex + 1);\n                        if (cc2 == 47) {\n                            // //, find lnfeed\n                            for (chunkerCurrentIndex = chunkerCurrentIndex + 2; chunkerCurrentIndex < len; chunkerCurrentIndex++) {\n                                cc2 = input.charCodeAt(chunkerCurrentIndex);\n                                if ((cc2 <= 13) && ((cc2 == 10) || (cc2 == 13))) {\n                                    break;\n                                }\n                            }\n                        } else if (cc2 == 42) {\n                            // /*, find */\n                            lastMultiComment = currentChunkStartIndex = chunkerCurrentIndex;\n                            for (chunkerCurrentIndex = chunkerCurrentIndex + 2; chunkerCurrentIndex < len - 1; chunkerCurrentIndex++) {\n                                cc2 = input.charCodeAt(chunkerCurrentIndex);\n                                if (cc2 == 125) {\n                                    lastMultiCommentEndBrace = chunkerCurrentIndex;\n                                }\n                                if (cc2 != 42) {\n                                    continue;\n                                }\n                                if (input.charCodeAt(chunkerCurrentIndex + 1) == 47) {\n                                    break;\n                                }\n                            }\n                            if (chunkerCurrentIndex == len - 1) {\n                                return fail(\"missing closing `*/`\", currentChunkStartIndex);\n                            }\n                            chunkerCurrentIndex++;\n                        }\n                        continue;\n                    case 42:\n                        // *, check for unmatched */\n                        if ((chunkerCurrentIndex < len - 1) && (input.charCodeAt(chunkerCurrentIndex + 1) == 47)) {\n                            return fail(\"unmatched `/*`\", chunkerCurrentIndex);\n                        }\n                        continue;\n                    }\n                }\n\n                if (level !== 0) {\n                    if ((lastMultiComment > lastOpening) && (lastMultiCommentEndBrace > lastMultiComment)) {\n                        return fail(\"missing closing `}` or `*/`\", lastOpening);\n                    } else {\n                        return fail(\"missing closing `}`\", lastOpening);\n                    }\n                } else if (parenLevel !== 0) {\n                    return fail(\"missing closing `)`\", lastOpeningParen);\n                }\n\n                emitChunk(true);\n                return chunks;\n            };\n\n        }, {}\n        ],\n        35: [function(require, module, exports) {\n            var chunker = require('./chunker');\n\n            module.exports = function() {\n                var input, // LeSS input string\n                j, // current chunk\n                saveStack = [], // holds state for backtracking\n                furthest, // furthest index the parser has gone to\n                furthestPossibleErrorMessage, // if this is furthest we got to, this is the probably cause\n                chunks, // chunkified input\n                current, // current chunk\n                currentPos, // index of current chunk, in `input`\n                parserInput = {};\n\n                parserInput.save = function() {\n                    currentPos = parserInput.i;\n                    saveStack.push( {\n                        current: current,\n                        i: parserInput.i,\n                        j: j \n                    });\n                };\n                parserInput.restore = function(possibleErrorMessage) {\n\n                    if (parserInput.i > furthest || (parserInput.i === furthest && possibleErrorMessage && !furthestPossibleErrorMessage)) {\n                        furthest = parserInput.i;\n                        furthestPossibleErrorMessage = possibleErrorMessage;\n                    }\n                    var state = saveStack.pop();\n                    current = state.current;\n                    currentPos = parserInput.i = state.i;\n                    j = state.j;\n                };\n                parserInput.forget = function() {\n                    saveStack.pop();\n                };\n                parserInput.isWhitespace = function (offset) {\n                    var pos = parserInput.i + (offset || 0),\n                    code = input.charCodeAt(pos);\n                    return (code === CHARCODE_SPACE || code === CHARCODE_CR || code === CHARCODE_TAB || code === CHARCODE_LF);\n                };\n\n                // Specialization of $(tok)\n                parserInput.$re = function(tok) {\n                    if (parserInput.i > currentPos) {\n                        current = current.slice(parserInput.i - currentPos);\n                        currentPos = parserInput.i;\n                    }\n\n                    var m = tok.exec(current);\n                    if (!m) {\n                        return null;\n                    }\n\n                    skipWhitespace(m[0].length);\n                    if (typeof m === \"string\") {\n                        return m;\n                    }\n\n                    return m.length === 1 ? m[0] : m;\n                };\n\n                parserInput.$char = function(tok) {\n                    if (input.charAt(parserInput.i) !== tok) {\n                        return null;\n                    }\n                    skipWhitespace(1);\n                    return tok;\n                };\n\n                parserInput.$str = function(tok) {\n                    var tokLength = tok.length;\n\n                    // https://jsperf.com/string-startswith/21\n                    for (var i = 0; i < tokLength; i++) {\n                        if (input.charAt(parserInput.i + i) !== tok.charAt(i)) {\n                            return null;\n                        }\n                    }\n\n                    skipWhitespace(tokLength);\n                    return tok;\n                };\n\n                parserInput.$quoted = function() {\n\n                    var startChar = input.charAt(parserInput.i);\n                    if (startChar !== \"'\" && startChar !== '\"') {\n                        return;\n                    }\n                    var length = input.length,\n                    currentPosition = parserInput.i;\n\n                    for (var i = 1; i + currentPosition < length; i++) {\n                        var nextChar = input.charAt(i + currentPosition);\n                        switch (nextChar) {\n                        case \"\\\\\":\n                            i++;\n                            continue;\n                        case \"\\r\":\n                        case \"\\n\":\n                            break;\n                        case startChar:\n                            var str = input.substr(currentPosition, i + 1);\n                            skipWhitespace(i + 1);\n                            return str;\n                        default:\n                        }\n                    }\n                    return null;\n                };\n\n                var CHARCODE_SPACE = 32,\n                CHARCODE_TAB = 9,\n                CHARCODE_LF = 10,\n                CHARCODE_CR = 13,\n                CHARCODE_PLUS = 43,\n                CHARCODE_COMMA = 44,\n                CHARCODE_FORWARD_SLASH = 47,\n                CHARCODE_9 = 57;\n\n                parserInput.autoCommentAbsorb = true;\n                parserInput.commentStore = [];\n                parserInput.finished = false;\n\n                var skipWhitespace = function(length) {\n                    var oldi = parserInput.i, oldj = j,\n                    curr = parserInput.i - currentPos,\n                    endIndex = parserInput.i + current.length - curr,\n                    mem = (parserInput.i += length),\n                    inp = input,\n                    c, nextChar, comment;\n\n                    for (; parserInput.i < endIndex; parserInput.i++) {\n                        c = inp.charCodeAt(parserInput.i);\n\n                        if (parserInput.autoCommentAbsorb && c === CHARCODE_FORWARD_SLASH) {\n                            nextChar = inp.charAt(parserInput.i + 1);\n                            if (nextChar === '/') {\n                                comment = {\n                                    index: parserInput.i,\n                                    isLineComment: true\n                                };\n                                var nextNewLine = inp.indexOf(\"\\n\", parserInput.i + 2);\n                                if (nextNewLine < 0) {\n                                    nextNewLine = endIndex;\n                                }\n                                parserInput.i = nextNewLine;\n                                comment.text = inp.substr(comment.i, parserInput.i - comment.i);\n                                parserInput.commentStore.push(comment);\n                                continue;\n                            } else if (nextChar === '*') {\n                                var nextStarSlash = inp.indexOf(\"*/\", parserInput.i + 2);\n                                if (nextStarSlash >= 0) {\n                                    comment = {\n                                        index: parserInput.i,\n                                        text: inp.substr(parserInput.i, nextStarSlash + 2 - parserInput.i),\n                                        isLineComment: false\n                                    };\n                                    parserInput.i += comment.text.length - 1;\n                                    parserInput.commentStore.push(comment);\n                                    continue;\n                                }\n                            }\n                            break;\n                        }\n\n                        if ((c !== CHARCODE_SPACE) && (c !== CHARCODE_LF) && (c !== CHARCODE_TAB) && (c !== CHARCODE_CR)) {\n                            break;\n                        }\n                    }\n\n                    current = current.slice(length + parserInput.i - mem + curr);\n                    currentPos = parserInput.i;\n\n                    if (!current.length) {\n                        if (j < chunks.length - 1) {\n                            current = chunks[++j];\n                            skipWhitespace(0); // skip space at the beginning of a chunk\n                            return true; // things changed\n                        }\n                        parserInput.finished = true;\n                    }\n\n                    return oldi !== parserInput.i || oldj !== j;\n                };\n\n                // Same as $(), but don't change the state of the parser,\n                // just return the match.\n                parserInput.peek = function(tok) {\n                    if (typeof tok === 'string') {\n                        // https://jsperf.com/string-startswith/21\n                        for (var i = 0; i < tok.length; i++) {\n                            if (input.charAt(parserInput.i + i) !== tok.charAt(i)) {\n                                return false;\n                            }\n                        }\n                        return true;\n                    } else {\n                        return tok.test(current);\n                    }\n                };\n\n                // Specialization of peek()\n                // TODO remove or change some currentChar calls to peekChar\n                parserInput.peekChar = function(tok) {\n                    return input.charAt(parserInput.i) === tok;\n                };\n\n                parserInput.currentChar = function() {\n                    return input.charAt(parserInput.i);\n                };\n\n                parserInput.getInput = function() {\n                    return input;\n                };\n\n                parserInput.peekNotNumeric = function() {\n                    var c = input.charCodeAt(parserInput.i);\n                    //Is the first char of the dimension 0-9, '.', '+' or '-'\n                    return (c > CHARCODE_9 || c < CHARCODE_PLUS) || c === CHARCODE_FORWARD_SLASH || c === CHARCODE_COMMA;\n                };\n\n                parserInput.start = function(str, chunkInput, failFunction) {\n                    input = str;\n                    parserInput.i = j = currentPos = furthest = 0;\n\n                    // chunking apparantly makes things quicker (but my tests indicate\n                    // it might actually make things slower in node at least)\n                    // and it is a non-perfect parse - it can't recognise\n                    // unquoted urls, meaning it can't distinguish comments\n                    // meaning comments with quotes or {}() in them get 'counted'\n                    // and then lead to parse errors.\n                    // In addition if the chunking chunks in the wrong place we might\n                    // not be able to parse a parser statement in one go\n                    // this is officially deprecated but can be switched on via an option\n                    // in the case it causes too much performance issues.\n                    if (chunkInput) {\n                        chunks = chunker(str, failFunction);\n                    } else {\n                        chunks = [str];\n                    }\n\n                    current = chunks[0];\n\n                    skipWhitespace(0);\n                };\n\n                parserInput.end = function() {\n                    var message,\n                    isFinished = parserInput.i >= input.length;\n\n                    if (parserInput.i < furthest) {\n                        message = furthestPossibleErrorMessage;\n                        parserInput.i = furthest;\n                    }\n                    return {\n                        isFinished: isFinished,\n                        furthest: parserInput.i,\n                        furthestPossibleErrorMessage: message,\n                        furthestReachedEnd: parserInput.i >= input.length - 1,\n                        furthestChar: input[parserInput.i]\n                    };\n                };\n\n                return parserInput;\n            };\n\n        }, {\n            \"./chunker\": 34\n        }\n        ],\n        36: [function(require, module, exports) {\n            var LessError = require('../less-error'),\n            tree = require(\"../tree\"),\n            visitors = require(\"../visitors\"),\n            getParserInput = require(\"./parser-input\"),\n            utils = require(\"../utils\");\n\n            //\n            // less.js - parser\n            //\n            //    A relatively straight-forward predictive parser.\n            //    There is no tokenization/lexing stage, the input is parsed\n            //    in one sweep.\n            //\n            //    To make the parser fast enough to run in the browser, several\n            //    optimization had to be made:\n            //\n            //    - Matching and slicing on a huge input is often cause of slowdowns.\n            //      The solution is to chunkify the input into smaller strings.\n            //      The chunks are stored in the `chunks` var,\n            //      `j` holds the current chunk index, and `currentPos` holds\n            //      the index of the current chunk in relation to `input`.\n            //      This gives us an almost 4x speed-up.\n            //\n            //    - In many cases, we don't need to match individual tokens;\n            //      for example, if a value doesn't hold any variables, operations\n            //      or dynamic references, the parser can effectively 'skip' it,\n            //      treating it as a literal.\n            //      An example would be '1px solid #000' - which evaluates to itself,\n            //      we don't need to know what the individual components are.\n            //      The drawback, of course is that you don't get the benefits of\n            //      syntax-checking on the CSS. This gives us a 50% speed-up in the parser,\n            //      and a smaller speed-up in the code-gen.\n            //\n            //\n            //    Token matching is done with the `$` function, which either takes\n            //    a terminal string or regexp, or a non-terminal function to call.\n            //    It also takes care of moving all the indices forwards.\n            //\n            //\n            var Parser = function Parser(context, imports, fileInfo) {\n                var parsers,\n                parserInput = getParserInput();\n\n                function expect(arg, msg, index) {\n                    // some older browsers return typeof 'function' for RegExp\n                    var result = (Object.prototype.toString.call(arg) === '[object Function]') ? arg.call(parsers) : parserInput.$re(arg);\n                    if (result) {\n                        return result;\n                    }\n                    error(msg || (typeof arg === 'string' ? \"expected '\" + arg + \"' got '\" + parserInput.currentChar() + \"'\"\n                    : \"unexpected token\"));\n                }\n\n                // Specialization of expect()\n                function expectChar(arg, msg) {\n                    if (parserInput.$char(arg)) {\n                        return arg;\n                    }\n                    error(msg || \"expected '\" + arg + \"' got '\" + parserInput.currentChar() + \"'\");\n                }\n\n                function error(msg, type) {\n                    throw new LessError(\n                    {\n                        index: parserInput.i,\n                        filename: fileInfo.filename,\n                        type: type || 'Syntax',\n                        message: msg\n                    },\n                    imports\n                    );\n                }\n\n                function getDebugInfo(index) {\n                    var filename = fileInfo.filename;\n\n                    return {\n                        lineNumber: utils.getLocation(index, parserInput.getInput()).line + 1,\n                        fileName: filename\n                    };\n                }\n\n                //\n                // The Parser\n                //\n                return {\n\n                    //\n                    // Parse an input string into an abstract syntax tree,\n                    // @param str A string containing 'less' markup\n                    // @param callback call `callback` when done.\n                    // @param [additionalData] An optional map which can contains vars - a map (key, value) of variables to apply\n                    //\n                    parse: function (str, callback, additionalData) {\n                        var root, error = null, globalVars, modifyVars, ignored, preText = \"\";\n\n                        globalVars = (additionalData && additionalData.globalVars) ? Parser.serializeVars(additionalData.globalVars) + '\\n' : '';\n                        modifyVars = (additionalData && additionalData.modifyVars) ? '\\n' + Parser.serializeVars(additionalData.modifyVars) : '';\n\n                        if (context.pluginManager) {\n                            var preProcessors = context.pluginManager.getPreProcessors();\n                            for (var i = 0; i < preProcessors.length; i++) {\n                                str = preProcessors[i].process(str, {\n                                    context: context,\n                                    imports: imports,\n                                    fileInfo: fileInfo \n                                });\n                            }\n                        }\n\n                        if (globalVars || (additionalData && additionalData.banner)) {\n                            preText = ((additionalData && additionalData.banner) ? additionalData.banner : \"\") + globalVars;\n                            ignored = imports.contentsIgnoredChars;\n                            ignored[fileInfo.filename] = ignored[fileInfo.filename] || 0;\n                            ignored[fileInfo.filename] += preText.length;\n                        }\n\n                        str = str.replace(/\\r\\n?/g, '\\n');\n                        // Remove potential UTF Byte Order Mark\n                        str = preText + str.replace(/^\\uFEFF/, '') + modifyVars;\n                        imports.contents[fileInfo.filename] = str;\n\n                        // Start with the primary rule.\n                        // The whole syntax tree is held under a Ruleset node,\n                        // with the `root` property set to true, so no `{}` are\n                        // output. The callback is called when the input is parsed.\n                        try {\n                            parserInput.start(str, context.chunkInput, function fail(msg, index) {\n                                throw new LessError({\n                                    index: index,\n                                    type: 'Parse',\n                                    message: msg,\n                                    filename: fileInfo.filename\n                                }, imports);\n                            });\n\n                            root = new (tree.Ruleset)(null, this.parsers.primary());\n                            root.root = true;\n                            root.firstRoot = true;\n                        } catch (e) {\n                            return callback(new LessError(e, imports, fileInfo.filename));\n                        }\n\n                        // If `i` is smaller than the `input.length - 1`,\n                        // it means the parser wasn't able to parse the whole\n                        // string, so we've got a parsing error.\n                        //\n                        // We try to extract a \\n delimited string,\n                        // showing the line where the parse error occurred.\n                        // We split it up into two parts (the part which parsed,\n                        // and the part which didn't), so we can color them differently.\n                        var endInfo = parserInput.end();\n                        if (!endInfo.isFinished) {\n\n                            var message = endInfo.furthestPossibleErrorMessage;\n\n                            if (!message) {\n                                message = \"Unrecognised input\";\n                                if (endInfo.furthestChar === '}') {\n                                    message += \". Possibly missing opening '{'\";\n                                } else if (endInfo.furthestChar === ')') {\n                                    message += \". Possibly missing opening '('\";\n                                } else if (endInfo.furthestReachedEnd) {\n                                    message += \". Possibly missing something\";\n                                }\n                            }\n\n                            error = new LessError({\n                                type: \"Parse\",\n                                message: message,\n                                index: endInfo.furthest,\n                                filename: fileInfo.filename\n                            }, imports);\n                        }\n\n                        var finish = function (e) {\n                            e = error || e || imports.error;\n\n                            if (e) {\n                                if (!(e instanceof LessError)) {\n                                    e = new LessError(e, imports, fileInfo.filename);\n                                }\n\n                                return callback(e);\n                            } else {\n                                return callback(null, root);\n                            }\n                        };\n\n                        if (context.processImports !== false) {\n                            new visitors.ImportVisitor(imports, finish)\n                            .run(root);\n                        } else {\n                            return finish();\n                        }\n                    },\n\n                    //\n                    // Here in, the parsing rules/functions\n                    //\n                    // The basic structure of the syntax tree generated is as follows:\n                    //\n                    //   Ruleset ->  Rule -> Value -> Expression -> Entity\n                    //\n                    // Here's some Less code:\n                    //\n                    //    .class {\n                    //      color: #fff;\n                    //      border: 1px solid #000;\n                    //      width: @w + 4px;\n                    //      > .child {...}\n                    //    }\n                    //\n                    // And here's what the parse tree might look like:\n                    //\n                    //     Ruleset (Selector '.class', [\n                    //         Rule (\"color\",  Value ([Expression [Color #fff]]))\n                    //         Rule (\"border\", Value ([Expression [Dimension 1px][Keyword \"solid\"][Color #000]]))\n                    //         Rule (\"width\",  Value ([Expression [Operation \" + \" [Variable \"@w\"][Dimension 4px]]]))\n                    //         Ruleset (Selector [Element '>', '.child'], [...])\n                    //     ])\n                    //\n                    //  In general, most rules will try to parse a token with the `$re()` function, and if the return\n                    //  value is truly, will return a new node, of the relevant type. Sometimes, we need to check\n                    //  first, before parsing, that's when we use `peek()`.\n                    //\n                    parsers: parsers = {\n                        //\n                        // The `primary` rule is the *entry* and *exit* point of the parser.\n                        // The rules here can appear at any level of the parse tree.\n                        //\n                        // The recursive nature of the grammar is an interplay between the `block`\n                        // rule, which represents `{ ... }`, the `ruleset` rule, and this `primary` rule,\n                        // as represented by this simplified grammar:\n                        //\n                        //     primary  →  (ruleset | rule)+\n                        //     ruleset  →  selector+ block\n                        //     block    →  '{' primary '}'\n                        //\n                        // Only at one point is the primary rule not called from the\n                        // block rule: at the root level.\n                        //\n                        primary: function () {\n                            var mixin = this.mixin, root = [], node;\n\n                            while (true) {\n                                while (true) {\n                                    node = this.comment();\n                                    if (!node) {\n                                        break;\n                                    }\n                                    root.push(node);\n                                }\n                                // always process comments before deciding if finished\n                                if (parserInput.finished) {\n                                    break;\n                                }\n                                if (parserInput.peek('}')) {\n                                    break;\n                                }\n\n                                node = this.extendRule();\n                                if (node) {\n                                    root = root.concat(node);\n                                    continue;\n                                }\n\n                                node = mixin.definition() || this.rule() || this.ruleset() ||\n                                mixin.call() || this.rulesetCall() || this.directive();\n                                if (node) {\n                                    root.push(node);\n                                } else {\n                                    var foundSemiColon = false;\n                                    while (parserInput.$char(\";\")) {\n                                        foundSemiColon = true;\n                                    }\n                                    if (!foundSemiColon) {\n                                        break;\n                                    }\n                                }\n                            }\n\n                            return root;\n                        },\n\n                        // comments are collected by the main parsing mechanism and then assigned to nodes\n                        // where the current structure allows it\n                        comment: function () {\n                            if (parserInput.commentStore.length) {\n                                var comment = parserInput.commentStore.shift();\n                                return new (tree.Comment)(comment.text, comment.isLineComment, comment.index, fileInfo);\n                            }\n                        },\n\n                        //\n                        // Entities are tokens which can be found inside an Expression\n                        //\n                        entities: {\n                            //\n                            // A string, which supports escaping \" and '\n                            //\n                            //     \"milky way\" 'he\\'s the one!'\n                            //\n                            quoted: function () {\n                                var str, index = parserInput.i, isEscaped = false;\n\n                                parserInput.save();\n                                if (parserInput.$char(\"~\")) {\n                                    isEscaped = true;\n                                }\n                                str = parserInput.$quoted();\n                                if (!str) {\n                                    parserInput.restore();\n                                    return;\n                                }\n                                parserInput.forget();\n\n                                return new (tree.Quoted)(str.charAt(0), str.substr(1, str.length - 2), isEscaped, index, fileInfo);\n                            },\n\n                            //\n                            // A catch-all word, such as:\n                            //\n                            //     black border-collapse\n                            //\n                            keyword: function () {\n                                var k = parserInput.$char(\"%\") || parserInput.$re(/^[_A-Za-z-][_A-Za-z0-9-]*/);\n                                if (k) {\n                                    return tree.Color.fromKeyword(k) || new (tree.Keyword)(k);\n                                }\n                            },\n\n                            //\n                            // A function call\n                            //\n                            //     rgb(255, 0, 255)\n                            //\n                            // We also try to catch IE's `alpha()`, but let the `alpha` parser\n                            // deal with the details.\n                            //\n                            // The arguments are parsed with the `entities.arguments` parser.\n                            //\n                            call: function () {\n                                var name, nameLC, args, alpha, index = parserInput.i;\n\n                                // http://jsperf.com/case-insensitive-regex-vs-strtolower-then-regex/18\n                                if (parserInput.peek(/^url\\(/i)) {\n                                    return;\n                                }\n\n                                parserInput.save();\n\n                                name = parserInput.$re(/^([\\w-]+|%|progid:[\\w\\.]+)\\(/);\n                                if (!name) {\n                                    parserInput.forget();\n                                    return;\n                                }\n\n                                name = name[1];\n                                nameLC = name.toLowerCase();\n\n                                if (nameLC === 'alpha') {\n                                    alpha = parsers.alpha();\n                                    if (alpha) {\n                                        parserInput.forget();\n                                        return alpha;\n                                    }\n                                }\n\n                                args = this.arguments();\n\n                                if (! parserInput.$char(')')) {\n                                    parserInput.restore(\"Could not parse call arguments or missing ')'\");\n                                    return;\n                                }\n\n                                parserInput.forget();\n                                return new (tree.Call)(name, args, index, fileInfo);\n                            },\n                            arguments: function () {\n                                var args = [], arg;\n\n                                while (true) {\n                                    arg = this.assignment() || parsers.expression();\n                                    if (!arg) {\n                                        break;\n                                    }\n                                    args.push(arg);\n                                    if (! parserInput.$char(',')) {\n                                        break;\n                                    }\n                                }\n                                return args;\n                            },\n                            literal: function () {\n                                return this.dimension() ||\n                                this.color() ||\n                                this.quoted() ||\n                                this.unicodeDescriptor();\n                            },\n\n                            // Assignments are argument entities for calls.\n                            // They are present in ie filter properties as shown below.\n                            //\n                            //     filter: progid:DXImageTransform.Microsoft.Alpha( *opacity=50* )\n                            //\n\n                            assignment: function () {\n                                var key, value;\n                                parserInput.save();\n                                key = parserInput.$re(/^\\w+(?=\\s?=)/i);\n                                if (!key) {\n                                    parserInput.restore();\n                                    return;\n                                }\n                                if (!parserInput.$char('=')) {\n                                    parserInput.restore();\n                                    return;\n                                }\n                                value = parsers.entity();\n                                if (value) {\n                                    parserInput.forget();\n                                    return new (tree.Assignment)(key, value);\n                                } else {\n                                    parserInput.restore();\n                                }\n                            },\n\n                            //\n                            // Parse url() tokens\n                            //\n                            // We use a specific rule for urls, because they don't really behave like\n                            // standard function calls. The difference is that the argument doesn't have\n                            // to be enclosed within a string, so it can't be parsed as an Expression.\n                            //\n                            url: function () {\n                                var value, index = parserInput.i;\n\n                                parserInput.autoCommentAbsorb = false;\n\n                                if (!parserInput.$str(\"url(\")) {\n                                    parserInput.autoCommentAbsorb = true;\n                                    return;\n                                }\n\n                                value = this.quoted() || this.variable() ||\n                                parserInput.$re(/^(?:(?:\\\\[\\(\\)'\"])|[^\\(\\)'\"])+/) || \"\";\n\n                                parserInput.autoCommentAbsorb = true;\n\n                                expectChar(')');\n\n                                return new (tree.URL)((value.value != null || value instanceof tree.Variable) ?\n                                value : new (tree.Anonymous)(value), index, fileInfo);\n                            },\n\n                            //\n                            // A Variable entity, such as `@fink`, in\n                            //\n                            //     width: @fink + 2px\n                            //\n                            // We use a different parser for variable definitions,\n                            // see `parsers.variable`.\n                            //\n                            variable: function () {\n                                var name, index = parserInput.i;\n\n                                if (parserInput.currentChar() === '@' && (name = parserInput.$re(/^@@?[\\w-]+/))) {\n                                    return new (tree.Variable)(name, index, fileInfo);\n                                }\n                            },\n\n                            // A variable entity useing the protective {} e.g. @{var}\n                            variableCurly: function () {\n                                var curly, index = parserInput.i;\n\n                                if (parserInput.currentChar() === '@' && (curly = parserInput.$re(/^@\\{([\\w-]+)\\}/))) {\n                                    return new (tree.Variable)(\"@\" + curly[1], index, fileInfo);\n                                }\n                            },\n\n                            //\n                            // A Hexadecimal color\n                            //\n                            //     #4F3C2F\n                            //\n                            // `rgb` and `hsl` colors are parsed through the `entities.call` parser.\n                            //\n                            color: function () {\n                                var rgb;\n\n                                if (parserInput.currentChar() === '#' && (rgb = parserInput.$re(/^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})/))) {\n                                    // strip colons, brackets, whitespaces and other characters that should not\n                                    // definitely be part of color string\n                                    var colorCandidateString = rgb.input.match(/^#([\\w]+).*/);\n                                    colorCandidateString = colorCandidateString[1];\n                                    if (!colorCandidateString.match(/^[A-Fa-f0-9]+$/)) {\n                                        // verify if candidate consists only of allowed HEX characters\n                                        error(\"Invalid HEX color code\");\n                                    }\n                                    return new (tree.Color)(rgb[1]);\n                                }\n                            },\n\n                            //\n                            // A Dimension, that is, a number and a unit\n                            //\n                            //     0.5em 95%\n                            //\n                            dimension: function () {\n                                if (parserInput.peekNotNumeric()) {\n                                    return;\n                                }\n\n                                var value = parserInput.$re(/^([+-]?\\d*\\.?\\d+)(%|[a-z]+)?/i);\n                                if (value) {\n                                    return new (tree.Dimension)(value[1], value[2]);\n                                }\n                            },\n\n                            //\n                            // A unicode descriptor, as is used in unicode-range\n                            //\n                            // U+0??  or U+00A1-00A9\n                            //\n                            unicodeDescriptor: function () {\n                                var ud;\n\n                                ud = parserInput.$re(/^U\\+[0-9a-fA-F?]+(\\-[0-9a-fA-F?]+)?/);\n                                if (ud) {\n                                    return new (tree.UnicodeDescriptor)(ud[0]);\n                                }\n                            },\n\n                            //\n                            // JavaScript code to be evaluated\n                            //\n                            //     `window.location.href`\n                            //\n                            javascript: function () {\n                                var js, index = parserInput.i;\n\n                                parserInput.save();\n\n                                var escape = parserInput.$char(\"~\");\n                                var jsQuote = parserInput.$char(\"`\");\n\n                                if (!jsQuote) {\n                                    parserInput.restore();\n                                    return;\n                                }\n\n                                js = parserInput.$re(/^[^`]*`/);\n                                if (js) {\n                                    parserInput.forget();\n                                    return new (tree.JavaScript)(js.substr(0, js.length - 1), Boolean(escape), index, fileInfo);\n                                }\n                                parserInput.restore(\"invalid javascript definition\");\n                            }\n                        },\n\n                        //\n                        // The variable part of a variable definition. Used in the `rule` parser\n                        //\n                        //     @fink:\n                        //\n                        variable: function () {\n                            var name;\n\n                            if (parserInput.currentChar() === '@' && (name = parserInput.$re(/^(@[\\w-]+)\\s*:/))) {\n                                return name[1];\n                            }\n                        },\n\n                        //\n                        // The variable part of a variable definition. Used in the `rule` parser\n                        //\n                        //     @fink();\n                        //\n                        rulesetCall: function () {\n                            var name;\n\n                            if (parserInput.currentChar() === '@' && (name = parserInput.$re(/^(@[\\w-]+)\\s*\\(\\s*\\)\\s*;/))) {\n                                return new tree.RulesetCall(name[1]);\n                            }\n                        },\n\n                        //\n                        // extend syntax - used to extend selectors\n                        //\n                        extend: function(isRule) {\n                            var elements, e, index = parserInput.i, option, extendList, extend;\n\n                            if (!parserInput.$str(isRule ? \"&:extend(\" : \":extend(\")) {\n                                return;\n                            }\n\n                            do {\n                                option = null;\n                                elements = null;\n                                while (! (option = parserInput.$re(/^(all)(?=\\s*(\\)|,))/))) {\n                                    e = this.element();\n                                    if (!e) {\n                                        break;\n                                    }\n                                    if (elements) {\n                                        elements.push(e);\n                                    } else {\n                                        elements = [ e ];\n                                    }\n                                }\n\n                                option = option && option[1];\n                                if (!elements) {\n                                    error(\"Missing target selector for :extend().\");\n                                }\n                                extend = new (tree.Extend)(new (tree.Selector)(elements), option, index);\n                                if (extendList) {\n                                    extendList.push(extend);\n                                } else {\n                                    extendList = [ extend ];\n                                }\n                            }\n                            while (parserInput.$char(\",\"));\n\n                            expect(/^\\)/);\n\n                            if (isRule) {\n                                expect(/^;/);\n                            }\n\n                            return extendList;\n                        },\n\n                        //\n                        // extendRule - used in a rule to extend all the parent selectors\n                        //\n                        extendRule: function() {\n                            return this.extend(true);\n                        },\n\n                        //\n                        // Mixins\n                        //\n                        mixin: {\n                            //\n                            // A Mixin call, with an optional argument list\n                            //\n                            //     #mixins > .square(#fff);\n                            //     .rounded(4px, black);\n                            //     .button;\n                            //\n                            // The `while` loop is there because mixins can be\n                            // namespaced, but we only support the child and descendant\n                            // selector for now.\n                            //\n                            call: function () {\n                                var s = parserInput.currentChar(), important = false, index = parserInput.i, elemIndex,\n                                elements, elem, e, c, args;\n\n                                if (s !== '.' && s !== '#') {\n                                    return;\n                                }\n\n                                parserInput.save(); // stop us absorbing part of an invalid selector\n\n                                while (true) {\n                                    elemIndex = parserInput.i;\n                                    e = parserInput.$re(/^[#.](?:[\\w-]|\\\\(?:[A-Fa-f0-9]{1,6} ?|[^A-Fa-f0-9]))+/);\n                                    if (!e) {\n                                        break;\n                                    }\n                                    elem = new (tree.Element)(c, e, elemIndex, fileInfo);\n                                    if (elements) {\n                                        elements.push(elem);\n                                    } else {\n                                        elements = [ elem ];\n                                    }\n                                    c = parserInput.$char('>');\n                                }\n\n                                if (elements) {\n                                    if (parserInput.$char('(')) {\n                                        args = this.args(true).args;\n                                        expectChar(')');\n                                    }\n\n                                    if (parsers.important()) {\n                                        important = true;\n                                    }\n\n                                    if (parsers.end()) {\n                                        parserInput.forget();\n                                        return new (tree.mixin.Call)(elements, args, index, fileInfo, important);\n                                    }\n                                }\n\n                                parserInput.restore();\n                            },\n                            args: function (isCall) {\n                                var entities = parsers.entities,\n                                returner = {\n                                    args: null,\n                                    variadic: false \n                                },\n                                expressions = [], argsSemiColon = [], argsComma = [],\n                                isSemiColonSeparated, expressionContainsNamed, name, nameLoop, value, arg;\n\n                                parserInput.save();\n\n                                while (true) {\n                                    if (isCall) {\n                                        arg = parsers.detachedRuleset() || parsers.expression();\n                                    } else {\n                                        parserInput.commentStore.length = 0;\n                                        if (parserInput.$str(\"...\")) {\n                                            returner.variadic = true;\n                                            if (parserInput.$char(\";\") && !isSemiColonSeparated) {\n                                                isSemiColonSeparated = true;\n                                            }(isSemiColonSeparated ? argsSemiColon : argsComma)\n                                            .push({\n                                                variadic: true \n                                            });\n                                            break;\n                                        }\n                                        arg = entities.variable() || entities.literal() || entities.keyword();\n                                    }\n\n                                    if (!arg) {\n                                        break;\n                                    }\n\n                                    nameLoop = null;\n                                    if (arg.throwAwayComments) {\n                                        arg.throwAwayComments();\n                                    }\n                                    value = arg;\n                                    var val = null;\n\n                                    if (isCall) {\n                                        // Variable\n                                        if (arg.value && arg.value.length == 1) {\n                                            val = arg.value[0];\n                                        }\n                                    } else {\n                                        val = arg;\n                                    }\n\n                                    if (val && val instanceof tree.Variable) {\n                                        if (parserInput.$char(':')) {\n                                            if (expressions.length > 0) {\n                                                if (isSemiColonSeparated) {\n                                                    error(\"Cannot mix ; and , as delimiter types\");\n                                                }\n                                                expressionContainsNamed = true;\n                                            }\n\n                                            value = parsers.detachedRuleset() || parsers.expression();\n\n                                            if (!value) {\n                                                if (isCall) {\n                                                    error(\"could not understand value for named argument\");\n                                                } else {\n                                                    parserInput.restore();\n                                                    returner.args = [];\n                                                    return returner;\n                                                }\n                                            }\n                                            nameLoop = (name = val.name);\n                                        } else if (!isCall && parserInput.$str(\"...\")) {\n                                            returner.variadic = true;\n                                            if (parserInput.$char(\";\") && !isSemiColonSeparated) {\n                                                isSemiColonSeparated = true;\n                                            }(isSemiColonSeparated ? argsSemiColon : argsComma)\n                                            .push({\n                                                name: arg.name,\n                                                variadic: true \n                                            });\n                                            break;\n                                        } else if (!isCall) {\n                                            name = nameLoop = val.name;\n                                            value = null;\n                                        }\n                                    }\n\n                                    if (value) {\n                                        expressions.push(value);\n                                    }\n\n                                    argsComma.push({\n                                        name: nameLoop,\n                                        value: value \n                                    });\n\n                                    if (parserInput.$char(',')) {\n                                        continue;\n                                    }\n\n                                    if (parserInput.$char(';') || isSemiColonSeparated) {\n\n                                        if (expressionContainsNamed) {\n                                            error(\"Cannot mix ; and , as delimiter types\");\n                                        }\n\n                                        isSemiColonSeparated = true;\n\n                                        if (expressions.length > 1) {\n                                            value = new (tree.Value)(expressions);\n                                        }\n                                        argsSemiColon.push({\n                                            name: name,\n                                            value: value \n                                        });\n\n                                        name = null;\n                                        expressions = [];\n                                        expressionContainsNamed = false;\n                                    }\n                                }\n\n                                parserInput.forget();\n                                returner.args = isSemiColonSeparated ? argsSemiColon : argsComma;\n                                return returner;\n                            },\n                            //\n                            // A Mixin definition, with a list of parameters\n                            //\n                            //     .rounded (@radius: 2px, @color) {\n                            //        ...\n                            //     }\n                            //\n                            // Until we have a finer grained state-machine, we have to\n                            // do a look-ahead, to make sure we don't have a mixin call.\n                            // See the `rule` function for more information.\n                            //\n                            // We start by matching `.rounded (`, and then proceed on to\n                            // the argument list, which has optional default values.\n                            // We store the parameters in `params`, with a `value` key,\n                            // if there is a value, such as in the case of `@radius`.\n                            //\n                            // Once we've got our params list, and a closing `)`, we parse\n                            // the `{...}` block.\n                            //\n                            definition: function () {\n                                var name, params = [], match, ruleset, cond, variadic = false;\n                                if ((parserInput.currentChar() !== '.' && parserInput.currentChar() !== '#') ||\n                                parserInput.peek(/^[^{]*\\}/)) {\n                                    return;\n                                }\n\n                                parserInput.save();\n\n                                match = parserInput.$re(/^([#.](?:[\\w-]|\\\\(?:[A-Fa-f0-9]{1,6} ?|[^A-Fa-f0-9]))+)\\s*\\(/);\n                                if (match) {\n                                    name = match[1];\n\n                                    var argInfo = this.args(false);\n                                    params = argInfo.args;\n                                    variadic = argInfo.variadic;\n\n                                    // .mixincall(\"@{a}\");\n                                    // looks a bit like a mixin definition..\n                                    // also\n                                    // .mixincall(@a: {rule: set;});\n                                    // so we have to be nice and restore\n                                    if (!parserInput.$char(')')) {\n                                        parserInput.restore(\"Missing closing ')'\");\n                                        return;\n                                    }\n\n                                    parserInput.commentStore.length = 0;\n\n                                    if (parserInput.$str(\"when\")) {\n                                        // Guard\n                                        cond = expect(parsers.conditions, 'expected condition');\n                                    }\n\n                                    ruleset = parsers.block();\n\n                                    if (ruleset) {\n                                        parserInput.forget();\n                                        return new (tree.mixin.Definition)(name, params, ruleset, cond, variadic);\n                                    } else {\n                                        parserInput.restore();\n                                    }\n                                } else {\n                                    parserInput.forget();\n                                }\n                            }\n                        },\n\n                        //\n                        // Entities are the smallest recognized token,\n                        // and can be found inside a rule's value.\n                        //\n                        entity: function () {\n                            var entities = this.entities;\n\n                            return this.comment() || entities.literal() || entities.variable() || entities.url() ||\n                            entities.call() || entities.keyword() || entities.javascript();\n                        },\n\n                        //\n                        // A Rule terminator. Note that we use `peek()` to check for '}',\n                        // because the `block` rule will be expecting it, but we still need to make sure\n                        // it's there, if ';' was ommitted.\n                        //\n                        end: function () {\n                            return parserInput.$char(';') || parserInput.peek('}');\n                        },\n\n                        //\n                        // IE's alpha function\n                        //\n                        //     alpha(opacity=88)\n                        //\n                        alpha: function () {\n                            var value;\n\n                            // http://jsperf.com/case-insensitive-regex-vs-strtolower-then-regex/18\n                            if (! parserInput.$re(/^opacity=/i)) {\n                                return;\n                            }\n                            value = parserInput.$re(/^\\d+/);\n                            if (!value) {\n                                value = expect(this.entities.variable, \"Could not parse alpha\");\n                            }\n                            expectChar(')');\n                            return new (tree.Alpha)(value);\n                        },\n\n                        //\n                        // A Selector Element\n                        //\n                        //     div\n                        //     + h1\n                        //     #socks\n                        //     input[type=\"text\"]\n                        //\n                        // Elements are the building blocks for Selectors,\n                        // they are made out of a `Combinator` (see combinator rule),\n                        // and an element name, such as a tag a class, or `*`.\n                        //\n                        element: function () {\n                            var e, c, v, index = parserInput.i;\n\n                            c = this.combinator();\n\n                            e = parserInput.$re(/^(?:\\d+\\.\\d+|\\d+)%/) ||\n                            parserInput.$re(/^(?:[.#]?|:*)(?:[\\w-]|[^\\x00-\\x9f]|\\\\(?:[A-Fa-f0-9]{1,6} ?|[^A-Fa-f0-9]))+/) ||\n                            parserInput.$char('*') || parserInput.$char('&') || this.attribute() ||\n                            parserInput.$re(/^\\([^&()@]+\\)/) || parserInput.$re(/^[\\.#:](?=@)/) ||\n                            this.entities.variableCurly();\n\n                            if (! e) {\n                                parserInput.save();\n                                if (parserInput.$char('(')) {\n                                    if ((v = this.selector()) && parserInput.$char(')')) {\n                                        e = new (tree.Paren)(v);\n                                        parserInput.forget();\n                                    } else {\n                                        parserInput.restore(\"Missing closing ')'\");\n                                    }\n                                } else {\n                                    parserInput.forget();\n                                }\n                            }\n\n                            if (e) {\n                                return new (tree.Element)(c, e, index, fileInfo);\n                            }\n                        },\n\n                        //\n                        // Combinators combine elements together, in a Selector.\n                        //\n                        // Because our parser isn't white-space sensitive, special care\n                        // has to be taken, when parsing the descendant combinator, ` `,\n                        // as it's an empty space. We have to check the previous character\n                        // in the input, to see if it's a ` ` character. More info on how\n                        // we deal with this in *combinator.js*.\n                        //\n                        combinator: function () {\n                            var c = parserInput.currentChar();\n\n                            if (c === '/') {\n                                parserInput.save();\n                                var slashedCombinator = parserInput.$re(/^\\/[a-z]+\\//i);\n                                if (slashedCombinator) {\n                                    parserInput.forget();\n                                    return new (tree.Combinator)(slashedCombinator);\n                                }\n                                parserInput.restore();\n                            }\n\n                            if (c === '>' || c === '+' || c === '~' || c === '|' || c === '^') {\n                                parserInput.i++;\n                                if (c === '^' && parserInput.currentChar() === '^') {\n                                    c = '^^';\n                                    parserInput.i++;\n                                }\n                                while (parserInput.isWhitespace()) {\n                                    parserInput.i++;\n                                }\n                                return new (tree.Combinator)(c);\n                            } else if (parserInput.isWhitespace( - 1)) {\n                                return new (tree.Combinator)(\" \");\n                            } else {\n                                return new (tree.Combinator)(null);\n                            }\n                        },\n                        //\n                        // A CSS selector (see selector below)\n                        // with less extensions e.g. the ability to extend and guard\n                        //\n                        lessSelector: function () {\n                            return this.selector(true);\n                        },\n                        //\n                        // A CSS Selector\n                        //\n                        //     .class > div + h1\n                        //     li a:hover\n                        //\n                        // Selectors are made out of one or more Elements, see above.\n                        //\n                        selector: function (isLess) {\n                            var index = parserInput.i, elements, extendList, c, e, allExtends, when, condition;\n\n                            while ((isLess && (extendList = this.extend())) || (isLess && (when = parserInput.$str(\"when\"))) || (e = this.element())) {\n                                if (when) {\n                                    condition = expect(this.conditions, 'expected condition');\n                                } else if (condition) {\n                                    error(\"CSS guard can only be used at the end of selector\");\n                                } else if (extendList) {\n                                    if (allExtends) {\n                                        allExtends = allExtends.concat(extendList);\n                                    } else {\n                                        allExtends = extendList;\n                                    }\n                                } else {\n                                    if (allExtends) {\n                                        error(\"Extend can only be used at the end of selector\");\n                                    }\n                                    c = parserInput.currentChar();\n                                    if (elements) {\n                                        elements.push(e);\n                                    } else {\n                                        elements = [ e ];\n                                    }\n                                    e = null;\n                                }\n                                if (c === '{' || c === '}' || c === ';' || c === ',' || c === ')') {\n                                    break;\n                                }\n                            }\n\n                            if (elements) {\n                                return new (tree.Selector)(elements, allExtends, condition, index, fileInfo);\n                            }\n                            if (allExtends) {\n                                error(\"Extend must be used to extend a selector, it cannot be used on its own\");\n                            }\n                        },\n                        attribute: function () {\n                            if (! parserInput.$char('[')) {\n                                return;\n                            }\n\n                            var entities = this.entities,\n                            key, val, op;\n\n                            if (!(key = entities.variableCurly())) {\n                                key = expect(/^(?:[_A-Za-z0-9-\\*]*\\|)?(?:[_A-Za-z0-9-]|\\\\.)+/);\n                            }\n\n                            op = parserInput.$re(/^[|~*$^]?=/);\n                            if (op) {\n                                val = entities.quoted() || parserInput.$re(/^[0-9]+%/) || parserInput.$re(/^[\\w-]+/) || entities.variableCurly();\n                            }\n\n                            expectChar(']');\n\n                            return new (tree.Attribute)(key, op, val);\n                        },\n\n                        //\n                        // The `block` rule is used by `ruleset` and `mixin.definition`.\n                        // It's a wrapper around the `primary` rule, with added `{}`.\n                        //\n                        block: function () {\n                            var content;\n                            if (parserInput.$char('{') && (content = this.primary()) && parserInput.$char('}')) {\n                                return content;\n                            }\n                        },\n\n                        blockRuleset: function() {\n                            var block = this.block();\n\n                            if (block) {\n                                block = new tree.Ruleset(null, block);\n                            }\n                            return block;\n                        },\n\n                        detachedRuleset: function() {\n                            var blockRuleset = this.blockRuleset();\n                            if (blockRuleset) {\n                                return new tree.DetachedRuleset(blockRuleset);\n                            }\n                        },\n\n                        //\n                        // div, .class, body > p {...}\n                        //\n                        ruleset: function () {\n                            var selectors, s, rules, debugInfo;\n\n                            parserInput.save();\n\n                            if (context.dumpLineNumbers) {\n                                debugInfo = getDebugInfo(parserInput.i);\n                            }\n\n                            while (true) {\n                                s = this.lessSelector();\n                                if (!s) {\n                                    break;\n                                }\n                                if (selectors) {\n                                    selectors.push(s);\n                                } else {\n                                    selectors = [ s ];\n                                }\n                                parserInput.commentStore.length = 0;\n                                if (s.condition && selectors.length > 1) {\n                                    error(\"Guards are only currently allowed on a single selector.\");\n                                }\n                                if (! parserInput.$char(',')) {\n                                    break;\n                                }\n                                if (s.condition) {\n                                    error(\"Guards are only currently allowed on a single selector.\");\n                                }\n                                parserInput.commentStore.length = 0;\n                            }\n\n                            if (selectors && (rules = this.block())) {\n                                parserInput.forget();\n                                var ruleset = new (tree.Ruleset)(selectors, rules, context.strictImports);\n                                if (context.dumpLineNumbers) {\n                                    ruleset.debugInfo = debugInfo;\n                                }\n                                return ruleset;\n                            } else {\n                                parserInput.restore();\n                            }\n                        },\n                        rule: function (tryAnonymous) {\n                            var name, value, startOfRule = parserInput.i, c = parserInput.currentChar(), important, merge, isVariable;\n\n                            if (c === '.' || c === '#' || c === '&' || c === ':') {\n                                return;\n                            }\n\n                            parserInput.save();\n\n                            name = this.variable() || this.ruleProperty();\n                            if (name) {\n                                isVariable = typeof name === \"string\";\n\n                                if (isVariable) {\n                                    value = this.detachedRuleset();\n                                }\n\n                                parserInput.commentStore.length = 0;\n                                if (!value) {\n                                    // a name returned by this.ruleProperty() is always an array of the form:\n                                    // [string-1, ..., string-n, \"\"] or [string-1, ..., string-n, \"+\"]\n                                    // where each item is a tree.Keyword or tree.Variable\n                                    merge = !isVariable && name.length > 1 && name.pop().value;\n\n                                    // prefer to try to parse first if its a variable or we are compressing\n                                    // but always fallback on the other one\n                                    var tryValueFirst = !tryAnonymous && (context.compress || isVariable);\n\n                                    if (tryValueFirst) {\n                                        value = this.value();\n                                    }\n                                    if (!value) {\n                                        value = this.anonymousValue();\n                                        if (value) {\n                                            parserInput.forget();\n                                            // anonymous values absorb the end ';' which is required for them to work\n                                            return new (tree.Rule)(name, value, false, merge, startOfRule, fileInfo);\n                                        }\n                                    }\n                                    if (!tryValueFirst && !value) {\n                                        value = this.value();\n                                    }\n\n                                    important = this.important();\n                                }\n\n                                if (value && this.end()) {\n                                    parserInput.forget();\n                                    return new (tree.Rule)(name, value, important, merge, startOfRule, fileInfo);\n                                } else {\n                                    parserInput.restore();\n                                    if (value && !tryAnonymous) {\n                                        return this.rule(true);\n                                    }\n                                }\n                            } else {\n                                parserInput.forget();\n                            }\n                        },\n                        anonymousValue: function () {\n                            var match = parserInput.$re(/^([^@+\\/'\"*`(;{}-]*);/);\n                            if (match) {\n                                return new (tree.Anonymous)(match[1]);\n                            }\n                        },\n\n                        //\n                        // An @import directive\n                        //\n                        //     @import \"lib\";\n                        //\n                        // Depending on our environment, importing is done differently:\n                        // In the browser, it's an XHR request, in Node, it would be a\n                        // file-system operation. The function used for importing is\n                        // stored in `import`, which we pass to the Import constructor.\n                        //\n                        \"import\": function () {\n                            var path, features, index = parserInput.i;\n\n                            var dir = parserInput.$re(/^@import?\\s+/);\n\n                            if (dir) {\n                                var options = (dir ? this.importOptions() : null) || {};\n\n                                if ((path = this.entities.quoted() || this.entities.url())) {\n                                    features = this.mediaFeatures();\n\n                                    if (!parserInput.$char(';')) {\n                                        parserInput.i = index;\n                                        error(\"missing semi-colon or unrecognised media features on import\");\n                                    }\n                                    features = features && new (tree.Value)(features);\n                                    return new (tree.Import)(path, features, options, index, fileInfo);\n                                } else {\n                                    parserInput.i = index;\n                                    error(\"malformed import statement\");\n                                }\n                            }\n                        },\n\n                        importOptions: function() {\n                            var o, options = {}, optionName, value;\n\n                            // list of options, surrounded by parens\n                            if (! parserInput.$char('(')) {\n                                return null;\n                            }\n                            do {\n                                o = this.importOption();\n                                if (o) {\n                                    optionName = o;\n                                    value = true;\n                                    switch (optionName) {\n                                    case \"css\":\n                                        optionName = \"less\";\n                                        value = false;\n                                        break;\n                                    case \"once\":\n                                        optionName = \"multiple\";\n                                        value = false;\n                                        break;\n                                    }\n                                    options[optionName] = value;\n                                    if (! parserInput.$char(',')) {\n                                        break;\n                                    }\n                                }\n                            }\n                            while (o);\n                            expectChar(')');\n                            return options;\n                        },\n\n                        importOption: function() {\n                            var opt = parserInput.$re(/^(less|css|multiple|once|inline|reference|optional)/);\n                            if (opt) {\n                                return opt[1];\n                            }\n                        },\n\n                        mediaFeature: function () {\n                            var entities = this.entities, nodes = [], e, p;\n                            parserInput.save();\n                            do {\n                                e = entities.keyword() || entities.variable();\n                                if (e) {\n                                    nodes.push(e);\n                                } else if (parserInput.$char('(')) {\n                                    p = this.property();\n                                    e = this.value();\n                                    if (parserInput.$char(')')) {\n                                        if (p && e) {\n                                            nodes.push(new (tree.Paren)(new (tree.Rule)(p, e, null, null, parserInput.i, fileInfo, true)));\n                                        } else if (e) {\n                                            nodes.push(new (tree.Paren)(e));\n                                        } else {\n                                            parserInput.restore(\"badly formed media feature definition\");\n                                            return null;\n                                        }\n                                    } else {\n                                        parserInput.restore(\"Missing closing ')'\");\n                                        return null;\n                                    }\n                                }\n                            }\n                            while (e);\n\n                            parserInput.forget();\n                            if (nodes.length > 0) {\n                                return new (tree.Expression)(nodes);\n                            }\n                        },\n\n                        mediaFeatures: function () {\n                            var entities = this.entities, features = [], e;\n                            do {\n                                e = this.mediaFeature();\n                                if (e) {\n                                    features.push(e);\n                                    if (! parserInput.$char(',')) {\n                                        break;\n                                    }\n                                } else {\n                                    e = entities.variable();\n                                    if (e) {\n                                        features.push(e);\n                                        if (! parserInput.$char(',')) {\n                                            break;\n                                        }\n                                    }\n                                }\n                            }\n                            while (e);\n\n                            return features.length > 0 ? features : null;\n                        },\n\n                        media: function () {\n                            var features, rules, media, debugInfo;\n\n                            if (context.dumpLineNumbers) {\n                                debugInfo = getDebugInfo(parserInput.i);\n                            }\n\n                            parserInput.save();\n\n                            if (parserInput.$str(\"@media\")) {\n                                features = this.mediaFeatures();\n\n                                rules = this.block();\n\n                                if (!rules) {\n                                    parserInput.restore(\"media definitions require block statements after any features\");\n                                    return;\n                                }\n\n                                parserInput.forget();\n\n                                media = new (tree.Media)(rules, features, parserInput.i, fileInfo);\n                                if (context.dumpLineNumbers) {\n                                    media.debugInfo = debugInfo;\n                                }\n\n                                return media;\n                            }\n\n                            parserInput.restore();\n                        },\n\n                        //\n                        // A @plugin directive, used to import compiler extensions dynamically.\n                        //\n                        //     @plugin \"lib\";\n                        //\n                        // Depending on our environment, importing is done differently:\n                        // In the browser, it's an XHR request, in Node, it would be a\n                        // file-system operation. The function used for importing is\n                        // stored in `import`, which we pass to the Import constructor.\n                        //\n                        plugin: function () {\n                            var path,\n                            index = parserInput.i,\n                            dir = parserInput.$re(/^@plugin?\\s+/);\n\n                            if (dir) {\n                                var options = {\n                                    plugin : true \n                                };\n\n                                if ((path = this.entities.quoted() || this.entities.url())) {\n\n                                    if (!parserInput.$char(';')) {\n                                        parserInput.i = index;\n                                        error(\"missing semi-colon on plugin\");\n                                    }\n\n                                    return new (tree.Import)(path, null, options, index, fileInfo);\n                                } else {\n                                    parserInput.i = index;\n                                    error(\"malformed plugin statement\");\n                                }\n                            }\n                        },\n\n                        //\n                        // A CSS Directive\n                        //\n                        //     @charset \"utf-8\";\n                        //\n                        directive: function () {\n                            var index = parserInput.i, name, value, rules, nonVendorSpecificName,\n                            hasIdentifier, hasExpression, hasUnknown, hasBlock = true, isRooted = true;\n\n                            if (parserInput.currentChar() !== '@') {\n                                return;\n                            }\n\n                            value = this['import']() || this.plugin() || this.media();\n                            if (value) {\n                                return value;\n                            }\n\n                            parserInput.save();\n\n                            name = parserInput.$re(/^@[a-z-]+/);\n\n                            if (!name) {\n                                return;\n                            }\n\n                            nonVendorSpecificName = name;\n                            if (name.charAt(1) == '-' && name.indexOf('-', 2) > 0) {\n                                nonVendorSpecificName = \"@\" + name.slice(name.indexOf('-', 2) + 1);\n                            }\n\n                            switch (nonVendorSpecificName) {\n                                /*\n                                                    case \"@font-face\":\n                                                    case \"@viewport\":\n                                                    case \"@top-left\":\n                                                    case \"@top-left-corner\":\n                                                    case \"@top-center\":\n                                                    case \"@top-right\":\n                                                    case \"@top-right-corner\":\n                                                    case \"@bottom-left\":\n                                                    case \"@bottom-left-corner\":\n                                                    case \"@bottom-center\":\n                                                    case \"@bottom-right\":\n                                                    case \"@bottom-right-corner\":\n                                                    case \"@left-top\":\n                                                    case \"@left-middle\":\n                                                    case \"@left-bottom\":\n                                                    case \"@right-top\":\n                                                    case \"@right-middle\":\n                                                    case \"@right-bottom\":\n                                                        hasBlock = true;\n                                                        isRooted = true;\n                                                        break;\n                                                    */\n                            case \"@counter-style\":\n                                hasIdentifier = true;\n                                hasBlock = true;\n                                break;\n                            case \"@charset\":\n                                hasIdentifier = true;\n                                hasBlock = false;\n                                break;\n                            case \"@namespace\":\n                                hasExpression = true;\n                                hasBlock = false;\n                                break;\n                            case \"@keyframes\":\n                                hasIdentifier = true;\n                                break;\n                            case \"@host\":\n                            case \"@page\":\n                                hasUnknown = true;\n                                break;\n                            case \"@document\":\n                            case \"@supports\":\n                                hasUnknown = true;\n                                isRooted = false;\n                                break;\n                            }\n\n                            parserInput.commentStore.length = 0;\n\n                            if (hasIdentifier) {\n                                value = this.entity();\n                                if (!value) {\n                                    error(\"expected \" + name + \" identifier\");\n                                }\n                            } else if (hasExpression) {\n                                value = this.expression();\n                                if (!value) {\n                                    error(\"expected \" + name + \" expression\");\n                                }\n                            } else if (hasUnknown) {\n                                value = (parserInput.$re(/^[^{;]+/) || '').trim();\n                                if (value) {\n                                    value = new (tree.Anonymous)(value);\n                                }\n                            }\n\n                            if (hasBlock) {\n                                rules = this.blockRuleset();\n                            }\n\n                            if (rules || (!hasBlock && value && parserInput.$char(';'))) {\n                                parserInput.forget();\n                                return new (tree.Directive)(name, value, rules, index, fileInfo,\n                                context.dumpLineNumbers ? getDebugInfo(index) : null,\n                                false,\n                                isRooted\n                                );\n                            }\n\n                            parserInput.restore(\"directive options not recognised\");\n                        },\n\n                        //\n                        // A Value is a comma-delimited list of Expressions\n                        //\n                        //     font-family: Baskerville, Georgia, serif;\n                        //\n                        // In a Rule, a Value represents everything after the `:`,\n                        // and before the `;`.\n                        //\n                        value: function () {\n                            var e, expressions = [];\n\n                            do {\n                                e = this.expression();\n                                if (e) {\n                                    expressions.push(e);\n                                    if (! parserInput.$char(',')) {\n                                        break;\n                                    }\n                                }\n                            }\n                            while (e);\n\n                            if (expressions.length > 0) {\n                                return new (tree.Value)(expressions);\n                            }\n                        },\n                        important: function () {\n                            if (parserInput.currentChar() === '!') {\n                                return parserInput.$re(/^! *important/);\n                            }\n                        },\n                        sub: function () {\n                            var a, e;\n\n                            parserInput.save();\n                            if (parserInput.$char('(')) {\n                                a = this.addition();\n                                if (a && parserInput.$char(')')) {\n                                    parserInput.forget();\n                                    e = new (tree.Expression)([a]);\n                                    e.parens = true;\n                                    return e;\n                                }\n                                parserInput.restore(\"Expected ')'\");\n                                return;\n                            }\n                            parserInput.restore();\n                        },\n                        multiplication: function () {\n                            var m, a, op, operation, isSpaced;\n                            m = this.operand();\n                            if (m) {\n                                isSpaced = parserInput.isWhitespace( - 1);\n                                while (true) {\n                                    if (parserInput.peek(/^\\/[*\\/]/)) {\n                                        break;\n                                    }\n\n                                    parserInput.save();\n\n                                    op = parserInput.$char('/') || parserInput.$char('*');\n\n                                    if (!op) {\n                                        parserInput.forget();\n                                        break;\n                                    }\n\n                                    a = this.operand();\n\n                                    if (!a) {\n                                        parserInput.restore();\n                                        break;\n                                    }\n                                    parserInput.forget();\n\n                                    m.parensInOp = true;\n                                    a.parensInOp = true;\n                                    operation = new (tree.Operation)(op, [operation || m, a], isSpaced);\n                                    isSpaced = parserInput.isWhitespace( - 1);\n                                }\n                                return operation || m;\n                            }\n                        },\n                        addition: function () {\n                            var m, a, op, operation, isSpaced;\n                            m = this.multiplication();\n                            if (m) {\n                                isSpaced = parserInput.isWhitespace( - 1);\n                                while (true) {\n                                    op = parserInput.$re(/^[-+]\\s+/) || (!isSpaced && (parserInput.$char('+') || parserInput.$char('-')));\n                                    if (!op) {\n                                        break;\n                                    }\n                                    a = this.multiplication();\n                                    if (!a) {\n                                        break;\n                                    }\n\n                                    m.parensInOp = true;\n                                    a.parensInOp = true;\n                                    operation = new (tree.Operation)(op, [operation || m, a], isSpaced);\n                                    isSpaced = parserInput.isWhitespace( - 1);\n                                }\n                                return operation || m;\n                            }\n                        },\n                        conditions: function () {\n                            var a, b, index = parserInput.i, condition;\n\n                            a = this.condition();\n                            if (a) {\n                                while (true) {\n                                    if (!parserInput.peek(/^,\\s*(not\\s*)?\\(/) || !parserInput.$char(',')) {\n                                        break;\n                                    }\n                                    b = this.condition();\n                                    if (!b) {\n                                        break;\n                                    }\n                                    condition = new (tree.Condition)('or', condition || a, b, index);\n                                }\n                                return condition || a;\n                            }\n                        },\n                        condition: function () {\n                            var entities = this.entities, index = parserInput.i, negate = false,\n                            a, b, c, op;\n\n                            if (parserInput.$str(\"not\")) {\n                                negate = true;\n                            }\n                            expectChar('(');\n                            a = this.addition() || entities.keyword() || entities.quoted();\n                            if (a) {\n                                if (parserInput.$char('>')) {\n                                    if (parserInput.$char('=')) {\n                                        op = \">=\";\n                                    } else {\n                                        op = '>';\n                                    }\n                                } else\n                                if (parserInput.$char('<')) {\n                                    if (parserInput.$char('=')) {\n                                        op = \"<=\";\n                                    } else {\n                                        op = '<';\n                                    }\n                                } else\n                                if (parserInput.$char('=')) {\n                                    if (parserInput.$char('>')) {\n                                        op = \"=>\";\n                                    } else if (parserInput.$char('<')) {\n                                        op = '=<';\n                                    } else {\n                                        op = '=';\n                                    }\n                                }\n                                if (op) {\n                                    b = this.addition() || entities.keyword() || entities.quoted();\n                                    if (b) {\n                                        c = new (tree.Condition)(op, a, b, index, negate);\n                                    } else {\n                                        error('expected expression');\n                                    }\n                                } else {\n                                    c = new (tree.Condition)('=', a, new (tree.Keyword)('true'), index, negate);\n                                }\n                                expectChar(')');\n                                return parserInput.$str(\"and\") ? new (tree.Condition)('and', c, this.condition()) : c;\n                            }\n                        },\n\n                        //\n                        // An operand is anything that can be part of an operation,\n                        // such as a Color, or a Variable\n                        //\n                        operand: function () {\n                            var entities = this.entities, negate;\n\n                            if (parserInput.peek(/^-[@\\(]/)) {\n                                negate = parserInput.$char('-');\n                            }\n\n                            var o = this.sub() || entities.dimension() ||\n                            entities.color() || entities.variable() ||\n                            entities.call();\n\n                            if (negate) {\n                                o.parensInOp = true;\n                                o = new (tree.Negative)(o);\n                            }\n\n                            return o;\n                        },\n\n                        //\n                        // Expressions either represent mathematical operations,\n                        // or white-space delimited Entities.\n                        //\n                        //     1px solid black\n                        //     @var * 2\n                        //\n                        expression: function () {\n                            var entities = [], e, delim;\n\n                            do {\n                                e = this.comment();\n                                if (e) {\n                                    entities.push(e);\n                                    continue;\n                                }\n                                e = this.addition() || this.entity();\n                                if (e) {\n                                    entities.push(e);\n                                    // operations do not allow keyword \"/\" dimension (e.g. small/20px) so we support that here\n                                    if (!parserInput.peek(/^\\/[\\/*]/)) {\n                                        delim = parserInput.$char('/');\n                                        if (delim) {\n                                            entities.push(new (tree.Anonymous)(delim));\n                                        }\n                                    }\n                                }\n                            }\n                            while (e);\n                            if (entities.length > 0) {\n                                return new (tree.Expression)(entities);\n                            }\n                        },\n                        property: function () {\n                            var name = parserInput.$re(/^(\\*?-?[_a-zA-Z0-9-]+)\\s*:/);\n                            if (name) {\n                                return name[1];\n                            }\n                        },\n                        ruleProperty: function () {\n                            var name = [], index = [], s, k;\n\n                            parserInput.save();\n\n                            var simpleProperty = parserInput.$re(/^([_a-zA-Z0-9-]+)\\s*:/);\n                            if (simpleProperty) {\n                                name = [new (tree.Keyword)(simpleProperty[1])];\n                                parserInput.forget();\n                                return name;\n                            }\n\n                            function match(re) {\n                                var i = parserInput.i,\n                                chunk = parserInput.$re(re);\n                                if (chunk) {\n                                    index.push(i);\n                                    return name.push(chunk[1]);\n                                }\n                            }\n\n                            match(/^(\\*?)/);\n                            while (true) {\n                                if (!match(/^((?:[\\w-]+)|(?:@\\{[\\w-]+\\}))/)) {\n                                    break;\n                                }\n                            }\n\n                            if ((name.length > 1) && match(/^((?:\\+_|\\+)?)\\s*:/)) {\n                                parserInput.forget();\n\n                                // at last, we have the complete match now. move forward,\n                                // convert name particles to tree objects and return:\n                                if (name[0] === '') {\n                                    name.shift();\n                                    index.shift();\n                                }\n                                for (k = 0; k < name.length; k++) {\n                                    s = name[k];\n                                    name[k] = (s.charAt(0) !== '@') ?\n                                    new (tree.Keyword)(s) :\n                                    new (tree.Variable)('@' + s.slice(2, - 1),\n                                    index[k], fileInfo);\n                                }\n                                return name;\n                            }\n                            parserInput.restore();\n                        }\n                    }\n                };\n            };\n            Parser.serializeVars = function(vars) {\n                var s = '';\n\n                for (var name in vars) {\n                    if (Object.hasOwnProperty.call(vars, name)) {\n                        var value = vars[name];\n                        s += ((name[0] === '@') ? '' : '@') + name + ': ' + value +\n                        ((String(value).slice( - 1) === ';') ? '' : ';');\n                    }\n                }\n\n                return s;\n            };\n\n            module.exports = Parser;\n\n        }, {\n            \"../less-error\": 30,\n            \"../tree\": 60,\n            \"../utils\": 81,\n            \"../visitors\": 85,\n            \"./parser-input\": 35\n        }\n        ],\n        37: [function(require, module, exports) {\n            /**\n             * Plugin Manager\n             */\n            var PluginManager = function(less) {\n                this.less = less;\n                this.visitors = [];\n                this.preProcessors = [];\n                this.postProcessors = [];\n                this.installedPlugins = [];\n                this.fileManagers = [];\n            };\n            /**\n             * Adds all the plugins in the array\n             * @param {Array} plugins\n             */\n            PluginManager.prototype.addPlugins = function(plugins) {\n                if (plugins) {\n                    for (var i = 0; i < plugins.length; i++) {\n                        this.addPlugin(plugins[i]);\n                    }\n                }\n            };\n            /**\n             *\n             * @param plugin\n             */\n            PluginManager.prototype.addPlugin = function(plugin) {\n                this.installedPlugins.push(plugin);\n                plugin.install(this.less, this);\n            };\n            /**\n             * Adds a visitor. The visitor object has options on itself to determine\n             * when it should run.\n             * @param visitor\n             */\n            PluginManager.prototype.addVisitor = function(visitor) {\n                this.visitors.push(visitor);\n            };\n            /**\n             * Adds a pre processor object\n             * @param {object} preProcessor\n             * @param {number} priority - guidelines 1 = before import, 1000 = import, 2000 = after import\n             */\n            PluginManager.prototype.addPreProcessor = function(preProcessor, priority) {\n                var indexToInsertAt;\n                for (indexToInsertAt = 0; indexToInsertAt < this.preProcessors.length; indexToInsertAt++) {\n                    if (this.preProcessors[indexToInsertAt].priority >= priority) {\n                        break;\n                    }\n                }\n                this.preProcessors.splice(indexToInsertAt, 0, {\n                    preProcessor: preProcessor,\n                    priority: priority\n                });\n            };\n            /**\n             * Adds a post processor object\n             * @param {object} postProcessor\n             * @param {number} priority - guidelines 1 = before compression, 1000 = compression, 2000 = after compression\n             */\n            PluginManager.prototype.addPostProcessor = function(postProcessor, priority) {\n                var indexToInsertAt;\n                for (indexToInsertAt = 0; indexToInsertAt < this.postProcessors.length; indexToInsertAt++) {\n                    if (this.postProcessors[indexToInsertAt].priority >= priority) {\n                        break;\n                    }\n                }\n                this.postProcessors.splice(indexToInsertAt, 0, {\n                    postProcessor: postProcessor,\n                    priority: priority\n                });\n            };\n            /**\n             *\n             * @param manager\n             */\n            PluginManager.prototype.addFileManager = function(manager) {\n                this.fileManagers.push(manager);\n            };\n            /**\n             *\n             * @returns {Array}\n             * @private\n             */\n            PluginManager.prototype.getPreProcessors = function() {\n                var preProcessors = [];\n                for (var i = 0; i < this.preProcessors.length; i++) {\n                    preProcessors.push(this.preProcessors[i].preProcessor);\n                }\n                return preProcessors;\n            };\n            /**\n             *\n             * @returns {Array}\n             * @private\n             */\n            PluginManager.prototype.getPostProcessors = function() {\n                var postProcessors = [];\n                for (var i = 0; i < this.postProcessors.length; i++) {\n                    postProcessors.push(this.postProcessors[i].postProcessor);\n                }\n                return postProcessors;\n            };\n            /**\n             *\n             * @returns {Array}\n             * @private\n             */\n            PluginManager.prototype.getVisitors = function() {\n                return this.visitors;\n            };\n            /**\n             *\n             * @returns {Array}\n             * @private\n             */\n            PluginManager.prototype.getFileManagers = function() {\n                return this.fileManagers;\n            };\n            module.exports = PluginManager;\n\n        }, {}\n        ],\n        38: [function(require, module, exports) {\n            var LessError = require('../less-error'),\n            tree = require(\"../tree\");\n\n            var FunctionImporter = module.exports = function FunctionImporter(context, fileInfo) {\n                this.fileInfo = fileInfo;\n            };\n\n            FunctionImporter.prototype.eval = function(contents, callback) {\n                var loaded = {},\n                loader,\n                registry;\n\n                registry = {\n                    add: function(name, func) {\n                        loaded[name] = func;\n                    },\n                    addMultiple: function(functions) {\n                        Object.keys(functions).forEach(function(name) {\n                            loaded[name] = functions[name];\n                        });\n                    }\n                };\n\n                try {\n                    loader = new Function(\"functions\", \"tree\", \"fileInfo\", contents);\n                    loader(registry, tree, this.fileInfo);\n                } catch (e) {\n                    callback(new LessError({\n                        message: \"Plugin evaluation error: '\" + e.name + ': ' + e.message.replace(/[\"]/g, \"'\") + \"'\" ,\n                        filename: this.fileInfo.filename\n                    }), null );\n                }\n\n                callback(null, {\n                    functions: loaded \n                });\n            };\n\n        }, {\n            \"../less-error\": 30,\n            \"../tree\": 60\n        }\n        ],\n        39: [function(require, module, exports) {\n            var PromiseConstructor;\n\n            module.exports = function(environment, ParseTree, ImportManager) {\n                var render = function (input, options, callback) {\n                    if (typeof options === 'function') {\n                        callback = options;\n                        options = {};\n                    }\n\n                    if (!callback) {\n                        if (!PromiseConstructor) {\n                            PromiseConstructor = typeof Promise === 'undefined' ? require('promise') : Promise;\n                        }\n                        var self = this;\n                        return new PromiseConstructor(function (resolve, reject) {\n                            render.call(self, input, options, function(err, output) {\n                                if (err) {\n                                    reject(err);\n                                } else {\n                                    resolve(output);\n                                }\n                            });\n                        });\n                    } else {\n                        this.parse(input, options, function(err, root, imports, options) {\n                            if (err) {\n                                return callback(err);\n                            }\n\n                            var result;\n                            try {\n                                var parseTree = new ParseTree(root, imports);\n                                result = parseTree.toCSS(options);\n                            } catch (err) {\n                                return callback(err);\n                            }\n\n                            callback(null, result);\n                        });\n                    }\n                };\n\n                return render;\n            };\n\n        }, {\n            \"promise\": undefined\n        }\n        ],\n        40: [function(require, module, exports) {\n            module.exports = function (SourceMapOutput, environment) {\n\n                var SourceMapBuilder = function (options) {\n                    this.options = options;\n                };\n\n                SourceMapBuilder.prototype.toCSS = function(rootNode, options, imports) {\n                    var sourceMapOutput = new SourceMapOutput(\n                    {\n                        contentsIgnoredCharsMap: imports.contentsIgnoredChars,\n                        rootNode: rootNode,\n                        contentsMap: imports.contents,\n                        sourceMapFilename: this.options.sourceMapFilename,\n                        sourceMapURL: this.options.sourceMapURL,\n                        outputFilename: this.options.sourceMapOutputFilename,\n                        sourceMapBasepath: this.options.sourceMapBasepath,\n                        sourceMapRootpath: this.options.sourceMapRootpath,\n                        outputSourceFiles: this.options.outputSourceFiles,\n                        sourceMapGenerator: this.options.sourceMapGenerator,\n                        sourceMapFileInline: this.options.sourceMapFileInline\n                    });\n\n                    var css = sourceMapOutput.toCSS(options);\n                    this.sourceMap = sourceMapOutput.sourceMap;\n                    this.sourceMapURL = sourceMapOutput.sourceMapURL;\n                    if (this.options.sourceMapInputFilename) {\n                        this.sourceMapInputFilename = sourceMapOutput.normalizeFilename(this.options.sourceMapInputFilename);\n                    }\n                    return css + this.getCSSAppendage();\n                };\n\n                SourceMapBuilder.prototype.getCSSAppendage = function() {\n\n                    var sourceMapURL = this.sourceMapURL;\n                    if (this.options.sourceMapFileInline) {\n                        if (this.sourceMap === undefined) {\n                            return \"\";\n                        }\n                        sourceMapURL = \"data:application/json;base64,\" + environment.encodeBase64(this.sourceMap);\n                    }\n\n                    if (sourceMapURL) {\n                        return \"/*# sourceMappingURL=\" + sourceMapURL + \" */\";\n                    }\n                    return \"\";\n                };\n\n                SourceMapBuilder.prototype.getExternalSourceMap = function() {\n                    return this.sourceMap;\n                };\n                SourceMapBuilder.prototype.setExternalSourceMap = function(sourceMap) {\n                    this.sourceMap = sourceMap;\n                };\n\n                SourceMapBuilder.prototype.isInline = function() {\n                    return this.options.sourceMapFileInline;\n                };\n                SourceMapBuilder.prototype.getSourceMapURL = function() {\n                    return this.sourceMapURL;\n                };\n                SourceMapBuilder.prototype.getOutputFilename = function() {\n                    return this.options.sourceMapOutputFilename;\n                };\n                SourceMapBuilder.prototype.getInputFilename = function() {\n                    return this.sourceMapInputFilename;\n                };\n\n                return SourceMapBuilder;\n            };\n\n        }, {}\n        ],\n        41: [function(require, module, exports) {\n            module.exports = function (environment) {\n\n                var SourceMapOutput = function (options) {\n                    this._css = [];\n                    this._rootNode = options.rootNode;\n                    this._contentsMap = options.contentsMap;\n                    this._contentsIgnoredCharsMap = options.contentsIgnoredCharsMap;\n                    if (options.sourceMapFilename) {\n                        this._sourceMapFilename = options.sourceMapFilename.replace(/\\\\/g, '/');\n                    }\n                    this._outputFilename = options.outputFilename;\n                    this.sourceMapURL = options.sourceMapURL;\n                    if (options.sourceMapBasepath) {\n                        this._sourceMapBasepath = options.sourceMapBasepath.replace(/\\\\/g, '/');\n                    }\n                    if (options.sourceMapRootpath) {\n                        this._sourceMapRootpath = options.sourceMapRootpath.replace(/\\\\/g, '/');\n                        if (this._sourceMapRootpath.charAt(this._sourceMapRootpath.length - 1) !== '/') {\n                            this._sourceMapRootpath += '/';\n                        }\n                    } else {\n                        this._sourceMapRootpath = \"\";\n                    }\n                    this._outputSourceFiles = options.outputSourceFiles;\n                    this._sourceMapGeneratorConstructor = environment.getSourceMapGenerator();\n\n                    this._lineNumber = 0;\n                    this._column = 0;\n                };\n\n                SourceMapOutput.prototype.normalizeFilename = function(filename) {\n                    filename = filename.replace(/\\\\/g, '/');\n\n                    if (this._sourceMapBasepath && filename.indexOf(this._sourceMapBasepath) === 0) {\n                        filename = filename.substring(this._sourceMapBasepath.length);\n                        if (filename.charAt(0) === '\\\\' || filename.charAt(0) === '/') {\n                            filename = filename.substring(1);\n                        }\n                    }\n                    return (this._sourceMapRootpath || \"\") + filename;\n                };\n\n                SourceMapOutput.prototype.add = function(chunk, fileInfo, index, mapLines) {\n\n                    //ignore adding empty strings\n                    if (!chunk) {\n                        return;\n                    }\n\n                    var lines,\n                    sourceLines,\n                    columns,\n                    sourceColumns,\n                    i;\n\n                    if (fileInfo) {\n                        var inputSource = this._contentsMap[fileInfo.filename];\n\n                        // remove vars/banner added to the top of the file\n                        if (this._contentsIgnoredCharsMap[fileInfo.filename]) {\n                            // adjust the index\n                            index -= this._contentsIgnoredCharsMap[fileInfo.filename];\n                            if (index < 0) {\n                                index = 0;\n                            }\n                            // adjust the source\n                            inputSource = inputSource.slice(this._contentsIgnoredCharsMap[fileInfo.filename]);\n                        }\n                        inputSource = inputSource.substring(0, index);\n                        sourceLines = inputSource.split(\"\\n\");\n                        sourceColumns = sourceLines[sourceLines.length - 1];\n                    }\n\n                    lines = chunk.split(\"\\n\");\n                    columns = lines[lines.length - 1];\n\n                    if (fileInfo) {\n                        if (!mapLines) {\n                            this._sourceMapGenerator.addMapping({\n                                generated: {\n                                    line: this._lineNumber + 1,\n                                    column: this._column\n                                },\n                                original: {\n                                    line: sourceLines.length,\n                                    column: sourceColumns.length\n                                },\n                                source: this.normalizeFilename(fileInfo.filename)\n                            });\n                        } else {\n                            for (i = 0; i < lines.length; i++) {\n                                this._sourceMapGenerator.addMapping({\n                                    generated: {\n                                        line: this._lineNumber + i + 1,\n                                        column: i === 0 ? this._column : 0\n                                    },\n                                    original: {\n                                        line: sourceLines.length + i,\n                                        column: i === 0 ? sourceColumns.length : 0\n                                    },\n                                    source: this.normalizeFilename(fileInfo.filename)\n                                });\n                            }\n                        }\n                    }\n\n                    if (lines.length === 1) {\n                        this._column += columns.length;\n                    } else {\n                        this._lineNumber += lines.length - 1;\n                        this._column = columns.length;\n                    }\n\n                    this._css.push(chunk);\n                };\n\n                SourceMapOutput.prototype.isEmpty = function() {\n                    return this._css.length === 0;\n                };\n\n                SourceMapOutput.prototype.toCSS = function(context) {\n                    this._sourceMapGenerator = new this._sourceMapGeneratorConstructor({\n                        file: this._outputFilename,\n                        sourceRoot: null \n                    });\n\n                    if (this._outputSourceFiles) {\n                        for (var filename in this._contentsMap) {\n                            if (this._contentsMap.hasOwnProperty(filename)) {\n                                var source = this._contentsMap[filename];\n                                if (this._contentsIgnoredCharsMap[filename]) {\n                                    source = source.slice(this._contentsIgnoredCharsMap[filename]);\n                                }\n                                this._sourceMapGenerator.setSourceContent(this.normalizeFilename(filename), source);\n                            }\n                        }\n                    }\n\n                    this._rootNode.genCSS(context, this);\n\n                    if (this._css.length > 0) {\n                        var sourceMapURL,\n                        sourceMapContent = JSON.stringify(this._sourceMapGenerator.toJSON());\n\n                        if (this.sourceMapURL) {\n                            sourceMapURL = this.sourceMapURL;\n                        } else if (this._sourceMapFilename) {\n                            sourceMapURL = this._sourceMapFilename;\n                        }\n                        this.sourceMapURL = sourceMapURL;\n\n                        this.sourceMap = sourceMapContent;\n                    }\n\n                    return this._css.join('');\n                };\n\n                return SourceMapOutput;\n            };\n\n        }, {}\n        ],\n        42: [function(require, module, exports) {\n            var contexts = require(\"./contexts\"),\n            visitor = require(\"./visitors\"),\n            tree = require(\"./tree\");\n\n            module.exports = function(root, options) {\n                options = options || {};\n                var evaldRoot,\n                variables = options.variables,\n                evalEnv = new contexts.Eval(options);\n\n                //\n                // Allows setting variables with a hash, so:\n                //\n                //   `{ color: new tree.Color('#f01') }` will become:\n                //\n                //   new tree.Rule('@color',\n                //     new tree.Value([\n                //       new tree.Expression([\n                //         new tree.Color('#f01')\n                //       ])\n                //     ])\n                //   )\n                //\n                if (typeof variables === 'object' && !Array.isArray(variables)) {\n                    variables = Object.keys(variables).map(function (k) {\n                        var value = variables[k];\n\n                        if (! (value instanceof tree.Value)) {\n                            if (! (value instanceof tree.Expression)) {\n                                value = new tree.Expression([value]);\n                            }\n                            value = new tree.Value([value]);\n                        }\n                        return new tree.Rule('@' + k, value, false, null, 0);\n                    });\n                    evalEnv.frames = [new tree.Ruleset(null, variables)];\n                }\n\n                var preEvalVisitors = [],\n                visitors = [\n                new visitor.JoinSelectorVisitor(),\n                new visitor.ExtendVisitor(),\n                new visitor.ToCSSVisitor({\n                    compress: Boolean(options.compress)\n                })\n                ], i;\n\n                if (options.pluginManager) {\n                    var pluginVisitors = options.pluginManager.getVisitors();\n                    for (i = 0; i < pluginVisitors.length; i++) {\n                        var pluginVisitor = pluginVisitors[i];\n                        if (pluginVisitor.isPreEvalVisitor) {\n                            preEvalVisitors.push(pluginVisitor);\n                        } else {\n                            if (pluginVisitor.isPreVisitor) {\n                                visitors.splice(0, 0, pluginVisitor);\n                            } else {\n                                visitors.push(pluginVisitor);\n                            }\n                        }\n                    }\n                }\n\n                for (i = 0; i < preEvalVisitors.length; i++) {\n                    preEvalVisitors[i].run(root);\n                }\n\n                evaldRoot = root.eval(evalEnv);\n\n                for (i = 0; i < visitors.length; i++) {\n                    visitors[i].run(evaldRoot);\n                }\n\n                return evaldRoot;\n            };\n\n        }, {\n            \"./contexts\": 10,\n            \"./tree\": 60,\n            \"./visitors\": 85\n        }\n        ],\n        43: [function(require, module, exports) {\n            var Node = require(\"./node\");\n\n            var Alpha = function (val) {\n                this.value = val;\n            };\n            Alpha.prototype = new Node();\n            Alpha.prototype.type = \"Alpha\";\n\n            Alpha.prototype.accept = function (visitor) {\n                this.value = visitor.visit(this.value);\n            };\n            Alpha.prototype.eval = function (context) {\n                if (this.value.eval) {\n                    return new Alpha(this.value.eval(context));\n                }\n                return this;\n            };\n            Alpha.prototype.genCSS = function (context, output) {\n                output.add(\"alpha(opacity=\");\n\n                if (this.value.genCSS) {\n                    this.value.genCSS(context, output);\n                } else {\n                    output.add(this.value);\n                }\n\n                output.add(\")\");\n            };\n\n            module.exports = Alpha;\n\n        }, {\n            \"./node\": 68\n        }\n        ],\n        44: [function(require, module, exports) {\n            var Node = require(\"./node\");\n\n            var Anonymous = function (value, index, currentFileInfo, mapLines, rulesetLike) {\n                this.value = value;\n                this.index = index;\n                this.mapLines = mapLines;\n                this.currentFileInfo = currentFileInfo;\n                this.rulesetLike = (typeof rulesetLike === 'undefined') ? false : rulesetLike;\n            };\n            Anonymous.prototype = new Node();\n            Anonymous.prototype.type = \"Anonymous\";\n            Anonymous.prototype.eval = function () {\n                return new Anonymous(this.value, this.index, this.currentFileInfo, this.mapLines, this.rulesetLike);\n            };\n            Anonymous.prototype.compare = function (other) {\n                return other.toCSS && this.toCSS() === other.toCSS() ? 0 : undefined;\n            };\n            Anonymous.prototype.isRulesetLike = function() {\n                return this.rulesetLike;\n            };\n            Anonymous.prototype.genCSS = function (context, output) {\n                output.add(this.value, this.currentFileInfo, this.index, this.mapLines);\n            };\n            module.exports = Anonymous;\n\n        }, {\n            \"./node\": 68\n        }\n        ],\n        45: [function(require, module, exports) {\n            var Node = require(\"./node\");\n\n            var Assignment = function (key, val) {\n                this.key = key;\n                this.value = val;\n            };\n\n            Assignment.prototype = new Node();\n            Assignment.prototype.type = \"Assignment\";\n            Assignment.prototype.accept = function (visitor) {\n                this.value = visitor.visit(this.value);\n            };\n            Assignment.prototype.eval = function (context) {\n                if (this.value.eval) {\n                    return new Assignment(this.key, this.value.eval(context));\n                }\n                return this;\n            };\n            Assignment.prototype.genCSS = function (context, output) {\n                output.add(this.key + '=');\n                if (this.value.genCSS) {\n                    this.value.genCSS(context, output);\n                } else {\n                    output.add(this.value);\n                }\n            };\n            module.exports = Assignment;\n\n        }, {\n            \"./node\": 68\n        }\n        ],\n        46: [function(require, module, exports) {\n            var Node = require(\"./node\");\n\n            var Attribute = function (key, op, value) {\n                this.key = key;\n                this.op = op;\n                this.value = value;\n            };\n            Attribute.prototype = new Node();\n            Attribute.prototype.type = \"Attribute\";\n            Attribute.prototype.eval = function (context) {\n                return new Attribute(this.key.eval ? this.key.eval(context) : this.key,\n                this.op, (this.value && this.value.eval) ? this.value.eval(context) : this.value);\n            };\n            Attribute.prototype.genCSS = function (context, output) {\n                output.add(this.toCSS(context));\n            };\n            Attribute.prototype.toCSS = function (context) {\n                var value = this.key.toCSS ? this.key.toCSS(context) : this.key;\n\n                if (this.op) {\n                    value += this.op;\n                    value += (this.value.toCSS ? this.value.toCSS(context) : this.value);\n                }\n\n                return '[' + value + ']';\n            };\n            module.exports = Attribute;\n\n        }, {\n            \"./node\": 68\n        }\n        ],\n        47: [function(require, module, exports) {\n            var Node = require(\"./node\"),\n            FunctionCaller = require(\"../functions/function-caller\");\n            //\n            // A function call node.\n            //\n            var Call = function (name, args, index, currentFileInfo) {\n                this.name = name;\n                this.args = args;\n                this.index = index;\n                this.currentFileInfo = currentFileInfo;\n            };\n            Call.prototype = new Node();\n            Call.prototype.type = \"Call\";\n            Call.prototype.accept = function (visitor) {\n                if (this.args) {\n                    this.args = visitor.visitArray(this.args);\n                }\n            };\n            //\n            // When evaluating a function call,\n            // we either find the function in the functionRegistry,\n            // in which case we call it, passing the  evaluated arguments,\n            // if this returns null or we cannot find the function, we\n            // simply print it out as it appeared originally [2].\n            //\n            // The reason why we evaluate the arguments, is in the case where\n            // we try to pass a variable to a function, like: `saturate(@color)`.\n            // The function should receive the value, not the variable.\n            //\n            Call.prototype.eval = function (context) {\n                var args = this.args.map(function (a) {\n                    return a.eval(context);\n                }),\n                result, funcCaller = new FunctionCaller(this.name, context, this.index, this.currentFileInfo);\n\n                if (funcCaller.isValid()) {\n                    // 1.\n                    try {\n                        result = funcCaller.call(args);\n                        if (result != null) {\n                            return result;\n                        }\n                    } catch (e) {\n                        throw {\n                            type: e.type || \"Runtime\",\n                            message: \"error evaluating function `\" + this.name + \"`\" +\n                            (e.message ? ': ' + e.message : ''),\n                            index: this.index,\n                            filename: this.currentFileInfo.filename \n                        };\n                    }\n                }\n\n                return new Call(this.name, args, this.index, this.currentFileInfo);\n            };\n            Call.prototype.genCSS = function (context, output) {\n                output.add(this.name + \"(\", this.currentFileInfo, this.index);\n\n                for (var i = 0; i < this.args.length; i++) {\n                    this.args[i].genCSS(context, output);\n                    if (i + 1 < this.args.length) {\n                        output.add(\", \");\n                    }\n                }\n\n                output.add(\")\");\n            };\n            module.exports = Call;\n\n        }, {\n            \"../functions/function-caller\": 20,\n            \"./node\": 68\n        }\n        ],\n        48: [function(require, module, exports) {\n            var Node = require(\"./node\"),\n            colors = require(\"../data/colors\");\n\n            //\n            // RGB Colors - #ff0014, #eee\n            //\n            var Color = function (rgb, a) {\n                //\n                // The end goal here, is to parse the arguments\n                // into an integer triplet, such as `128, 255, 0`\n                //\n                // This facilitates operations and conversions.\n                //\n                if (Array.isArray(rgb)) {\n                    this.rgb = rgb;\n                } else if (rgb.length == 6) {\n                    this.rgb = rgb.match(/.{2}/g).map(function (c) {\n                        return parseInt(c, 16);\n                    });\n                } else {\n                    this.rgb = rgb.split('').map(function (c) {\n                        return parseInt(c + c, 16);\n                    });\n                }\n                this.alpha = typeof a === 'number' ? a : 1;\n            };\n\n            Color.prototype = new Node();\n            Color.prototype.type = \"Color\";\n\n            function clamp(v, max) {\n                return Math.min(Math.max(v, 0), max);\n            }\n\n            function toHex(v) {\n                return '#' + v.map(function (c) {\n                    c = clamp(Math.round(c), 255);\n                    return (c < 16 ? '0' : '') + c.toString(16);\n                }).join('');\n            }\n\n            Color.prototype.luma = function () {\n                var r = this.rgb[0] / 255,\n                g = this.rgb[1] / 255,\n                b = this.rgb[2] / 255;\n\n                r = (r <= 0.03928) ? r / 12.92 : Math.pow(((r + 0.055) / 1.055), 2.4);\n                g = (g <= 0.03928) ? g / 12.92 : Math.pow(((g + 0.055) / 1.055), 2.4);\n                b = (b <= 0.03928) ? b / 12.92 : Math.pow(((b + 0.055) / 1.055), 2.4);\n\n                return 0.2126 * r + 0.7152 * g + 0.0722 * b;\n            };\n            Color.prototype.genCSS = function (context, output) {\n                output.add(this.toCSS(context));\n            };\n            Color.prototype.toCSS = function (context, doNotCompress) {\n                var compress = context && context.compress && !doNotCompress, color, alpha;\n\n                // `value` is set if this color was originally\n                // converted from a named color string so we need\n                // to respect this and try to output named color too.\n                if (this.value) {\n                    return this.value;\n                }\n\n                // If we have some transparency, the only way to represent it\n                // is via `rgba`. Otherwise, we use the hex representation,\n                // which has better compatibility with older browsers.\n                // Values are capped between `0` and `255`, rounded and zero-padded.\n                alpha = this.fround(context, this.alpha);\n                if (alpha < 1) {\n                    return \"rgba(\" + this.rgb.map(function (c) {\n                        return clamp(Math.round(c), 255);\n                    }).concat(clamp(alpha, 1))\n                    .join(',' + (compress ? '' : ' ')) + \")\";\n                }\n\n                color = this.toRGB();\n\n                if (compress) {\n                    var splitcolor = color.split('');\n\n                    // Convert color to short format\n                    if (splitcolor[1] === splitcolor[2] && splitcolor[3] === splitcolor[4] && splitcolor[5] === splitcolor[6]) {\n                        color = '#' + splitcolor[1] + splitcolor[3] + splitcolor[5];\n                    }\n                }\n\n                return color;\n            };\n\n            //\n            // Operations have to be done per-channel, if not,\n            // channels will spill onto each other. Once we have\n            // our result, in the form of an integer triplet,\n            // we create a new Color node to hold the result.\n            //\n            Color.prototype.operate = function (context, op, other) {\n                var rgb = [];\n                var alpha = this.alpha * (1 - other.alpha) + other.alpha;\n                for (var c = 0; c < 3; c++) {\n                    rgb[c] = this._operate(context, op, this.rgb[c], other.rgb[c]);\n                }\n                return new Color(rgb, alpha);\n            };\n            Color.prototype.toRGB = function () {\n                return toHex(this.rgb);\n            };\n            Color.prototype.toHSL = function () {\n                var r = this.rgb[0] / 255,\n                g = this.rgb[1] / 255,\n                b = this.rgb[2] / 255,\n                a = this.alpha;\n\n                var max = Math.max(r, g, b), min = Math.min(r, g, b);\n                var h, s, l = (max + min) / 2, d = max - min;\n\n                if (max === min) {\n                    h = s = 0;\n                } else {\n                    s = l > 0.5 ? d / (2 - max - min) : d / (max + min);\n\n                    switch (max) {\n                    case r:\n                        h = (g - b) / d + (g < b ? 6 : 0);\n                        break;\n                    case g:\n                        h = (b - r) / d + 2;\n                        break;\n                    case b:\n                        h = (r - g) / d + 4;\n                        break;\n                    }\n                    h /= 6;\n                }\n                return {\n                    h: h * 360,\n                    s: s,\n                    l: l,\n                    a: a \n                };\n            };\n            //Adapted from http://mjijackson.com/2008/02/rgb-to-hsl-and-rgb-to-hsv-color-model-conversion-algorithms-in-javascript\n            Color.prototype.toHSV = function () {\n                var r = this.rgb[0] / 255,\n                g = this.rgb[1] / 255,\n                b = this.rgb[2] / 255,\n                a = this.alpha;\n\n                var max = Math.max(r, g, b), min = Math.min(r, g, b);\n                var h, s, v = max;\n\n                var d = max - min;\n                if (max === 0) {\n                    s = 0;\n                } else {\n                    s = d / max;\n                }\n\n                if (max === min) {\n                    h = 0;\n                } else {\n                    switch (max) {\n                    case r:\n                        h = (g - b) / d + (g < b ? 6 : 0);\n                        break;\n                    case g:\n                        h = (b - r) / d + 2;\n                        break;\n                    case b:\n                        h = (r - g) / d + 4;\n                        break;\n                    }\n                    h /= 6;\n                }\n                return {\n                    h: h * 360,\n                    s: s,\n                    v: v,\n                    a: a \n                };\n            };\n            Color.prototype.toARGB = function () {\n                return toHex([this.alpha * 255].concat(this.rgb));\n            };\n            Color.prototype.compare = function (x) {\n                return (x.rgb &&\n                x.rgb[0] === this.rgb[0] &&\n                x.rgb[1] === this.rgb[1] &&\n                x.rgb[2] === this.rgb[2] &&\n                x.alpha === this.alpha) ? 0 : undefined;\n            };\n\n            Color.fromKeyword = function(keyword) {\n                var c, key = keyword.toLowerCase();\n                if (colors.hasOwnProperty(key)) {\n                    c = new Color(colors[key].slice(1));\n                } else if (key === \"transparent\") {\n                    c = new Color([0, 0, 0], 0);\n                }\n\n                if (c) {\n                    c.value = keyword;\n                    return c;\n                }\n            };\n            module.exports = Color;\n\n        }, {\n            \"../data/colors\": 11,\n            \"./node\": 68\n        }\n        ],\n        49: [function(require, module, exports) {\n            var Node = require(\"./node\");\n\n            var Combinator = function (value) {\n                if (value === ' ') {\n                    this.value = ' ';\n                    this.emptyOrWhitespace = true;\n                } else {\n                    this.value = value ? value.trim() : \"\";\n                    this.emptyOrWhitespace = this.value === \"\";\n                }\n            };\n            Combinator.prototype = new Node();\n            Combinator.prototype.type = \"Combinator\";\n            var _noSpaceCombinators = {\n                '': true,\n                ' ': true,\n                '|': true\n            };\n            Combinator.prototype.genCSS = function (context, output) {\n                var spaceOrEmpty = (context.compress || _noSpaceCombinators[this.value]) ? '' : ' ';\n                output.add(spaceOrEmpty + this.value + spaceOrEmpty);\n            };\n            module.exports = Combinator;\n\n        }, {\n            \"./node\": 68\n        }\n        ],\n        50: [function(require, module, exports) {\n            var Node = require(\"./node\"),\n            getDebugInfo = require(\"./debug-info\");\n\n            var Comment = function (value, isLineComment, index, currentFileInfo) {\n                this.value = value;\n                this.isLineComment = isLineComment;\n                this.currentFileInfo = currentFileInfo;\n            };\n            Comment.prototype = new Node();\n            Comment.prototype.type = \"Comment\";\n            Comment.prototype.genCSS = function (context, output) {\n                if (this.debugInfo) {\n                    output.add(getDebugInfo(context, this), this.currentFileInfo, this.index);\n                }\n                output.add(this.value);\n            };\n            Comment.prototype.isSilent = function(context) {\n                var isReference = (this.currentFileInfo && this.currentFileInfo.reference && !this.isReferenced),\n                isCompressed = context.compress && this.value[2] !== \"!\";\n                return this.isLineComment || isReference || isCompressed;\n            };\n            Comment.prototype.markReferenced = function () {\n                this.isReferenced = true;\n            };\n            module.exports = Comment;\n\n        }, {\n            \"./debug-info\": 52,\n            \"./node\": 68\n        }\n        ],\n        51: [function(require, module, exports) {\n            var Node = require(\"./node\");\n\n            var Condition = function (op, l, r, i, negate) {\n                this.op = op.trim();\n                this.lvalue = l;\n                this.rvalue = r;\n                this.index = i;\n                this.negate = negate;\n            };\n            Condition.prototype = new Node();\n            Condition.prototype.type = \"Condition\";\n            Condition.prototype.accept = function (visitor) {\n                this.lvalue = visitor.visit(this.lvalue);\n                this.rvalue = visitor.visit(this.rvalue);\n            };\n            Condition.prototype.eval = function (context) {\n                var result = (function (op, a, b) {\n                    switch (op) {\n                    case 'and':\n                        return a && b;\n                    case 'or':\n                        return a || b;\n                    default:\n                        switch (Node.compare(a, b)) {\n                        case - 1:\n                            return op === '<' || op === '=<' || op === '<=';\n                        case 0:\n                            return op === '=' || op === '>=' || op === '=<' || op === '<=';\n                        case 1:\n                            return op === '>' || op === '>=';\n                        default:\n                            return false;\n                        }\n                    }\n                })(this.op, this.lvalue.eval(context), this.rvalue.eval(context));\n\n                return this.negate ? !result : result;\n            };\n            module.exports = Condition;\n\n        }, {\n            \"./node\": 68\n        }\n        ],\n        52: [function(require, module, exports) {\n            var debugInfo = function(context, ctx, lineSeparator) {\n                var result = \"\";\n                if (context.dumpLineNumbers && !context.compress) {\n                    switch (context.dumpLineNumbers) {\n                    case 'comments':\n                        result = debugInfo.asComment(ctx);\n                        break;\n                    case 'mediaquery':\n                        result = debugInfo.asMediaQuery(ctx);\n                        break;\n                    case 'all':\n                        result = debugInfo.asComment(ctx) + (lineSeparator || \"\") + debugInfo.asMediaQuery(ctx);\n                        break;\n                    }\n                }\n                return result;\n            };\n\n            debugInfo.asComment = function(ctx) {\n                return '/* line ' + ctx.debugInfo.lineNumber + ', ' + ctx.debugInfo.fileName + ' */\\n';\n            };\n\n            debugInfo.asMediaQuery = function(ctx) {\n                var filenameWithProtocol = ctx.debugInfo.fileName;\n                if (!/^[a-z]+:\\/\\//i.test(filenameWithProtocol)) {\n                    filenameWithProtocol = 'file://' + filenameWithProtocol;\n                }\n                return '@media -sass-debug-info{filename{font-family:' +\n                filenameWithProtocol.replace(/([.:\\/\\\\])/g, function (a) {\n                    if (a == '\\\\') {\n                        a = '\\/';\n                    }\n                    return '\\\\' + a;\n                }) +\n                '}line{font-family:\\\\00003' + ctx.debugInfo.lineNumber + '}}\\n';\n            };\n\n            module.exports = debugInfo;\n\n        }, {}\n        ],\n        53: [function(require, module, exports) {\n            var Node = require(\"./node\"),\n            contexts = require(\"../contexts\");\n\n            var DetachedRuleset = function (ruleset, frames) {\n                this.ruleset = ruleset;\n                this.frames = frames;\n            };\n            DetachedRuleset.prototype = new Node();\n            DetachedRuleset.prototype.type = \"DetachedRuleset\";\n            DetachedRuleset.prototype.evalFirst = true;\n            DetachedRuleset.prototype.accept = function (visitor) {\n                this.ruleset = visitor.visit(this.ruleset);\n            };\n            DetachedRuleset.prototype.eval = function (context) {\n                var frames = this.frames || context.frames.slice(0);\n                return new DetachedRuleset(this.ruleset, frames);\n            };\n            DetachedRuleset.prototype.callEval = function (context) {\n                return this.ruleset.eval(this.frames ? new contexts.Eval(context, this.frames.concat(context.frames)) : context);\n            };\n            module.exports = DetachedRuleset;\n\n        }, {\n            \"../contexts\": 10,\n            \"./node\": 68\n        }\n        ],\n        54: [function(require, module, exports) {\n            var Node = require(\"./node\"),\n            unitConversions = require(\"../data/unit-conversions\"),\n            Unit = require(\"./unit\"),\n            Color = require(\"./color\");\n\n            //\n            // A number with a unit\n            //\n            var Dimension = function (value, unit) {\n                this.value = parseFloat(value);\n                this.unit = (unit && unit instanceof Unit) ? unit :\n                new Unit(unit ? [unit] : undefined);\n            };\n\n            Dimension.prototype = new Node();\n            Dimension.prototype.type = \"Dimension\";\n            Dimension.prototype.accept = function (visitor) {\n                this.unit = visitor.visit(this.unit);\n            };\n            Dimension.prototype.eval = function (context) {\n                return this;\n            };\n            Dimension.prototype.toColor = function () {\n                return new Color([this.value, this.value, this.value]);\n            };\n            Dimension.prototype.genCSS = function (context, output) {\n                if ((context && context.strictUnits) && !this.unit.isSingular()) {\n                    throw new Error(\"Multiple units in dimension. Correct the units or use the unit function. Bad unit: \" + this.unit.toString());\n                }\n\n                var value = this.fround(context, this.value),\n                strValue = String(value);\n\n                if (value !== 0 && value < 0.000001 && value > - 0.000001) {\n                    // would be output 1e-6 etc.\n                    strValue = value.toFixed(20).replace(/0+$/, \"\");\n                }\n\n                if (context && context.compress) {\n                    // Zero values doesn't need a unit\n                    if (value === 0 && this.unit.isLength()) {\n                        output.add(strValue);\n                        return;\n                    }\n\n                    // Float values doesn't need a leading zero\n                    if (value > 0 && value < 1) {\n                        strValue = (strValue).substr(1);\n                    }\n                }\n\n                output.add(strValue);\n                this.unit.genCSS(context, output);\n            };\n\n            // In an operation between two Dimensions,\n            // we default to the first Dimension's unit,\n            // so `1px + 2` will yield `3px`.\n            Dimension.prototype.operate = function (context, op, other) {\n                /*jshint noempty:false */\n                var value = this._operate(context, op, this.value, other.value),\n                unit = this.unit.clone();\n\n                if (op === '+' || op === '-') {\n                    if (unit.numerator.length === 0 && unit.denominator.length === 0) {\n                        unit = other.unit.clone();\n                        if (this.unit.backupUnit) {\n                            unit.backupUnit = this.unit.backupUnit;\n                        }\n                    } else if (other.unit.numerator.length === 0 && unit.denominator.length === 0) {\n                        // do nothing\n                    } else {\n                        other = other.convertTo(this.unit.usedUnits());\n\n                        if (context.strictUnits && other.unit.toString() !== unit.toString()) {\n                            throw new Error(\"Incompatible units. Change the units or use the unit function. Bad units: '\" + unit.toString() +\n                            \"' and '\" + other.unit.toString() + \"'.\");\n                        }\n\n                        value = this._operate(context, op, this.value, other.value);\n                    }\n                } else if (op === '*') {\n                    unit.numerator = unit.numerator.concat(other.unit.numerator).sort();\n                    unit.denominator = unit.denominator.concat(other.unit.denominator).sort();\n                    unit.cancel();\n                } else if (op === '/') {\n                    unit.numerator = unit.numerator.concat(other.unit.denominator).sort();\n                    unit.denominator = unit.denominator.concat(other.unit.numerator).sort();\n                    unit.cancel();\n                }\n                return new Dimension(value, unit);\n            };\n            Dimension.prototype.compare = function (other) {\n                var a, b;\n\n                if (!(other instanceof Dimension)) {\n                    return undefined;\n                }\n\n                if (this.unit.isEmpty() || other.unit.isEmpty()) {\n                    a = this;\n                    b = other;\n                } else {\n                    a = this.unify();\n                    b = other.unify();\n                    if (a.unit.compare(b.unit) !== 0) {\n                        return undefined;\n                    }\n                }\n\n                return Node.numericCompare(a.value, b.value);\n            };\n            Dimension.prototype.unify = function () {\n                return this.convertTo({\n                    length: 'px',\n                    duration: 's',\n                    angle: 'rad' \n                });\n            };\n            Dimension.prototype.convertTo = function (conversions) {\n                var value = this.value, unit = this.unit.clone(),\n                i, groupName, group, targetUnit, derivedConversions = {}, applyUnit;\n\n                if (typeof conversions === 'string') {\n                    for (i in unitConversions) {\n                        if (unitConversions[i].hasOwnProperty(conversions)) {\n                            derivedConversions = {};\n                            derivedConversions[i] = conversions;\n                        }\n                    }\n                    conversions = derivedConversions;\n                }\n                applyUnit = function (atomicUnit, denominator) {\n                    /* jshint loopfunc:true */\n                    if (group.hasOwnProperty(atomicUnit)) {\n                        if (denominator) {\n                            value = value / (group[atomicUnit] / group[targetUnit]);\n                        } else {\n                            value = value * (group[atomicUnit] / group[targetUnit]);\n                        }\n\n                        return targetUnit;\n                    }\n\n                    return atomicUnit;\n                };\n\n                for (groupName in conversions) {\n                    if (conversions.hasOwnProperty(groupName)) {\n                        targetUnit = conversions[groupName];\n                        group = unitConversions[groupName];\n\n                        unit.map(applyUnit);\n                    }\n                }\n\n                unit.cancel();\n\n                return new Dimension(value, unit);\n            };\n            module.exports = Dimension;\n\n        }, {\n            \"../data/unit-conversions\": 13,\n            \"./color\": 48,\n            \"./node\": 68,\n            \"./unit\": 77\n        }\n        ],\n        55: [function(require, module, exports) {\n            var Node = require(\"./node\"),\n            Selector = require(\"./selector\"),\n            Ruleset = require(\"./ruleset\");\n\n            var Directive = function (name, value, rules, index, currentFileInfo, debugInfo, isReferenced, isRooted) {\n                var i;\n\n                this.name = name;\n                this.value = value;\n                if (rules) {\n                    if (Array.isArray(rules)) {\n                        this.rules = rules;\n                    } else {\n                        this.rules = [rules];\n                        this.rules[0].selectors = (new Selector([], null, null, this.index, currentFileInfo)).createEmptySelectors();\n                    }\n                    for (i = 0; i < this.rules.length; i++) {\n                        this.rules[i].allowImports = true;\n                    }\n                }\n                this.index = index;\n                this.currentFileInfo = currentFileInfo;\n                this.debugInfo = debugInfo;\n                this.isReferenced = isReferenced;\n                this.isRooted = isRooted || false;\n            };\n\n            Directive.prototype = new Node();\n            Directive.prototype.type = \"Directive\";\n            Directive.prototype.accept = function (visitor) {\n                var value = this.value, rules = this.rules;\n                if (rules) {\n                    this.rules = visitor.visitArray(rules);\n                }\n                if (value) {\n                    this.value = visitor.visit(value);\n                }\n            };\n            Directive.prototype.isRulesetLike = function() {\n                return this.rules || !this.isCharset();\n            };\n            Directive.prototype.isCharset = function() {\n                return \"@charset\" === this.name;\n            };\n            Directive.prototype.genCSS = function (context, output) {\n                var value = this.value, rules = this.rules;\n                output.add(this.name, this.currentFileInfo, this.index);\n                if (value) {\n                    output.add(' ');\n                    value.genCSS(context, output);\n                }\n                if (rules) {\n                    this.outputRuleset(context, output, rules);\n                } else {\n                    output.add(';');\n                }\n            };\n            Directive.prototype.eval = function (context) {\n                var mediaPathBackup, mediaBlocksBackup, value = this.value, rules = this.rules;\n\n                //media stored inside other directive should not bubble over it\n                //backpup media bubbling information\n                mediaPathBackup = context.mediaPath;\n                mediaBlocksBackup = context.mediaBlocks;\n                //deleted media bubbling information\n                context.mediaPath = [];\n                context.mediaBlocks = [];\n\n                if (value) {\n                    value = value.eval(context);\n                }\n                if (rules) {\n                    // assuming that there is only one rule at this point - that is how parser constructs the rule\n                    rules = [rules[0].eval(context)];\n                    rules[0].root = true;\n                }\n                //restore media bubbling information\n                context.mediaPath = mediaPathBackup;\n                context.mediaBlocks = mediaBlocksBackup;\n\n                return new Directive(this.name, value, rules,\n                this.index, this.currentFileInfo, this.debugInfo, this.isReferenced, this.isRooted);\n            };\n            Directive.prototype.variable = function (name) {\n                if (this.rules) {\n                    // assuming that there is only one rule at this point - that is how parser constructs the rule\n                    return Ruleset.prototype.variable.call(this.rules[0], name);\n                }\n            };\n            Directive.prototype.find = function () {\n                if (this.rules) {\n                    // assuming that there is only one rule at this point - that is how parser constructs the rule\n                    return Ruleset.prototype.find.apply(this.rules[0], arguments);\n                }\n            };\n            Directive.prototype.rulesets = function () {\n                if (this.rules) {\n                    // assuming that there is only one rule at this point - that is how parser constructs the rule\n                    return Ruleset.prototype.rulesets.apply(this.rules[0]);\n                }\n            };\n            Directive.prototype.markReferenced = function () {\n                var i, rules;\n                this.isReferenced = true;\n                if (this.rules) {\n                    rules = this.rules;\n                    for (i = 0; i < rules.length; i++) {\n                        if (rules[i].markReferenced) {\n                            rules[i].markReferenced();\n                        }\n                    }\n                }\n            };\n            Directive.prototype.getIsReferenced = function () {\n                return !this.currentFileInfo || !this.currentFileInfo.reference || this.isReferenced;\n            };\n            Directive.prototype.outputRuleset = function (context, output, rules) {\n                var ruleCnt = rules.length, i;\n                context.tabLevel = (context.tabLevel | 0) + 1;\n\n                // Compressed\n                if (context.compress) {\n                    output.add('{');\n                    for (i = 0; i < ruleCnt; i++) {\n                        rules[i].genCSS(context, output);\n                    }\n                    output.add('}');\n                    context.tabLevel--;\n                    return;\n                }\n\n                // Non-compressed\n                var tabSetStr = '\\n' + Array(context.tabLevel).join(\"  \"), tabRuleStr = tabSetStr + \"  \";\n                if (!ruleCnt) {\n                    output.add(\" {\" + tabSetStr + '}');\n                } else {\n                    output.add(\" {\" + tabRuleStr);\n                    rules[0].genCSS(context, output);\n                    for (i = 1; i < ruleCnt; i++) {\n                        output.add(tabRuleStr);\n                        rules[i].genCSS(context, output);\n                    }\n                    output.add(tabSetStr + '}');\n                }\n\n                context.tabLevel--;\n            };\n            module.exports = Directive;\n\n        }, {\n            \"./node\": 68,\n            \"./ruleset\": 74,\n            \"./selector\": 75\n        }\n        ],\n        56: [function(require, module, exports) {\n            var Node = require(\"./node\"),\n            Paren = require(\"./paren\"),\n            Combinator = require(\"./combinator\");\n\n            var Element = function (combinator, value, index, currentFileInfo) {\n                this.combinator = combinator instanceof Combinator ?\n                combinator : new Combinator(combinator);\n\n                if (typeof value === 'string') {\n                    this.value = value.trim();\n                } else if (value) {\n                    this.value = value;\n                } else {\n                    this.value = \"\";\n                }\n                this.index = index;\n                this.currentFileInfo = currentFileInfo;\n            };\n            Element.prototype = new Node();\n            Element.prototype.type = \"Element\";\n            Element.prototype.accept = function (visitor) {\n                var value = this.value;\n                this.combinator = visitor.visit(this.combinator);\n                if (typeof value === \"object\") {\n                    this.value = visitor.visit(value);\n                }\n            };\n            Element.prototype.eval = function (context) {\n                return new Element(this.combinator,\n                this.value.eval ? this.value.eval(context) : this.value,\n                this.index,\n                this.currentFileInfo);\n            };\n            Element.prototype.genCSS = function (context, output) {\n                output.add(this.toCSS(context), this.currentFileInfo, this.index);\n            };\n            Element.prototype.toCSS = function (context) {\n                context = context || {};\n                var value = this.value, firstSelector = context.firstSelector;\n                if (value instanceof Paren) {\n                    // selector in parens should not be affected by outer selector\n                    // flags (breaks only interpolated selectors - see #1973)\n                    context.firstSelector = true;\n                }\n                value = value.toCSS ? value.toCSS(context) : value;\n                context.firstSelector = firstSelector;\n                if (value === '' && this.combinator.value.charAt(0) === '&') {\n                    return '';\n                } else {\n                    return this.combinator.toCSS(context) + value;\n                }\n            };\n            module.exports = Element;\n\n        }, {\n            \"./combinator\": 49,\n            \"./node\": 68,\n            \"./paren\": 70\n        }\n        ],\n        57: [function(require, module, exports) {\n            var Node = require(\"./node\"),\n            Paren = require(\"./paren\"),\n            Comment = require(\"./comment\");\n\n            var Expression = function (value) {\n                this.value = value;\n                if (!value) {\n                    throw new Error(\"Expression requires an array parameter\");\n                }\n            };\n            Expression.prototype = new Node();\n            Expression.prototype.type = \"Expression\";\n            Expression.prototype.accept = function (visitor) {\n                this.value = visitor.visitArray(this.value);\n            };\n            Expression.prototype.eval = function (context) {\n                var returnValue,\n                inParenthesis = this.parens && !this.parensInOp,\n                doubleParen = false;\n                if (inParenthesis) {\n                    context.inParenthesis();\n                }\n                if (this.value.length > 1) {\n                    returnValue = new Expression(this.value.map(function (e) {\n                        return e.eval(context);\n                    }));\n                } else if (this.value.length === 1) {\n                    if (this.value[0].parens && !this.value[0].parensInOp) {\n                        doubleParen = true;\n                    }\n                    returnValue = this.value[0].eval(context);\n                } else {\n                    returnValue = this;\n                }\n                if (inParenthesis) {\n                    context.outOfParenthesis();\n                }\n                if (this.parens && this.parensInOp && !(context.isMathOn()) && !doubleParen) {\n                    returnValue = new Paren(returnValue);\n                }\n                return returnValue;\n            };\n            Expression.prototype.genCSS = function (context, output) {\n                for (var i = 0; i < this.value.length; i++) {\n                    this.value[i].genCSS(context, output);\n                    if (i + 1 < this.value.length) {\n                        output.add(\" \");\n                    }\n                }\n            };\n            Expression.prototype.throwAwayComments = function () {\n                this.value = this.value.filter(function(v) {\n                    return !(v instanceof Comment);\n                });\n            };\n            module.exports = Expression;\n\n        }, {\n            \"./comment\": 50,\n            \"./node\": 68,\n            \"./paren\": 70\n        }\n        ],\n        58: [function(require, module, exports) {\n            var Node = require(\"./node\");\n\n            var Extend = function Extend(selector, option, index) {\n                this.selector = selector;\n                this.option = option;\n                this.index = index;\n                this.object_id = Extend.next_id++;\n                this.parent_ids = [this.object_id];\n\n                switch (option) {\n                case \"all\":\n                    this.allowBefore = true;\n                    this.allowAfter = true;\n                    break;\n                default:\n                    this.allowBefore = false;\n                    this.allowAfter = false;\n                    break;\n                }\n            };\n            Extend.next_id = 0;\n\n            Extend.prototype = new Node();\n            Extend.prototype.type = \"Extend\";\n            Extend.prototype.accept = function (visitor) {\n                this.selector = visitor.visit(this.selector);\n            };\n            Extend.prototype.eval = function (context) {\n                return new Extend(this.selector.eval(context), this.option, this.index);\n            };\n            Extend.prototype.clone = function (context) {\n                return new Extend(this.selector, this.option, this.index);\n            };\n            Extend.prototype.findSelfSelectors = function (selectors) {\n                var selfElements = [],\n                i,\n                selectorElements;\n\n                for (i = 0; i < selectors.length; i++) {\n                    selectorElements = selectors[i].elements;\n                    // duplicate the logic in genCSS function inside the selector node.\n                    // future TODO - move both logics into the selector joiner visitor\n                    if (i > 0 && selectorElements.length && selectorElements[0].combinator.value === \"\") {\n                        selectorElements[0].combinator.value = ' ';\n                    }\n                    selfElements = selfElements.concat(selectors[i].elements);\n                }\n\n                this.selfSelectors = [{\n                    elements: selfElements \n                }\n                ];\n            };\n            module.exports = Extend;\n\n        }, {\n            \"./node\": 68\n        }\n        ],\n        59: [function(require, module, exports) {\n            var Node = require(\"./node\"),\n            Media = require(\"./media\"),\n            URL = require(\"./url\"),\n            Quoted = require(\"./quoted\"),\n            Ruleset = require(\"./ruleset\"),\n            Anonymous = require(\"./anonymous\");\n\n            //\n            // CSS @import node\n            //\n            // The general strategy here is that we don't want to wait\n            // for the parsing to be completed, before we start importing\n            // the file. That's because in the context of a browser,\n            // most of the time will be spent waiting for the server to respond.\n            //\n            // On creation, we push the import path to our import queue, though\n            // `import,push`, we also pass it a callback, which it'll call once\n            // the file has been fetched, and parsed.\n            //\n            var Import = function (path, features, options, index, currentFileInfo) {\n                this.options = options;\n                this.index = index;\n                this.path = path;\n                this.features = features;\n                this.currentFileInfo = currentFileInfo;\n\n                if (this.options.less !== undefined || this.options.inline) {\n                    this.css = !this.options.less || this.options.inline;\n                } else {\n                    var pathValue = this.getPath();\n                    if (pathValue && /[#\\.\\&\\?\\/]css([\\?;].*)?$/.test(pathValue)) {\n                        this.css = true;\n                    }\n                }\n            };\n\n            //\n            // The actual import node doesn't return anything, when converted to CSS.\n            // The reason is that it's used at the evaluation stage, so that the rules\n            // it imports can be treated like any other rules.\n            //\n            // In `eval`, we make sure all Import nodes get evaluated, recursively, so\n            // we end up with a flat structure, which can easily be imported in the parent\n            // ruleset.\n            //\n            Import.prototype = new Node();\n            Import.prototype.type = \"Import\";\n            Import.prototype.accept = function (visitor) {\n                if (this.features) {\n                    this.features = visitor.visit(this.features);\n                }\n                this.path = visitor.visit(this.path);\n                if (!this.options.plugin && !this.options.inline && this.root) {\n                    this.root = visitor.visit(this.root);\n                }\n            };\n            Import.prototype.genCSS = function (context, output) {\n                if (this.css && this.path.currentFileInfo.reference === undefined) {\n                    output.add(\"@import \", this.currentFileInfo, this.index);\n                    this.path.genCSS(context, output);\n                    if (this.features) {\n                        output.add(\" \");\n                        this.features.genCSS(context, output);\n                    }\n                    output.add(';');\n                }\n            };\n            Import.prototype.getPath = function () {\n                return (this.path instanceof URL) ?\n                this.path.value.value : this.path.value;\n            };\n            Import.prototype.isVariableImport = function () {\n                var path = this.path;\n                if (path instanceof URL) {\n                    path = path.value;\n                }\n                if (path instanceof Quoted) {\n                    return path.containsVariables();\n                }\n\n                return true;\n            };\n            Import.prototype.evalForImport = function (context) {\n                var path = this.path;\n\n                if (path instanceof URL) {\n                    path = path.value;\n                }\n\n                return new Import(path.eval(context), this.features, this.options, this.index, this.currentFileInfo);\n            };\n            Import.prototype.evalPath = function (context) {\n                var path = this.path.eval(context);\n                var rootpath = this.currentFileInfo && this.currentFileInfo.rootpath;\n\n                if (!(path instanceof URL)) {\n                    if (rootpath) {\n                        var pathValue = path.value;\n                        // Add the base path if the import is relative\n                        if (pathValue && context.isPathRelative(pathValue)) {\n                            path.value = rootpath + pathValue;\n                        }\n                    }\n                    path.value = context.normalizePath(path.value);\n                }\n\n                return path;\n            };\n            Import.prototype.eval = function (context) {\n                var ruleset, registry,\n                features = this.features && this.features.eval(context);\n\n                if (this.options.plugin) {\n                    registry = context.frames[0] && context.frames[0].functionRegistry;\n                    if ( registry && this.root && this.root.functions ) {\n                        registry.addMultiple( this.root.functions );\n                    }\n                    return [];\n                }\n\n                if (this.skip) {\n                    if (typeof this.skip === \"function\") {\n                        this.skip = this.skip();\n                    }\n                    if (this.skip) {\n                        return [];\n                    }\n                }\n\n                if (this.options.inline) {\n                    var contents = new Anonymous(this.root, 0, {\n                        filename: this.importedFilename\n                    }, true, true);\n                    return this.features ? new Media([contents], this.features.value) : [contents];\n                } else if (this.css) {\n                    var newImport = new Import(this.evalPath(context), features, this.options, this.index);\n                    if (!newImport.css && this.error) {\n                        throw this.error;\n                    }\n                    return newImport;\n                } else {\n                    ruleset = new Ruleset(null, this.root.rules.slice(0));\n\n                    ruleset.evalImports(context);\n\n                    return this.features ? new Media(ruleset.rules, this.features.value) : ruleset.rules;\n                }\n            };\n            module.exports = Import;\n\n        }, {\n            \"./anonymous\": 44,\n            \"./media\": 64,\n            \"./node\": 68,\n            \"./quoted\": 71,\n            \"./ruleset\": 74,\n            \"./url\": 78\n        }\n        ],\n        60: [function(require, module, exports) {\n            var tree = {};\n\n            tree.Node = require('./node');\n            tree.Alpha = require('./alpha');\n            tree.Color = require('./color');\n            tree.Directive = require('./directive');\n            tree.DetachedRuleset = require('./detached-ruleset');\n            tree.Operation = require('./operation');\n            tree.Dimension = require('./dimension');\n            tree.Unit = require('./unit');\n            tree.Keyword = require('./keyword');\n            tree.Variable = require('./variable');\n            tree.Ruleset = require('./ruleset');\n            tree.Element = require('./element');\n            tree.Attribute = require('./attribute');\n            tree.Combinator = require('./combinator');\n            tree.Selector = require('./selector');\n            tree.Quoted = require('./quoted');\n            tree.Expression = require('./expression');\n            tree.Rule = require('./rule');\n            tree.Call = require('./call');\n            tree.URL = require('./url');\n            tree.Import = require('./import');\n            tree.mixin = {\n                Call: require('./mixin-call'),\n                Definition: require('./mixin-definition')\n            };\n            tree.Comment = require('./comment');\n            tree.Anonymous = require('./anonymous');\n            tree.Value = require('./value');\n            tree.JavaScript = require('./javascript');\n            tree.Assignment = require('./assignment');\n            tree.Condition = require('./condition');\n            tree.Paren = require('./paren');\n            tree.Media = require('./media');\n            tree.UnicodeDescriptor = require('./unicode-descriptor');\n            tree.Negative = require('./negative');\n            tree.Extend = require('./extend');\n            tree.RulesetCall = require('./ruleset-call');\n\n            module.exports = tree;\n\n        }, {\n            \"./alpha\": 43,\n            \"./anonymous\": 44,\n            \"./assignment\": 45,\n            \"./attribute\": 46,\n            \"./call\": 47,\n            \"./color\": 48,\n            \"./combinator\": 49,\n            \"./comment\": 50,\n            \"./condition\": 51,\n            \"./detached-ruleset\": 53,\n            \"./dimension\": 54,\n            \"./directive\": 55,\n            \"./element\": 56,\n            \"./expression\": 57,\n            \"./extend\": 58,\n            \"./import\": 59,\n            \"./javascript\": 61,\n            \"./keyword\": 63,\n            \"./media\": 64,\n            \"./mixin-call\": 65,\n            \"./mixin-definition\": 66,\n            \"./negative\": 67,\n            \"./node\": 68,\n            \"./operation\": 69,\n            \"./paren\": 70,\n            \"./quoted\": 71,\n            \"./rule\": 72,\n            \"./ruleset\": 74,\n            \"./ruleset-call\": 73,\n            \"./selector\": 75,\n            \"./unicode-descriptor\": 76,\n            \"./unit\": 77,\n            \"./url\": 78,\n            \"./value\": 79,\n            \"./variable\": 80\n        }\n        ],\n        61: [function(require, module, exports) {\n            var JsEvalNode = require(\"./js-eval-node\"),\n            Dimension = require(\"./dimension\"),\n            Quoted = require(\"./quoted\"),\n            Anonymous = require(\"./anonymous\");\n\n            var JavaScript = function (string, escaped, index, currentFileInfo) {\n                this.escaped = escaped;\n                this.expression = string;\n                this.index = index;\n                this.currentFileInfo = currentFileInfo;\n            };\n            JavaScript.prototype = new JsEvalNode();\n            JavaScript.prototype.type = \"JavaScript\";\n            JavaScript.prototype.eval = function(context) {\n                var result = this.evaluateJavaScript(this.expression, context);\n\n                if (typeof result === 'number') {\n                    return new Dimension(result);\n                } else if (typeof result === 'string') {\n                    return new Quoted('\"' + result + '\"', result, this.escaped, this.index);\n                } else if (Array.isArray(result)) {\n                    return new Anonymous(result.join(', '));\n                } else {\n                    return new Anonymous(result);\n                }\n            };\n\n            module.exports = JavaScript;\n\n        }, {\n            \"./anonymous\": 44,\n            \"./dimension\": 54,\n            \"./js-eval-node\": 62,\n            \"./quoted\": 71\n        }\n        ],\n        62: [function(require, module, exports) {\n            var Node = require(\"./node\"),\n            Variable = require(\"./variable\");\n\n            var JsEvalNode = function() {};\n            JsEvalNode.prototype = new Node();\n\n            JsEvalNode.prototype.evaluateJavaScript = function (expression, context) {\n                var result,\n                that = this,\n                evalContext = {};\n\n                if (context.javascriptEnabled !== undefined && !context.javascriptEnabled) {\n                    throw {\n                        message: \"You are using JavaScript, which has been disabled.\",\n                        filename: this.currentFileInfo.filename,\n                        index: this.index \n                    };\n                }\n\n                expression = expression.replace(/@\\{([\\w-]+)\\}/g, function (_, name) {\n                    return that.jsify(new Variable('@' + name, that.index, that.currentFileInfo).eval(context));\n                });\n\n                try {\n                    expression = new Function('return (' + expression + ')');\n                } catch (e) {\n                    throw {\n                        message: \"JavaScript evaluation error: \" + e.message + \" from `\" + expression + \"`\" ,\n                        filename: this.currentFileInfo.filename,\n                        index: this.index \n                    };\n                }\n\n                var variables = context.frames[0].variables();\n                for (var k in variables) {\n                    if (variables.hasOwnProperty(k)) {\n                        /*jshint loopfunc:true */\n                        evalContext[k.slice(1)] = {\n                            value: variables[k].value,\n                            toJS: function () {\n                                return this.value.eval(context).toCSS();\n                            }\n                        };\n                    }\n                }\n\n                try {\n                    result = expression.call(evalContext);\n                } catch (e) {\n                    throw {\n                        message: \"JavaScript evaluation error: '\" + e.name + ': ' + e.message.replace(/[\"]/g, \"'\") + \"'\" ,\n                        filename: this.currentFileInfo.filename,\n                        index: this.index \n                    };\n                }\n                return result;\n            };\n            JsEvalNode.prototype.jsify = function (obj) {\n                if (Array.isArray(obj.value) && (obj.value.length > 1)) {\n                    return '[' + obj.value.map(function (v) {\n                        return v.toCSS();\n                    }).join(', ') + ']';\n                } else {\n                    return obj.toCSS();\n                }\n            };\n\n            module.exports = JsEvalNode;\n\n        }, {\n            \"./node\": 68,\n            \"./variable\": 80\n        }\n        ],\n        63: [function(require, module, exports) {\n            var Node = require(\"./node\");\n\n            var Keyword = function (value) {\n                this.value = value;\n            };\n            Keyword.prototype = new Node();\n            Keyword.prototype.type = \"Keyword\";\n            Keyword.prototype.genCSS = function (context, output) {\n                if (this.value === '%') {\n                    throw {\n                        type: \"Syntax\",\n                        message: \"Invalid % without number\" \n                    };\n                }\n                output.add(this.value);\n            };\n\n            Keyword.True = new Keyword('true');\n            Keyword.False = new Keyword('false');\n\n            module.exports = Keyword;\n\n        }, {\n            \"./node\": 68\n        }\n        ],\n        64: [function(require, module, exports) {\n            var Ruleset = require(\"./ruleset\"),\n            Value = require(\"./value\"),\n            Selector = require(\"./selector\"),\n            Anonymous = require(\"./anonymous\"),\n            Expression = require(\"./expression\"),\n            Directive = require(\"./directive\");\n\n            var Media = function (value, features, index, currentFileInfo) {\n                this.index = index;\n                this.currentFileInfo = currentFileInfo;\n\n                var selectors = (new Selector([], null, null, this.index, this.currentFileInfo)).createEmptySelectors();\n\n                this.features = new Value(features);\n                this.rules = [new Ruleset(selectors, value)];\n                this.rules[0].allowImports = true;\n            };\n            Media.prototype = new Directive();\n            Media.prototype.type = \"Media\";\n            Media.prototype.isRulesetLike = true;\n            Media.prototype.accept = function (visitor) {\n                if (this.features) {\n                    this.features = visitor.visit(this.features);\n                }\n                if (this.rules) {\n                    this.rules = visitor.visitArray(this.rules);\n                }\n            };\n            Media.prototype.genCSS = function (context, output) {\n                output.add('@media ', this.currentFileInfo, this.index);\n                this.features.genCSS(context, output);\n                this.outputRuleset(context, output, this.rules);\n            };\n            Media.prototype.eval = function (context) {\n                if (!context.mediaBlocks) {\n                    context.mediaBlocks = [];\n                    context.mediaPath = [];\n                }\n\n                var media = new Media(null, [], this.index, this.currentFileInfo);\n                if (this.debugInfo) {\n                    this.rules[0].debugInfo = this.debugInfo;\n                    media.debugInfo = this.debugInfo;\n                }\n                var strictMathBypass = false;\n                if (!context.strictMath) {\n                    strictMathBypass = true;\n                    context.strictMath = true;\n                }\n                try {\n                    media.features = this.features.eval(context);\n                } finally {\n                    if (strictMathBypass) {\n                        context.strictMath = false;\n                    }\n                }\n\n                context.mediaPath.push(media);\n                context.mediaBlocks.push(media);\n\n                this.rules[0].functionRegistry = context.frames[0].functionRegistry.inherit();\n                context.frames.unshift(this.rules[0]);\n                media.rules = [this.rules[0].eval(context)];\n                context.frames.shift();\n\n                context.mediaPath.pop();\n\n                return context.mediaPath.length === 0 ? media.evalTop(context) :\n                media.evalNested(context);\n            };\n            Media.prototype.evalTop = function (context) {\n                var result = this;\n\n                // Render all dependent Media blocks.\n                if (context.mediaBlocks.length > 1) {\n                    var selectors = (new Selector([], null, null, this.index, this.currentFileInfo)).createEmptySelectors();\n                    result = new Ruleset(selectors, context.mediaBlocks);\n                    result.multiMedia = true;\n                }\n\n                delete context.mediaBlocks;\n                delete context.mediaPath;\n\n                return result;\n            };\n            Media.prototype.evalNested = function (context) {\n                var i, value,\n                path = context.mediaPath.concat([this]);\n\n                // Extract the media-query conditions separated with `,` (OR).\n                for (i = 0; i < path.length; i++) {\n                    value = path[i].features instanceof Value ?\n                    path[i].features.value : path[i].features;\n                    path[i] = Array.isArray(value) ? value : [value];\n                }\n\n                // Trace all permutations to generate the resulting media-query.\n                //\n                // (a, b and c) with nested (d, e) ->\n                //    a and d\n                //    a and e\n                //    b and c and d\n                //    b and c and e\n                this.features = new Value(this.permute(path).map(function (path) {\n                    path = path.map(function (fragment) {\n                        return fragment.toCSS ? fragment : new Anonymous(fragment);\n                    });\n\n                    for (i = path.length - 1; i > 0; i--) {\n                        path.splice(i, 0, new Anonymous(\"and\"));\n                    }\n\n                    return new Expression(path);\n                }));\n\n                // Fake a tree-node that doesn't output anything.\n                return new Ruleset([], []);\n            };\n            Media.prototype.permute = function (arr) {\n                if (arr.length === 0) {\n                    return [];\n                } else if (arr.length === 1) {\n                    return arr[0];\n                } else {\n                    var result = [];\n                    var rest = this.permute(arr.slice(1));\n                    for (var i = 0; i < rest.length; i++) {\n                        for (var j = 0; j < arr[0].length; j++) {\n                            result.push([arr[0][j]].concat(rest[i]));\n                        }\n                    }\n                    return result;\n                }\n            };\n            Media.prototype.bubbleSelectors = function (selectors) {\n                if (!selectors) {\n                    return;\n                }\n                this.rules = [new Ruleset(selectors.slice(0), [this.rules[0]])];\n            };\n            module.exports = Media;\n\n        }, {\n            \"./anonymous\": 44,\n            \"./directive\": 55,\n            \"./expression\": 57,\n            \"./ruleset\": 74,\n            \"./selector\": 75,\n            \"./value\": 79\n        }\n        ],\n        65: [function(require, module, exports) {\n            var Node = require(\"./node\"),\n            Selector = require(\"./selector\"),\n            MixinDefinition = require(\"./mixin-definition\"),\n            defaultFunc = require(\"../functions/default\");\n\n            var MixinCall = function (elements, args, index, currentFileInfo, important) {\n                this.selector = new Selector(elements);\n                this.arguments = (args && args.length) ? args : null;\n                this.index = index;\n                this.currentFileInfo = currentFileInfo;\n                this.important = important;\n            };\n            MixinCall.prototype = new Node();\n            MixinCall.prototype.type = \"MixinCall\";\n            MixinCall.prototype.accept = function (visitor) {\n                if (this.selector) {\n                    this.selector = visitor.visit(this.selector);\n                }\n                if (this.arguments) {\n                    this.arguments = visitor.visitArray(this.arguments);\n                }\n            };\n            MixinCall.prototype.eval = function (context) {\n                var mixins, mixin, mixinPath, args, rules = [], match = false, i, m, f, isRecursive, isOneFound, rule,\n                candidates = [], candidate, conditionResult = [], defaultResult, defFalseEitherCase = - 1,\n                defNone = 0, defTrue = 1, defFalse = 2, count, originalRuleset, noArgumentsFilter;\n\n                function calcDefGroup(mixin, mixinPath) {\n                    var p, namespace;\n\n                    for (f = 0; f < 2; f++) {\n                        conditionResult[f] = true;\n                        defaultFunc.value(f);\n                        for (p = 0; p < mixinPath.length && conditionResult[f]; p++) {\n                            namespace = mixinPath[p];\n                            if (namespace.matchCondition) {\n                                conditionResult[f] = conditionResult[f] && namespace.matchCondition(null, context);\n                            }\n                        }\n                        if (mixin.matchCondition) {\n                            conditionResult[f] = conditionResult[f] && mixin.matchCondition(args, context);\n                        }\n                    }\n                    if (conditionResult[0] || conditionResult[1]) {\n                        if (conditionResult[0] != conditionResult[1]) {\n                            return conditionResult[1] ?\n                            defTrue : defFalse;\n                        }\n\n                        return defNone;\n                    }\n                    return defFalseEitherCase;\n                }\n\n                args = this.arguments && this.arguments.map(function (a) {\n                    return {\n                        name: a.name,\n                        value: a.value.eval(context) \n                    };\n                });\n\n                noArgumentsFilter = function(rule) {\n                    return rule.matchArgs(null, context);\n                };\n\n                for (i = 0; i < context.frames.length; i++) {\n                    if ((mixins = context.frames[i].find(this.selector, null, noArgumentsFilter)).length > 0) {\n                        isOneFound = true;\n\n                        // To make `default()` function independent of definition order we have two \"subpasses\" here.\n                        // At first we evaluate each guard *twice* (with `default() == true` and `default() == false`),\n                        // and build candidate list with corresponding flags. Then, when we know all possible matches,\n                        // we make a final decision.\n\n                        for (m = 0; m < mixins.length; m++) {\n                            mixin = mixins[m].rule;\n                            mixinPath = mixins[m].path;\n                            isRecursive = false;\n                            for (f = 0; f < context.frames.length; f++) {\n                                if ((!(mixin instanceof MixinDefinition)) && mixin === (context.frames[f].originalRuleset || context.frames[f])) {\n                                    isRecursive = true;\n                                    break;\n                                }\n                            }\n                            if (isRecursive) {\n                                continue;\n                            }\n\n                            if (mixin.matchArgs(args, context)) {\n                                candidate = {\n                                    mixin: mixin,\n                                    group: calcDefGroup(mixin, mixinPath)\n                                };\n\n                                if (candidate.group !== defFalseEitherCase) {\n                                    candidates.push(candidate);\n                                }\n\n                                match = true;\n                            }\n                        }\n\n                        defaultFunc.reset();\n\n                        count = [0, 0, 0];\n                        for (m = 0; m < candidates.length; m++) {\n                            count[candidates[m].group]++;\n                        }\n\n                        if (count[defNone] > 0) {\n                            defaultResult = defFalse;\n                        } else {\n                            defaultResult = defTrue;\n                            if ((count[defTrue] + count[defFalse]) > 1) {\n                                throw {\n                                    type: 'Runtime',\n                                    message: 'Ambiguous use of `default()` found when matching for `' + this.format(args) + '`',\n                                    index: this.index,\n                                    filename: this.currentFileInfo.filename \n                                };\n                            }\n                        }\n\n                        for (m = 0; m < candidates.length; m++) {\n                            candidate = candidates[m].group;\n                            if ((candidate === defNone) || (candidate === defaultResult)) {\n                                try {\n                                    mixin = candidates[m].mixin;\n                                    if (!(mixin instanceof MixinDefinition)) {\n                                        originalRuleset = mixin.originalRuleset || mixin;\n                                        mixin = new MixinDefinition(\"\", [], mixin.rules, null, false);\n                                        mixin.originalRuleset = originalRuleset;\n                                    }\n                                    Array.prototype.push.apply(\n                                    rules, mixin.evalCall(context, args, this.important).rules);\n                                } catch (e) {\n                                    throw {\n                                        message: e.message,\n                                        index: this.index,\n                                        filename: this.currentFileInfo.filename,\n                                        stack: e.stack \n                                    };\n                                }\n                            }\n                        }\n\n                        if (match) {\n                            if (!this.currentFileInfo || !this.currentFileInfo.reference) {\n                                for (i = 0; i < rules.length; i++) {\n                                    rule = rules[i];\n                                    if (rule.markReferenced) {\n                                        rule.markReferenced();\n                                    }\n                                }\n                            }\n                            return rules;\n                        }\n                    }\n                }\n                if (isOneFound) {\n                    throw {\n                        type: 'Runtime',\n                        message: 'No matching definition was found for `' + this.format(args) + '`',\n                        index: this.index,\n                        filename: this.currentFileInfo.filename \n                    };\n                } else {\n                    throw {\n                        type: 'Name',\n                        message: this.selector.toCSS().trim() + \" is undefined\",\n                        index: this.index,\n                        filename: this.currentFileInfo.filename \n                    };\n                }\n            };\n            MixinCall.prototype.format = function (args) {\n                return this.selector.toCSS().trim() + '(' +\n                (args ? args.map(function (a) {\n                    var argValue = \"\";\n                    if (a.name) {\n                        argValue += a.name + \":\";\n                    }\n                    if (a.value.toCSS) {\n                        argValue += a.value.toCSS();\n                    } else {\n                        argValue += \"???\";\n                    }\n                    return argValue;\n                }).join(', ') : \"\") + \")\";\n            };\n            module.exports = MixinCall;\n\n        }, {\n            \"../functions/default\": 19,\n            \"./mixin-definition\": 66,\n            \"./node\": 68,\n            \"./selector\": 75\n        }\n        ],\n        66: [function(require, module, exports) {\n            var Selector = require(\"./selector\"),\n            Element = require(\"./element\"),\n            Ruleset = require(\"./ruleset\"),\n            Rule = require(\"./rule\"),\n            Expression = require(\"./expression\"),\n            contexts = require(\"../contexts\");\n\n            var Definition = function (name, params, rules, condition, variadic, frames) {\n                this.name = name;\n                this.selectors = [new Selector([new Element(null, name, this.index, this.currentFileInfo)])];\n                this.params = params;\n                this.condition = condition;\n                this.variadic = variadic;\n                this.arity = params.length;\n                this.rules = rules;\n                this._lookups = {};\n                this.required = params.reduce(function (count, p) {\n                    if (!p.name || (p.name && !p.value)) {\n                        return count + 1;\n                    } else {\n                        return count;\n                    }\n                }, 0);\n                this.frames = frames;\n            };\n            Definition.prototype = new Ruleset();\n            Definition.prototype.type = \"MixinDefinition\";\n            Definition.prototype.evalFirst = true;\n            Definition.prototype.accept = function (visitor) {\n                if (this.params && this.params.length) {\n                    this.params = visitor.visitArray(this.params);\n                }\n                this.rules = visitor.visitArray(this.rules);\n                if (this.condition) {\n                    this.condition = visitor.visit(this.condition);\n                }\n            };\n            Definition.prototype.evalParams = function (context, mixinEnv, args, evaldArguments) {\n                /*jshint boss:true */\n                var frame = new Ruleset(null, null),\n                varargs, arg,\n                params = this.params.slice(0),\n                i, j, val, name, isNamedFound, argIndex, argsLength = 0;\n\n                if (mixinEnv.frames && mixinEnv.frames[0] && mixinEnv.frames[0].functionRegistry) {\n                    frame.functionRegistry = mixinEnv.frames[0].functionRegistry.inherit();\n                }\n                mixinEnv = new contexts.Eval(mixinEnv, [frame].concat(mixinEnv.frames));\n\n                if (args) {\n                    args = args.slice(0);\n                    argsLength = args.length;\n\n                    for (i = 0; i < argsLength; i++) {\n                        arg = args[i];\n                        if (name = (arg && arg.name)) {\n                            isNamedFound = false;\n                            for (j = 0; j < params.length; j++) {\n                                if (!evaldArguments[j] && name === params[j].name) {\n                                    evaldArguments[j] = arg.value.eval(context);\n                                    frame.prependRule(new Rule(name, arg.value.eval(context)));\n                                    isNamedFound = true;\n                                    break;\n                                }\n                            }\n                            if (isNamedFound) {\n                                args.splice(i, 1);\n                                i--;\n                                continue;\n                            } else {\n                                throw {\n                                    type: 'Runtime',\n                                    message: \"Named argument for \" + this.name +\n                                    ' ' + args[i].name + ' not found' \n                                };\n                            }\n                        }\n                    }\n                }\n                argIndex = 0;\n                for (i = 0; i < params.length; i++) {\n                    if (evaldArguments[i]) {\n                        continue;\n                    }\n\n                    arg = args && args[argIndex];\n\n                    if (name = params[i].name) {\n                        if (params[i].variadic) {\n                            varargs = [];\n                            for (j = argIndex; j < argsLength; j++) {\n                                varargs.push(args[j].value.eval(context));\n                            }\n                            frame.prependRule(new Rule(name, new Expression(varargs).eval(context)));\n                        } else {\n                            val = arg && arg.value;\n                            if (val) {\n                                val = val.eval(context);\n                            } else if (params[i].value) {\n                                val = params[i].value.eval(mixinEnv);\n                                frame.resetCache();\n                            } else {\n                                throw {\n                                    type: 'Runtime',\n                                    message: \"wrong number of arguments for \" + this.name +\n                                    ' (' + argsLength + ' for ' + this.arity + ')' \n                                };\n                            }\n\n                            frame.prependRule(new Rule(name, val));\n                            evaldArguments[i] = val;\n                        }\n                    }\n\n                    if (params[i].variadic && args) {\n                        for (j = argIndex; j < argsLength; j++) {\n                            evaldArguments[j] = args[j].value.eval(context);\n                        }\n                    }\n                    argIndex++;\n                }\n\n                return frame;\n            };\n            Definition.prototype.makeImportant = function() {\n                var rules = !this.rules ? this.rules : this.rules.map(function (r) {\n                    if (r.makeImportant) {\n                        return r.makeImportant(true);\n                    } else {\n                        return r;\n                    }\n                });\n                var result = new Definition (this.name, this.params, rules, this.condition, this.variadic, this.frames);\n                return result;\n            };\n            Definition.prototype.eval = function (context) {\n                return new Definition(this.name, this.params, this.rules, this.condition, this.variadic, this.frames || context.frames.slice(0));\n            };\n            Definition.prototype.evalCall = function (context, args, important) {\n                var _arguments = [],\n                mixinFrames = this.frames ? this.frames.concat(context.frames) : context.frames,\n                frame = this.evalParams(context, new contexts.Eval(context, mixinFrames), args, _arguments),\n                rules, ruleset;\n\n                frame.prependRule(new Rule('@arguments', new Expression(_arguments).eval(context)));\n\n                rules = this.rules.slice(0);\n\n                ruleset = new Ruleset(null, rules);\n                ruleset.originalRuleset = this;\n                ruleset = ruleset.eval(new contexts.Eval(context, [this, frame].concat(mixinFrames)));\n                if (important) {\n                    ruleset = ruleset.makeImportant();\n                }\n                return ruleset;\n            };\n            Definition.prototype.matchCondition = function (args, context) {\n                if (this.condition && !this.condition.eval(\n                new contexts.Eval(context,\n                [this.evalParams(context, /* the parameter variables*/\n                new contexts.Eval(context, this.frames ? this.frames.concat(context.frames) : context.frames), args, [])]\n                .concat(this.frames || []) // the parent namespace/mixin frames\n                .concat(context.frames)))) {\n                    // the current environment frames\n                    return false;\n                }\n                return true;\n            };\n            Definition.prototype.matchArgs = function (args, context) {\n                var argsLength = (args && args.length) || 0, len;\n\n                if (! this.variadic) {\n                    if (argsLength < this.required) {\n                        return false;\n                    }\n                    if (argsLength > this.params.length) {\n                        return false;\n                    }\n                } else {\n                    if (argsLength < (this.required - 1)) {\n                        return false;\n                    }\n                }\n\n                len = Math.min(argsLength, this.arity);\n\n                for (var i = 0; i < len; i++) {\n                    if (!this.params[i].name && !this.params[i].variadic) {\n                        if (args[i].value.eval(context).toCSS() != this.params[i].value.eval(context).toCSS()) {\n                            return false;\n                        }\n                    }\n                }\n                return true;\n            };\n            module.exports = Definition;\n\n        }, {\n            \"../contexts\": 10,\n            \"./element\": 56,\n            \"./expression\": 57,\n            \"./rule\": 72,\n            \"./ruleset\": 74,\n            \"./selector\": 75\n        }\n        ],\n        67: [function(require, module, exports) {\n            var Node = require(\"./node\"),\n            Operation = require(\"./operation\"),\n            Dimension = require(\"./dimension\");\n\n            var Negative = function (node) {\n                this.value = node;\n            };\n            Negative.prototype = new Node();\n            Negative.prototype.type = \"Negative\";\n            Negative.prototype.genCSS = function (context, output) {\n                output.add('-');\n                this.value.genCSS(context, output);\n            };\n            Negative.prototype.eval = function (context) {\n                if (context.isMathOn()) {\n                    return (new Operation('*', [new Dimension( - 1), this.value])).eval(context);\n                }\n                return new Negative(this.value.eval(context));\n            };\n            module.exports = Negative;\n\n        }, {\n            \"./dimension\": 54,\n            \"./node\": 68,\n            \"./operation\": 69\n        }\n        ],\n        68: [function(require, module, exports) {\n            var Node = function() {};\n            Node.prototype.toCSS = function (context) {\n                var strs = [];\n                this.genCSS(context, {\n                    add: function(chunk, fileInfo, index) {\n                        strs.push(chunk);\n                    },\n                    isEmpty: function () {\n                        return strs.length === 0;\n                    }\n                });\n                return strs.join('');\n            };\n            Node.prototype.genCSS = function (context, output) {\n                output.add(this.value);\n            };\n            Node.prototype.accept = function (visitor) {\n                this.value = visitor.visit(this.value);\n            };\n            Node.prototype.eval = function () {\n                return this;\n            };\n            Node.prototype._operate = function (context, op, a, b) {\n                switch (op) {\n                case '+':\n                    return a + b;\n                case '-':\n                    return a - b;\n                case '*':\n                    return a * b;\n                case '/':\n                    return a / b;\n                }\n            };\n            Node.prototype.fround = function(context, value) {\n                var precision = context && context.numPrecision;\n                //add \"epsilon\" to ensure numbers like 1.000000005 (represented as 1.000000004999....) are properly rounded...\n                return (precision == null) ? value : Number((value + 2e-16).toFixed(precision));\n            };\n            Node.compare = function (a, b) {\n                /* returns:\n                     -1: a < b\n                     0: a = b\n                     1: a > b\n                     and *any* other value for a != b (e.g. undefined, NaN, -2 etc.) */\n\n                if ((a.compare) &&\n                // for \"symmetric results\" force toCSS-based comparison\n                // of Quoted or Anonymous if either value is one of those\n                !(b.type === \"Quoted\" || b.type === \"Anonymous\")) {\n                    return a.compare(b);\n                } else if (b.compare) {\n                    return - b.compare(a);\n                } else if (a.type !== b.type) {\n                    return undefined;\n                }\n\n                a = a.value;\n                b = b.value;\n                if (!Array.isArray(a)) {\n                    return a === b ? 0 : undefined;\n                }\n                if (a.length !== b.length) {\n                    return undefined;\n                }\n                for (var i = 0; i < a.length; i++) {\n                    if (Node.compare(a[i], b[i]) !== 0) {\n                        return undefined;\n                    }\n                }\n                return 0;\n            };\n\n            Node.numericCompare = function (a, b) {\n                return a < b ? - 1\n                : a === b ? 0\n                : a > b ? 1 : undefined;\n            };\n            module.exports = Node;\n\n        }, {}\n        ],\n        69: [function(require, module, exports) {\n            var Node = require(\"./node\"),\n            Color = require(\"./color\"),\n            Dimension = require(\"./dimension\");\n\n            var Operation = function (op, operands, isSpaced) {\n                this.op = op.trim();\n                this.operands = operands;\n                this.isSpaced = isSpaced;\n            };\n            Operation.prototype = new Node();\n            Operation.prototype.type = \"Operation\";\n            Operation.prototype.accept = function (visitor) {\n                this.operands = visitor.visit(this.operands);\n            };\n            Operation.prototype.eval = function (context) {\n                var a = this.operands[0].eval(context),\n                b = this.operands[1].eval(context);\n\n                if (context.isMathOn()) {\n                    if (a instanceof Dimension && b instanceof Color) {\n                        a = a.toColor();\n                    }\n                    if (b instanceof Dimension && a instanceof Color) {\n                        b = b.toColor();\n                    }\n                    if (!a.operate) {\n                        throw {\n                            type: \"Operation\",\n                            message: \"Operation on an invalid type\" \n                        };\n                    }\n\n                    return a.operate(context, this.op, b);\n                } else {\n                    return new Operation(this.op, [a, b], this.isSpaced);\n                }\n            };\n            Operation.prototype.genCSS = function (context, output) {\n                this.operands[0].genCSS(context, output);\n                if (this.isSpaced) {\n                    output.add(\" \");\n                }\n                output.add(this.op);\n                if (this.isSpaced) {\n                    output.add(\" \");\n                }\n                this.operands[1].genCSS(context, output);\n            };\n\n            module.exports = Operation;\n\n        }, {\n            \"./color\": 48,\n            \"./dimension\": 54,\n            \"./node\": 68\n        }\n        ],\n        70: [function(require, module, exports) {\n            var Node = require(\"./node\");\n\n            var Paren = function (node) {\n                this.value = node;\n            };\n            Paren.prototype = new Node();\n            Paren.prototype.type = \"Paren\";\n            Paren.prototype.genCSS = function (context, output) {\n                output.add('(');\n                this.value.genCSS(context, output);\n                output.add(')');\n            };\n            Paren.prototype.eval = function (context) {\n                return new Paren(this.value.eval(context));\n            };\n            module.exports = Paren;\n\n        }, {\n            \"./node\": 68\n        }\n        ],\n        71: [function(require, module, exports) {\n            var Node = require(\"./node\"),\n            JsEvalNode = require(\"./js-eval-node\"),\n            Variable = require(\"./variable\");\n\n            var Quoted = function (str, content, escaped, index, currentFileInfo) {\n                this.escaped = (escaped == null) ? true : escaped;\n                this.value = content || '';\n                this.quote = str.charAt(0);\n                this.index = index;\n                this.currentFileInfo = currentFileInfo;\n            };\n            Quoted.prototype = new JsEvalNode();\n            Quoted.prototype.type = \"Quoted\";\n            Quoted.prototype.genCSS = function (context, output) {\n                if (!this.escaped) {\n                    output.add(this.quote, this.currentFileInfo, this.index);\n                }\n                output.add(this.value);\n                if (!this.escaped) {\n                    output.add(this.quote);\n                }\n            };\n            Quoted.prototype.containsVariables = function() {\n                return this.value.match(/(`([^`]+)`)|@\\{([\\w-]+)\\}/);\n            };\n            Quoted.prototype.eval = function (context) {\n                var that = this, value = this.value;\n                var javascriptReplacement = function (_, exp) {\n                    return String(that.evaluateJavaScript(exp, context));\n                };\n                var interpolationReplacement = function (_, name) {\n                    var v = new Variable('@' + name, that.index, that.currentFileInfo).eval(context, true);\n                    return (v instanceof Quoted) ? v.value : v.toCSS();\n                };\n                function iterativeReplace(value, regexp, replacementFnc) {\n                    var evaluatedValue = value;\n                    do {\n                        value = evaluatedValue;\n                        evaluatedValue = value.replace(regexp, replacementFnc);\n                    }\n                    while (value !== evaluatedValue);\n                    return evaluatedValue;\n                }\n                value = iterativeReplace(value, /`([^`]+)`/g, javascriptReplacement);\n                value = iterativeReplace(value, /@\\{([\\w-]+)\\}/g, interpolationReplacement);\n                return new Quoted(this.quote + value + this.quote, value, this.escaped, this.index, this.currentFileInfo);\n            };\n            Quoted.prototype.compare = function (other) {\n                // when comparing quoted strings allow the quote to differ\n                if (other.type === \"Quoted\" && !this.escaped && !other.escaped) {\n                    return Node.numericCompare(this.value, other.value);\n                } else {\n                    return other.toCSS && this.toCSS() === other.toCSS() ? 0 : undefined;\n                }\n            };\n            module.exports = Quoted;\n\n        }, {\n            \"./js-eval-node\": 62,\n            \"./node\": 68,\n            \"./variable\": 80\n        }\n        ],\n        72: [function(require, module, exports) {\n            var Node = require(\"./node\"),\n            Value = require(\"./value\"),\n            Keyword = require(\"./keyword\");\n\n            var Rule = function (name, value, important, merge, index, currentFileInfo, inline, variable) {\n                this.name = name;\n                this.value = (value instanceof Node) ? value : new Value([value]); //value instanceof tree.Value || value instanceof tree.Ruleset ??\n                this.important = important ? ' ' + important.trim() : '';\n                this.merge = merge;\n                this.index = index;\n                this.currentFileInfo = currentFileInfo;\n                this.inline = inline || false;\n                this.variable = (variable !== undefined) ? variable\n                : (name.charAt && (name.charAt(0) === '@'));\n            };\n\n            function evalName(context, name) {\n                var value = \"\", i, n = name.length,\n                output = {\n                    add: function (s) {\n                        value += s;\n                    }\n                };\n                for (i = 0; i < n; i++) {\n                    name[i].eval(context).genCSS(context, output);\n                }\n                return value;\n            }\n\n            Rule.prototype = new Node();\n            Rule.prototype.type = \"Rule\";\n            Rule.prototype.genCSS = function (context, output) {\n                output.add(this.name + (context.compress ? ':' : ': '), this.currentFileInfo, this.index);\n                try {\n                    this.value.genCSS(context, output);\n                } catch (e) {\n                    e.index = this.index;\n                    e.filename = this.currentFileInfo.filename;\n                    throw e;\n                }\n                output.add(this.important + ((this.inline || (context.lastRule && context.compress)) ? \"\" : \";\"), this.currentFileInfo, this.index);\n            };\n            Rule.prototype.eval = function (context) {\n                var strictMathBypass = false, name = this.name, evaldValue, variable = this.variable;\n                if (typeof name !== \"string\") {\n                    // expand 'primitive' name directly to get\n                    // things faster (~10% for benchmark.less):\n                    name = (name.length === 1) && (name[0] instanceof Keyword) ?\n                    name[0].value : evalName(context, name);\n                    variable = false; // never treat expanded interpolation as new variable name\n                }\n                if (name === \"font\" && !context.strictMath) {\n                    strictMathBypass = true;\n                    context.strictMath = true;\n                }\n                try {\n                    context.importantScope.push({});\n                    evaldValue = this.value.eval(context);\n\n                    if (!this.variable && evaldValue.type === \"DetachedRuleset\") {\n                        throw {\n                            message: \"Rulesets cannot be evaluated on a property.\",\n                            index: this.index,\n                            filename: this.currentFileInfo.filename \n                        };\n                    }\n                    var important = this.important,\n                    importantResult = context.importantScope.pop();\n                    if (!important && importantResult.important) {\n                        important = importantResult.important;\n                    }\n\n                    return new Rule(name,\n                    evaldValue,\n                    important,\n                    this.merge,\n                    this.index, this.currentFileInfo, this.inline,\n                    variable);\n                } catch (e) {\n                    if (typeof e.index !== 'number') {\n                        e.index = this.index;\n                        e.filename = this.currentFileInfo.filename;\n                    }\n                    throw e;\n                } finally {\n                    if (strictMathBypass) {\n                        context.strictMath = false;\n                    }\n                }\n            };\n            Rule.prototype.makeImportant = function () {\n                return new Rule(this.name,\n                this.value,\n                \"!important\",\n                this.merge,\n                this.index, this.currentFileInfo, this.inline);\n            };\n\n            module.exports = Rule;\n\n        }, {\n            \"./keyword\": 63,\n            \"./node\": 68,\n            \"./value\": 79\n        }\n        ],\n        73: [function(require, module, exports) {\n            var Node = require(\"./node\"),\n            Variable = require(\"./variable\");\n\n            var RulesetCall = function (variable) {\n                this.variable = variable;\n            };\n            RulesetCall.prototype = new Node();\n            RulesetCall.prototype.type = \"RulesetCall\";\n            RulesetCall.prototype.eval = function (context) {\n                var detachedRuleset = new Variable(this.variable).eval(context);\n                return detachedRuleset.callEval(context);\n            };\n            module.exports = RulesetCall;\n\n        }, {\n            \"./node\": 68,\n            \"./variable\": 80\n        }\n        ],\n        74: [function(require, module, exports) {\n            var Node = require(\"./node\"),\n            Rule = require(\"./rule\"),\n            Selector = require(\"./selector\"),\n            Element = require(\"./element\"),\n            Paren = require(\"./paren\"),\n            contexts = require(\"../contexts\"),\n            globalFunctionRegistry = require(\"../functions/function-registry\"),\n            defaultFunc = require(\"../functions/default\"),\n            getDebugInfo = require(\"./debug-info\");\n\n            var Ruleset = function (selectors, rules, strictImports) {\n                this.selectors = selectors;\n                this.rules = rules;\n                this._lookups = {};\n                this.strictImports = strictImports;\n            };\n            Ruleset.prototype = new Node();\n            Ruleset.prototype.type = \"Ruleset\";\n            Ruleset.prototype.isRuleset = true;\n            Ruleset.prototype.isRulesetLike = true;\n            Ruleset.prototype.accept = function (visitor) {\n                if (this.paths) {\n                    visitor.visitArray(this.paths, true);\n                } else if (this.selectors) {\n                    this.selectors = visitor.visitArray(this.selectors);\n                }\n                if (this.rules && this.rules.length) {\n                    this.rules = visitor.visitArray(this.rules);\n                }\n            };\n            Ruleset.prototype.eval = function (context) {\n                var thisSelectors = this.selectors, selectors,\n                selCnt, selector, i, hasOnePassingSelector = false;\n\n                if (thisSelectors && (selCnt = thisSelectors.length)) {\n                    selectors = [];\n                    defaultFunc.error({\n                        type: \"Syntax\",\n                        message: \"it is currently only allowed in parametric mixin guards,\"\n                    });\n                    for (i = 0; i < selCnt; i++) {\n                        selector = thisSelectors[i].eval(context);\n                        selectors.push(selector);\n                        if (selector.evaldCondition) {\n                            hasOnePassingSelector = true;\n                        }\n                    }\n                    defaultFunc.reset();\n                } else {\n                    hasOnePassingSelector = true;\n                }\n\n                var rules = this.rules ? this.rules.slice(0) : null,\n                ruleset = new Ruleset(selectors, rules, this.strictImports),\n                rule, subRule;\n\n                ruleset.originalRuleset = this;\n                ruleset.root = this.root;\n                ruleset.firstRoot = this.firstRoot;\n                ruleset.allowImports = this.allowImports;\n\n                if (this.debugInfo) {\n                    ruleset.debugInfo = this.debugInfo;\n                }\n\n                if (!hasOnePassingSelector) {\n                    rules.length = 0;\n                }\n\n                // inherit a function registry from the frames stack when possible;\n                // otherwise from the global registry\n                ruleset.functionRegistry = (function (frames) {\n                    var i = 0,\n                    n = frames.length,\n                    found;\n                    for ( ; i !== n ; ++i ) {\n                        found = frames[ i ].functionRegistry;\n                        if ( found ) {\n                            return found;\n                        }\n                    }\n                    return globalFunctionRegistry;\n                }(context.frames)).inherit();\n\n                // push the current ruleset to the frames stack\n                var ctxFrames = context.frames;\n                ctxFrames.unshift(ruleset);\n\n                // currrent selectors\n                var ctxSelectors = context.selectors;\n                if (!ctxSelectors) {\n                    context.selectors = ctxSelectors = [];\n                }\n                ctxSelectors.unshift(this.selectors);\n\n                // Evaluate imports\n                if (ruleset.root || ruleset.allowImports || !ruleset.strictImports) {\n                    ruleset.evalImports(context);\n                }\n\n                // Store the frames around mixin definitions,\n                // so they can be evaluated like closures when the time comes.\n                var rsRules = ruleset.rules, rsRuleCnt = rsRules ? rsRules.length : 0;\n                for (i = 0; i < rsRuleCnt; i++) {\n                    if (rsRules[i].evalFirst) {\n                        rsRules[i] = rsRules[i].eval(context);\n                    }\n                }\n\n                var mediaBlockCount = (context.mediaBlocks && context.mediaBlocks.length) || 0;\n\n                // Evaluate mixin calls.\n                for (i = 0; i < rsRuleCnt; i++) {\n                    if (rsRules[i].type === \"MixinCall\") {\n                        /*jshint loopfunc:true */\n                        rules = rsRules[i].eval(context).filter(function(r) {\n                            if ((r instanceof Rule) && r.variable) {\n                                // do not pollute the scope if the variable is\n                                // already there. consider returning false here\n                                // but we need a way to \"return\" variable from mixins\n                                return !(ruleset.variable(r.name));\n                            }\n                            return true;\n                        });\n                        rsRules.splice.apply(rsRules, [i, 1].concat(rules));\n                        rsRuleCnt += rules.length - 1;\n                        i += rules.length - 1;\n                        ruleset.resetCache();\n                    } else if (rsRules[i].type === \"RulesetCall\") {\n                        /*jshint loopfunc:true */\n                        rules = rsRules[i].eval(context).rules.filter(function(r) {\n                            if ((r instanceof Rule) && r.variable) {\n                                // do not pollute the scope at all\n                                return false;\n                            }\n                            return true;\n                        });\n                        rsRules.splice.apply(rsRules, [i, 1].concat(rules));\n                        rsRuleCnt += rules.length - 1;\n                        i += rules.length - 1;\n                        ruleset.resetCache();\n                    }\n                }\n\n                // Evaluate everything else\n                for (i = 0; i < rsRules.length; i++) {\n                    rule = rsRules[i];\n                    if (!rule.evalFirst) {\n                        rsRules[i] = rule = rule.eval ? rule.eval(context) : rule;\n                    }\n                }\n\n                // Evaluate everything else\n                for (i = 0; i < rsRules.length; i++) {\n                    rule = rsRules[i];\n                    // for rulesets, check if it is a css guard and can be removed\n                    if (rule instanceof Ruleset && rule.selectors && rule.selectors.length === 1) {\n                        // check if it can be folded in (e.g. & where)\n                        if (rule.selectors[0].isJustParentSelector()) {\n                            rsRules.splice(i--, 1);\n\n                            for (var j = 0; j < rule.rules.length; j++) {\n                                subRule = rule.rules[j];\n                                if (!(subRule instanceof Rule) || !subRule.variable) {\n                                    rsRules.splice(++i, 0, subRule);\n                                }\n                            }\n                        }\n                    }\n                }\n\n                // Pop the stack\n                ctxFrames.shift();\n                ctxSelectors.shift();\n\n                if (context.mediaBlocks) {\n                    for (i = mediaBlockCount; i < context.mediaBlocks.length; i++) {\n                        context.mediaBlocks[i].bubbleSelectors(selectors);\n                    }\n                }\n\n                return ruleset;\n            };\n            Ruleset.prototype.evalImports = function(context) {\n                var rules = this.rules, i, importRules;\n                if (!rules) {\n                    return;\n                }\n\n                for (i = 0; i < rules.length; i++) {\n                    if (rules[i].type === \"Import\") {\n                        importRules = rules[i].eval(context);\n                        if (importRules && importRules.length) {\n                            rules.splice.apply(rules, [i, 1].concat(importRules));\n                            i += importRules.length - 1;\n                        } else {\n                            rules.splice(i, 1, importRules);\n                        }\n                        this.resetCache();\n                    }\n                }\n            };\n            Ruleset.prototype.makeImportant = function() {\n                var result = new Ruleset(this.selectors, this.rules.map(function (r) {\n                    if (r.makeImportant) {\n                        return r.makeImportant();\n                    } else {\n                        return r;\n                    }\n                }), this.strictImports);\n\n                return result;\n            };\n            Ruleset.prototype.matchArgs = function (args) {\n                return !args || args.length === 0;\n            };\n            // lets you call a css selector with a guard\n            Ruleset.prototype.matchCondition = function (args, context) {\n                var lastSelector = this.selectors[this.selectors.length - 1];\n                if (!lastSelector.evaldCondition) {\n                    return false;\n                }\n                if (lastSelector.condition &&\n                !lastSelector.condition.eval(\n                new contexts.Eval(context,\n                context.frames))) {\n                    return false;\n                }\n                return true;\n            };\n            Ruleset.prototype.resetCache = function () {\n                this._rulesets = null;\n                this._variables = null;\n                this._lookups = {};\n            };\n            Ruleset.prototype.variables = function () {\n                if (!this._variables) {\n                    this._variables = !this.rules ? {} : this.rules.reduce(function (hash, r) {\n                        if (r instanceof Rule && r.variable === true) {\n                            hash[r.name] = r;\n                        }\n                        // when evaluating variables in an import statement, imports have not been eval'd\n                        // so we need to go inside import statements.\n                        // guard against root being a string (in the case of inlined less)\n                        if (r.type === \"Import\" && r.root && r.root.variables) {\n                            var vars = r.root.variables();\n                            for (var name in vars) {\n                                if (vars.hasOwnProperty(name)) {\n                                    hash[name] = vars[name];\n                                }\n                            }\n                        }\n                        return hash;\n                    }, {});\n                }\n                return this._variables;\n            };\n            Ruleset.prototype.variable = function (name) {\n                return this.variables()[name];\n            };\n            Ruleset.prototype.rulesets = function () {\n                if (!this.rules) {\n                    return [];\n                }\n\n                var filtRules = [], rules = this.rules, cnt = rules.length,\n                i, rule;\n\n                for (i = 0; i < cnt; i++) {\n                    rule = rules[i];\n                    if (rule.isRuleset) {\n                        filtRules.push(rule);\n                    }\n                }\n\n                return filtRules;\n            };\n            Ruleset.prototype.prependRule = function (rule) {\n                var rules = this.rules;\n                if (rules) {\n                    rules.unshift(rule);\n                } else {\n                    this.rules = [ rule ];\n                }\n            };\n            Ruleset.prototype.find = function (selector, self, filter) {\n                self = self || this;\n                var rules = [], match, foundMixins,\n                key = selector.toCSS();\n\n                if (key in this._lookups) {\n                    return this._lookups[key];\n                }\n\n                this.rulesets().forEach(function (rule) {\n                    if (rule !== self) {\n                        for (var j = 0; j < rule.selectors.length; j++) {\n                            match = selector.match(rule.selectors[j]);\n                            if (match) {\n                                if (selector.elements.length > match) {\n                                    if (!filter || filter(rule)) {\n                                        foundMixins = rule.find(new Selector(selector.elements.slice(match)), self, filter);\n                                        for (var i = 0; i < foundMixins.length; ++i) {\n                                            foundMixins[i].path.push(rule);\n                                        }\n                                        Array.prototype.push.apply(rules, foundMixins);\n                                    }\n                                } else {\n                                    rules.push({\n                                        rule: rule,\n                                        path: []\n                                    });\n                                }\n                                break;\n                            }\n                        }\n                    }\n                });\n                this._lookups[key] = rules;\n                return rules;\n            };\n            Ruleset.prototype.genCSS = function (context, output) {\n                var i, j,\n                charsetRuleNodes = [],\n                ruleNodes = [],\n                debugInfo, // Line number debugging\n                rule,\n                path;\n\n                context.tabLevel = (context.tabLevel || 0);\n\n                if (!this.root) {\n                    context.tabLevel++;\n                }\n\n                var tabRuleStr = context.compress ? '' : Array(context.tabLevel + 1).join(\"  \"),\n                tabSetStr = context.compress ? '' : Array(context.tabLevel).join(\"  \"),\n                sep;\n\n                function isRulesetLikeNode(rule) {\n                    // if it has nested rules, then it should be treated like a ruleset\n                    // medias and comments do not have nested rules, but should be treated like rulesets anyway\n                    // some directives and anonymous nodes are ruleset like, others are not\n                    if (typeof rule.isRulesetLike === \"boolean\") {\n                        return rule.isRulesetLike;\n                    } else if (typeof rule.isRulesetLike === \"function\") {\n                        return rule.isRulesetLike();\n                    }\n\n                    //anything else is assumed to be a rule\n                    return false;\n                }\n\n                var charsetNodeIndex = 0;\n                var importNodeIndex = 0;\n                for (i = 0; i < this.rules.length; i++) {\n                    rule = this.rules[i];\n                    if (rule.type === \"Comment\") {\n                        if (importNodeIndex === i) {\n                            importNodeIndex++;\n                        }\n                        ruleNodes.push(rule);\n                    } else if (rule.isCharset && rule.isCharset()) {\n                        ruleNodes.splice(charsetNodeIndex, 0, rule);\n                        charsetNodeIndex++;\n                        importNodeIndex++;\n                    } else if (rule.type === \"Import\") {\n                        ruleNodes.splice(importNodeIndex, 0, rule);\n                        importNodeIndex++;\n                    } else {\n                        ruleNodes.push(rule);\n                    }\n                }\n                ruleNodes = charsetRuleNodes.concat(ruleNodes);\n\n                // If this is the root node, we don't render\n                // a selector, or {}.\n                if (!this.root) {\n                    debugInfo = getDebugInfo(context, this, tabSetStr);\n\n                    if (debugInfo) {\n                        output.add(debugInfo);\n                        output.add(tabSetStr);\n                    }\n\n                    var paths = this.paths, pathCnt = paths.length,\n                    pathSubCnt;\n\n                    sep = context.compress ? ',' : (',\\n' + tabSetStr);\n\n                    for (i = 0; i < pathCnt; i++) {\n                        path = paths[i];\n                        if (!(pathSubCnt = path.length)) {\n                            continue;\n                        }\n                        if (i > 0) {\n                            output.add(sep);\n                        }\n\n                        context.firstSelector = true;\n                        path[0].genCSS(context, output);\n\n                        context.firstSelector = false;\n                        for (j = 1; j < pathSubCnt; j++) {\n                            path[j].genCSS(context, output);\n                        }\n                    }\n\n                    output.add((context.compress ? '{' : ' {\\n') + tabRuleStr);\n                }\n\n                // Compile rules and rulesets\n                for (i = 0; i < ruleNodes.length; i++) {\n                    rule = ruleNodes[i];\n\n                    if (i + 1 === ruleNodes.length) {\n                        context.lastRule = true;\n                    }\n\n                    var currentLastRule = context.lastRule;\n                    if (isRulesetLikeNode(rule)) {\n                        context.lastRule = false;\n                    }\n\n                    if (rule.genCSS) {\n                        rule.genCSS(context, output);\n                    } else if (rule.value) {\n                        output.add(rule.value.toString());\n                    }\n\n                    context.lastRule = currentLastRule;\n\n                    if (!context.lastRule) {\n                        output.add(context.compress ? '' : ('\\n' + tabRuleStr));\n                    } else {\n                        context.lastRule = false;\n                    }\n                }\n\n                if (!this.root) {\n                    output.add((context.compress ? '}' : '\\n' + tabSetStr + '}'));\n                    context.tabLevel--;\n                }\n\n                if (!output.isEmpty() && !context.compress && this.firstRoot) {\n                    output.add('\\n');\n                }\n            };\n            Ruleset.prototype.markReferenced = function () {\n                var s;\n                if (this.selectors) {\n                    for (s = 0; s < this.selectors.length; s++) {\n                        this.selectors[s].markReferenced();\n                    }\n                }\n\n                if (this.rules) {\n                    for (s = 0; s < this.rules.length; s++) {\n                        if (this.rules[s].markReferenced) {\n                            this.rules[s].markReferenced();\n                        }\n                    }\n                }\n            };\n            Ruleset.prototype.getIsReferenced = function() {\n                var i, j, path, selector;\n\n                if (this.paths) {\n                    for (i = 0; i < this.paths.length; i++) {\n                        path = this.paths[i];\n                        for (j = 0; j < path.length; j++) {\n                            if (path[j].getIsReferenced && path[j].getIsReferenced()) {\n                                return true;\n                            }\n                        }\n                    }\n                }\n\n                if (this.selectors) {\n                    for (i = 0; i < this.selectors.length; i++) {\n                        selector = this.selectors[i];\n                        if (selector.getIsReferenced && selector.getIsReferenced()) {\n                            return true;\n                        }\n                    }\n                }\n                return false;\n            };\n\n            Ruleset.prototype.joinSelectors = function (paths, context, selectors) {\n                for (var s = 0; s < selectors.length; s++) {\n                    this.joinSelector(paths, context, selectors[s]);\n                }\n            };\n\n            Ruleset.prototype.joinSelector = function (paths, context, selector) {\n\n                function createParenthesis(elementsToPak, originalElement) {\n                    var replacementParen, j;\n                    if (elementsToPak.length === 0) {\n                        replacementParen = new Paren(elementsToPak[0]);\n                    } else {\n                        var insideParent = [];\n                        for (j = 0; j < elementsToPak.length; j++) {\n                            insideParent.push(new Element(null, elementsToPak[j], originalElement.index, originalElement.currentFileInfo));\n                        }\n                        replacementParen = new Paren(new Selector(insideParent));\n                    }\n                    return replacementParen;\n                }\n\n                function createSelector(containedElement, originalElement) {\n                    var element, selector;\n                    element = new Element(null, containedElement, originalElement.index, originalElement.currentFileInfo);\n                    selector = new Selector([element]);\n                    return selector;\n                }\n\n                // replace all parent selectors inside `inSelector` by content of `context` array\n                // resulting selectors are returned inside `paths` array\n                // returns true if `inSelector` contained at least one parent selector\n                function replaceParentSelector(paths, context, inSelector) {\n                    // The paths are [[Selector]]\n                    // The first list is a list of comma separated selectors\n                    // The inner list is a list of inheritance separated selectors\n                    // e.g.\n                    // .a, .b {\n                    //   .c {\n                    //   }\n                    // }\n                    // == [[.a] [.c]] [[.b] [.c]]\n                    //\n                    var i, j, k, currentElements, newSelectors, selectorsMultiplied, sel, el, hadParentSelector = false, length, lastSelector;\n                    function findNestedSelector(element) {\n                        var maybeSelector;\n                        if (element.value.type !== 'Paren') {\n                            return null;\n                        }\n\n                        maybeSelector = element.value.value;\n                        if (maybeSelector.type !== 'Selector') {\n                            return null;\n                        }\n\n                        return maybeSelector;\n                    }\n\n                    // the elements from the current selector so far\n                    currentElements = [];\n                    // the current list of new selectors to add to the path.\n                    // We will build it up. We initiate it with one empty selector as we \"multiply\" the new selectors\n                    // by the parents\n                    newSelectors = [\n                    []\n                    ];\n\n                    for (i = 0; i < inSelector.elements.length; i++) {\n                        el = inSelector.elements[i];\n                        // non parent reference elements just get added\n                        if (el.value !== \"&\") {\n                            var nestedSelector = findNestedSelector(el);\n                            if (nestedSelector != null) {\n                                // merge the current list of non parent selector elements\n                                // on to the current list of selectors to add\n                                mergeElementsOnToSelectors(currentElements, newSelectors);\n\n                                var nestedPaths = [], replaced, replacedNewSelectors = [];\n                                replaced = replaceParentSelector(nestedPaths, context, nestedSelector);\n                                hadParentSelector = hadParentSelector || replaced;\n                                //the nestedPaths array should have only one member - replaceParentSelector does not multiply selectors\n                                for (k = 0; k < nestedPaths.length; k++) {\n                                    var replacementSelector = createSelector(createParenthesis(nestedPaths[k], el), el);\n                                    addAllReplacementsIntoPath(newSelectors, [replacementSelector], el, inSelector, replacedNewSelectors);\n                                }\n                                newSelectors = replacedNewSelectors;\n                                currentElements = [];\n\n                            } else {\n                                currentElements.push(el);\n                            }\n\n                        } else {\n                            hadParentSelector = true;\n                            // the new list of selectors to add\n                            selectorsMultiplied = [];\n\n                            // merge the current list of non parent selector elements\n                            // on to the current list of selectors to add\n                            mergeElementsOnToSelectors(currentElements, newSelectors);\n\n                            // loop through our current selectors\n                            for (j = 0; j < newSelectors.length; j++) {\n                                sel = newSelectors[j];\n                                // if we don't have any parent paths, the & might be in a mixin so that it can be used\n                                // whether there are parents or not\n                                if (context.length === 0) {\n                                    // the combinator used on el should now be applied to the next element instead so that\n                                    // it is not lost\n                                    if (sel.length > 0) {\n                                        sel[0].elements.push(new Element(el.combinator, '', el.index, el.currentFileInfo));\n                                    }\n                                    selectorsMultiplied.push(sel);\n                                } else {\n                                    // and the parent selectors\n                                    for (k = 0; k < context.length; k++) {\n                                        // We need to put the current selectors\n                                        // then join the last selector's elements on to the parents selectors\n                                        var newSelectorPath = addReplacementIntoPath(sel, context[k], el, inSelector);\n                                        // add that to our new set of selectors\n                                        selectorsMultiplied.push(newSelectorPath);\n                                    }\n                                }\n                            }\n\n                            // our new selectors has been multiplied, so reset the state\n                            newSelectors = selectorsMultiplied;\n                            currentElements = [];\n                        }\n                    }\n\n                    // if we have any elements left over (e.g. .a& .b == .b)\n                    // add them on to all the current selectors\n                    mergeElementsOnToSelectors(currentElements, newSelectors);\n\n                    for (i = 0; i < newSelectors.length; i++) {\n                        length = newSelectors[i].length;\n                        if (length > 0) {\n                            paths.push(newSelectors[i]);\n                            lastSelector = newSelectors[i][length - 1];\n                            newSelectors[i][length - 1] = lastSelector.createDerived(lastSelector.elements, inSelector.extendList);\n                        }\n                    }\n\n                    return hadParentSelector;\n                }\n\n                // joins selector path from `beginningPath` with selector path in `addPath`\n                // `replacedElement` contains element that is being replaced by `addPath`\n                // returns concatenated path\n                function addReplacementIntoPath(beginningPath, addPath, replacedElement, originalSelector) {\n                    var newSelectorPath, lastSelector, newJoinedSelector;\n                    // our new selector path\n                    newSelectorPath = [];\n\n                    //construct the joined selector - if & is the first thing this will be empty,\n                    // if not newJoinedSelector will be the last set of elements in the selector\n                    if (beginningPath.length > 0) {\n                        newSelectorPath = beginningPath.slice(0);\n                        lastSelector = newSelectorPath.pop();\n                        newJoinedSelector = originalSelector.createDerived(lastSelector.elements.slice(0));\n                    } else {\n                        newJoinedSelector = originalSelector.createDerived([]);\n                    }\n\n                    if (addPath.length > 0) {\n                        // /deep/ is a combinator that is valid without anything in front of it\n                        // so if the & does not have a combinator that is \"\" or \" \" then\n                        // and there is a combinator on the parent, then grab that.\n                        // this also allows + a { & .b { .a & { ... though not sure why you would want to do that\n                        var combinator = replacedElement.combinator, parentEl = addPath[0].elements[0];\n                        if (combinator.emptyOrWhitespace && !parentEl.combinator.emptyOrWhitespace) {\n                            combinator = parentEl.combinator;\n                        }\n                        // join the elements so far with the first part of the parent\n                        newJoinedSelector.elements.push(new Element(combinator, parentEl.value, replacedElement.index, replacedElement.currentFileInfo));\n                        newJoinedSelector.elements = newJoinedSelector.elements.concat(addPath[0].elements.slice(1));\n                    }\n\n                    // now add the joined selector - but only if it is not empty\n                    if (newJoinedSelector.elements.length !== 0) {\n                        newSelectorPath.push(newJoinedSelector);\n                    }\n\n                    //put together the parent selectors after the join (e.g. the rest of the parent)\n                    if (addPath.length > 1) {\n                        newSelectorPath = newSelectorPath.concat(addPath.slice(1));\n                    }\n                    return newSelectorPath;\n                }\n\n                // joins selector path from `beginningPath` with every selector path in `addPaths` array\n                // `replacedElement` contains element that is being replaced by `addPath`\n                // returns array with all concatenated paths\n                function addAllReplacementsIntoPath( beginningPath, addPaths, replacedElement, originalSelector, result) {\n                    var j;\n                    for (j = 0; j < beginningPath.length; j++) {\n                        var newSelectorPath = addReplacementIntoPath(beginningPath[j], addPaths, replacedElement, originalSelector);\n                        result.push(newSelectorPath);\n                    }\n                    return result;\n                }\n\n                function mergeElementsOnToSelectors(elements, selectors) {\n                    var i, sel;\n\n                    if (elements.length === 0) {\n                        return ;\n                    }\n                    if (selectors.length === 0) {\n                        selectors.push([ new Selector(elements) ]);\n                        return;\n                    }\n\n                    for (i = 0; i < selectors.length; i++) {\n                        sel = selectors[i];\n\n                        // if the previous thing in sel is a parent this needs to join on to it\n                        if (sel.length > 0) {\n                            sel[sel.length - 1] = sel[sel.length - 1].createDerived(sel[sel.length - 1].elements.concat(elements));\n                        } else {\n                            sel.push(new Selector(elements));\n                        }\n                    }\n                }\n\n                // joinSelector code follows\n                var i, newPaths, hadParentSelector;\n\n                newPaths = [];\n                hadParentSelector = replaceParentSelector(newPaths, context, selector);\n\n                if (!hadParentSelector) {\n                    if (context.length > 0) {\n                        newPaths = [];\n                        for (i = 0; i < context.length; i++) {\n                            newPaths.push(context[i].concat(selector));\n                        }\n                    } else {\n                        newPaths = [[selector]];\n                    }\n                }\n\n                for (i = 0; i < newPaths.length; i++) {\n                    paths.push(newPaths[i]);\n                }\n\n            };\n            module.exports = Ruleset;\n\n        }, {\n            \"../contexts\": 10,\n            \"../functions/default\": 19,\n            \"../functions/function-registry\": 21,\n            \"./debug-info\": 52,\n            \"./element\": 56,\n            \"./node\": 68,\n            \"./paren\": 70,\n            \"./rule\": 72,\n            \"./selector\": 75\n        }\n        ],\n        75: [function(require, module, exports) {\n            var Node = require(\"./node\"),\n            Element = require(\"./element\");\n\n            var Selector = function (elements, extendList, condition, index, currentFileInfo, isReferenced) {\n                this.elements = elements;\n                this.extendList = extendList;\n                this.condition = condition;\n                this.currentFileInfo = currentFileInfo || {};\n                this.isReferenced = isReferenced;\n                if (!condition) {\n                    this.evaldCondition = true;\n                }\n            };\n            Selector.prototype = new Node();\n            Selector.prototype.type = \"Selector\";\n            Selector.prototype.accept = function (visitor) {\n                if (this.elements) {\n                    this.elements = visitor.visitArray(this.elements);\n                }\n                if (this.extendList) {\n                    this.extendList = visitor.visitArray(this.extendList);\n                }\n                if (this.condition) {\n                    this.condition = visitor.visit(this.condition);\n                }\n            };\n            Selector.prototype.createDerived = function(elements, extendList, evaldCondition) {\n                evaldCondition = (evaldCondition != null) ? evaldCondition : this.evaldCondition;\n                var newSelector = new Selector(elements, extendList || this.extendList, null, this.index, this.currentFileInfo, this.isReferenced);\n                newSelector.evaldCondition = evaldCondition;\n                newSelector.mediaEmpty = this.mediaEmpty;\n                return newSelector;\n            };\n            Selector.prototype.createEmptySelectors = function() {\n                var el = new Element('', '&', this.index, this.currentFileInfo),\n                sels = [new Selector([el], null, null, this.index, this.currentFileInfo)];\n                sels[0].mediaEmpty = true;\n                return sels;\n            };\n            Selector.prototype.match = function (other) {\n                var elements = this.elements,\n                len = elements.length,\n                olen, i;\n\n                other.CacheElements();\n\n                olen = other._elements.length;\n                if (olen === 0 || len < olen) {\n                    return 0;\n                } else {\n                    for (i = 0; i < olen; i++) {\n                        if (elements[i].value !== other._elements[i]) {\n                            return 0;\n                        }\n                    }\n                }\n\n                return olen; // return number of matched elements\n            };\n            Selector.prototype.CacheElements = function() {\n                if (this._elements) {\n                    return;\n                }\n\n                var elements = this.elements.map( function(v) {\n                    return v.combinator.value + (v.value.value || v.value);\n                }).join(\"\").match(/[,&#\\*\\.\\w-]([\\w-]|(\\\\.))*/g);\n\n                if (elements) {\n                    if (elements[0] === \"&\") {\n                        elements.shift();\n                    }\n                } else {\n                    elements = [];\n                }\n\n                this._elements = elements;\n            };\n            Selector.prototype.isJustParentSelector = function() {\n                return !this.mediaEmpty &&\n                this.elements.length === 1 &&\n                this.elements[0].value === '&' &&\n                (this.elements[0].combinator.value === ' ' || this.elements[0].combinator.value === '');\n            };\n            Selector.prototype.eval = function (context) {\n                var evaldCondition = this.condition && this.condition.eval(context),\n                elements = this.elements, extendList = this.extendList;\n\n                elements = elements && elements.map(function (e) {\n                    return e.eval(context);\n                });\n                extendList = extendList && extendList.map(function(extend) {\n                    return extend.eval(context);\n                });\n\n                return this.createDerived(elements, extendList, evaldCondition);\n            };\n            Selector.prototype.genCSS = function (context, output) {\n                var i, element;\n                if ((!context || !context.firstSelector) && this.elements[0].combinator.value === \"\") {\n                    output.add(' ', this.currentFileInfo, this.index);\n                }\n                if (!this._css) {\n                    //TODO caching? speed comparison?\n                    for (i = 0; i < this.elements.length; i++) {\n                        element = this.elements[i];\n                        element.genCSS(context, output);\n                    }\n                }\n            };\n            Selector.prototype.markReferenced = function () {\n                this.isReferenced = true;\n            };\n            Selector.prototype.getIsReferenced = function() {\n                return !this.currentFileInfo.reference || this.isReferenced;\n            };\n            Selector.prototype.getIsOutput = function() {\n                return this.evaldCondition;\n            };\n            module.exports = Selector;\n\n        }, {\n            \"./element\": 56,\n            \"./node\": 68\n        }\n        ],\n        76: [function(require, module, exports) {\n            var Node = require(\"./node\");\n\n            var UnicodeDescriptor = function (value) {\n                this.value = value;\n            };\n            UnicodeDescriptor.prototype = new Node();\n            UnicodeDescriptor.prototype.type = \"UnicodeDescriptor\";\n\n            module.exports = UnicodeDescriptor;\n\n        }, {\n            \"./node\": 68\n        }\n        ],\n        77: [function(require, module, exports) {\n            var Node = require(\"./node\"),\n            unitConversions = require(\"../data/unit-conversions\");\n\n            var Unit = function (numerator, denominator, backupUnit) {\n                this.numerator = numerator ? numerator.slice(0).sort() : [];\n                this.denominator = denominator ? denominator.slice(0).sort() : [];\n                if (backupUnit) {\n                    this.backupUnit = backupUnit;\n                } else if (numerator && numerator.length) {\n                    this.backupUnit = numerator[0];\n                }\n            };\n\n            Unit.prototype = new Node();\n            Unit.prototype.type = \"Unit\";\n            Unit.prototype.clone = function () {\n                return new Unit(this.numerator.slice(0), this.denominator.slice(0), this.backupUnit);\n            };\n            Unit.prototype.genCSS = function (context, output) {\n                // Dimension checks the unit is singular and throws an error if in strict math mode.\n                var strictUnits = context && context.strictUnits;\n                if (this.numerator.length === 1) {\n                    output.add(this.numerator[0]); // the ideal situation\n                } else if (!strictUnits && this.backupUnit) {\n                    output.add(this.backupUnit);\n                } else if (!strictUnits && this.denominator.length) {\n                    output.add(this.denominator[0]);\n                }\n            };\n            Unit.prototype.toString = function () {\n                var i, returnStr = this.numerator.join(\"*\");\n                for (i = 0; i < this.denominator.length; i++) {\n                    returnStr += \"/\" + this.denominator[i];\n                }\n                return returnStr;\n            };\n            Unit.prototype.compare = function (other) {\n                return this.is(other.toString()) ? 0 : undefined;\n            };\n            Unit.prototype.is = function (unitString) {\n                return this.toString().toUpperCase() === unitString.toUpperCase();\n            };\n            Unit.prototype.isLength = function () {\n                return Boolean(this.toCSS().match(/px|em|%|in|cm|mm|pc|pt|ex/));\n            };\n            Unit.prototype.isEmpty = function () {\n                return this.numerator.length === 0 && this.denominator.length === 0;\n            };\n            Unit.prototype.isSingular = function() {\n                return this.numerator.length <= 1 && this.denominator.length === 0;\n            };\n            Unit.prototype.map = function(callback) {\n                var i;\n\n                for (i = 0; i < this.numerator.length; i++) {\n                    this.numerator[i] = callback(this.numerator[i], false);\n                }\n\n                for (i = 0; i < this.denominator.length; i++) {\n                    this.denominator[i] = callback(this.denominator[i], true);\n                }\n            };\n            Unit.prototype.usedUnits = function() {\n                var group, result = {}, mapUnit;\n\n                mapUnit = function (atomicUnit) {\n                    /*jshint loopfunc:true */\n                    if (group.hasOwnProperty(atomicUnit) && !result[groupName]) {\n                        result[groupName] = atomicUnit;\n                    }\n\n                    return atomicUnit;\n                };\n\n                for (var groupName in unitConversions) {\n                    if (unitConversions.hasOwnProperty(groupName)) {\n                        group = unitConversions[groupName];\n\n                        this.map(mapUnit);\n                    }\n                }\n\n                return result;\n            };\n            Unit.prototype.cancel = function () {\n                var counter = {}, atomicUnit, i;\n\n                for (i = 0; i < this.numerator.length; i++) {\n                    atomicUnit = this.numerator[i];\n                    counter[atomicUnit] = (counter[atomicUnit] || 0) + 1;\n                }\n\n                for (i = 0; i < this.denominator.length; i++) {\n                    atomicUnit = this.denominator[i];\n                    counter[atomicUnit] = (counter[atomicUnit] || 0) - 1;\n                }\n\n                this.numerator = [];\n                this.denominator = [];\n\n                for (atomicUnit in counter) {\n                    if (counter.hasOwnProperty(atomicUnit)) {\n                        var count = counter[atomicUnit];\n\n                        if (count > 0) {\n                            for (i = 0; i < count; i++) {\n                                this.numerator.push(atomicUnit);\n                            }\n                        } else if (count < 0) {\n                            for (i = 0; i < - count; i++) {\n                                this.denominator.push(atomicUnit);\n                            }\n                        }\n                    }\n                }\n\n                this.numerator.sort();\n                this.denominator.sort();\n            };\n            module.exports = Unit;\n\n        }, {\n            \"../data/unit-conversions\": 13,\n            \"./node\": 68\n        }\n        ],\n        78: [function(require, module, exports) {\n            var Node = require(\"./node\");\n\n            var URL = function (val, index, currentFileInfo, isEvald) {\n                this.value = val;\n                this.currentFileInfo = currentFileInfo;\n                this.index = index;\n                this.isEvald = isEvald;\n            };\n            URL.prototype = new Node();\n            URL.prototype.type = \"Url\";\n            URL.prototype.accept = function (visitor) {\n                this.value = visitor.visit(this.value);\n            };\n            URL.prototype.genCSS = function (context, output) {\n                output.add(\"url(\");\n                this.value.genCSS(context, output);\n                output.add(\")\");\n            };\n            URL.prototype.eval = function (context) {\n                var val = this.value.eval(context),\n                rootpath;\n\n                if (!this.isEvald) {\n                    // Add the base path if the URL is relative\n                    rootpath = this.currentFileInfo && this.currentFileInfo.rootpath;\n                    if (rootpath &&\n                    typeof val.value === \"string\" &&\n                    context.isPathRelative(val.value)) {\n\n                        if (!val.quote) {\n                            rootpath = rootpath.replace(/[\\(\\)'\"\\s]/g, function(match) {\n                                return \"\\\\\" + match;\n                            });\n                        }\n                        val.value = rootpath + val.value;\n                    }\n\n                    val.value = context.normalizePath(val.value);\n\n                    // Add url args if enabled\n                    if (context.urlArgs) {\n                        if (!val.value.match(/^\\s*data:/)) {\n                            var delimiter = val.value.indexOf('?') === - 1 ? '?' : '&';\n                            var urlArgs = delimiter + context.urlArgs;\n                            if (val.value.indexOf('#') !== - 1) {\n                                val.value = val.value.replace('#', urlArgs + '#');\n                            } else {\n                                val.value += urlArgs;\n                            }\n                        }\n                    }\n                }\n\n                return new URL(val, this.index, this.currentFileInfo, true);\n            };\n            module.exports = URL;\n\n        }, {\n            \"./node\": 68\n        }\n        ],\n        79: [function(require, module, exports) {\n            var Node = require(\"./node\");\n\n            var Value = function (value) {\n                this.value = value;\n                if (!value) {\n                    throw new Error(\"Value requires an array argument\");\n                }\n            };\n            Value.prototype = new Node();\n            Value.prototype.type = \"Value\";\n            Value.prototype.accept = function (visitor) {\n                if (this.value) {\n                    this.value = visitor.visitArray(this.value);\n                }\n            };\n            Value.prototype.eval = function (context) {\n                if (this.value.length === 1) {\n                    return this.value[0].eval(context);\n                } else {\n                    return new Value(this.value.map(function (v) {\n                        return v.eval(context);\n                    }));\n                }\n            };\n            Value.prototype.genCSS = function (context, output) {\n                var i;\n                for (i = 0; i < this.value.length; i++) {\n                    this.value[i].genCSS(context, output);\n                    if (i + 1 < this.value.length) {\n                        output.add((context && context.compress) ? ',' : ', ');\n                    }\n                }\n            };\n            module.exports = Value;\n\n        }, {\n            \"./node\": 68\n        }\n        ],\n        80: [function(require, module, exports) {\n            var Node = require(\"./node\");\n\n            var Variable = function (name, index, currentFileInfo) {\n                this.name = name;\n                this.index = index;\n                this.currentFileInfo = currentFileInfo || {};\n            };\n            Variable.prototype = new Node();\n            Variable.prototype.type = \"Variable\";\n            Variable.prototype.eval = function (context) {\n                var variable, name = this.name;\n\n                if (name.indexOf('@@') === 0) {\n                    name = '@' + new Variable(name.slice(1), this.index, this.currentFileInfo).eval(context).value;\n                }\n\n                if (this.evaluating) {\n                    throw {\n                        type: 'Name',\n                        message: \"Recursive variable definition for \" + name,\n                        filename: this.currentFileInfo.filename,\n                        index: this.index \n                    };\n                }\n\n                this.evaluating = true;\n\n                variable = this.find(context.frames, function (frame) {\n                    var v = frame.variable(name);\n                    if (v) {\n                        if (v.important) {\n                            var importantScope = context.importantScope[context.importantScope.length - 1];\n                            importantScope.important = v.important;\n                        }\n                        return v.value.eval(context);\n                    }\n                });\n                if (variable) {\n                    this.evaluating = false;\n                    return variable;\n                } else {\n                    throw {\n                        type: 'Name',\n                        message: \"variable \" + name + \" is undefined\",\n                        filename: this.currentFileInfo.filename,\n                        index: this.index \n                    };\n                }\n            };\n            Variable.prototype.find = function (obj, fun) {\n                for (var i = 0, r; i < obj.length; i++) {\n                    r = fun.call(obj, obj[i]);\n                    if (r) {\n                        return r;\n                    }\n                }\n                return null;\n            };\n            module.exports = Variable;\n\n        }, {\n            \"./node\": 68\n        }\n        ],\n        81: [function(require, module, exports) {\n            module.exports = {\n                getLocation: function(index, inputStream) {\n                    var n = index + 1,\n                    line = null,\n                    column = - 1;\n\n                    while (--n >= 0 && inputStream.charAt(n) !== '\\n') {\n                        column++;\n                    }\n\n                    if (typeof index === 'number') {\n                        line = (inputStream.slice(0, index).match(/\\n/g) || \"\").length;\n                    }\n\n                    return {\n                        line: line,\n                        column: column\n                    };\n                }\n            };\n\n        }, {}\n        ],\n        82: [function(require, module, exports) {\n            var tree = require(\"../tree\"),\n            Visitor = require(\"./visitor\"),\n            logger = require(\"../logger\");\n\n            /*jshint loopfunc:true */\n\n            var ExtendFinderVisitor = function() {\n                this._visitor = new Visitor(this);\n                this.contexts = [];\n                this.allExtendsStack = [[]];\n            };\n\n            ExtendFinderVisitor.prototype = {\n                run: function (root) {\n                    root = this._visitor.visit(root);\n                    root.allExtends = this.allExtendsStack[0];\n                    return root;\n                },\n                visitRule: function (ruleNode, visitArgs) {\n                    visitArgs.visitDeeper = false;\n                },\n                visitMixinDefinition: function (mixinDefinitionNode, visitArgs) {\n                    visitArgs.visitDeeper = false;\n                },\n                visitRuleset: function (rulesetNode, visitArgs) {\n                    if (rulesetNode.root) {\n                        return;\n                    }\n\n                    var i, j, extend, allSelectorsExtendList = [], extendList;\n\n                    // get &:extend(.a); rules which apply to all selectors in this ruleset\n                    var rules = rulesetNode.rules, ruleCnt = rules ? rules.length : 0;\n                    for (i = 0; i < ruleCnt; i++) {\n                        if (rulesetNode.rules[i] instanceof tree.Extend) {\n                            allSelectorsExtendList.push(rules[i]);\n                            rulesetNode.extendOnEveryPath = true;\n                        }\n                    }\n\n                    // now find every selector and apply the extends that apply to all extends\n                    // and the ones which apply to an individual extend\n                    var paths = rulesetNode.paths;\n                    for (i = 0; i < paths.length; i++) {\n                        var selectorPath = paths[i],\n                        selector = selectorPath[selectorPath.length - 1],\n                        selExtendList = selector.extendList;\n\n                        extendList = selExtendList ? selExtendList.slice(0).concat(allSelectorsExtendList)\n                        : allSelectorsExtendList;\n\n                        if (extendList) {\n                            extendList = extendList.map(function(allSelectorsExtend) {\n                                return allSelectorsExtend.clone();\n                            });\n                        }\n\n                        for (j = 0; j < extendList.length; j++) {\n                            this.foundExtends = true;\n                            extend = extendList[j];\n                            extend.findSelfSelectors(selectorPath);\n                            extend.ruleset = rulesetNode;\n                            if (j === 0) {\n                                extend.firstExtendOnThisSelectorPath = true;\n                            }\n                            this.allExtendsStack[this.allExtendsStack.length - 1].push(extend);\n                        }\n                    }\n\n                    this.contexts.push(rulesetNode.selectors);\n                },\n                visitRulesetOut: function (rulesetNode) {\n                    if (!rulesetNode.root) {\n                        this.contexts.length = this.contexts.length - 1;\n                    }\n                },\n                visitMedia: function (mediaNode, visitArgs) {\n                    mediaNode.allExtends = [];\n                    this.allExtendsStack.push(mediaNode.allExtends);\n                },\n                visitMediaOut: function (mediaNode) {\n                    this.allExtendsStack.length = this.allExtendsStack.length - 1;\n                },\n                visitDirective: function (directiveNode, visitArgs) {\n                    directiveNode.allExtends = [];\n                    this.allExtendsStack.push(directiveNode.allExtends);\n                },\n                visitDirectiveOut: function (directiveNode) {\n                    this.allExtendsStack.length = this.allExtendsStack.length - 1;\n                }\n            };\n\n            var ProcessExtendsVisitor = function() {\n                this._visitor = new Visitor(this);\n            };\n\n            ProcessExtendsVisitor.prototype = {\n                run: function(root) {\n                    var extendFinder = new ExtendFinderVisitor();\n                    this.extendIndicies = {};\n                    extendFinder.run(root);\n                    if (!extendFinder.foundExtends) {\n                        return root;\n                    }\n                    root.allExtends = root.allExtends.concat(this.doExtendChaining(root.allExtends, root.allExtends));\n                    this.allExtendsStack = [root.allExtends];\n                    var newRoot = this._visitor.visit(root);\n                    this.checkExtendsForNonMatched(root.allExtends);\n                    return newRoot;\n                },\n                checkExtendsForNonMatched: function(extendList) {\n                    var indicies = this.extendIndicies;\n                    extendList.filter(function(extend) {\n                        return !extend.hasFoundMatches && extend.parent_ids.length == 1;\n                    }).forEach(function(extend) {\n                        var selector = \"_unknown_\";\n                        try {\n                            selector = extend.selector.toCSS({});\n                        } catch (_) {}\n\n                        if (!indicies[extend.index + ' ' + selector]) {\n                            indicies[extend.index + ' ' + selector] = true;\n                            logger.warn(\"extend '\" + selector + \"' has no matches\");\n                        }\n                    });\n                },\n                doExtendChaining: function (extendsList, extendsListTarget, iterationCount) {\n                    //\n                    // chaining is different from normal extension.. if we extend an extend then we are not just copying, altering\n                    // and pasting the selector we would do normally, but we are also adding an extend with the same target selector\n                    // this means this new extend can then go and alter other extends\n                    //\n                    // this method deals with all the chaining work - without it, extend is flat and doesn't work on other extend selectors\n                    // this is also the most expensive.. and a match on one selector can cause an extension of a selector we had already\n                    // processed if we look at each selector at a time, as is done in visitRuleset\n\n                    var extendIndex, targetExtendIndex, matches, extendsToAdd = [], newSelector, extendVisitor = this, selectorPath,\n                    extend, targetExtend, newExtend;\n\n                    iterationCount = iterationCount || 0;\n\n                    //loop through comparing every extend with every target extend.\n                    // a target extend is the one on the ruleset we are looking at copy/edit/pasting in place\n                    // e.g.  .a:extend(.b) {}  and .b:extend(.c) {} then the first extend extends the second one\n                    // and the second is the target.\n                    // the seperation into two lists allows us to process a subset of chains with a bigger set, as is the\n                    // case when processing media queries\n                    for (extendIndex = 0; extendIndex < extendsList.length; extendIndex++) {\n                        for (targetExtendIndex = 0; targetExtendIndex < extendsListTarget.length; targetExtendIndex++) {\n\n                            extend = extendsList[extendIndex];\n                            targetExtend = extendsListTarget[targetExtendIndex];\n\n                            // look for circular references\n                            if ( extend.parent_ids.indexOf( targetExtend.object_id ) >= 0 ) {\n                                continue;\n                            }\n\n                            // find a match in the target extends self selector (the bit before :extend)\n                            selectorPath = [targetExtend.selfSelectors[0]];\n                            matches = extendVisitor.findMatch(extend, selectorPath);\n\n                            if (matches.length) {\n\n                                extend.hasFoundMatches = true;\n\n                                // we found a match, so for each self selector..\n                                extend.selfSelectors.forEach(function(selfSelector) {\n\n                                    // process the extend as usual\n                                    newSelector = extendVisitor.extendSelector(matches, selectorPath, selfSelector);\n\n                                    // but now we create a new extend from it\n                                    newExtend = new (tree.Extend)(targetExtend.selector, targetExtend.option, 0);\n                                    newExtend.selfSelectors = newSelector;\n\n                                    // add the extend onto the list of extends for that selector\n                                    newSelector[newSelector.length - 1].extendList = [newExtend];\n\n                                    // record that we need to add it.\n                                    extendsToAdd.push(newExtend);\n                                    newExtend.ruleset = targetExtend.ruleset;\n\n                                    //remember its parents for circular references\n                                    newExtend.parent_ids = newExtend.parent_ids.concat(targetExtend.parent_ids, extend.parent_ids);\n\n                                    // only process the selector once.. if we have :extend(.a,.b) then multiple\n                                    // extends will look at the same selector path, so when extending\n                                    // we know that any others will be duplicates in terms of what is added to the css\n                                    if (targetExtend.firstExtendOnThisSelectorPath) {\n                                        newExtend.firstExtendOnThisSelectorPath = true;\n                                        targetExtend.ruleset.paths.push(newSelector);\n                                    }\n                                });\n                            }\n                        }\n                    }\n\n                    if (extendsToAdd.length) {\n                        // try to detect circular references to stop a stack overflow.\n                        // may no longer be needed.\n                        this.extendChainCount++;\n                        if (iterationCount > 100) {\n                            var selectorOne = \"{unable to calculate}\";\n                            var selectorTwo = \"{unable to calculate}\";\n                            try {\n                                selectorOne = extendsToAdd[0].selfSelectors[0].toCSS();\n                                selectorTwo = extendsToAdd[0].selector.toCSS();\n                            } catch (e) {}\n                            throw {\n                                message: \"extend circular reference detected. One of the circular extends is currently:\" +\n                                selectorOne + \":extend(\" + selectorTwo + \")\"\n                            };\n                        }\n\n                        // now process the new extends on the existing rules so that we can handle a extending b extending c extending\n                        // d extending e...\n                        return extendsToAdd.concat(extendVisitor.doExtendChaining(extendsToAdd, extendsListTarget, iterationCount + 1));\n                    } else {\n                        return extendsToAdd;\n                    }\n                },\n                visitRule: function (ruleNode, visitArgs) {\n                    visitArgs.visitDeeper = false;\n                },\n                visitMixinDefinition: function (mixinDefinitionNode, visitArgs) {\n                    visitArgs.visitDeeper = false;\n                },\n                visitSelector: function (selectorNode, visitArgs) {\n                    visitArgs.visitDeeper = false;\n                },\n                visitRuleset: function (rulesetNode, visitArgs) {\n                    if (rulesetNode.root) {\n                        return;\n                    }\n                    var matches, pathIndex, extendIndex, allExtends = this.allExtendsStack[this.allExtendsStack.length - 1],\n                    selectorsToAdd = [], extendVisitor = this, selectorPath;\n\n                    // look at each selector path in the ruleset, find any extend matches and then copy, find and replace\n\n                    for (extendIndex = 0; extendIndex < allExtends.length; extendIndex++) {\n                        for (pathIndex = 0; pathIndex < rulesetNode.paths.length; pathIndex++) {\n                            selectorPath = rulesetNode.paths[pathIndex];\n\n                            // extending extends happens initially, before the main pass\n                            if (rulesetNode.extendOnEveryPath) {\n                                continue;\n                            }\n                            var extendList = selectorPath[selectorPath.length - 1].extendList;\n                            if (extendList && extendList.length) {\n                                continue;\n                            }\n\n                            matches = this.findMatch(allExtends[extendIndex], selectorPath);\n\n                            if (matches.length) {\n                                allExtends[extendIndex].hasFoundMatches = true;\n\n                                allExtends[extendIndex].selfSelectors.forEach(function(selfSelector) {\n                                    selectorsToAdd.push(extendVisitor.extendSelector(matches, selectorPath, selfSelector));\n                                });\n                            }\n                        }\n                    }\n                    rulesetNode.paths = rulesetNode.paths.concat(selectorsToAdd);\n                },\n                findMatch: function (extend, haystackSelectorPath) {\n                    //\n                    // look through the haystack selector path to try and find the needle - extend.selector\n                    // returns an array of selector matches that can then be replaced\n                    //\n                    var haystackSelectorIndex, hackstackSelector, hackstackElementIndex, haystackElement,\n                    targetCombinator, i,\n                    extendVisitor = this,\n                    needleElements = extend.selector.elements,\n                    potentialMatches = [], potentialMatch, matches = [];\n\n                    // loop through the haystack elements\n                    for (haystackSelectorIndex = 0; haystackSelectorIndex < haystackSelectorPath.length; haystackSelectorIndex++) {\n                        hackstackSelector = haystackSelectorPath[haystackSelectorIndex];\n\n                        for (hackstackElementIndex = 0; hackstackElementIndex < hackstackSelector.elements.length; hackstackElementIndex++) {\n\n                            haystackElement = hackstackSelector.elements[hackstackElementIndex];\n\n                            // if we allow elements before our match we can add a potential match every time. otherwise only at the first element.\n                            if (extend.allowBefore || (haystackSelectorIndex === 0 && hackstackElementIndex === 0)) {\n                                potentialMatches.push({\n                                    pathIndex: haystackSelectorIndex,\n                                    index: hackstackElementIndex,\n                                    matched: 0,\n                                    initialCombinator: haystackElement.combinator\n                                });\n                            }\n\n                            for (i = 0; i < potentialMatches.length; i++) {\n                                potentialMatch = potentialMatches[i];\n\n                                // selectors add \" \" onto the first element. When we use & it joins the selectors together, but if we don't\n                                // then each selector in haystackSelectorPath has a space before it added in the toCSS phase. so we need to\n                                // work out what the resulting combinator will be\n                                targetCombinator = haystackElement.combinator.value;\n                                if (targetCombinator === '' && hackstackElementIndex === 0) {\n                                    targetCombinator = ' ';\n                                }\n\n                                // if we don't match, null our match to indicate failure\n                                if (!extendVisitor.isElementValuesEqual(needleElements[potentialMatch.matched].value, haystackElement.value) ||\n                                (potentialMatch.matched > 0 && needleElements[potentialMatch.matched].combinator.value !== targetCombinator)) {\n                                    potentialMatch = null;\n                                } else {\n                                    potentialMatch.matched++;\n                                }\n\n                                // if we are still valid and have finished, test whether we have elements after and whether these are allowed\n                                if (potentialMatch) {\n                                    potentialMatch.finished = potentialMatch.matched === needleElements.length;\n                                    if (potentialMatch.finished &&\n                                    (!extend.allowAfter &&\n                                    (hackstackElementIndex + 1 < hackstackSelector.elements.length || haystackSelectorIndex + 1 < haystackSelectorPath.length))) {\n                                        potentialMatch = null;\n                                    }\n                                }\n                                // if null we remove, if not, we are still valid, so either push as a valid match or continue\n                                if (potentialMatch) {\n                                    if (potentialMatch.finished) {\n                                        potentialMatch.length = needleElements.length;\n                                        potentialMatch.endPathIndex = haystackSelectorIndex;\n                                        potentialMatch.endPathElementIndex = hackstackElementIndex + 1; // index after end of match\n                                        potentialMatches.length = 0; // we don't allow matches to overlap, so start matching again\n                                        matches.push(potentialMatch);\n                                    }\n                                } else {\n                                    potentialMatches.splice(i, 1);\n                                    i--;\n                                }\n                            }\n                        }\n                    }\n                    return matches;\n                },\n                isElementValuesEqual: function(elementValue1, elementValue2) {\n                    if (typeof elementValue1 === \"string\" || typeof elementValue2 === \"string\") {\n                        return elementValue1 === elementValue2;\n                    }\n                    if (elementValue1 instanceof tree.Attribute) {\n                        if (elementValue1.op !== elementValue2.op || elementValue1.key !== elementValue2.key) {\n                            return false;\n                        }\n                        if (!elementValue1.value || !elementValue2.value) {\n                            if (elementValue1.value || elementValue2.value) {\n                                return false;\n                            }\n                            return true;\n                        }\n                        elementValue1 = elementValue1.value.value || elementValue1.value;\n                        elementValue2 = elementValue2.value.value || elementValue2.value;\n                        return elementValue1 === elementValue2;\n                    }\n                    elementValue1 = elementValue1.value;\n                    elementValue2 = elementValue2.value;\n                    if (elementValue1 instanceof tree.Selector) {\n                        if (!(elementValue2 instanceof tree.Selector) || elementValue1.elements.length !== elementValue2.elements.length) {\n                            return false;\n                        }\n                        for (var i = 0; i < elementValue1.elements.length; i++) {\n                            if (elementValue1.elements[i].combinator.value !== elementValue2.elements[i].combinator.value) {\n                                if (i !== 0 || (elementValue1.elements[i].combinator.value || ' ') !== (elementValue2.elements[i].combinator.value || ' ')) {\n                                    return false;\n                                }\n                            }\n                            if (!this.isElementValuesEqual(elementValue1.elements[i].value, elementValue2.elements[i].value)) {\n                                return false;\n                            }\n                        }\n                        return true;\n                    }\n                    return false;\n                },\n                extendSelector: function (matches, selectorPath, replacementSelector) {\n\n                    //for a set of matches, replace each match with the replacement selector\n\n                    var currentSelectorPathIndex = 0,\n                    currentSelectorPathElementIndex = 0,\n                    path = [],\n                    matchIndex,\n                    selector,\n                    firstElement,\n                    match,\n                    newElements;\n\n                    for (matchIndex = 0; matchIndex < matches.length; matchIndex++) {\n                        match = matches[matchIndex];\n                        selector = selectorPath[match.pathIndex];\n                        firstElement = new tree.Element(\n                        match.initialCombinator,\n                        replacementSelector.elements[0].value,\n                        replacementSelector.elements[0].index,\n                        replacementSelector.elements[0].currentFileInfo\n                        );\n\n                        if (match.pathIndex > currentSelectorPathIndex && currentSelectorPathElementIndex > 0) {\n                            path[path.length - 1].elements = path[path.length - 1]\n                            .elements.concat(selectorPath[currentSelectorPathIndex].elements.slice(currentSelectorPathElementIndex));\n                            currentSelectorPathElementIndex = 0;\n                            currentSelectorPathIndex++;\n                        }\n\n                        newElements = selector.elements\n                        .slice(currentSelectorPathElementIndex, match.index)\n                        .concat([firstElement])\n                        .concat(replacementSelector.elements.slice(1));\n\n                        if (currentSelectorPathIndex === match.pathIndex && matchIndex > 0) {\n                            path[path.length - 1].elements =\n                            path[path.length - 1].elements.concat(newElements);\n                        } else {\n                            path = path.concat(selectorPath.slice(currentSelectorPathIndex, match.pathIndex));\n\n                            path.push(new tree.Selector(\n                            newElements\n                            ));\n                        }\n                        currentSelectorPathIndex = match.endPathIndex;\n                        currentSelectorPathElementIndex = match.endPathElementIndex;\n                        if (currentSelectorPathElementIndex >= selectorPath[currentSelectorPathIndex].elements.length) {\n                            currentSelectorPathElementIndex = 0;\n                            currentSelectorPathIndex++;\n                        }\n                    }\n\n                    if (currentSelectorPathIndex < selectorPath.length && currentSelectorPathElementIndex > 0) {\n                        path[path.length - 1].elements = path[path.length - 1]\n                        .elements.concat(selectorPath[currentSelectorPathIndex].elements.slice(currentSelectorPathElementIndex));\n                        currentSelectorPathIndex++;\n                    }\n\n                    path = path.concat(selectorPath.slice(currentSelectorPathIndex, selectorPath.length));\n\n                    return path;\n                },\n                visitRulesetOut: function (rulesetNode) {},\n                visitMedia: function (mediaNode, visitArgs) {\n                    var newAllExtends = mediaNode.allExtends.concat(this.allExtendsStack[this.allExtendsStack.length - 1]);\n                    newAllExtends = newAllExtends.concat(this.doExtendChaining(newAllExtends, mediaNode.allExtends));\n                    this.allExtendsStack.push(newAllExtends);\n                },\n                visitMediaOut: function (mediaNode) {\n                    var lastIndex = this.allExtendsStack.length - 1;\n                    this.allExtendsStack.length = lastIndex;\n                },\n                visitDirective: function (directiveNode, visitArgs) {\n                    var newAllExtends = directiveNode.allExtends.concat(this.allExtendsStack[this.allExtendsStack.length - 1]);\n                    newAllExtends = newAllExtends.concat(this.doExtendChaining(newAllExtends, directiveNode.allExtends));\n                    this.allExtendsStack.push(newAllExtends);\n                },\n                visitDirectiveOut: function (directiveNode) {\n                    var lastIndex = this.allExtendsStack.length - 1;\n                    this.allExtendsStack.length = lastIndex;\n                }\n            };\n\n            module.exports = ProcessExtendsVisitor;\n\n        }, {\n            \"../logger\": 31,\n            \"../tree\": 60,\n            \"./visitor\": 88\n        }\n        ],\n        83: [function(require, module, exports) {\n            function ImportSequencer(onSequencerEmpty) {\n                this.imports = [];\n                this.variableImports = [];\n                this._onSequencerEmpty = onSequencerEmpty;\n                this._currentDepth = 0;\n            }\n\n            ImportSequencer.prototype.addImport = function(callback) {\n                var importSequencer = this,\n                importItem = {\n                    callback: callback,\n                    args: null,\n                    isReady: false\n                };\n                this.imports.push(importItem);\n                return function() {\n                    importItem.args = Array.prototype.slice.call(arguments, 0);\n                    importItem.isReady = true;\n                    importSequencer.tryRun();\n                };\n            };\n\n            ImportSequencer.prototype.addVariableImport = function(callback) {\n                this.variableImports.push(callback);\n            };\n\n            ImportSequencer.prototype.tryRun = function() {\n                this._currentDepth++;\n                try {\n                    while (true) {\n                        while (this.imports.length > 0) {\n                            var importItem = this.imports[0];\n                            if (!importItem.isReady) {\n                                return;\n                            }\n                            this.imports = this.imports.slice(1);\n                            importItem.callback.apply(null, importItem.args);\n                        }\n                        if (this.variableImports.length === 0) {\n                            break;\n                        }\n                        var variableImport = this.variableImports[0];\n                        this.variableImports = this.variableImports.slice(1);\n                        variableImport();\n                    }\n                } finally {\n                    this._currentDepth--;\n                }\n                if (this._currentDepth === 0 && this._onSequencerEmpty) {\n                    this._onSequencerEmpty();\n                }\n            };\n\n            module.exports = ImportSequencer;\n\n        }, {}\n        ],\n        84: [function(require, module, exports) {\n            var contexts = require(\"../contexts\"),\n            Visitor = require(\"./visitor\"),\n            ImportSequencer = require(\"./import-sequencer\");\n\n            var ImportVisitor = function(importer, finish) {\n\n                this._visitor = new Visitor(this);\n                this._importer = importer;\n                this._finish = finish;\n                this.context = new contexts.Eval();\n                this.importCount = 0;\n                this.onceFileDetectionMap = {};\n                this.recursionDetector = {};\n                this._sequencer = new ImportSequencer(this._onSequencerEmpty.bind(this));\n            };\n\n            ImportVisitor.prototype = {\n                isReplacing: false,\n                run: function (root) {\n                    try {\n                        // process the contents\n                        this._visitor.visit(root);\n                    } catch (e) {\n                        this.error = e;\n                    }\n\n                    this.isFinished = true;\n                    this._sequencer.tryRun();\n                },\n                _onSequencerEmpty: function() {\n                    if (!this.isFinished) {\n                        return;\n                    }\n                    this._finish(this.error);\n                },\n                visitImport: function (importNode, visitArgs) {\n                    var inlineCSS = importNode.options.inline;\n\n                    if (!importNode.css || inlineCSS) {\n\n                        var context = new contexts.Eval(this.context, this.context.frames.slice(0));\n                        var importParent = context.frames[0];\n\n                        this.importCount++;\n                        if (importNode.isVariableImport()) {\n                            this._sequencer.addVariableImport(this.processImportNode.bind(this, importNode, context, importParent));\n                        } else {\n                            this.processImportNode(importNode, context, importParent);\n                        }\n                    }\n                    visitArgs.visitDeeper = false;\n                },\n                processImportNode: function(importNode, context, importParent) {\n                    var evaldImportNode,\n                    inlineCSS = importNode.options.inline;\n\n                    try {\n                        evaldImportNode = importNode.evalForImport(context);\n                    } catch (e) {\n                        if (!e.filename) {\n                            e.index = importNode.index;\n                            e.filename = importNode.currentFileInfo.filename;\n                        }\n                        // attempt to eval properly and treat as css\n                        importNode.css = true;\n                        // if that fails, this error will be thrown\n                        importNode.error = e;\n                    }\n\n                    if (evaldImportNode && (!evaldImportNode.css || inlineCSS)) {\n\n                        if (evaldImportNode.options.multiple) {\n                            context.importMultiple = true;\n                        }\n\n                        // try appending if we haven't determined if it is css or not\n                        var tryAppendLessExtension = evaldImportNode.css === undefined;\n\n                        for (var i = 0; i < importParent.rules.length; i++) {\n                            if (importParent.rules[i] === importNode) {\n                                importParent.rules[i] = evaldImportNode;\n                                break;\n                            }\n                        }\n\n                        var onImported = this.onImported.bind(this, evaldImportNode, context),\n                        sequencedOnImported = this._sequencer.addImport(onImported);\n\n                        this._importer.push(evaldImportNode.getPath(), tryAppendLessExtension, evaldImportNode.currentFileInfo,\n                        evaldImportNode.options, sequencedOnImported);\n                    } else {\n                        this.importCount--;\n                        if (this.isFinished) {\n                            this._sequencer.tryRun();\n                        }\n                    }\n                },\n                onImported: function (importNode, context, e, root, importedAtRoot, fullPath) {\n                    if (e) {\n                        if (!e.filename) {\n                            e.index = importNode.index;\n                            e.filename = importNode.currentFileInfo.filename;\n                        }\n                        this.error = e;\n                    }\n\n                    var importVisitor = this,\n                    inlineCSS = importNode.options.inline,\n                    isPlugin = importNode.options.plugin,\n                    duplicateImport = importedAtRoot || fullPath in importVisitor.recursionDetector;\n\n                    if (!context.importMultiple) {\n                        if (duplicateImport) {\n                            importNode.skip = true;\n                        } else {\n                            importNode.skip = function() {\n                                if (fullPath in importVisitor.onceFileDetectionMap) {\n                                    return true;\n                                }\n                                importVisitor.onceFileDetectionMap[fullPath] = true;\n                                return false;\n                            };\n                        }\n                    }\n\n                    if (root) {\n                        importNode.root = root;\n                        importNode.importedFilename = fullPath;\n\n                        if (!inlineCSS && !isPlugin && (context.importMultiple || !duplicateImport)) {\n                            importVisitor.recursionDetector[fullPath] = true;\n\n                            var oldContext = this.context;\n                            this.context = context;\n                            try {\n                                this._visitor.visit(root);\n                            } catch (e) {\n                                this.error = e;\n                            }\n                            this.context = oldContext;\n                        }\n                    }\n\n                    importVisitor.importCount--;\n\n                    if (importVisitor.isFinished) {\n                        importVisitor._sequencer.tryRun();\n                    }\n                },\n                visitRule: function (ruleNode, visitArgs) {\n                    if (ruleNode.value.type === \"DetachedRuleset\") {\n                        this.context.frames.unshift(ruleNode);\n                    } else {\n                        visitArgs.visitDeeper = false;\n                    }\n                },\n                visitRuleOut : function(ruleNode) {\n                    if (ruleNode.value.type === \"DetachedRuleset\") {\n                        this.context.frames.shift();\n                    }\n                },\n                visitDirective: function (directiveNode, visitArgs) {\n                    this.context.frames.unshift(directiveNode);\n                },\n                visitDirectiveOut: function (directiveNode) {\n                    this.context.frames.shift();\n                },\n                visitMixinDefinition: function (mixinDefinitionNode, visitArgs) {\n                    this.context.frames.unshift(mixinDefinitionNode);\n                },\n                visitMixinDefinitionOut: function (mixinDefinitionNode) {\n                    this.context.frames.shift();\n                },\n                visitRuleset: function (rulesetNode, visitArgs) {\n                    this.context.frames.unshift(rulesetNode);\n                },\n                visitRulesetOut: function (rulesetNode) {\n                    this.context.frames.shift();\n                },\n                visitMedia: function (mediaNode, visitArgs) {\n                    this.context.frames.unshift(mediaNode.rules[0]);\n                },\n                visitMediaOut: function (mediaNode) {\n                    this.context.frames.shift();\n                }\n            };\n            module.exports = ImportVisitor;\n\n        }, {\n            \"../contexts\": 10,\n            \"./import-sequencer\": 83,\n            \"./visitor\": 88\n        }\n        ],\n        85: [function(require, module, exports) {\n            var visitors = {\n                Visitor: require(\"./visitor\"),\n                ImportVisitor: require('./import-visitor'),\n                ExtendVisitor: require('./extend-visitor'),\n                JoinSelectorVisitor: require('./join-selector-visitor'),\n                ToCSSVisitor: require('./to-css-visitor')\n            };\n\n            module.exports = visitors;\n\n        }, {\n            \"./extend-visitor\": 82,\n            \"./import-visitor\": 84,\n            \"./join-selector-visitor\": 86,\n            \"./to-css-visitor\": 87,\n            \"./visitor\": 88\n        }\n        ],\n        86: [function(require, module, exports) {\n            var Visitor = require(\"./visitor\");\n\n            var JoinSelectorVisitor = function() {\n                this.contexts = [[]];\n                this._visitor = new Visitor(this);\n            };\n\n            JoinSelectorVisitor.prototype = {\n                run: function (root) {\n                    return this._visitor.visit(root);\n                },\n                visitRule: function (ruleNode, visitArgs) {\n                    visitArgs.visitDeeper = false;\n                },\n                visitMixinDefinition: function (mixinDefinitionNode, visitArgs) {\n                    visitArgs.visitDeeper = false;\n                },\n\n                visitRuleset: function (rulesetNode, visitArgs) {\n                    var context = this.contexts[this.contexts.length - 1],\n                    paths = [], selectors;\n\n                    this.contexts.push(paths);\n\n                    if (! rulesetNode.root) {\n                        selectors = rulesetNode.selectors;\n                        if (selectors) {\n                            selectors = selectors.filter(function(selector) {\n                                return selector.getIsOutput();\n                            });\n                            rulesetNode.selectors = selectors.length ? selectors : (selectors = null);\n                            if (selectors) {\n                                rulesetNode.joinSelectors(paths, context, selectors);\n                            }\n                        }\n                        if (!selectors) {\n                            rulesetNode.rules = null;\n                        }\n                        rulesetNode.paths = paths;\n                    }\n                },\n                visitRulesetOut: function (rulesetNode) {\n                    this.contexts.length = this.contexts.length - 1;\n                },\n                visitMedia: function (mediaNode, visitArgs) {\n                    var context = this.contexts[this.contexts.length - 1];\n                    mediaNode.rules[0].root = (context.length === 0 || context[0].multiMedia);\n                },\n                visitDirective: function (directiveNode, visitArgs) {\n                    var context = this.contexts[this.contexts.length - 1];\n                    if (directiveNode.rules && directiveNode.rules.length) {\n                        directiveNode.rules[0].root = (directiveNode.isRooted || context.length === 0 || null);\n                    }\n                }\n            };\n\n            module.exports = JoinSelectorVisitor;\n\n        }, {\n            \"./visitor\": 88\n        }\n        ],\n        87: [function(require, module, exports) {\n            var tree = require(\"../tree\"),\n            Visitor = require(\"./visitor\");\n\n            var ToCSSVisitor = function(context) {\n                this._visitor = new Visitor(this);\n                this._context = context;\n            };\n\n            ToCSSVisitor.prototype = {\n                isReplacing: true,\n                run: function (root) {\n                    return this._visitor.visit(root);\n                },\n\n                visitRule: function (ruleNode, visitArgs) {\n                    if (ruleNode.variable) {\n                        return;\n                    }\n                    return ruleNode;\n                },\n\n                visitMixinDefinition: function (mixinNode, visitArgs) {\n                    // mixin definitions do not get eval'd - this means they keep state\n                    // so we have to clear that state here so it isn't used if toCSS is called twice\n                    mixinNode.frames = [];\n                },\n\n                visitExtend: function (extendNode, visitArgs) {},\n\n                visitComment: function (commentNode, visitArgs) {\n                    if (commentNode.isSilent(this._context)) {\n                        return;\n                    }\n                    return commentNode;\n                },\n\n                visitMedia: function(mediaNode, visitArgs) {\n                    mediaNode.accept(this._visitor);\n                    visitArgs.visitDeeper = false;\n\n                    if (!mediaNode.rules.length) {\n                        return;\n                    }\n                    return mediaNode;\n                },\n\n                visitImport: function (importNode, visitArgs) {\n                    if (importNode.path.currentFileInfo.reference !== undefined && importNode.css) {\n                        return;\n                    }\n                    return importNode;\n                },\n\n                visitDirective: function(directiveNode, visitArgs) {\n                    if (directiveNode.name === \"@charset\") {\n                        if (!directiveNode.getIsReferenced()) {\n                            return;\n                        }\n                        // Only output the debug info together with subsequent @charset definitions\n                        // a comment (or @media statement) before the actual @charset directive would\n                        // be considered illegal css as it has to be on the first line\n                        if (this.charset) {\n                            if (directiveNode.debugInfo) {\n                                var comment = new tree.Comment(\"/* \" + directiveNode.toCSS(this._context).replace(/\\n/g, \"\") + \" */\\n\");\n                                comment.debugInfo = directiveNode.debugInfo;\n                                return this._visitor.visit(comment);\n                            }\n                            return;\n                        }\n                        this.charset = true;\n                    }\n                    function hasVisibleChild(directiveNode) {\n                        //prepare list of childs\n                        var rule, bodyRules = directiveNode.rules;\n                        //if there is only one nested ruleset and that one has no path, then it is\n                        //just fake ruleset that got not replaced and we need to look inside it to\n                        //get real childs\n                        if (bodyRules.length === 1 && (!bodyRules[0].paths || bodyRules[0].paths.length === 0)) {\n                            bodyRules = bodyRules[0].rules;\n                        }\n                        for (var r = 0; r < bodyRules.length; r++) {\n                            rule = bodyRules[r];\n                            if (rule.getIsReferenced && rule.getIsReferenced()) {\n                                //the directive contains something that was referenced (likely by extend)\n                                //therefore it needs to be shown in output too\n                                return true;\n                            }\n                        }\n                        return false;\n                    }\n\n                    if (directiveNode.rules && directiveNode.rules.length) {\n                        //it is still true that it is only one ruleset in array\n                        //this is last such moment\n                        this._mergeRules(directiveNode.rules[0].rules);\n                        //process childs\n                        directiveNode.accept(this._visitor);\n                        visitArgs.visitDeeper = false;\n\n                        // the directive was directly referenced and therefore needs to be shown in the output\n                        if (directiveNode.getIsReferenced()) {\n                            return directiveNode;\n                        }\n\n                        if (!directiveNode.rules || !directiveNode.rules.length) {\n                            return ;\n                        }\n\n                        //the directive was not directly referenced - we need to check whether some of its childs\n                        //was referenced\n                        if (hasVisibleChild(directiveNode)) {\n                            //marking as referenced in case the directive is stored inside another directive\n                            directiveNode.markReferenced();\n                            return directiveNode;\n                        }\n\n                        //The directive was not directly referenced and does not contain anything that\n                        //was referenced. Therefore it must not be shown in output.\n                        return ;\n                    } else {\n                        if (!directiveNode.getIsReferenced()) {\n                            return;\n                        }\n                    }\n                    return directiveNode;\n                },\n\n                checkPropertiesInRoot: function(rules) {\n                    var ruleNode;\n                    for (var i = 0; i < rules.length; i++) {\n                        ruleNode = rules[i];\n                        if (ruleNode instanceof tree.Rule && !ruleNode.variable) {\n                            throw {\n                                message: \"properties must be inside selector blocks, they cannot be in the root.\",\n                                index: ruleNode.index,\n                                filename: ruleNode.currentFileInfo ? ruleNode.currentFileInfo.filename : null\n                            };\n                        }\n                    }\n                },\n\n                visitRuleset: function (rulesetNode, visitArgs) {\n                    var rule, rulesets = [];\n                    if (rulesetNode.firstRoot) {\n                        this.checkPropertiesInRoot(rulesetNode.rules);\n                    }\n                    if (! rulesetNode.root) {\n                        if (rulesetNode.paths) {\n                            rulesetNode.paths = rulesetNode.paths\n                            .filter(function(p) {\n                                var i;\n                                if (p[0].elements[0].combinator.value === ' ') {\n                                    p[0].elements[0].combinator = new (tree.Combinator)('');\n                                }\n                                for (i = 0; i < p.length; i++) {\n                                    if (p[i].getIsReferenced() && p[i].getIsOutput()) {\n                                        return true;\n                                    }\n                                }\n                                return false;\n                            });\n                        }\n\n                        // Compile rules and rulesets\n                        var nodeRules = rulesetNode.rules, nodeRuleCnt = nodeRules ? nodeRules.length : 0;\n                        for (var i = 0; i < nodeRuleCnt; ) {\n                            rule = nodeRules[i];\n                            if (rule && rule.rules) {\n                                // visit because we are moving them out from being a child\n                                rulesets.push(this._visitor.visit(rule));\n                                nodeRules.splice(i, 1);\n                                nodeRuleCnt--;\n                                continue;\n                            }\n                            i++;\n                        }\n                        // accept the visitor to remove rules and refactor itself\n                        // then we can decide now whether we want it or not\n                        if (nodeRuleCnt > 0) {\n                            rulesetNode.accept(this._visitor);\n                        } else {\n                            rulesetNode.rules = null;\n                        }\n                        visitArgs.visitDeeper = false;\n\n                        nodeRules = rulesetNode.rules;\n                        if (nodeRules) {\n                            this._mergeRules(nodeRules);\n                            nodeRules = rulesetNode.rules;\n                        }\n                        if (nodeRules) {\n                            this._removeDuplicateRules(nodeRules);\n                            nodeRules = rulesetNode.rules;\n                        }\n\n                        // now decide whether we keep the ruleset\n                        if (nodeRules && nodeRules.length > 0 && rulesetNode.paths.length > 0) {\n                            rulesets.splice(0, 0, rulesetNode);\n                        }\n                    } else {\n                        rulesetNode.accept(this._visitor);\n                        visitArgs.visitDeeper = false;\n                        if (rulesetNode.firstRoot || (rulesetNode.rules && rulesetNode.rules.length > 0)) {\n                            rulesets.splice(0, 0, rulesetNode);\n                        }\n                    }\n                    if (rulesets.length === 1) {\n                        return rulesets[0];\n                    }\n                    return rulesets;\n                },\n\n                _removeDuplicateRules: function(rules) {\n                    if (!rules) {\n                        return;\n                    }\n\n                    // remove duplicates\n                    var ruleCache = {},\n                    ruleList, rule, i;\n\n                    for (i = rules.length - 1; i >= 0 ; i--) {\n                        rule = rules[i];\n                        if (rule instanceof tree.Rule) {\n                            if (!ruleCache[rule.name]) {\n                                ruleCache[rule.name] = rule;\n                            } else {\n                                ruleList = ruleCache[rule.name];\n                                if (ruleList instanceof tree.Rule) {\n                                    ruleList = ruleCache[rule.name] = [ruleCache[rule.name].toCSS(this._context)];\n                                }\n                                var ruleCSS = rule.toCSS(this._context);\n                                if (ruleList.indexOf(ruleCSS) !== - 1) {\n                                    rules.splice(i, 1);\n                                } else {\n                                    ruleList.push(ruleCSS);\n                                }\n                            }\n                        }\n                    }\n                },\n\n                _mergeRules: function (rules) {\n                    if (!rules) {\n                        return;\n                    }\n\n                    var groups = {},\n                    parts,\n                    rule,\n                    key;\n\n                    for (var i = 0; i < rules.length; i++) {\n                        rule = rules[i];\n\n                        if ((rule instanceof tree.Rule) && rule.merge) {\n                            key = [rule.name,\n                            rule.important ? \"!\" : \"\"].join(\",\");\n\n                            if (!groups[key]) {\n                                groups[key] = [];\n                            } else {\n                                rules.splice(i--, 1);\n                            }\n\n                            groups[key].push(rule);\n                        }\n                    }\n\n                    Object.keys(groups).map(function (k) {\n\n                        function toExpression(values) {\n                            return new (tree.Expression)(values.map(function (p) {\n                                return p.value;\n                            }));\n                        }\n\n                        function toValue(values) {\n                            return new (tree.Value)(values.map(function (p) {\n                                return p;\n                            }));\n                        }\n\n                        parts = groups[k];\n\n                        if (parts.length > 1) {\n                            rule = parts[0];\n                            var spacedGroups = [];\n                            var lastSpacedGroup = [];\n                            parts.map(function (p) {\n                                if (p.merge === \"+\") {\n                                    if (lastSpacedGroup.length > 0) {\n                                        spacedGroups.push(toExpression(lastSpacedGroup));\n                                    }\n                                    lastSpacedGroup = [];\n                                }\n                                lastSpacedGroup.push(p);\n                            });\n                            spacedGroups.push(toExpression(lastSpacedGroup));\n                            rule.value = toValue(spacedGroups);\n                        }\n                    });\n                }\n            };\n\n            module.exports = ToCSSVisitor;\n\n        }, {\n            \"../tree\": 60,\n            \"./visitor\": 88\n        }\n        ],\n        88: [function(require, module, exports) {\n            var tree = require(\"../tree\");\n\n            var _visitArgs = {\n                visitDeeper: true \n            },\n            _hasIndexed = false;\n\n            function _noop(node) {\n                return node;\n            }\n\n            function indexNodeTypes(parent, ticker) {\n                // add .typeIndex to tree node types for lookup table\n                var key, child;\n                for (key in parent) {\n                    if (parent.hasOwnProperty(key)) {\n                        child = parent[key];\n                        switch (typeof child) {\n                        case \"function\":\n                            // ignore bound functions directly on tree which do not have a prototype\n                            // or aren't nodes\n                            if (child.prototype && child.prototype.type) {\n                                child.prototype.typeIndex = ticker++;\n                            }\n                            break;\n                        case \"object\":\n                            ticker = indexNodeTypes(child, ticker);\n                            break;\n                        }\n                    }\n                }\n                return ticker;\n            }\n\n            var Visitor = function(implementation) {\n                this._implementation = implementation;\n                this._visitFnCache = [];\n\n                if (!_hasIndexed) {\n                    indexNodeTypes(tree, 1);\n                    _hasIndexed = true;\n                }\n            };\n\n            Visitor.prototype = {\n                visit: function(node) {\n                    if (!node) {\n                        return node;\n                    }\n\n                    var nodeTypeIndex = node.typeIndex;\n                    if (!nodeTypeIndex) {\n                        return node;\n                    }\n\n                    var visitFnCache = this._visitFnCache,\n                    impl = this._implementation,\n                    aryIndx = nodeTypeIndex << 1,\n                    outAryIndex = aryIndx | 1,\n                    func = visitFnCache[aryIndx],\n                    funcOut = visitFnCache[outAryIndex],\n                    visitArgs = _visitArgs,\n                    fnName;\n\n                    visitArgs.visitDeeper = true;\n\n                    if (!func) {\n                        fnName = \"visit\" + node.type;\n                        func = impl[fnName] || _noop;\n                        funcOut = impl[fnName + \"Out\"] || _noop;\n                        visitFnCache[aryIndx] = func;\n                        visitFnCache[outAryIndex] = funcOut;\n                    }\n\n                    if (func !== _noop) {\n                        var newNode = func.call(impl, node, visitArgs);\n                        if (impl.isReplacing) {\n                            node = newNode;\n                        }\n                    }\n\n                    if (visitArgs.visitDeeper && node && node.accept) {\n                        node.accept(this);\n                    }\n\n                    if (funcOut != _noop) {\n                        funcOut.call(impl, node);\n                    }\n\n                    return node;\n                },\n                visitArray: function(nodes, nonReplacing) {\n                    if (!nodes) {\n                        return nodes;\n                    }\n\n                    var cnt = nodes.length, i;\n\n                    // Non-replacing\n                    if (nonReplacing || !this._implementation.isReplacing) {\n                        for (i = 0; i < cnt; i++) {\n                            this.visit(nodes[i]);\n                        }\n                        return nodes;\n                    }\n\n                    // Replacing\n                    var out = [];\n                    for (i = 0; i < cnt; i++) {\n                        var evald = this.visit(nodes[i]);\n                        if (evald === undefined) {\n                            continue;\n                        }\n                        if (!evald.splice) {\n                            out.push(evald);\n                        } else if (evald.length) {\n                            this.flatten(evald, out);\n                        }\n                    }\n                    return out;\n                },\n                flatten: function(arr, out) {\n                    if (!out) {\n                        out = [];\n                    }\n\n                    var cnt, i, item,\n                    nestedCnt, j, nestedItem;\n\n                    for (i = 0, cnt = arr.length; i < cnt; i++) {\n                        item = arr[i];\n                        if (item === undefined) {\n                            continue;\n                        }\n                        if (!item.splice) {\n                            out.push(item);\n                            continue;\n                        }\n\n                        for (j = 0, nestedCnt = item.length; j < nestedCnt; j++) {\n                            nestedItem = item[j];\n                            if (nestedItem === undefined) {\n                                continue;\n                            }\n                            if (!nestedItem.splice) {\n                                out.push(nestedItem);\n                            } else if (nestedItem.length) {\n                                this.flatten(nestedItem, out);\n                            }\n                        }\n                    }\n\n                    return out;\n                }\n            };\n            module.exports = Visitor;\n\n        }, {\n            \"../tree\": 60\n        }\n        ],\n        89: [function(require, module, exports) {\n            // shim for using process in browser\n\n            var process = module.exports = {};\n            var queue = [];\n            var draining = false;\n\n            function drainQueue() {\n                if (draining) {\n                    return;\n                }\n                draining = true;\n                var currentQueue;\n                var len = queue.length;\n                while (len) {\n                    currentQueue = queue;\n                    queue = [];\n                    var i = - 1;\n                    while (++i < len) {\n                        currentQueue[i]();\n                    }\n                    len = queue.length;\n                }\n                draining = false;\n            }\n            process.nextTick = function (fun) {\n                queue.push(fun);\n                if (!draining) {\n                    setTimeout(drainQueue, 0);\n                }\n            };\n\n            process.title = 'browser';\n            process.browser = true;\n            process.env = {};\n            process.argv = [];\n            process.version = ''; // empty string to avoid regexp issues\n            process.versions = {};\n\n            function noop() {}\n\n            process.on = noop;\n            process.addListener = noop;\n            process.once = noop;\n            process.off = noop;\n            process.removeListener = noop;\n            process.removeAllListeners = noop;\n            process.emit = noop;\n\n            process.binding = function (name) {\n                throw new Error('process.binding is not supported');\n            };\n\n            // TODO(shtylman)\n            process.cwd = function () {\n                return '/' \n            };\n            process.chdir = function (dir) {\n                throw new Error('process.chdir is not supported');\n            };\n            process.umask = function() {\n                return 0;\n            };\n\n        }, {}\n        ],\n        90: [function(require, module, exports) {\n            'use strict';\n\n            var asap = require('asap')\n            module.exports = Promise;\n            function Promise(fn) {\n                if (typeof this !== 'object') \n                    throw new TypeError('Promises must be constructed via new')\n                if (typeof fn !== 'function') \n                    throw new TypeError('not a function')\n                var state = null\n                var value = null\n                var deferreds = []\n                var self = this\n                this.then = function(onFulfilled, onRejected) {\n                    return new self.constructor(function(resolve, reject) {\n                        handle(new Handler(onFulfilled, onRejected, resolve, reject))\n                    })\n                }\n\n                function handle(deferred) {\n                    if (state === null) {\n                        deferreds.push(deferred)\n                        return\n                    }\n                    asap(function() {\n                        var cb = state ? deferred.onFulfilled : deferred.onRejected\n                        if (cb === null) {\n                            (state ? deferred.resolve : deferred.reject)(value)\n                            return\n                        }\n                        var ret\n                        try {\n                            ret = cb(value)\n                        } catch (e) {\n                            deferred.reject(e)\n                            return\n                        }\n                        deferred.resolve(ret)\n                    })\n                }\n\n                function resolve(newValue) {\n                    try {\n                        //Promise Resolution Procedure: https://github.com/promises-aplus/promises-spec#the-promise-resolution-procedure\n                        if (newValue === self) \n                            throw new TypeError('A promise cannot be resolved with itself.')\n                        if (newValue && (typeof newValue === 'object' || typeof newValue === 'function')) {\n                            var then = newValue.then\n                            if (typeof then === 'function') {\n                                doResolve(then.bind(newValue), resolve, reject)\n                                return\n                            }\n                        }\n                        state = true\n                        value = newValue\n                        finale()\n                    } catch (e) {\n                        reject(e) \n                    }\n                }\n\n                function reject(newValue) {\n                    state = false\n                    value = newValue\n                    finale()\n                }\n\n                function finale() {\n                    for (var i = 0, len = deferreds.length; i < len; i++)\n                        handle(deferreds[i])\n                    deferreds = null\n                }\n\n                doResolve(fn, resolve, reject)\n            }\n\n\n            function Handler(onFulfilled, onRejected, resolve, reject) {\n                this.onFulfilled = typeof onFulfilled === 'function' ? onFulfilled : null\n                this.onRejected = typeof onRejected === 'function' ? onRejected : null\n                this.resolve = resolve\n                this.reject = reject\n            }\n\n            /**\n             * Take a potentially misbehaving resolver function and make sure\n             * onFulfilled and onRejected are only called once.\n             *\n             * Makes no guarantees about asynchrony.\n             */\n            function doResolve(fn, onFulfilled, onRejected) {\n                var done = false;\n                try {\n                    fn(function (value) {\n                        if (done) \n                            return\n                            done = true\n                        onFulfilled(value)\n                    }, function (reason) {\n                        if (done) \n                            return\n                            done = true\n                        onRejected(reason)\n                    })\n                } catch (ex) {\n                    if (done) \n                        return\n                        done = true\n                    onRejected(ex)\n                }\n            }\n\n        }, {\n            \"asap\": 92\n        }\n        ],\n        91: [function(require, module, exports) {\n            'use strict';\n\n            //This file contains the ES6 extensions to the core Promises/A+ API\n\n            var Promise = require('./core.js')\n            var asap = require('asap')\n            module.exports = Promise\n            /* Static Functions */\n\n            function ValuePromise(value) {\n                this.then = function (onFulfilled) {\n                    if (typeof onFulfilled !== 'function') \n                        return this\n                    return new Promise(function (resolve, reject) {\n                        asap(function () {\n                            try {\n                                resolve(onFulfilled(value))\n                            } catch (ex) {\n                                reject(ex);\n                            }\n                        })\n                    })\n                }\n            }\n            ValuePromise.prototype = Promise.prototype\n            var TRUE = new ValuePromise(true)\n            var FALSE = new ValuePromise(false)\n            var NULL = new ValuePromise(null)\n            var UNDEFINED = new ValuePromise(undefined)\n            var ZERO = new ValuePromise(0)\n            var EMPTYSTRING = new ValuePromise('')\n            Promise.resolve = function (value) {\n                if (value instanceof Promise) \n                    return value\n                if (value === null) \n                    return NULL\n                if (value === undefined) \n                    return UNDEFINED\n                if (value === true) \n                    return TRUE\n                if (value === false) \n                    return FALSE\n                if (value === 0) \n                    return ZERO\n                if (value === '') \n                    return EMPTYSTRING\n                if (typeof value === 'object' || typeof value === 'function') {\n                    try {\n                        var then = value.then\n                        if (typeof then === 'function') {\n                            return new Promise(then.bind(value))\n                        }\n                    } catch (ex) {\n                        return new Promise(function (resolve, reject) {\n                            reject(ex)\n                        })\n                    }\n                }\n\n                return new ValuePromise(value)\n            }\n\n            Promise.all = function (arr) {\n                var args = Array.prototype.slice.call(arr)\n                return new Promise(function (resolve, reject) {\n                    if (args.length === 0) \n                        return resolve([])\n                    var remaining = args.length\n                    function res(i, val) {\n                        try {\n                            if (val && (typeof val === 'object' || typeof val === 'function')) {\n                                var then = val.then\n                                if (typeof then === 'function') {\n                                    then.call(val, function (val) {\n                                        res(i, val) \n                                    }, reject)\n                                    return\n                                }\n                            }\n                            args[i] = val\n                            if (--remaining === 0) {\n                                resolve(args);\n                            }\n                        } catch (ex) {\n                            reject(ex)\n                        }\n                    }\n                    for (var i = 0; i < args.length; i++) {\n                        res(i, args[i])\n                    }\n                })\n            }\n\n            Promise.reject = function (value) {\n                return new Promise(function (resolve, reject) {\n                    reject(value);\n                });\n            }\n\n            Promise.race = function (values) {\n                return new Promise(function (resolve, reject) {\n                    values.forEach(function(value) {\n                        Promise.resolve(value).then(resolve, reject);\n                    })\n                });\n            }\n\n            /* Prototype Methods */\n\n            Promise.prototype['catch'] = function (onRejected) {\n                return this.then(null, onRejected);\n            }\n\n        }, {\n            \"./core.js\": 90,\n            \"asap\": 92\n        }\n        ],\n        92: [function(require, module, exports) {\n            (function (process) {\n\n                // Use the fastest possible means to execute a task in a future turn\n                // of the event loop.\n\n                // linked list of tasks (single, with head node)\n                var head = {\n                    task: void 0,\n                    next: null\n                };\n                var tail = head;\n                var flushing = false;\n                var requestFlush = void 0;\n                var isNodeJS = false;\n\n                function flush() {\n                    /* jshint loopfunc: true */\n\n                    while (head.next) {\n                        head = head.next;\n                        var task = head.task;\n                        head.task = void 0;\n                        var domain = head.domain;\n\n                        if (domain) {\n                            head.domain = void 0;\n                            domain.enter();\n                        }\n\n                        try {\n                            task();\n\n                        } catch (e) {\n                            if (isNodeJS) {\n                                // In node, uncaught exceptions are considered fatal errors.\n                                // Re-throw them synchronously to interrupt flushing!\n\n                                // Ensure continuation if the uncaught exception is suppressed\n                                // listening \"uncaughtException\" events (as domains does).\n                                // Continue in next event to avoid tick recursion.\n                                if (domain) {\n                                    domain.exit();\n                                }\n                                setTimeout(flush, 0);\n                                if (domain) {\n                                    domain.enter();\n                                }\n\n                                throw e;\n\n                            } else {\n                                // In browsers, uncaught exceptions are not fatal.\n                                // Re-throw them asynchronously to avoid slow-downs.\n                                setTimeout(function() {\n                                    throw e;\n                                }, 0);\n                            }\n                        }\n\n                        if (domain) {\n                            domain.exit();\n                        }\n                    }\n\n                    flushing = false;\n                }\n\n                if (typeof process !== \"undefined\" && process.nextTick) {\n                    // Node.js before 0.9. Note that some fake-Node environments, like the\n                    // Mocha test runner, introduce a `process` global without a `nextTick`.\n                    isNodeJS = true;\n\n                    requestFlush = function () {\n                        process.nextTick(flush);\n                    };\n\n                } else if (typeof setImmediate === \"function\") {\n                    // In IE10, Node.js 0.9+, or https://github.com/NobleJS/setImmediate\n                    if (typeof window !== \"undefined\") {\n                        requestFlush = setImmediate.bind(window, flush);\n                    } else {\n                        requestFlush = function () {\n                            setImmediate(flush);\n                        };\n                    }\n\n                } else if (typeof MessageChannel !== \"undefined\") {\n                    // modern browsers\n                    // http://www.nonblocking.io/2011/06/windownexttick.html\n                    var channel = new MessageChannel();\n                    channel.port1.onmessage = flush;\n                    requestFlush = function () {\n                        channel.port2.postMessage(0);\n                    };\n\n                } else {\n                    // old browsers\n                    requestFlush = function () {\n                        setTimeout(flush, 0);\n                    };\n                }\n\n                function asap(task) {\n                    tail = tail.next = {\n                        task: task,\n                        domain: isNodeJS && process.domain,\n                        next: null\n                    };\n\n                    if (!flushing) {\n                        flushing = true;\n                        requestFlush();\n                    }\n                };\n\n                module.exports = asap;\n\n\n            }).call(this, require('_process'))\n        }, {\n            \"_process\": 89\n        }\n        ],\n        93: [function(require, module, exports) {\n            // should work in any browser without browserify\n\n            if (typeof Promise.prototype.done !== 'function') {\n                Promise.prototype.done = function (onFulfilled, onRejected) {\n                    var self = arguments.length ? this.then.apply(this, arguments) : this\n                    self.then(null, function (err) {\n                        setTimeout(function () {\n                            throw err\n                        }, 0)\n                    })\n                }\n            }\n        }, {}\n        ],\n        94: [function(require, module, exports) {\n            // not \"use strict\" so we can declare global \"Promise\"\n\n            var asap = require('asap');\n\n            if (typeof Promise === 'undefined') {\n                Promise = require('./lib/core.js')\n                require('./lib/es6-extensions.js')\n            }\n\n            require('./polyfill-done.js');\n\n        }, {\n            \"./lib/core.js\": 90,\n            \"./lib/es6-extensions.js\": 91,\n            \"./polyfill-done.js\": 93,\n            \"asap\": 92\n        }\n        ]\n    }, {}, [2])(2)\n});\n\n"
  },
  {
    "path": "www/static/js/pagedown.converter.js",
    "content": "var Markdown;\n\nif (typeof exports === \"object\" && typeof require === \"function\") // we're in a CommonJS (e.g. Node.js) module\n    Markdown = exports;\nelse\n    Markdown = {};\n    \n// The following text is included for historical reasons, but should\n// be taken with a pinch of salt; it's not all true anymore.\n\n//\n// Wherever possible, Showdown is a straight, line-by-line port\n// of the Perl version of Markdown.\n//\n// This is not a normal parser design; it's basically just a\n// series of string substitutions.  It's hard to read and\n// maintain this way,  but keeping Showdown close to the original\n// design makes it easier to port new features.\n//\n// More importantly, Showdown behaves like markdown.pl in most\n// edge cases.  So web applications can do client-side preview\n// in Javascript, and then build identical HTML on the server.\n//\n// This port needs the new RegExp functionality of ECMA 262,\n// 3rd Edition (i.e. Javascript 1.5).  Most modern web browsers\n// should do fine.  Even with the new regular expression features,\n// We do a lot of work to emulate Perl's regex functionality.\n// The tricky changes in this file mostly have the \"attacklab:\"\n// label.  Major or self-explanatory changes don't.\n//\n// Smart diff tools like Araxis Merge will be able to match up\n// this file with markdown.pl in a useful way.  A little tweaking\n// helps: in a copy of markdown.pl, replace \"#\" with \"//\" and\n// replace \"$text\" with \"text\".  Be sure to ignore whitespace\n// and line endings.\n//\n\n\n//\n// Usage:\n//\n//   var text = \"Markdown *rocks*.\";\n//\n//   var converter = new Markdown.Converter();\n//   var html = converter.makeHtml(text);\n//\n//   alert(html);\n//\n// Note: move the sample code to the bottom of this\n// file before uncommenting it.\n//\n\n(function () {\n\n    function identity(x) { return x; }\n    function returnFalse(x) { return false; }\n\n    function HookCollection() { }\n\n    HookCollection.prototype = {\n\n        chain: function (hookname, func) {\n            var original = this[hookname];\n            if (!original)\n                throw new Error(\"unknown hook \" + hookname);\n\n            if (original === identity)\n                this[hookname] = func;\n            else\n                this[hookname] = function (x) { return func(original(x)); }\n        },\n        set: function (hookname, func) {\n            if (!this[hookname])\n                throw new Error(\"unknown hook \" + hookname);\n            this[hookname] = func;\n        },\n        addNoop: function (hookname) {\n            this[hookname] = identity;\n        },\n        addFalse: function (hookname) {\n            this[hookname] = returnFalse;\n        }\n    };\n\n    Markdown.HookCollection = HookCollection;\n\n    // g_urls and g_titles allow arbitrary user-entered strings as keys. This\n    // caused an exception (and hence stopped the rendering) when the user entered\n    // e.g. [push] or [__proto__]. Adding a prefix to the actual key prevents this\n    // (since no builtin property starts with \"s_\"). See\n    // http://meta.stackoverflow.com/questions/64655/strange-wmd-bug\n    // (granted, switching from Array() to Object() alone would have left only __proto__\n    // to be a problem)\n    function SaveHash() { }\n    SaveHash.prototype = {\n        set: function (key, value) {\n            this[\"s_\" + key] = value;\n        },\n        get: function (key) {\n            return this[\"s_\" + key];\n        }\n    };\n\n    Markdown.Converter = function () {\n        var pluginHooks = this.hooks = new HookCollection();\n        pluginHooks.addNoop(\"plainLinkText\");  // given a URL that was encountered by itself (without markup), should return the link text that's to be given to this link\n        pluginHooks.addNoop(\"preConversion\");  // called with the orignal text as given to makeHtml. The result of this plugin hook is the actual markdown source that will be cooked\n        pluginHooks.addNoop(\"postConversion\"); // called with the final cooked HTML code. The result of this plugin hook is the actual output of makeHtml\n\n        //\n        // Private state of the converter instance:\n        //\n\n        // Global hashes, used by various utility routines\n        var g_urls;\n        var g_titles;\n        var g_html_blocks;\n\n        // Used to track when we're inside an ordered or unordered list\n        // (see _ProcessListItems() for details):\n        var g_list_level;\n\n        this.makeHtml = function (text) {\n\n            //\n            // Main function. The order in which other subs are called here is\n            // essential. Link and image substitutions need to happen before\n            // _EscapeSpecialCharsWithinTagAttributes(), so that any *'s or _'s in the <a>\n            // and <img> tags get encoded.\n            //\n\n            // This will only happen if makeHtml on the same converter instance is called from a plugin hook.\n            // Don't do that.\n            if (g_urls)\n                throw new Error(\"Recursive call to converter.makeHtml\");\n        \n            // Create the private state objects.\n            g_urls = new SaveHash();\n            g_titles = new SaveHash();\n            g_html_blocks = [];\n            g_list_level = 0;\n\n            text = pluginHooks.preConversion(text);\n\n            // attacklab: Replace ~ with ~T\n            // This lets us use tilde as an escape char to avoid md5 hashes\n            // The choice of character is arbitray; anything that isn't\n            // magic in Markdown will work.\n            text = text.replace(/~/g, \"~T\");\n\n            // attacklab: Replace $ with ~D\n            // RegExp interprets $ as a special character\n            // when it's in a replacement string\n            text = text.replace(/\\$/g, \"~D\");\n\n            // Standardize line endings\n            text = text.replace(/\\r\\n/g, \"\\n\"); // DOS to Unix\n            text = text.replace(/\\r/g, \"\\n\"); // Mac to Unix\n\n            // Make sure text begins and ends with a couple of newlines:\n            text = \"\\n\\n\" + text + \"\\n\\n\";\n\n            // Convert all tabs to spaces.\n            text = _Detab(text);\n\n            // Strip any lines consisting only of spaces and tabs.\n            // This makes subsequent regexen easier to write, because we can\n            // match consecutive blank lines with /\\n+/ instead of something\n            // contorted like /[ \\t]*\\n+/ .\n            text = text.replace(/^[ \\t]+$/mg, \"\");\n\n            // Turn block-level HTML blocks into hash entries\n            text = _HashHTMLBlocks(text);\n\n            // Strip link definitions, store in hashes.\n            text = _StripLinkDefinitions(text);\n\n            text = _RunBlockGamut(text);\n\n            text = _UnescapeSpecialChars(text);\n\n            // attacklab: Restore dollar signs\n            text = text.replace(/~D/g, \"$$\");\n\n            // attacklab: Restore tildes\n            text = text.replace(/~T/g, \"~\");\n\n            text = pluginHooks.postConversion(text);\n\n            g_html_blocks = g_titles = g_urls = null;\n\n            return text;\n        };\n\n        function _StripLinkDefinitions(text) {\n            //\n            // Strips link definitions from text, stores the URLs and titles in\n            // hash references.\n            //\n\n            // Link defs are in the form: ^[id]: url \"optional title\"\n\n            /*\n            text = text.replace(/\n                ^[ ]{0,3}\\[(.+)\\]:  // id = $1  attacklab: g_tab_width - 1\n                [ \\t]*\n                \\n?                 // maybe *one* newline\n                [ \\t]*\n                <?(\\S+?)>?          // url = $2\n                (?=\\s|$)            // lookahead for whitespace instead of the lookbehind removed below\n                [ \\t]*\n                \\n?                 // maybe one newline\n                [ \\t]*\n                (                   // (potential) title = $3\n                    (\\n*)           // any lines skipped = $4 attacklab: lookbehind removed\n                    [ \\t]+\n                    [\"(]\n                    (.+?)           // title = $5\n                    [\")]\n                    [ \\t]*\n                )?                  // title is optional\n                (?:\\n+|$)\n            /gm, function(){...});\n            */\n\n            text = text.replace(/^[ ]{0,3}\\[(.+)\\]:[ \\t]*\\n?[ \\t]*<?(\\S+?)>?(?=\\s|$)[ \\t]*\\n?[ \\t]*((\\n*)[\"(](.+?)[\")][ \\t]*)?(?:\\n+)/gm,\n                function (wholeMatch, m1, m2, m3, m4, m5) {\n                    m1 = m1.toLowerCase();\n                    g_urls.set(m1, _EncodeAmpsAndAngles(m2));  // Link IDs are case-insensitive\n                    if (m4) {\n                        // Oops, found blank lines, so it's not a title.\n                        // Put back the parenthetical statement we stole.\n                        return m3;\n                    } else if (m5) {\n                        g_titles.set(m1, m5.replace(/\"/g, \"&quot;\"));\n                    }\n\n                    // Completely remove the definition from the text\n                    return \"\";\n                }\n            );\n\n            return text;\n        }\n\n        function _HashHTMLBlocks(text) {\n\n            // Hashify HTML blocks:\n            // We only want to do this for block-level HTML tags, such as headers,\n            // lists, and tables. That's because we still want to wrap <p>s around\n            // \"paragraphs\" that are wrapped in non-block-level tags, such as anchors,\n            // phrase emphasis, and spans. The list of tags we're looking for is\n            // hard-coded:\n            var block_tags_a = \"p|div|h[1-6]|blockquote|pre|table|dl|ol|ul|script|noscript|form|fieldset|iframe|math|ins|del\"\n            var block_tags_b = \"p|div|h[1-6]|blockquote|pre|table|dl|ol|ul|script|noscript|form|fieldset|iframe|math\"\n\n            // First, look for nested blocks, e.g.:\n            //   <div>\n            //     <div>\n            //     tags for inner block must be indented.\n            //     </div>\n            //   </div>\n            //\n            // The outermost tags must start at the left margin for this to match, and\n            // the inner nested divs must be indented.\n            // We need to do this before the next, more liberal match, because the next\n            // match will start at the first `<div>` and stop at the first `</div>`.\n\n            // attacklab: This regex can be expensive when it fails.\n\n            /*\n            text = text.replace(/\n                (                       // save in $1\n                    ^                   // start of line  (with /m)\n                    <($block_tags_a)    // start tag = $2\n                    \\b                  // word break\n                                        // attacklab: hack around khtml/pcre bug...\n                    [^\\r]*?\\n           // any number of lines, minimally matching\n                    </\\2>               // the matching end tag\n                    [ \\t]*              // trailing spaces/tabs\n                    (?=\\n+)             // followed by a newline\n                )                       // attacklab: there are sentinel newlines at end of document\n            /gm,function(){...}};\n            */\n            text = text.replace(/^(<(p|div|h[1-6]|blockquote|pre|table|dl|ol|ul|script|noscript|form|fieldset|iframe|math|ins|del)\\b[^\\r]*?\\n<\\/\\2>[ \\t]*(?=\\n+))/gm, hashElement);\n\n            //\n            // Now match more liberally, simply from `\\n<tag>` to `</tag>\\n`\n            //\n\n            /*\n            text = text.replace(/\n                (                       // save in $1\n                    ^                   // start of line  (with /m)\n                    <($block_tags_b)    // start tag = $2\n                    \\b                  // word break\n                                        // attacklab: hack around khtml/pcre bug...\n                    [^\\r]*?             // any number of lines, minimally matching\n                    .*</\\2>             // the matching end tag\n                    [ \\t]*              // trailing spaces/tabs\n                    (?=\\n+)             // followed by a newline\n                )                       // attacklab: there are sentinel newlines at end of document\n            /gm,function(){...}};\n            */\n            text = text.replace(/^(<(p|div|h[1-6]|blockquote|pre|table|dl|ol|ul|script|noscript|form|fieldset|iframe|math)\\b[^\\r]*?.*<\\/\\2>[ \\t]*(?=\\n+)\\n)/gm, hashElement);\n\n            // Special case just for <hr />. It was easier to make a special case than\n            // to make the other regex more complicated.  \n\n            /*\n            text = text.replace(/\n                \\n                  // Starting after a blank line\n                [ ]{0,3}\n                (                   // save in $1\n                    (<(hr)          // start tag = $2\n                        \\b          // word break\n                        ([^<>])*?\n                    \\/?>)           // the matching end tag\n                    [ \\t]*\n                    (?=\\n{2,})      // followed by a blank line\n                )\n            /g,hashElement);\n            */\n            text = text.replace(/\\n[ ]{0,3}((<(hr)\\b([^<>])*?\\/?>)[ \\t]*(?=\\n{2,}))/g, hashElement);\n\n            // Special case for standalone HTML comments:\n\n            /*\n            text = text.replace(/\n                \\n\\n                                            // Starting after a blank line\n                [ ]{0,3}                                        // attacklab: g_tab_width - 1\n                (                                               // save in $1\n                    <!\n                    (--(?:|(?:[^>-]|-[^>])(?:[^-]|-[^-])*)--)   // see http://www.w3.org/TR/html-markup/syntax.html#comments and http://meta.stackoverflow.com/q/95256\n                    >\n                    [ \\t]*\n                    (?=\\n{2,})                                  // followed by a blank line\n                )\n            /g,hashElement);\n            */\n            text = text.replace(/\\n\\n[ ]{0,3}(<!(--(?:|(?:[^>-]|-[^>])(?:[^-]|-[^-])*)--)>[ \\t]*(?=\\n{2,}))/g, hashElement);\n\n            // PHP and ASP-style processor instructions (<?...?> and <%...%>)\n\n            /*\n            text = text.replace(/\n                (?:\n                    \\n\\n            // Starting after a blank line\n                )\n                (                   // save in $1\n                    [ ]{0,3}        // attacklab: g_tab_width - 1\n                    (?:\n                        <([?%])     // $2\n                        [^\\r]*?\n                        \\2>\n                    )\n                    [ \\t]*\n                    (?=\\n{2,})      // followed by a blank line\n                )\n            /g,hashElement);\n            */\n            text = text.replace(/(?:\\n\\n)([ ]{0,3}(?:<([?%])[^\\r]*?\\2>)[ \\t]*(?=\\n{2,}))/g, hashElement);\n\n            return text;\n        }\n\n        function hashElement(wholeMatch, m1) {\n            var blockText = m1;\n\n            // Undo double lines\n            blockText = blockText.replace(/^\\n+/, \"\");\n\n            // strip trailing blank lines\n            blockText = blockText.replace(/\\n+$/g, \"\");\n\n            // Replace the element text with a marker (\"~KxK\" where x is its key)\n            blockText = \"\\n\\n~K\" + (g_html_blocks.push(blockText) - 1) + \"K\\n\\n\";\n\n            return blockText;\n        }\n\n        function _RunBlockGamut(text, doNotUnhash) {\n            //\n            // These are all the transformations that form block-level\n            // tags like paragraphs, headers, and list items.\n            //\n            text = _DoHeaders(text);\n\n            // Do Horizontal Rules:\n            var replacement = \"<hr />\\n\";\n            text = text.replace(/^[ ]{0,2}([ ]?\\*[ ]?){3,}[ \\t]*$/gm, replacement);\n            text = text.replace(/^[ ]{0,2}([ ]?-[ ]?){3,}[ \\t]*$/gm, replacement);\n            text = text.replace(/^[ ]{0,2}([ ]?_[ ]?){3,}[ \\t]*$/gm, replacement);\n\n            text = _DoLists(text);\n            text = _DoCodeBlocks(text);\n            text = _DoBlockQuotes(text);\n\n            // We already ran _HashHTMLBlocks() before, in Markdown(), but that\n            // was to escape raw HTML in the original Markdown source. This time,\n            // we're escaping the markup we've just created, so that we don't wrap\n            // <p> tags around block-level tags.\n            text = _HashHTMLBlocks(text);\n            text = _FormParagraphs(text, doNotUnhash);\n\n            return text;\n        }\n\n        function _RunSpanGamut(text) {\n            //\n            // These are all the transformations that occur *within* block-level\n            // tags like paragraphs, headers, and list items.\n            //\n\n            text = _DoCodeSpans(text);\n            text = _EscapeSpecialCharsWithinTagAttributes(text);\n            text = _EncodeBackslashEscapes(text);\n\n            // Process anchor and image tags. Images must come first,\n            // because ![foo][f] looks like an anchor.\n            text = _DoImages(text);\n            text = _DoAnchors(text);\n\n            // Make links out of things like `<http://example.com/>`\n            // Must come after _DoAnchors(), because you can use < and >\n            // delimiters in inline links like [this](<url>).\n            text = _DoAutoLinks(text);\n            \n            text = text.replace(/~P/g, \"://\"); // put in place to prevent autolinking; reset now\n            \n            text = _EncodeAmpsAndAngles(text);\n            text = _DoItalicsAndBold(text);\n\n            // Do hard breaks:\n            text = text.replace(/  +\\n/g, \" <br>\\n\");\n\n            return text;\n        }\n\n        function _EscapeSpecialCharsWithinTagAttributes(text) {\n            //\n            // Within tags -- meaning between < and > -- encode [\\ ` * _] so they\n            // don't conflict with their use in Markdown for code, italics and strong.\n            //\n\n            // Build a regex to find HTML tags and comments.  See Friedl's \n            // \"Mastering Regular Expressions\", 2nd Ed., pp. 200-201.\n\n            // SE: changed the comment part of the regex\n\n            var regex = /(<[a-z\\/!$](\"[^\"]*\"|'[^']*'|[^'\">])*>|<!(--(?:|(?:[^>-]|-[^>])(?:[^-]|-[^-])*)--)>)/gi;\n\n            text = text.replace(regex, function (wholeMatch) {\n                var tag = wholeMatch.replace(/(.)<\\/?code>(?=.)/g, \"$1`\");\n                tag = escapeCharacters(tag, wholeMatch.charAt(1) == \"!\" ? \"\\\\`*_/\" : \"\\\\`*_\"); // also escape slashes in comments to prevent autolinking there -- http://meta.stackoverflow.com/questions/95987\n                return tag;\n            });\n\n            return text;\n        }\n\n        function _DoAnchors(text) {\n            //\n            // Turn Markdown link shortcuts into XHTML <a> tags.\n            //\n            //\n            // First, handle reference-style links: [link text] [id]\n            //\n\n            /*\n            text = text.replace(/\n                (                           // wrap whole match in $1\n                    \\[\n                    (\n                        (?:\n                            \\[[^\\]]*\\]      // allow brackets nested one level\n                            |\n                            [^\\[]           // or anything else\n                        )*\n                    )\n                    \\]\n\n                    [ ]?                    // one optional space\n                    (?:\\n[ ]*)?             // one optional newline followed by spaces\n\n                    \\[\n                    (.*?)                   // id = $3\n                    \\]\n                )\n                ()()()()                    // pad remaining backreferences\n            /g, writeAnchorTag);\n            */\n            text = text.replace(/(\\[((?:\\[[^\\]]*\\]|[^\\[\\]])*)\\][ ]?(?:\\n[ ]*)?\\[(.*?)\\])()()()()/g, writeAnchorTag);\n\n            //\n            // Next, inline-style links: [link text](url \"optional title\")\n            //\n\n            /*\n            text = text.replace(/\n                (                           // wrap whole match in $1\n                    \\[\n                    (\n                        (?:\n                            \\[[^\\]]*\\]      // allow brackets nested one level\n                            |\n                            [^\\[\\]]         // or anything else\n                        )*\n                    )\n                    \\]\n                    \\(                      // literal paren\n                    [ \\t]*\n                    ()                      // no id, so leave $3 empty\n                    <?(                     // href = $4\n                        (?:\n                            \\([^)]*\\)       // allow one level of (correctly nested) parens (think MSDN)\n                            |\n                            [^()]\n                        )*?\n                    )>?                \n                    [ \\t]*\n                    (                       // $5\n                        (['\"])              // quote char = $6\n                        (.*?)               // Title = $7\n                        \\6                  // matching quote\n                        [ \\t]*              // ignore any spaces/tabs between closing quote and )\n                    )?                      // title is optional\n                    \\)\n                )\n            /g, writeAnchorTag);\n            */\n\n            text = text.replace(/(\\[((?:\\[[^\\]]*\\]|[^\\[\\]])*)\\]\\([ \\t]*()<?((?:\\([^)]*\\)|[^()])*?)>?[ \\t]*((['\"])(.*?)\\6[ \\t]*)?\\))/g, writeAnchorTag);\n\n            //\n            // Last, handle reference-style shortcuts: [link text]\n            // These must come last in case you've also got [link test][1]\n            // or [link test](/foo)\n            //\n\n            /*\n            text = text.replace(/\n                (                   // wrap whole match in $1\n                    \\[\n                    ([^\\[\\]]+)      // link text = $2; can't contain '[' or ']'\n                    \\]\n                )\n                ()()()()()          // pad rest of backreferences\n            /g, writeAnchorTag);\n            */\n            text = text.replace(/(\\[([^\\[\\]]+)\\])()()()()()/g, writeAnchorTag);\n\n            return text;\n        }\n\n        function writeAnchorTag(wholeMatch, m1, m2, m3, m4, m5, m6, m7) {\n            if (m7 == undefined) m7 = \"\";\n            var whole_match = m1;\n            var link_text = m2.replace(/:\\/\\//g, \"~P\"); // to prevent auto-linking withing the link. will be converted back after the auto-linker runs\n            var link_id = m3.toLowerCase();\n            var url = m4;\n            var title = m7;\n\n            if (url == \"\") {\n                if (link_id == \"\") {\n                    // lower-case and turn embedded newlines into spaces\n                    link_id = link_text.toLowerCase().replace(/ ?\\n/g, \" \");\n                }\n                url = \"#\" + link_id;\n\n                if (g_urls.get(link_id) != undefined) {\n                    url = g_urls.get(link_id);\n                    if (g_titles.get(link_id) != undefined) {\n                        title = g_titles.get(link_id);\n                    }\n                }\n                else {\n                    if (whole_match.search(/\\(\\s*\\)$/m) > -1) {\n                        // Special case for explicit empty url\n                        url = \"\";\n                    } else {\n                        return whole_match;\n                    }\n                }\n            }\n            url = encodeProblemUrlChars(url);\n            url = escapeCharacters(url, \"*_\");\n            var result = \"<a href=\\\"\" + url + \"\\\"\";\n\n            if (title != \"\") {\n                title = title.replace(/\"/g, \"&quot;\");\n                title = escapeCharacters(title, \"*_\");\n                result += \" title=\\\"\" + title + \"\\\"\";\n            }\n\n            result += \">\" + link_text + \"</a>\";\n\n            return result;\n        }\n\n        function _DoImages(text) {\n            //\n            // Turn Markdown image shortcuts into <img> tags.\n            //\n\n            //\n            // First, handle reference-style labeled images: ![alt text][id]\n            //\n\n            /*\n            text = text.replace(/\n                (                   // wrap whole match in $1\n                    !\\[\n                    (.*?)           // alt text = $2\n                    \\]\n\n                    [ ]?            // one optional space\n                    (?:\\n[ ]*)?     // one optional newline followed by spaces\n\n                    \\[\n                    (.*?)           // id = $3\n                    \\]\n                )\n                ()()()()            // pad rest of backreferences\n            /g, writeImageTag);\n            */\n            text = text.replace(/(!\\[(.*?)\\][ ]?(?:\\n[ ]*)?\\[(.*?)\\])()()()()/g, writeImageTag);\n\n            //\n            // Next, handle inline images:  ![alt text](url \"optional title\")\n            // Don't forget: encode * and _\n\n            /*\n            text = text.replace(/\n                (                   // wrap whole match in $1\n                    !\\[\n                    (.*?)           // alt text = $2\n                    \\]\n                    \\s?             // One optional whitespace character\n                    \\(              // literal paren\n                    [ \\t]*\n                    ()              // no id, so leave $3 empty\n                    <?(\\S+?)>?      // src url = $4\n                    [ \\t]*\n                    (               // $5\n                        (['\"])      // quote char = $6\n                        (.*?)       // title = $7\n                        \\6          // matching quote\n                        [ \\t]*\n                    )?              // title is optional\n                    \\)\n                )\n            /g, writeImageTag);\n            */\n            text = text.replace(/(!\\[(.*?)\\]\\s?\\([ \\t]*()<?(\\S+?)>?[ \\t]*((['\"])(.*?)\\6[ \\t]*)?\\))/g, writeImageTag);\n\n            return text;\n        }\n\n        function writeImageTag(wholeMatch, m1, m2, m3, m4, m5, m6, m7) {\n            var whole_match = m1;\n            var alt_text = m2;\n            var link_id = m3.toLowerCase();\n            var url = m4;\n            var title = m7;\n\n            if (!title) title = \"\";\n\n            if (url == \"\") {\n                if (link_id == \"\") {\n                    // lower-case and turn embedded newlines into spaces\n                    link_id = alt_text.toLowerCase().replace(/ ?\\n/g, \" \");\n                }\n                url = \"#\" + link_id;\n\n                if (g_urls.get(link_id) != undefined) {\n                    url = g_urls.get(link_id);\n                    if (g_titles.get(link_id) != undefined) {\n                        title = g_titles.get(link_id);\n                    }\n                }\n                else {\n                    return whole_match;\n                }\n            }\n\n            alt_text = escapeCharacters(alt_text.replace(/\"/g, \"&quot;\"), \"*_[]()\");\n            url = escapeCharacters(url, \"*_\");\n            var result = \"<img src=\\\"\" + url + \"\\\" alt=\\\"\" + alt_text + \"\\\"\";\n\n            // attacklab: Markdown.pl adds empty title attributes to images.\n            // Replicate this bug.\n\n            //if (title != \"\") {\n            title = title.replace(/\"/g, \"&quot;\");\n            title = escapeCharacters(title, \"*_\");\n            result += \" title=\\\"\" + title + \"\\\"\";\n            //}\n\n            result += \" />\";\n\n            return result;\n        }\n\n        function _DoHeaders(text) {\n\n            // Setext-style headers:\n            //  Header 1\n            //  ========\n            //  \n            //  Header 2\n            //  --------\n            //\n            text = text.replace(/^(.+)[ \\t]*\\n=+[ \\t]*\\n+/gm,\n                function (wholeMatch, m1) { return \"<h1>\" + _RunSpanGamut(m1) + \"</h1>\\n\\n\"; }\n            );\n\n            text = text.replace(/^(.+)[ \\t]*\\n-+[ \\t]*\\n+/gm,\n                function (matchFound, m1) { return \"<h2>\" + _RunSpanGamut(m1) + \"</h2>\\n\\n\"; }\n            );\n\n            // atx-style headers:\n            //  # Header 1\n            //  ## Header 2\n            //  ## Header 2 with closing hashes ##\n            //  ...\n            //  ###### Header 6\n            //\n\n            /*\n            text = text.replace(/\n                ^(\\#{1,6})      // $1 = string of #'s\n                [ \\t]*\n                (.+?)           // $2 = Header text\n                [ \\t]*\n                \\#*             // optional closing #'s (not counted)\n                \\n+\n            /gm, function() {...});\n            */\n\n            text = text.replace(/^(\\#{1,6})[ \\t]*(.+?)[ \\t]*\\#*\\n+/gm,\n                function (wholeMatch, m1, m2) {\n                    var h_level = m1.length;\n                    return \"<h\" + h_level + \">\" + _RunSpanGamut(m2) + \"</h\" + h_level + \">\\n\\n\";\n                }\n            );\n\n            return text;\n        }\n\n        function _DoLists(text) {\n            //\n            // Form HTML ordered (numbered) and unordered (bulleted) lists.\n            //\n\n            // attacklab: add sentinel to hack around khtml/safari bug:\n            // http://bugs.webkit.org/show_bug.cgi?id=11231\n            text += \"~0\";\n\n            // Re-usable pattern to match any entirel ul or ol list:\n\n            /*\n            var whole_list = /\n                (                                   // $1 = whole list\n                    (                               // $2\n                        [ ]{0,3}                    // attacklab: g_tab_width - 1\n                        ([*+-]|\\d+[.])              // $3 = first list item marker\n                        [ \\t]+\n                    )\n                    [^\\r]+?\n                    (                               // $4\n                        ~0                          // sentinel for workaround; should be $\n                        |\n                        \\n{2,}\n                        (?=\\S)\n                        (?!                         // Negative lookahead for another list item marker\n                            [ \\t]*\n                            (?:[*+-]|\\d+[.])[ \\t]+\n                        )\n                    )\n                )\n            /g\n            */\n            var whole_list = /^(([ ]{0,3}([*+-]|\\d+[.])[ \\t]+)[^\\r]+?(~0|\\n{2,}(?=\\S)(?![ \\t]*(?:[*+-]|\\d+[.])[ \\t]+)))/gm;\n\n            if (g_list_level) {\n                text = text.replace(whole_list, function (wholeMatch, m1, m2) {\n                    var list = m1;\n                    var list_type = (m2.search(/[*+-]/g) > -1) ? \"ul\" : \"ol\";\n\n                    var result = _ProcessListItems(list, list_type);\n\n                    // Trim any trailing whitespace, to put the closing `</$list_type>`\n                    // up on the preceding line, to get it past the current stupid\n                    // HTML block parser. This is a hack to work around the terrible\n                    // hack that is the HTML block parser.\n                    result = result.replace(/\\s+$/, \"\");\n                    result = \"<\" + list_type + \">\" + result + \"</\" + list_type + \">\\n\";\n                    return result;\n                });\n            } else {\n                whole_list = /(\\n\\n|^\\n?)(([ ]{0,3}([*+-]|\\d+[.])[ \\t]+)[^\\r]+?(~0|\\n{2,}(?=\\S)(?![ \\t]*(?:[*+-]|\\d+[.])[ \\t]+)))/g;\n                text = text.replace(whole_list, function (wholeMatch, m1, m2, m3) {\n                    var runup = m1;\n                    var list = m2;\n\n                    var list_type = (m3.search(/[*+-]/g) > -1) ? \"ul\" : \"ol\";\n                    var result = _ProcessListItems(list, list_type);\n                    result = runup + \"<\" + list_type + \">\\n\" + result + \"</\" + list_type + \">\\n\";\n                    return result;\n                });\n            }\n\n            // attacklab: strip sentinel\n            text = text.replace(/~0/, \"\");\n\n            return text;\n        }\n\n        var _listItemMarkers = { ol: \"\\\\d+[.]\", ul: \"[*+-]\" };\n\n        function _ProcessListItems(list_str, list_type) {\n            //\n            //  Process the contents of a single ordered or unordered list, splitting it\n            //  into individual list items.\n            //\n            //  list_type is either \"ul\" or \"ol\".\n\n            // The $g_list_level global keeps track of when we're inside a list.\n            // Each time we enter a list, we increment it; when we leave a list,\n            // we decrement. If it's zero, we're not in a list anymore.\n            //\n            // We do this because when we're not inside a list, we want to treat\n            // something like this:\n            //\n            //    I recommend upgrading to version\n            //    8. Oops, now this line is treated\n            //    as a sub-list.\n            //\n            // As a single paragraph, despite the fact that the second line starts\n            // with a digit-period-space sequence.\n            //\n            // Whereas when we're inside a list (or sub-list), that line will be\n            // treated as the start of a sub-list. What a kludge, huh? This is\n            // an aspect of Markdown's syntax that's hard to parse perfectly\n            // without resorting to mind-reading. Perhaps the solution is to\n            // change the syntax rules such that sub-lists must start with a\n            // starting cardinal number; e.g. \"1.\" or \"a.\".\n\n            g_list_level++;\n\n            // trim trailing blank lines:\n            list_str = list_str.replace(/\\n{2,}$/, \"\\n\");\n\n            // attacklab: add sentinel to emulate \\z\n            list_str += \"~0\";\n\n            // In the original attacklab showdown, list_type was not given to this function, and anything\n            // that matched /[*+-]|\\d+[.]/ would just create the next <li>, causing this mismatch:\n            //\n            //  Markdown          rendered by WMD        rendered by MarkdownSharp\n            //  ------------------------------------------------------------------\n            //  1. first          1. first               1. first\n            //  2. second         2. second              2. second\n            //  - third           3. third                   * third\n            //\n            // We changed this to behave identical to MarkdownSharp. This is the constructed RegEx,\n            // with {MARKER} being one of \\d+[.] or [*+-], depending on list_type:\n        \n            /*\n            list_str = list_str.replace(/\n                (^[ \\t]*)                       // leading whitespace = $1\n                ({MARKER}) [ \\t]+               // list marker = $2\n                ([^\\r]+?                        // list item text   = $3\n                    (\\n+)\n                )\n                (?=\n                    (~0 | \\2 ({MARKER}) [ \\t]+)\n                )\n            /gm, function(){...});\n            */\n\n            var marker = _listItemMarkers[list_type];\n            var re = new RegExp(\"(^[ \\\\t]*)(\" + marker + \")[ \\\\t]+([^\\\\r]+?(\\\\n+))(?=(~0|\\\\1(\" + marker + \")[ \\\\t]+))\", \"gm\");\n            var last_item_had_a_double_newline = false;\n            list_str = list_str.replace(re,\n                function (wholeMatch, m1, m2, m3) {\n                    var item = m3;\n                    var leading_space = m1;\n                    var ends_with_double_newline = /\\n\\n$/.test(item);\n                    var contains_double_newline = ends_with_double_newline || item.search(/\\n{2,}/) > -1;\n\n                    if (contains_double_newline || last_item_had_a_double_newline) {\n                        item = _RunBlockGamut(_Outdent(item), /* doNotUnhash = */true);\n                    }\n                    else {\n                        // Recursion for sub-lists:\n                        item = _DoLists(_Outdent(item));\n                        item = item.replace(/\\n$/, \"\"); // chomp(item)\n                        item = _RunSpanGamut(item);\n                    }\n                    last_item_had_a_double_newline = ends_with_double_newline;\n                    return \"<li>\" + item + \"</li>\\n\";\n                }\n            );\n\n            // attacklab: strip sentinel\n            list_str = list_str.replace(/~0/g, \"\");\n\n            g_list_level--;\n            return list_str;\n        }\n\n        function _DoCodeBlocks(text) {\n            //\n            //  Process Markdown `<pre><code>` blocks.\n            //  \n\n            /*\n            text = text.replace(/\n                (?:\\n\\n|^)\n                (                               // $1 = the code block -- one or more lines, starting with a space/tab\n                    (?:\n                        (?:[ ]{4}|\\t)           // Lines must start with a tab or a tab-width of spaces - attacklab: g_tab_width\n                        .*\\n+\n                    )+\n                )\n                (\\n*[ ]{0,3}[^ \\t\\n]|(?=~0))    // attacklab: g_tab_width\n            /g ,function(){...});\n            */\n\n            // attacklab: sentinel workarounds for lack of \\A and \\Z, safari\\khtml bug\n            text += \"~0\";\n\n            text = text.replace(/(?:\\n\\n|^)((?:(?:[ ]{4}|\\t).*\\n+)+)(\\n*[ ]{0,3}[^ \\t\\n]|(?=~0))/g,\n                function (wholeMatch, m1, m2) {\n                    var codeblock = m1;\n                    var nextChar = m2;\n\n                    codeblock = _EncodeCode(_Outdent(codeblock));\n                    codeblock = _Detab(codeblock);\n                    codeblock = codeblock.replace(/^\\n+/g, \"\"); // trim leading newlines\n                    codeblock = codeblock.replace(/\\n+$/g, \"\"); // trim trailing whitespace\n\n                    codeblock = \"<pre><code>\" + codeblock + \"\\n</code></pre>\";\n\n                    return \"\\n\\n\" + codeblock + \"\\n\\n\" + nextChar;\n                }\n            );\n\n            // attacklab: strip sentinel\n            text = text.replace(/~0/, \"\");\n\n            return text;\n        }\n\n        function hashBlock(text) {\n            text = text.replace(/(^\\n+|\\n+$)/g, \"\");\n            return \"\\n\\n~K\" + (g_html_blocks.push(text) - 1) + \"K\\n\\n\";\n        }\n\n        function _DoCodeSpans(text) {\n            //\n            // * Backtick quotes are used for <code></code> spans.\n            // \n            // * You can use multiple backticks as the delimiters if you want to\n            //   include literal backticks in the code span. So, this input:\n            //     \n            //      Just type ``foo `bar` baz`` at the prompt.\n            //     \n            //   Will translate to:\n            //     \n            //      <p>Just type <code>foo `bar` baz</code> at the prompt.</p>\n            //     \n            //   There's no arbitrary limit to the number of backticks you\n            //   can use as delimters. If you need three consecutive backticks\n            //   in your code, use four for delimiters, etc.\n            //\n            // * You can use spaces to get literal backticks at the edges:\n            //     \n            //      ... type `` `bar` `` ...\n            //     \n            //   Turns to:\n            //     \n            //      ... type <code>`bar`</code> ...\n            //\n\n            /*\n            text = text.replace(/\n                (^|[^\\\\])       // Character before opening ` can't be a backslash\n                (`+)            // $2 = Opening run of `\n                (               // $3 = The code block\n                    [^\\r]*?\n                    [^`]        // attacklab: work around lack of lookbehind\n                )\n                \\2              // Matching closer\n                (?!`)\n            /gm, function(){...});\n            */\n\n            text = text.replace(/(^|[^\\\\])(`+)([^\\r]*?[^`])\\2(?!`)/gm,\n                function (wholeMatch, m1, m2, m3, m4) {\n                    var c = m3;\n                    c = c.replace(/^([ \\t]*)/g, \"\"); // leading whitespace\n                    c = c.replace(/[ \\t]*$/g, \"\"); // trailing whitespace\n                    c = _EncodeCode(c);\n                    c = c.replace(/:\\/\\//g, \"~P\"); // to prevent auto-linking. Not necessary in code *blocks*, but in code spans. Will be converted back after the auto-linker runs.\n                    return m1 + \"<code>\" + c + \"</code>\";\n                }\n            );\n\n            return text;\n        }\n\n        function _EncodeCode(text) {\n            //\n            // Encode/escape certain characters inside Markdown code runs.\n            // The point is that in code, these characters are literals,\n            // and lose their special Markdown meanings.\n            //\n            // Encode all ampersands; HTML entities are not\n            // entities within a Markdown code span.\n            text = text.replace(/&/g, \"&amp;\");\n\n            // Do the angle bracket song and dance:\n            text = text.replace(/</g, \"&lt;\");\n            text = text.replace(/>/g, \"&gt;\");\n\n            // Now, escape characters that are magic in Markdown:\n            text = escapeCharacters(text, \"\\*_{}[]\\\\\", false);\n\n            // jj the line above breaks this:\n            //---\n\n            //* Item\n\n            //   1. Subitem\n\n            //            special char: *\n            //---\n\n            return text;\n        }\n\n        function _DoItalicsAndBold(text) {\n\n            // <strong> must go first:\n            text = text.replace(/([\\W_]|^)(\\*\\*|__)(?=\\S)([^\\r]*?\\S[\\*_]*)\\2([\\W_]|$)/g,\n            \"$1<strong>$3</strong>$4\");\n\n            text = text.replace(/([\\W_]|^)(\\*|_)(?=\\S)([^\\r\\*_]*?\\S)\\2([\\W_]|$)/g,\n            \"$1<em>$3</em>$4\");\n\n            return text;\n        }\n\n        function _DoBlockQuotes(text) {\n\n            /*\n            text = text.replace(/\n                (                           // Wrap whole match in $1\n                    (\n                        ^[ \\t]*>[ \\t]?      // '>' at the start of a line\n                        .+\\n                // rest of the first line\n                        (.+\\n)*             // subsequent consecutive lines\n                        \\n*                 // blanks\n                    )+\n                )\n            /gm, function(){...});\n            */\n\n            text = text.replace(/((^[ \\t]*>[ \\t]?.+\\n(.+\\n)*\\n*)+)/gm,\n                function (wholeMatch, m1) {\n                    var bq = m1;\n\n                    // attacklab: hack around Konqueror 3.5.4 bug:\n                    // \"----------bug\".replace(/^-/g,\"\") == \"bug\"\n\n                    bq = bq.replace(/^[ \\t]*>[ \\t]?/gm, \"~0\"); // trim one level of quoting\n\n                    // attacklab: clean up hack\n                    bq = bq.replace(/~0/g, \"\");\n\n                    bq = bq.replace(/^[ \\t]+$/gm, \"\");     // trim whitespace-only lines\n                    bq = _RunBlockGamut(bq);             // recurse\n\n                    bq = bq.replace(/(^|\\n)/g, \"$1  \");\n                    // These leading spaces screw with <pre> content, so we need to fix that:\n                    bq = bq.replace(\n                            /(\\s*<pre>[^\\r]+?<\\/pre>)/gm,\n                        function (wholeMatch, m1) {\n                            var pre = m1;\n                            // attacklab: hack around Konqueror 3.5.4 bug:\n                            pre = pre.replace(/^  /mg, \"~0\");\n                            pre = pre.replace(/~0/g, \"\");\n                            return pre;\n                        });\n\n                    return hashBlock(\"<blockquote>\\n\" + bq + \"\\n</blockquote>\");\n                }\n            );\n            return text;\n        }\n\n        function _FormParagraphs(text, doNotUnhash) {\n            //\n            //  Params:\n            //    $text - string to process with html <p> tags\n            //\n\n            // Strip leading and trailing lines:\n            text = text.replace(/^\\n+/g, \"\");\n            text = text.replace(/\\n+$/g, \"\");\n\n            var grafs = text.split(/\\n{2,}/g);\n            var grafsOut = [];\n            \n            var markerRe = /~K(\\d+)K/;\n\n            //\n            // Wrap <p> tags.\n            //\n            var end = grafs.length;\n            for (var i = 0; i < end; i++) {\n                var str = grafs[i];\n\n                // if this is an HTML marker, copy it\n                if (markerRe.test(str)) {\n                    grafsOut.push(str);\n                }\n                else if (/\\S/.test(str)) {\n                    str = _RunSpanGamut(str);\n                    str = str.replace(/^([ \\t]*)/g, \"<p>\");\n                    str += \"</p>\"\n                    grafsOut.push(str);\n                }\n\n            }\n            //\n            // Unhashify HTML blocks\n            //\n            if (!doNotUnhash) {\n                end = grafsOut.length;\n                for (var i = 0; i < end; i++) {\n                    var foundAny = true;\n                    while (foundAny) { // we may need several runs, since the data may be nested\n                        foundAny = false;\n                        grafsOut[i] = grafsOut[i].replace(/~K(\\d+)K/g, function (wholeMatch, id) {\n                            foundAny = true;\n                            return g_html_blocks[id];\n                        });\n                    }\n                }\n            }\n            return grafsOut.join(\"\\n\\n\");\n        }\n\n        function _EncodeAmpsAndAngles(text) {\n            // Smart processing for ampersands and angle brackets that need to be encoded.\n\n            // Ampersand-encoding based entirely on Nat Irons's Amputator MT plugin:\n            //   http://bumppo.net/projects/amputator/\n            text = text.replace(/&(?!#?[xX]?(?:[0-9a-fA-F]+|\\w+);)/g, \"&amp;\");\n\n            // Encode naked <'s\n            text = text.replace(/<(?![a-z\\/?\\$!])/gi, \"&lt;\");\n\n            return text;\n        }\n\n        function _EncodeBackslashEscapes(text) {\n            //\n            //   Parameter:  String.\n            //   Returns:    The string, with after processing the following backslash\n            //               escape sequences.\n            //\n\n            // attacklab: The polite way to do this is with the new\n            // escapeCharacters() function:\n            //\n            //     text = escapeCharacters(text,\"\\\\\",true);\n            //     text = escapeCharacters(text,\"`*_{}[]()>#+-.!\",true);\n            //\n            // ...but we're sidestepping its use of the (slow) RegExp constructor\n            // as an optimization for Firefox.  This function gets called a LOT.\n\n            text = text.replace(/\\\\(\\\\)/g, escapeCharacters_callback);\n            text = text.replace(/\\\\([`*_{}\\[\\]()>#+-.!])/g, escapeCharacters_callback);\n            return text;\n        }\n\n        function _DoAutoLinks(text) {\n\n            // note that at this point, all other URL in the text are already hyperlinked as <a href=\"\"></a>\n            // *except* for the <http://www.foo.com> case\n\n            // automatically add < and > around unadorned raw hyperlinks\n            // must be preceded by space/BOF and followed by non-word/EOF character    \n            text = text.replace(/(^|\\s)(https?|ftp)(:\\/\\/[-A-Z0-9+&@#\\/%?=~_|\\[\\]\\(\\)!:,\\.;]*[-A-Z0-9+&@#\\/%=~_|\\[\\]])($|\\W)/gi, \"$1<$2$3>$4\");\n\n            //  autolink anything like <http://example.com>\n            \n            var replacer = function (wholematch, m1) { return \"<a href=\\\"\" + m1 + \"\\\">\" + pluginHooks.plainLinkText(m1) + \"</a>\"; }\n            text = text.replace(/<((https?|ftp):[^'\">\\s]+)>/gi, replacer);\n\n            // Email addresses: <address@domain.foo>\n            /*\n            text = text.replace(/\n                <\n                (?:mailto:)?\n                (\n                    [-.\\w]+\n                    \\@\n                    [-a-z0-9]+(\\.[-a-z0-9]+)*\\.[a-z]+\n                )\n                >\n            /gi, _DoAutoLinks_callback());\n            */\n\n            /* disabling email autolinking, since we don't do that on the server, either\n            text = text.replace(/<(?:mailto:)?([-.\\w]+\\@[-a-z0-9]+(\\.[-a-z0-9]+)*\\.[a-z]+)>/gi,\n                function(wholeMatch,m1) {\n                    return _EncodeEmailAddress( _UnescapeSpecialChars(m1) );\n                }\n            );\n            */\n            return text;\n        }\n\n        function _UnescapeSpecialChars(text) {\n            //\n            // Swap back in all the special characters we've hidden.\n            //\n            text = text.replace(/~E(\\d+)E/g,\n                function (wholeMatch, m1) {\n                    var charCodeToReplace = parseInt(m1);\n                    return String.fromCharCode(charCodeToReplace);\n                }\n            );\n            return text;\n        }\n\n        function _Outdent(text) {\n            //\n            // Remove one level of line-leading tabs or spaces\n            //\n\n            // attacklab: hack around Konqueror 3.5.4 bug:\n            // \"----------bug\".replace(/^-/g,\"\") == \"bug\"\n\n            text = text.replace(/^(\\t|[ ]{1,4})/gm, \"~0\"); // attacklab: g_tab_width\n\n            // attacklab: clean up hack\n            text = text.replace(/~0/g, \"\")\n\n            return text;\n        }\n\n        function _Detab(text) {\n            if (!/\\t/.test(text))\n                return text;\n\n            var spaces = [\"    \", \"   \", \"  \", \" \"],\n            skew = 0,\n            v;\n\n            return text.replace(/[\\n\\t]/g, function (match, offset) {\n                if (match === \"\\n\") {\n                    skew = offset + 1;\n                    return match;\n                }\n                v = (offset - skew) % 4;\n                skew = offset + 1;\n                return spaces[v];\n            });\n        }\n\n        //\n        //  attacklab: Utility functions\n        //\n\n        var _problemUrlChars = /(?:[\"'*()[\\]:]|~D)/g;\n\n        // hex-encodes some unusual \"problem\" chars in URLs to avoid URL detection problems \n        function encodeProblemUrlChars(url) {\n            if (!url)\n                return \"\";\n\n            var len = url.length;\n\n            return url.replace(_problemUrlChars, function (match, offset) {\n                if (match == \"~D\") // escape for dollar\n                    return \"%24\";\n                if (match == \":\") {\n                    if (offset == len - 1 || /[0-9\\/]/.test(url.charAt(offset + 1)))\n                        return \":\"\n                }\n                return \"%\" + match.charCodeAt(0).toString(16);\n            });\n        }\n\n\n        function escapeCharacters(text, charsToEscape, afterBackslash) {\n            // First we have to escape the escape characters so that\n            // we can build a character class out of them\n            var regexString = \"([\" + charsToEscape.replace(/([\\[\\]\\\\])/g, \"\\\\$1\") + \"])\";\n\n            if (afterBackslash) {\n                regexString = \"\\\\\\\\\" + regexString;\n            }\n\n            var regex = new RegExp(regexString, \"g\");\n            text = text.replace(regex, escapeCharacters_callback);\n\n            return text;\n        }\n\n\n        function escapeCharacters_callback(wholeMatch, m1) {\n            var charCodeToEscape = m1.charCodeAt(0);\n            return \"~E\" + charCodeToEscape + \"E\";\n        }\n\n    }; // end of the Markdown.Converter constructor\n\n})();"
  },
  {
    "path": "www/static/js/q.js",
    "content": "var \nQ=function(W,D,M,body,laHash,lash,L,LL,index,popstate,VS,NB,Regex,key,Q){\n\tNB='onhashchange' in W;\n\tbody=D.getElementsByTagName('body')[0];\n\tlaHash='`';\n\tRegex=[];\n\tkey='!';\n\tpopstate=function(){\n\t\tif(NB)W.onhashchange=popstate;\n\t\tif(laHash==location.hash)\n\t\t\treturn;\n\n\t\tQ.lash=lash=location.hash.substring(key.length+1);\n\n\t\tL=lash.split('/');\n\n\t\tvar \n\t\ti=Regex.length;\n\t\twhile(i--)if(LL=lash.match(Regex[i][0])){\n\t\t\tLL[0]=Regex[i][1];\n\t\t\tL=LL;\n\t\t\tbreak;\n\t\t}\n\t\t\n\t\tif(!Q[L[0]]){\n\t\t\tlocation.hash='#'+key+index;\n\t\t\tQ.lash=index;\n\t\t\treturn;\n\t\t}\n\n\t\t//body.className='body-'+L[0];\n\n\t\tif(Q.pop)\n\t\t\tQ.pop.apply(W,L);\n\n\t\tlaHash=location.hash;\n\n\t\tQ.arg=L;\n\t\tQ[L.shift()].apply(W,L);\n\t};\n\tQ={\n\t\tlash:'',\n\t\targ:[],\n\t\tinit:function(o){\n\n\t\t\tif(o.key!==undefined)\n\t\t\t\tkey=o.key;\n\n\t\t\tindex=o.index||'V';\n\n\t\t\tif(o.pop&&typeof o.pop=='function')\n\t\t\t\tQ.pop=o.pop;\n\n\t\t\tpopstate();\n\n\t\t\tif(!NB)\n\t\t\t\tsetInterval(function(){\n\t\t\t\t\tif(laHash!=location.hash){\n\t\t\t\t\t\tpopstate();\n\t\t\t\t\t\tlaHash=location.hash;\n\t\t\t\t\t}\n\t\t\t\t},100);\n\t\t},\n\t\treg:function(r,u){\n\t\t\tif(!r||!u)\n\t\t\t\treturn;\n\n\t\t\tswitch(typeof r){\n\t\t\t\tcase 'object':\n\t\t\t\t\tif(typeof u=='function'){\n\t\t\t\t\t\tvar fn='A'+(('8'+Math.random()).substring(3)*1).toString(16);\n\t\t\t\t\t\tQ[fn]=u;\n\t\t\t\t\t\tu=fn;\n\t\t\t\t\t}\n\t\t\t\t\tRegex.push([r,u]);\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'string':\n\t\t\t\t\tif(typeof u=='function'){\n\t\t\t\t\t\tQ[r]=u\n\t\t\t\t\t}else if(typeof u=='string' && Q[u]){\n\t\t\t\t\t\tQ[r]=Q[u]\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t}\n\t\t\treturn this\n\t\t},\n\t\tV:function(){\n\t\t\tconsole.log('Q.js 请设置框架默认页面');\n\t\t\tconsole.log('Q.js @卜卜口<http://i.mouto.org> 2014/12/28');\n\t\t},\n\t\tgo:function(u){\n\t\t\tlocation.hash='#'+key+u;\n\t\t}\n\t};\n\treturn Q;\n}(this,document);"
  },
  {
    "path": "www/static/js/templet.js",
    "content": "(function(上帝){\n\tvar \n\t需编码字串表={\n\t\t'&':'&amp;',\n\t\t'<':'&lt;',\n\t\t'>':'&gt;',\n\t\t'\"':'&quot;',\n\t\t\"'\":'&#39;',\n\t\t'/':'&#x2F;',\n\t\t'`':'&#x60;',\n\t\t'=':'&#x3D;'\n\t},\n\t编码成文本=function(string){\n\t\treturn String(string).replace(/[&<>\"'`=\\/]/g,function(s){\n\t\t\treturn 需编码字串表[s];\n\t\t}).replace(/\\n\\r/g,function(s){\n\t\t\treturn '\\\\n';\n\t\t})\n\t},\n\t编码成网页=function(string){\n\t\treturn String(string);\n\t\treturn String(string).replace(/\"/g,function(s){\n\t\t\treturn '\\\\'+s;\n\t\t});\n\t}, \n\t编译模板=function(模板字串){\n\t\tvar \n\t\t已打开的钥匙们=[],\n\t\t钥匙前缀们='_',\n\t\t模板字串=模板字串\n\t\t\t.replace(/[\\n\\r\\t]/g,'')\n\t\t\t.replace(/\"/g,'\\\\\"')\n\t\t\t.replace(/\\{\\{(#|\\/|\\^|&|\\$)?(.+?)\\}\\}/g,function(整段文字,动作,管道){\n\n\n\t\t\tif(管道=='.')\n\t\t\t\t管道='_循环关键字';\n\n\t\t\t管道=管道.replace(/\\|\\|/g,' or ');\n\n\t\t\t管道=管道.split('|');\n\n\t\t\t钥匙=管道.shift();\n\n\t\t\tvar \n\t\t\t管道前,\n\t\t\t管道后,\n\t\t\t钥匙和管道;\n\n\t\t\t管道前=管道.reverse().join('(')+'(';\n\n\t\t\t管道后=[];\n\t\t\t管道后.length=管道.length;\n\t\t\t管道后=管道后.join(')')+')';\n\n\n\n\t\t\t钥匙和管道=管道前+钥匙+管道后;\n\n\n\t\t\t//钥匙和管道=钥匙和管道.replace(/ or /g,'||');\n\n\n\t\t\t钥匙前缀们=[];\n\t\t\t钥匙前缀们.length=已打开的钥匙们.length+3;\n\t\t\t钥匙前缀们=钥匙前缀们.join('_');\n\n\n\t\t\tswitch(动作){\n\t\t\t\tcase '#':\n\t\t\t\t\t已打开的钥匙们.push(钥匙);\n\n\t\t\t\t\treturn '\");\\\n\t\t\t\t\t(function(){\\\n\t\t\t\t\t\tvar '+钥匙前缀们+'value;\\\n\t\t\t\t\t\tvar '+钥匙前缀们+'key;\\\n\t\t\t\t\t\tif( typeof('+钥匙+')!==\"undefined\" && ('+钥匙+') && ('+钥匙+'='+钥匙和管道+'))\\\n\t\t\t\t\t\tfor('+钥匙前缀们+'key in '+钥匙+')\\\n\t\t\t\t\t\twith('+钥匙前缀们+'value='+钥匙+'['+钥匙前缀们+'key]){\\\n\t\t\t\t\t\t\tvar _钥匙='+钥匙前缀们+'key;\\\n\t\t\t\t\t\t\tvar _循环关键字='+钥匙前缀们+'value;\\\n\t\t\t\t\t\t\t$return.push(\"';\n\n\t\t\t\t\tbreak;\n\t\t\t\tcase '$':\n\t\t\t\t\t已打开的钥匙们.push(钥匙);\n\n\t\t\t\t\treturn '\");\\\n\t\t\t\t\t(function(){\\\n\t\t\t\t\t\tif( typeof('+钥匙+')!==\"undefined\" && ('+钥匙+') ){\\\n\t\t\t\t\t\t\t$return.push(\"';\n\t\t\t\t\n\t\t\t\t\tbreak;\n\t\t\t\tcase '^':\n\t\t\t\t\t已打开的钥匙们.push(钥匙);\n\n\t\t\t\t\treturn '\");\\\n\t\t\t\t\t(function(){\\\n\t\t\t\t\t\tif( typeof('+钥匙+')===\"undefined\" || !('+钥匙+') ){\\\n\t\t\t\t\t\t\t$return.push(\"';\n\t\t\t\t\n\t\t\t\t\tbreak;\n\t\t\t\tcase '/':\n\t\t\t\t\tvar \n\t\t\t\t\t长度=已打开的钥匙们.length+1;\n\t\t\t\t\twhile(已打开的钥匙们[--长度]&&已打开的钥匙们[长度]!=钥匙);\n\t\t\t\t\t\n\t\t\t\t\t已打开的钥匙们.splice(长度,1);\n\n\t\t\t\t\treturn '\")\\\n\t\t\t\t\t\t}\\\n\t\t\t\t\t})();\\\n\t\t\t\t\t$return.push(\"';\n\t\t\t\t\n\t\t\t\t\tbreak;\n\t\t\t\tcase '&':\n\n\t\t\t\t\treturn '\");\\\n\t\t\t\t\t\tif(typeof('+钥匙+')!==\"undefined\")\\\n\t\t\t\t\t\t\t$return.push(编码成网页('+钥匙和管道+'||\\'\\'));\\\n\t\t\t\t\t\t\\\n\t\t\t\t\t\t$return.push(\"';\n\n\t\t\t\t\tbreak;\n\t\t\t\tdefault:\n\n\t\t\t\t\treturn '\");\\\n\t\t\t\t\t\tif(typeof('+钥匙+')!==\"undefined\")\\\n\t\t\t\t\t\t\t$return.push(编码成文本('+钥匙和管道+'||\\'\\'));\\\n\t\t\t\t\t\t\\\n\t\t\t\t\t\t$return.push(\"';\n\n\t\t\t\t\tbreak;\n\t\t\t}\n\n\t\t});\n\n\t\t模板字串='\\\n\t\t\tvar $return=[];\\\n\t\t\tvar _value=$data;\\\n\t\t\tvar _key;\\\n\t\t\twith($data){\\\n\t\t\t\t$return.push(\"'+模板字串+'\");\\\n\t\t\t}\\\n\t\t\treturn $return.join(\\'\\');';\n\t\t\t\n\t\treturn Function('$data','编码成文本','编码成网页',模板字串.replace(/ or /g,'||'));\n\t},\n\t运转=function(模板字串,数据,作用域){\n\t\t//console.log(编译模板(模板字串));\n\n\t\treturn 编译模板(模板字串).call(作用域||上帝,数据,编码成文本,编码成网页);\n\t};\n\t\n\t上帝.模板={\n\t\t运转:运转,\n\t\t编译模板:编译模板,\n\t\t编码成文本:编码成文本,\n\t\t编码成网页:编码成网页,\n\t};\n\n})(this);"
  },
  {
    "path": "www/static/js/获取模板-开发版.js",
    "content": "var \nFILES={},\ngetFile=function(url){\n\tif(FILES[url])\n\t\treturn FILES[url];\n\n\tvar \n\tx=new XMLHttpRequest();\n\tx.open('GET',url,0);\n\tx.send();\n\n\treturn FILES[url]=x.response;\n},\ngetView=function(key){\n\treturn getFile('static/view/'+key+'.view');\n};\ngetTemplet=function(key){\n\treturn getFile('static/templet/'+key+'.templet');\n};"
  },
  {
    "path": "www/static/less/i.less",
    "content": "@import url(itorr.normalize.less);\n@import url(layout.less);\n@import url(view-posts.less);\n@import url(view-article.less);\n@import url(step.less);"
  },
  {
    "path": "www/static/less/itorr.normalize.less",
    "content": "body,h1,h2,h3,h4,h5,p,form,ol,ul{margin:0;}\nol,ul{padding:0;}\nhtml{\n\tfont:1em \"Avenir Next\",Avenir,\"Helvetica Neue\",Helvetica,\"Lantinghei SC\",\"Hiragino Sans GB\",\"Microsoft YaHei\",\"微软雅黑\", \"STHeiti\",\"WenQuanYi Micro Hei\",SimSun,sans-serif;\n\tcolor:#222;\n}\n\n\ntextarea,input,option,select,button{font:inherit;}\n\n\nh1,h2,h3,h4{font-weight:500;}\ntextarea:focus,input:focus{outline:none;}\n::selection{background:rgba(0,149,255,0.1);}\nul{list-style-type:none;}\na{text-decoration:none;color:#635752;}\nimg{border:0 none;}\n\n.o{overflow:hidden;zoom:1;}\n.l{float:left;}\n.r{float:right;}\n\n.c:after{content:'.';display:block;height:0;clear:both;visibility:hidden;}\n* html .c{height:1%;}\n\n.h{opacity:0;pointer-events:none;}\n\na,input,button{transition:.3s ease;}\n\nxmp{display:none;}\n\n"
  },
  {
    "path": "www/static/less/layout.less",
    "content": "\nhtml{\n\tbackground:#F0DAB3 url(../img/bg.jpg) top center;\n}\n\nhtml,\nbody{\n\theight:100%;\n\toverflow:hidden;\n}\n\n\nbody{\n\n\t-webkit-perspective: 400px;\n\t-moz-perspective: 400px;\n\t-ms-perspective: 400px;\n\tperspective: 400px;\n\t-webkit-transform-style: preserve-3d;\n\t-moz-transform-style: preserve-3d;\n\t-ms-transform-style: preserve-3d;\n\ttransform-style: preserve-3d;\n}\n\n\nheader{\n\t\n}\nheader a{\n\tpadding:2em;\n\tdisplay:block;\n\ttransition:none;\n}\nheader img{\n\tdisplay:block;\n\twidth:60px;\n\theight:60px;\n\tborder-radius:9em;\n\tmargin:0 auto;\n\ttransition:none;\n\tbox-shadow:0 1px 4px rgba(20,0,0,.1);\n}\n\n\n\n\n.side{\n\theight:100%;\n\tposition:relative;\n\ttext-align:center;\n\ttransition:opacity .3s ease;\n\n\n\t-webkit-overflow-scrolling:touch;\n\toverflow-y:auto;\n\n\t\n\n\t\tbox-shadow:\n\t\t\t0 0 15px rgba(30,0,0,.2),\n\t\t\t0 0 0 1px rgba(100,0,0,.1);\n}\n\n\n::-webkit-scrollbar-track-piece{}\n::-webkit-scrollbar{\n\twidth:4px;\n\theight:6px;\n\t\n}\n::-webkit-scrollbar-thumb{\n\theight:40px;\n\tbackground-color:#635752;\n\tborder-radius:9em;\n}\n::-webkit-scrollbar-thumb:hover{\n\tbackground-color:#222;\n}\n\n\n.side::-webkit-scrollbar{\n\twidth:0px;\n\theight:6px;\n\t\n}\n\n\n\n\n\nfooter{\n\n\ttext-align:center;\n\tcolor:#b9a691;\n\tpadding:6em 0 2em;\n\tfont-size:12px;\n\ttext-shadow:0 1px 0 rgba(255,255,255,.8);\n}\n\nfooter p{\n\t\n}\n"
  },
  {
    "path": "www/static/less/step.less",
    "content": "\n\nbody[step=\"post\"] header a{\n\tpadding:1em;\n}\nbody[step=\"post\"] header img{\n}\n\n\nbody[step=\"post\"] .side{\n\n\ttext-align:left;\n\twidth:300px;\n\n\tbackground:#fffcf6;\n\t-webkit-animation:sideIn .8s ease-in-out;\n\t\t\tanimation:sideIn .8s ease-in-out;\n}\n@-webkit-keyframes sideIn {\n\t0%{\n\t\topacity:0;\n\t}\n\t50%{\n\t\topacity:0;\n\t\t-webkit-transform:translateY(10px);\n\t\t\t\ttransform:translateY(10px);\n\t}\n}\n@keyframes sideIn {\n\t0%{\n\t\topacity:0;\n\t}\n\t50%{\n\t\topacity:0;\n\t}\n}\n\nbody[step=\"post\"] .post.active,\nbody[step=\"post\"] .post:hover{\n\tbackground: linear-gradient(#fbf1e7,#fbf3ea);\n\tbackground: -webkit-linear-gradient(top,#fbf1e7,#fbf3ea);\n}\n\nbody[step=\"post\"] .post h2{\n\tfont-size:1em;\n}\n\n\nbody[step=\"post\"] .post time{\n\tfont-size:.5em;\n}\n\nbody[step=\"post\"] .article-box{\n\t-webkit-transform:translateZ(0) translateX(0) rotateY(0);\n\t\t\ttransform:translateZ(0) translateX(0) rotateY(0);\n\topacity:1;\n\tpointer-events:auto;\n}\nbody[step=\"post\"] .article{\n\tpointer-events:auto;\n}\n\n\n@media(max-width:1060px){\n\t.article-box{\n\t}\n\t.article{\n\t\tmargin:1em;\n\t\tmax-width:800px;\n\t}\n}\n@media(max-width:960px){\n\tbody[step=\"post\"] .side{\n\t\twidth:200px;\n\t\tbackground:none;\n\t}\n\t.side{\n\t\tbox-shadow:none;\n\t}\n\t.article-box{\n\t\tmargin-left:185px;\n\t}\n\t.article{\n\t\tmargin:15px;\n\t}\n\n\tbody[step=\"post\"] .post.active,\n\tbody[step=\"post\"] .post:hover{\n\t\tbackground:linear-gradient(#716661,#5f5450);\n\t\tbackground:-webkit-linear-gradient(top,#716661,#5F5450);\n\t\tcolor:#FFF;\n\t\ttext-shadow:0 1px 0 rgba(0,0,0,.5);\n\t}\n\n\tbody[step=\"post\"] .post h2{\n\t\tfont-size:1em;\n\t}\n\t.post[image] h2:after{\n\t\tdisplay:none;\n\t}\n\t.article{\n\t}\n\tbody[step=\"post\"] footer{\n\t\tdisplay:none;\n\t}\n}\n@media(max-width:780px){\n\tbody[step=\"post\"] header img{\n\t\tmargin:0;\n\t}\n\t.article-box{\n\t\tmargin-left:90px;\n\t\tbackground:#fffcf7;\n\t\tbox-shadow:\n\t\t\t0 0 15px rgba(30,0,0,.2),\n\t\t\t0 0 0 1px rgba(100,0,0,.1);\n\t}\n\t.article{\n\t\tbox-shadow:none;\n\t\tmargin:0;\n\t}\n\n\tbody[step=\"post\"] .side .post{\n\t\tpadding:.6em .6em .5em;\n\t}\n}\n@media(max-width:600px){\n\t.article-box{\n\t\tmargin-left:0;\n\t\tposition:absolute;\n\t\toverflow:hidden;\n\t\t-webkit-transform:translateY(80px);\n\t\t\t\ttransform:translateY(80px);\n\t}\n\tbody[step=\"post\"] .article-box{\n\t\tposition:static;\n\t}\n\t.side{\n\t\theight:auto;\n\t\twidth:auto;\n\t}\n\thtml,body{\n\t\toverflow:visible;\n\t}\n\tbody[step=\"post\"] header img{\n\t\tmargin:0 auto;\n\t}\n\tbody[step=\"post\"] .side{\n\t\ttext-align:center;\n\t\twidth:auto;\n\t\t\n\t}\n\tbody[step=\"post\"] .side img{\n\t}\n\tbody[step=\"post\"] .posts{\n\t\tdisplay:none;\n\t}\n\t.article{\n\t\tpadding:1em 1.3em;\n\t}\n\t\n\t.text img{\n\t\tmax-width:100%;\n\t\tpadding:0;\n\t\tmargin:.5em 0;\n\t\theight:auto;\n\t}\n\t.article .count{\n\t\tdisplay:block;\n\t\tposition:static;\n\t\tpadding:.5em;\n\t}\n\n}"
  },
  {
    "path": "www/static/less/view-article.less",
    "content": "\n\n.article-box{\n\tmargin-left:300px;\n\tposition:absolute;\n\ttop:0;\n\tbottom:0;\n\tleft:0;\n\tright:0;\n\n\t-webkit-overflow-scrolling:touch;\n\toverflow-y:auto;\n\n\ttransition:.3s ease;\n\n\topacity:0;\n\t-webkit-transform:translateZ(-10px) translateX(50px) rotateY(5deg);\n\t\t\ttransform:translateZ(-10px) translateX(50px) rotateY(5deg);\n\n\tpointer-events:none;\n}\n\n\n\n.article{\n\tpadding:2em 2.8em;\n\tmax-width:600px;\n\tmargin:2em auto;\n\tline-height:2;\n\tbackground:#fffcf7;\n\tbox-shadow:\n\t\t0 0 15px rgba(30,0,0,.2),\n\t\t0 0 0 1px rgba(100,0,0,.1);\n\n\tpointer-events:none;\n\tposition:relative;\n}\n\n\n\n.article h1{\n\tmargin:-.4em -.4em 0 -.2em;\n\tline-height:1.2;\n\tpadding:.5em 0 0;\n}\n.article time{\n\tdisplay:block;\n\tfont-size:.9em;\n\tpadding:0 1em;\n\tline-height:3;\n\tcolor:#b9a691;\n}\n.article .count{\n\tposition:absolute;\n\ttop:.5em;right:.5em;\n\tfont-size:.9em;\n\tpadding:0 .5em;\n\tcolor:#b9a691;\n}\n.article .count:before{\n\tcontent:'共 ';\n}\n.article .count:after{\n\tcontent:' 字';\n}\n.text img{\n\tdisplay:block;\n\tpadding:.7em;\n\tbackground:#FFF;\n\tbox-shadow:\n\t\t0 1px 7px rgba(0,0,0,.1),\n\t\t0 0 0 1px rgba(40,0,0,.1);\n\tmargin:1em 5em 1em 1em;\n}\n.text im{\n\tmax-width:80%;\n\tmax-height:600px;\n}\n.text p{\n\ttext-indent:1em;\n}\n.text ul{\n\tpadding:.5em;\n}\n.text ul li{\n\tpadding-left:1.5em;\n\tposition:relative;\n}\n\n.text ol{\n\tpadding:.5em;\n\tpadding-left:40px;\n}\n.text ol li{\n\n}\n.text pre{\n\tline-height:1;\n}\n.text pre code{\n\tdisplay:block;\n\toverflow-x:auto;\n\tpadding:.5em .7em;\n\tbackground:#23241f;color:#f8f8f2;\n}\n/*.article ul{padding-left:2em;list-style-type:disc;}*/\n\n.text blockquote{\n\tfont-size:.9em;\n\tline-height:1.5;\n\tbackground:#fbf3eb;\n\tcolor:#a8988e;\n\tmargin:.2em;\n\tpadding:1.2em 1.5em;\n\n}\n.text blockquote p{\n\ttext-indent:0;\n}\n\n.text ul li:after{\n\tcontent:'';\n\tposition:absolute;\n\ttop:50%;\n\tleft:.4em;\n\n\twidth:.4em;height:.4em;\n\tmargin-top:-.2em;\n\tbackground:#333;\n\tborder-radius:9em;\n\n}\n"
  },
  {
    "path": "www/static/less/view-posts.less",
    "content": "\n.posts{\n\t\n}\n.post{\n\tdisplay:block;\n\tpadding:.6em 1em .5em;\n\ttext-shadow:0 1px 0 rgba(255,255,255,.8);\n}\n.post.active,\n.post:hover{\n\tbox-shadow: 0 1px 4px rgba(0,0,0,.03) inset;\n\ttext-shadow:0 1px 0 #FFF;\n\n\tbackground:rgba(255,255,255,.5);\n}\n\n\n.post h2{\n\tline-height:1.1;\n\tpadding:.2em 0 0;\n\tmargin:0;\n}\n.post[image] h2:after{\n\tcontent:'';\n\tdisplay:inline-block;\n\twidth:24px;\n\theight:24px;\n\tvertical-align:middle;\n\tmargin-left:.2em;\n\tbackground:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+Cgk8cGF0aCBkPSJNMSw0djE2aDIyVjRIMXogTTIxLDZ2MTIuMTdsLTMuNjctNC4xNmwtMi4yMSwyLjE3TDguMzUsOC4yNkwzLDEzLjgxVjZIMjF6Ii8+Cgk8Y2lyY2xlIGN4PSIxNi40MyIgY3k9IjkuOTMiIHI9IjIuNDMiLz4KPC9zdmc+Cg==);\n\topacity:.2;\n\tposition:relative;\n\ttop:-3px;\n}\n.post time{\n\tcolor:#b9a691;\n\tfont-size:.8em;\n\tmargin-left:1em;\n\tmargin-left:0;\n}\n\n"
  },
  {
    "path": "www/static/templet/article.templet",
    "content": "<div class=\"article\">\n\t<div class=\"text\">\n\t\t{{&text}}\n\t</div>\n\t<span class=\"count\">{{detail.length}}</span>\n\t<div class=\"comments\">\n\t\t\n\t</div>\n</div>"
  },
  {
    "path": "www/static/templet/header.templet",
    "content": "<a href=\"#/home\">\n\t{{$avatar_url}}\n\t<img src=\"{{avatar_url}}\">\n\t{{/avatar_url}}\n\n\t{{^avatar_url}}\n\t<h1>{{nickname}}</h1>\n\t{{/avatar_url}}\n</a>"
  },
  {
    "path": "www/static/templet/posts.templet",
    "content": "{{#post}}\n<a id=\"p_{{pos}}\" href=\"#/p/{{pos}}\" class=\"post\" markdown=\"{{markdown}}\" favorite=\"{{favorite}}\"{{$hasImage}}image{{/hasImage}}>\n\t<h2>{{title}}</h2>\n\t<time>{{modify_time|时间格式化}}</time>\n</a>\n{{/post}}"
  }
]